diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/Kconfig b/APP_Framework/Applications/knowing_app/cmsis_5_demo/Kconfig index dd09e11d9..e9aa30cea 100644 --- a/APP_Framework/Applications/knowing_app/cmsis_5_demo/Kconfig +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/Kconfig @@ -11,6 +11,11 @@ menuconfig USING_CMSIS_5_DEMOAPP select IMAGE_PROCESSING_USING_TJPGD default n + config USING_CMSIS_5_NN_DEMOAPP_VEG_CLASSIFY + bool "Using CMSIS-5 NN demo app vegetable classify" + select USING_IMAGE_PROCESSING + select IMAGE_PROCESSING_USING_TJPGD + default n endif diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/README.md b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/README.md new file mode 100644 index 000000000..f267b9cb1 --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/README.md @@ -0,0 +1,37 @@ +# CMSIS-NN vegetable classify example + +This example uses CMSIS-NN to classify vegetable in real time under certain circumstances . + +## Requirements: +- CMSIS-NN in Framework/knowing/cmsis_5 +- **ov2640 need to be configured** in menuconfig "More Drivers->ov2640 driver" as follows + - Output format (RGB565 mode) + - (256) X direction resolution of outputimage + - (256) Y direction resolution of outputimage + - (512) X direction WINDOWS SIZE + - (512) Y direction WINDOWS SIZE + +## To run this demo: +- Set up and configure the corresponding hardware environment. + +- Run demo by type the command + ``` + cmsisnn_vegetable_classify + +## Results + +- **tomato** + +![tomato](https://www.gitlink.org.cn/repo/WentaoWong/xiuos/raw/branch/dev/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/tomato.jpg) + +- **potato** + +![potato](https://www.gitlink.org.cn/repo/WentaoWong/xiuos/raw/branch/dev/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/potato.jpg) + +- **pepper** + +![pepper](https://www.gitlink.org.cn/repo/WentaoWong/xiuos/raw/branch/dev/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/pepper.jpg) + +- **mushroom** + +![mushroom](https://www.gitlink.org.cn/repo/WentaoWong/xiuos/raw/branch/dev/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/mushroom.jpg) \ No newline at end of file diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/SConscript b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/SConscript new file mode 100644 index 000000000..891eff9df --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/SConscript @@ -0,0 +1,18 @@ +from building import * +import os + +cwd = GetCurrentDir() + +src = Split(''' +model/nn_vegetable_classify.c +cmsisnn_vegetable_classify.c +''') + +path = [ + cwd + '/model', + cwd + '/demo' + ] + +group = DefineGroup('CMSISNN vegetable classify application', src, depend = ['USING_CMSIS_5_NN_DEMOAPP_VEG_CLASSIFY'], CPPPATH = path) + +Return('group') diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/cmsisnn_vegetable_classify.c b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/cmsisnn_vegetable_classify.c new file mode 100644 index 000000000..8bc48a076 --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/cmsisnn_vegetable_classify.c @@ -0,0 +1,188 @@ +#include +#include +#include "stdio.h" +#include "string.h" + +#ifdef OV2640_RGB565_MODE +#ifdef RT_USING_POSIX +#include +#include +#ifdef RT_USING_POSIX_TERMIOS +#include +#endif +#endif + +#include +#include +#include "nn_vegetable_classify.h" +#define JPEG_BUF_SIZE (2 * OV2640_X_RESOLUTION_IMAGE_OUTSIZE * OV2640_Y_RESOLUTION_IMAGE_OUTSIZE) +#define IOCTL_ERROR 1 + +static int fd = 0; +static int infer_times = 0; +static int photo_times = 0; +static int height = OV2640_X_RESOLUTION_IMAGE_OUTSIZE; +static int width = OV2640_Y_RESOLUTION_IMAGE_OUTSIZE; +static _ioctl_shoot_para shoot_para_t = {0}; +const char *vegetable_label[] = {"mushroom", "pepper", "potato", "tomato"}; + +uint8_t *resized_buffer = NULL; +uint8_t *in_buffer = NULL; + +int get_top_prediction_detection(q7_t *predictions) +{ + int max_ind = 0; + int max_val = -128; + for (int i = 0; i < 10; i++) + { + if (max_val < predictions[i]) + { + max_val = predictions[i]; + max_ind = i; + } + } + return max_ind; +} + +int cmsisnn_inference_vegetable_classify(uint8_t *input_data) +{ + int8_t output_data[4]; + char output[50] = {0}; + char outputPrediction[50] = {0}; + memset(output, 0, 50); + memset(outputPrediction, 0, 50); + + run_nn_sn_classify((int8_t *)input_data, output_data); + arm_softmax_q7(output_data, 4, output_data); + + infer_times++; + int top_ind = get_top_prediction_detection(output_data); + printf("times:%d Prediction:%s \r\n", infer_times, vegetable_label[top_ind]); + sprintf(outputPrediction, "times:%d Prediction:%s \r\n", infer_times, vegetable_label[top_ind]); + lcd_show_string(1, 280, 240, 16, 16, outputPrediction, RED); + return top_ind; +} + +void resize_rgb888in_rgb565out(uint8_t *camera_image, uint16_t *resize_image) +{ + uint8_t *psrc_temp = (uint8_t *)camera_image; + uint16_t *pdst_temp = (uint16_t *)resize_image; + for (int y = 0; y < height; y++) + { + for (int x = 0; x < width; x++) + { + *pdst_temp++ = (*psrc_temp++ & 0xF8) << 8 | (*psrc_temp++ & 0xFC) << 3 | *psrc_temp++ >> 3; + } + } +} + +void resize_rgb565in_rgb888out(uint8_t *camera_image, uint8_t *resize_image) +{ + uint8_t *psrc_temp = (uint8_t *)camera_image; + uint8_t *pdst_temp = (uint8_t *)resize_image; + for (int y = 0; y < height; y++) + { + for (int x = 0; x < width; x++) + { + uint8_t pixel_lo = *psrc_temp++; + uint8_t pixel_hi = *psrc_temp++; + *pdst_temp++ = (0xF8 & pixel_hi); + *pdst_temp++ = ((0x07 & pixel_hi) << 5) | ((0xE0 & pixel_lo) >> 3); + *pdst_temp++ = (0x1F & pixel_lo) << 3; + } + } +} + +void lcd_show_ov2640_thread_detection(uint8_t *rgbbuffer) +{ + int32_t ret = 0; + while (1) + { + ret = ioctl(fd, IOCTRL_CAMERA_START_SHOT, &shoot_para_t); + if (ret == IOCTL_ERROR) + { + printf("ov2640 can't wait event flag"); + free(rgbbuffer); + return; + } + lcd_fill_array(0, 0, OV2640_X_RESOLUTION_IMAGE_OUTSIZE, OV2640_Y_RESOLUTION_IMAGE_OUTSIZE, rgbbuffer); + + if (photo_times % 20 == 0) + { + resize_rgb565in_rgb888out(rgbbuffer, resized_buffer); + int pixel = 0; + for (int i = 0; i < 3 * width; i += 3 * width / CONV1_IN_DIM) + { + for (int j = 0; j < 3 * height; j += 3 * height / CONV1_IN_DIM) + { + for (int k = 0; k < 3; k++, pixel++) + { + *(in_buffer + pixel) = *(resized_buffer + 256 * i + j + k); + } + } + } + cmsisnn_inference_vegetable_classify(in_buffer); + } + photo_times++; + } +} + +void cmsisnn_vegetable_classify() +{ + fd = open("/dev/ov2640", O_RDONLY); + if (fd < 0) + { + printf("open ov2640 fail !!"); + return; + } + printf("memory_init \n\r"); + uint8_t *JpegBuffer = malloc(JPEG_BUF_SIZE); + if (JpegBuffer == NULL) + { + printf("JpegBuffer senddata buf malloc error!\n"); + return; + } + resized_buffer = malloc(3 * width * height); + if (resized_buffer == NULL) + { + printf("Resized_buffer buf malloc error!\n"); + return; + } + in_buffer = malloc(CONV1_IN_CH * CONV1_IN_DIM * CONV1_IN_DIM); + if (in_buffer == NULL) + { + printf("In_buffer buf malloc error!\n"); + return; + } + memory_init(); + printf("memory_init success\n\r"); + + shoot_para_t.pdata = (uint32_t)JpegBuffer; + shoot_para_t.length = JPEG_BUF_SIZE / 2; + + int result = 0; + pthread_t tid = 0; + pthread_attr_t attr; + struct sched_param prio; + prio.sched_priority = 8; + size_t stack_size = 1024 * 11; + pthread_attr_init(&attr); + pthread_attr_setschedparam(&attr, &prio); + pthread_attr_setstacksize(&attr, stack_size); + + result = pthread_create(&tid, &attr, lcd_show_ov2640_thread_detection, JpegBuffer); + if (0 == result) { + printf("thread_detect_entry successfully!\n"); + } else { + printf("thread_detect_entry failed! error code is %d.\n", result); + close(fd); + } + + return; +} + +#ifdef __RT_THREAD_H__ +MSH_CMD_EXPORT(cmsisnn_vegetable_classify, classify vegetable using cmsis-nn); +#endif + +#endif \ No newline at end of file diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/mushroom.jpg b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/mushroom.jpg new file mode 100644 index 000000000..79d85de2d Binary files /dev/null and b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/mushroom.jpg differ diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/pepper.jpg b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/pepper.jpg new file mode 100644 index 000000000..254c734c9 Binary files /dev/null and b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/pepper.jpg differ diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/potato.jpg b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/potato.jpg new file mode 100644 index 000000000..b9ad7bff6 Binary files /dev/null and b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/potato.jpg differ diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/tomato.jpg b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/tomato.jpg new file mode 100644 index 000000000..13865cf64 Binary files /dev/null and b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/doc/tomato.jpg differ diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/nn_vegetable_classify.c b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/nn_vegetable_classify.c new file mode 100644 index 000000000..1afeca19f --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/nn_vegetable_classify.c @@ -0,0 +1,108 @@ +#include "nn_vegetable_classify.h" + +static const q7_t conv1_w[CONV1_WT_SHAPE] = CONV1_WT; +static const q7_t conv1_b[CONV1_BIAS_SHAPE] = CONV1_BIAS; +static const q7_t conv2_w[CONV2_WT_SHAPE] = CONV2_WT; +static const q7_t conv2_b[CONV2_BIAS_SHAPE] = CONV2_BIAS; +// static const q7_t conv3_w[CONV3_WT_SHAPE] = CONV3_WT; +// static const q7_t conv3_b[CONV3_BIAS_SHAPE] = CONV3_BIAS; +static const q7_t interface_w[INTERFACE_WT_SHAPE] = INTERFACE_WT; +static const q7_t interface_b[INTERFACE_BIAS_SHAPE] = INTERFACE_BIAS; +static const q7_t linear_w[LINEAR_WT_SHAPE] = LINEAR_WT; +static const q7_t linear_b[LINEAR_BIAS_SHAPE] = LINEAR_BIAS; + +q7_t *conv1_out = NULL; +q7_t *pool1_out = NULL; +q7_t *conv2_out = NULL; +q7_t *pool2_out = NULL; +// q7_t *conv3_out = NULL ; +q7_t *interface_out = NULL; +q7_t *linear_out = NULL; +q7_t *y_out = NULL; +q7_t *conv_buffer = NULL; +q7_t *fc_buffer = NULL; + +void memory_init() +{ + static int flag = 0; + if (flag == 0) + { + conv1_out = malloc(CONV1_OUT_CH * CONV1_OUT_DIM * CONV1_OUT_DIM); + if (conv1_out == NULL) + { + printf("conv1_out malloc failed...\n"); + return; + } + pool1_out = malloc(CONV1_OUT_CH * POOL1_OUT_DIM * POOL1_OUT_DIM); + if (pool1_out == NULL) + { + printf("pool1_out malloc failed...\n"); + return; + } + conv2_out = malloc(CONV2_OUT_CH * CONV2_OUT_DIM * CONV2_OUT_DIM); + if (conv2_out == NULL) + { + printf("conv2_out malloc failed...\n"); + return; + } + pool2_out = malloc(CONV2_OUT_CH * POOL2_OUT_DIM * POOL2_OUT_DIM); + if (pool2_out == NULL) + { + printf("pool2_out malloc failed...\n"); + return; + } + interface_out = malloc(INTERFACE_OUT_DIM); + if (interface_out == NULL) + { + printf("interface_out malloc failed...\n"); + return; + } + linear_out = malloc(LINEAR_OUT_DIM); + if (linear_out == NULL) + { + printf("linear_out malloc failed...\n"); + return; + } + y_out = malloc(LINEAR_OUT_DIM); + if (y_out == NULL) + { + printf("y_out malloc failed...\n"); + return; + } + conv_buffer = malloc(MAX_CONV_BUFFER_SIZE); + if (conv_buffer == NULL) + { + printf("conv_buffer malloc failed...\n"); + return; + } + fc_buffer = malloc(MAX_FC_BUFFER); + if (fc_buffer == NULL) + { + printf("fc_buffer malloc failed...\n"); + return; + } + } +} + +void run_nn_sn_classify(q7_t *input_data, q7_t *output_data) +{ + for (int i = 0; i < CONV1_IN_CH * CONV1_IN_DIM * CONV1_IN_DIM; i++) + { + input_data[i] = input_data[i] - 127; + } + arm_convolve_HWC_q7_basic(input_data, CONV1_IN_DIM, CONV1_IN_CH, conv1_w, CONV1_OUT_CH, CONV1_KER_DIM, CONV1_PAD, CONV1_STRIDE, conv1_b, CONV1_BIAS_LSHIFT, CONV1_OUT_RSHIFT, conv1_out, CONV1_OUT_DIM, (q15_t *)conv_buffer, fc_buffer); + arm_maxpool_q7_HWC(conv1_out, POOL1_IN_DIM, POOL1_IN_CH, POOL1_KER_DIM, POOL1_PAD, POOL1_STRIDE, POOL1_OUT_DIM, NULL, pool1_out); + arm_relu_q7(pool1_out, POOL1_OUT_DIM * POOL1_OUT_DIM * CONV1_OUT_CH); + arm_convolve_HWC_q7_basic(pool1_out, CONV2_IN_DIM, CONV2_IN_CH, conv2_w, CONV2_OUT_CH, CONV2_KER_DIM, CONV2_PAD, CONV2_STRIDE, conv2_b, CONV2_BIAS_LSHIFT, CONV2_OUT_RSHIFT, conv2_out, CONV2_OUT_DIM, (q15_t *)conv_buffer, NULL); + arm_maxpool_q7_HWC(conv2_out, POOL2_IN_DIM, POOL2_IN_CH, POOL2_KER_DIM, POOL2_PAD, POOL2_STRIDE, POOL2_OUT_DIM, NULL, pool2_out); + arm_relu_q7(pool2_out, POOL2_OUT_DIM * POOL2_OUT_DIM * CONV2_OUT_CH); + // printf("1\n"); + // arm_convolve_HWC_q7_basic(pool2_out, CONV3_IN_DIM, CONV3_IN_CH, conv3_w, CONV3_OUT_CH, CONV3_KER_DIM, + // CONV3_PAD, CONV3_STRIDE, conv3_b, CONV3_BIAS_LSHIFT, CONV3_OUT_RSHIFT, conv3_out, + // CONV3_OUT_DIM, (q15_t *) conv_buffer, NULL); + // arm_relu_q7(conv3_out, CONV3_OUT_DIM * CONV3_OUT_DIM * CONV3_OUT_CH); + // printf("2\n"); + arm_fully_connected_q7_opt(pool2_out, interface_w, INTERFACE_IN_DIM, INTERFACE_OUT_DIM, INTERFACE_BIAS_LSHIFT, INTERFACE_OUT_RSHIFT, interface_b, interface_out, (q15_t *)fc_buffer); + arm_relu_q7(interface_out, INTERFACE_OUT_DIM); + arm_fully_connected_q7_opt(interface_out, linear_w, LINEAR_IN_DIM, LINEAR_OUT_DIM, LINEAR_BIAS_LSHIFT, LINEAR_OUT_RSHIFT, linear_b, output_data, (q15_t *)fc_buffer); +} diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/nn_vegetable_classify.h b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/nn_vegetable_classify.h new file mode 100644 index 000000000..7c46c8fb4 --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/nn_vegetable_classify.h @@ -0,0 +1,13 @@ +#ifndef __NN_H__ +#define __NN_H__ + +#include +#include "arm_math.h" +#include "arm_nnfunctions.h" +#include "parameter_vegetable_classify.h" +#include "weights_vegetable_classify.h" + +void run_nn_detection(q7_t* input_data, q7_t* output_data); +void memory_init(); + +#endif diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/parameter_vegetable_classify.h b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/parameter_vegetable_classify.h new file mode 100644 index 000000000..910b2ca6a --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/parameter_vegetable_classify.h @@ -0,0 +1,56 @@ +#define CONV1_IN_CH 3 +#define CONV1_OUT_CH 32 +#define CONV1_KER_DIM 3 +#define CONV1_PAD 0 +#define CONV1_STRIDE 1 +#define CONV1_IN_DIM 32 +#define CONV1_OUT_DIM 30 +#define MAX_CONV_BUFFER_SIZE 3096 +#define POOL1_IN_CH 32 +#define POOL1_KER_DIM 2 +#define POOL1_PAD 0 +#define POOL1_STRIDE 2 +#define POOL1_IN_DIM 30 +#define POOL1_OUT_DIM 15 +#define CONV2_IN_CH 32 +#define CONV2_OUT_CH 32 +#define CONV2_KER_DIM 3 +#define CONV2_PAD 0 +#define CONV2_STRIDE 1 +#define CONV2_IN_DIM 15 +#define CONV2_OUT_DIM 13 +#define POOL2_IN_CH 32 +#define POOL2_KER_DIM 2 +#define POOL2_PAD 0 +#define POOL2_STRIDE 2 +#define POOL2_IN_DIM 13 +#define POOL2_OUT_DIM 6 +#define INTERFACE_OUT_DIM 32 +#define INTERFACE_IN_DIM 1152 +#define MAX_FC_BUFFER 3096 +#define LINEAR_OUT_DIM 4 +#define LINEAR_IN_DIM 32 +#define CONV1_BIAS_LSHIFT 6 +#define CONV1_OUT_RSHIFT 9 +#define CONV1_WEIGHT_Q 8 +#define CONV1_BIAS_Q 8 +#define CONV1_INPUT_Q 6 +#define CONV1_OUT_Q 5 +#define CONV2_BIAS_LSHIFT 4 +#define CONV2_OUT_RSHIFT 10 +#define CONV2_WEIGHT_Q 9 +#define CONV2_BIAS_Q 10 +#define CONV2_INPUT_Q 5 +#define CONV2_OUT_Q 4 +#define INTERFACE_BIAS_LSHIFT 3 +#define INTERFACE_OUT_RSHIFT 11 +#define INTERFACE_WEIGHT_Q 9 +#define INTERFACE_BIAS_Q 10 +#define INTERFACE_INPUT_Q 4 +#define INTERFACE_OUT_Q 2 +#define LINEAR_BIAS_LSHIFT 0 +#define LINEAR_OUT_RSHIFT 7 +#define LINEAR_WEIGHT_Q 7 +#define LINEAR_BIAS_Q 9 +#define LINEAR_INPUT_Q 2 +#define LINEAR_OUT_Q 2 diff --git a/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/weights_vegetable_classify.h b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/weights_vegetable_classify.h new file mode 100644 index 000000000..114146a21 --- /dev/null +++ b/APP_Framework/Applications/knowing_app/cmsis_5_demo/cmsisnn_vegetable_classify/model/weights_vegetable_classify.h @@ -0,0 +1,16 @@ +#define CONV1_WT {-39,14,4,-16,-18,-38,-58,36,-14,36,-26,41,-13,46,-37,-21,8,-17,-56,-29,-44,32,-17,41,-30,-39,-3,-10,47,-35,-21,-49,29,61,-23,-19,-27,44,-35,61,49,15,44,-42,-16,-38,-10,35,-28,-7,-35,46,-49,7,55,2,-57,6,-34,-3,-18,-25,-38,27,-7,24,30,-44,-49,71,-17,30,9,-11,-29,61,40,-25,70,-4,-26,-35,40,49,28,-18,11,-37,-36,20,-27,38,30,-40,-3,16,5,9,17,43,-14,40,-20,29,-7,23,27,-6,-12,-26,-29,21,45,-15,-39,26,-22,-13,8,-21,-37,42,7,-3,12,37,-23,-20,-35,-9,49,-43,-58,50,12,53,-30,35,-13,-36,1,28,24,-52,-9,46,-16,49,-40,-21,4,-44,34,-12,46,-38,-30,-6,7,0,-2,-32,3,-20,47,20,-24,-49,-42,45,-10,-26,9,1,3,-27,20,44,-4,21,31,-35,42,-15,5,12,40,9,-38,-51,46,-5,-12,55,30,-19,-18,-20,20,23,-22,-65,-35,-37,-55,52,-4,16,13,-50,-11,33,-21,-13,-39,43,-22,-44,-21,-15,-48,-12,-32,-22,22,-20,47,-34,-27,-19,7,23,14,-11,39,-36,-25,-19,-13,8,28,39,-54,-6,-2,-3,-25,-24,-22,24,37,9,-40,-39,20,-42,12,27,-43,49,28,36,47,8,-36,-42,44,1,-21,12,-52,-26,25,-71,-29,-33,20,28,-44,-47,34,-19,-8,9,13,-7,60,-52,-72,20,-33,-47,56,-14,-75,-2,37,23,33,36,45,-10,-41,37,-7,9,3,-10,-57,28,17,-54,-18,-26,-30,45,-41,-10,11,11,-43,33,29,33,5,14,47,-17,-22,38,-6,22,-6,-21,-14,32,37,2,1,4,26,-21,20,-23,-3,25,5,40,0,49,-2,42,-27,11,-37,-23,19,-10,-43,27,-37,-37,-14,35,34,-28,-36,44,22,-34,4,40,-11,20,44,-24,-5,21,8,36,-17,-13,-5,6,3,-14,35,-13,45,-60,15,5,18,-15,7,-15,-26,47,-27,-50,53,8,-34,31,-48,54,58,-45,48,58,-18,45,61,34,21,-10,-2,65,-12,1,16,-9,23,44,48,10,-20,18,42,-20,49,-30,33,44,16,43,47,-40,45,19,-8,52,59,5,75,29,22,23,20,28,71,63,-60,50,-25,-16,67,-1,-35,12,5,-20,31,2,-24,-9,-26,-33,13,29,11,20,-38,-3,-52,17,-24,-23,22,-53,-36,-27,-42,26,27,-47,44,-1,-39,-25,19,29,47,-44,49,20,-2,41,12,49,28,39,15,40,-2,11,32,-30,8,-26,-46,-36,-24,-14,-18,-16,-23,17,21,-41,-3,15,41,31,-58,27,18,38,-53,15,10,-50,41,-28,16,25,9,-44,1,-9,-43,-45,-20,44,3,-57,-34,36,-12,38,3,-22,-19,15,33,-5,-21,-40,-4,22,-25,9,-38,-50,-14,-48,11,-41,10,22,3,-47,-22,35,-48,8,11,34,-27,-6,-33,11,-18,37,27,14,-36,-25,41,40,29,36,-39,1,52,-53,-5,70,-8,5,26,44,-19,53,-13,-51,67,-33,-12,15,-51,13,24,-38,-45,-18,-49,42,22,-44,-9,55,-27,18,64,41,-39,16,53,-14,-19,27,-12,12,61,23,20,-1,-52,49,26,-47,1,43,-22,40,-19,-11,20,35,-43,30,39,-1,49,23,-15,-36,50,-59,7,23,8,-42,23,-58,4,-22,-68,-21,43,-37,46,23,-23,100,-5,-49,49,-9,-36,110,-34,0,96,-46,-60,38,-22,-49,23,-45,-63,84,-23,-2,69,-10,-38,13,25,-55,23,-50,-39,50,-19,31,-18,16,15,13,19,26,-4,-39,22,45,43,9,-10,-14,-26,-19,-28,15,-33,-46,45,-52,39,31,-49,-31,-34,30,4,16,-1,-34,-24,-59,-3,54,-4,38,11,-11,2,-3,6,32,18,-30,4,-26,25,-25,-26,-24,-52,34,-3,-47,-6,44,-42,8,-32,32,-5,-27,-38,-25,27,0,17,57,36,10,-11,-16,-34,-37,10,-2,-62,29,-14,-32,37,0,-62,-21,-29,-2,43,-9,-58,31,-54,-1,2,-46,-71,-10,27,10,54,-28,-43,-13,10,18,44,46,0,25,-3,-28,23,48,-48,28,-3,-33,27,-12,-23,-17,25,34,-39,2,-1,29,18,-37,28,-46,2,59,20,-46,-25,-52,-37,11,21,-59,-33,-22,-65,51,-31,-52,-18,-7,-58,39,3,-1,20,-26} +#define CONV1_WT_SHAPE 864 +#define CONV1_BIAS {-19,-7,-36,-14,-38,25,-44,-11,-26,-8,-13,-34,46,71,-11,-55,41,-8,-19,7,-14,35,-39,-33,-3,-42,-14,53,-5,-44,43,-18} +#define CONV1_BIAS_SHAPE 32 +#define CONV2_WT {-16,-22,-20,-18,-1,3,4,-31,19,-25,-12,-8,-21,6,-25,26,31,-7,11,2,14,-19,23,24,-23,-8,-29,13,-10,-30,-8,3,-8,-1,-5,25,11,20,6,-16,-15,24,14,1,32,26,-10,8,31,-15,26,0,24,26,-8,38,22,-29,5,17,4,7,-8,-18,8,9,14,17,28,-20,-11,23,18,-24,-13,-28,17,-12,-10,19,50,-7,21,18,-25,3,6,-4,36,-5,-15,2,7,-24,-12,-10,-20,-25,-14,-16,-2,15,-24,-2,-5,8,-6,-21,-27,10,19,-19,31,-11,12,-2,13,9,23,2,25,-26,-11,-5,20,26,-12,-27,-7,-11,-20,-6,8,18,30,12,-28,16,-8,-17,2,0,12,46,35,19,34,-18,8,-29,-23,20,-11,-18,-13,-27,-14,12,13,-27,21,18,22,9,10,-29,-12,-17,27,7,-31,-6,27,-6,28,45,-2,3,0,-22,26,-8,17,8,-13,-18,-15,-13,-4,26,20,10,6,-1,14,17,5,-18,12,-11,16,1,22,5,-18,26,-5,22,-14,17,24,-9,15,-3,-2,17,-23,5,4,-25,19,-18,24,0,17,-7,22,17,-18,3,0,-8,14,24,-31,8,36,19,12,-6,4,-30,-3,-26,-14,4,-22,14,-9,-7,22,-13,13,-5,-8,-31,14,9,-24,25,-28,-2,-15,18,23,24,-17,-28,27,22,19,16,1,12,30,-21,14,12,16,14,-10,-5,-16,21,-5,-15,1,-10,29,25,9,-17,24,3,24,-3,-5,17,-29,17,29,-27,5,-9,12,-38,5,6,-9,24,-5,25,-7,-29,-4,17,-6,23,-19,4,20,1,16,31,-31,3,-15,-7,26,9,17,17,22,1,12,39,6,-21,32,-28,-14,27,-2,4,-3,-39,-9,-26,-15,-11,5,-2,6,-15,-27,-10,-20,-14,10,-21,-7,-24,-12,-10,36,2,20,49,23,-6,-6,-12,5,1,23,-3,21,-8,-5,10,3,-8,31,9,-30,22,-24,-3,18,-11,-22,-8,5,-18,-16,-28,40,-18,-31,12,35,-18,-12,23,9,21,13,12,-33,-3,26,-12,3,5,7,5,24,-12,2,10,-6,3,-10,19,-19,-17,-23,7,-3,-7,21,-6,8,17,-13,-9,9,-19,-3,-4,-13,-38,-22,-31,-4,-27,17,23,15,9,-21,13,-13,-24,-26,-31,-24,-3,24,3,6,24,8,10,28,24,27,-27,-2,-4,5,0,11,10,-23,-1,-16,-20,-21,-20,-6,-22,-3,19,-5,-9,0,-9,-9,6,6,-5,32,-7,20,31,9,9,26,11,17,-2,-31,6,1,-38,18,23,-12,5,-15,21,0,-18,16,12,-11,-4,-24,2,9,3,-9,23,23,15,13,24,25,-34,29,-15,-7,28,-2,6,-33,-13,6,-4,24,18,23,16,-23,21,-7,31,25,3,-8,-21,-24,-24,-31,27,27,15,25,-10,30,2,-8,1,-20,-11,-18,21,-34,-16,-19,-18,-21,20,4,24,-24,0,0,-21,-7,7,21,28,0,4,17,8,-12,-26,1,-8,-14,-3,25,27,-16,-9,-12,-3,34,17,30,-30,11,-9,14,2,-21,-4,49,-12,23,28,-12,17,-5,23,-35,26,13,-23,-16,-1,36,-4,-4,9,22,13,-8,20,16,38,-18,-10,-30,-18,14,-30,-26,33,44,-13,-16,11,8,4,22,0,13,26,-30,-24,8,27,1,34,-9,19,13,20,27,22,-15,34,-23,-19,4,-13,-17,-12,-32,34,34,2,-7,12,-18,28,-9,17,-11,-14,-22,-14,-9,23,23,-5,2,25,27,-14,-14,0,26,29,-13,10,-1,-13,-10,-28,-30,13,32,-28,31,31,27,-5,-20,-19,-12,41,18,-35,19,-19,29,39,9,-30,-26,15,-5,17,41,58,-11,-12,-14,-19,19,-26,5,39,4,-17,-9,15,15,-22,-11,-3,-22,-12,4,2,0,-1,30,1,-20,-3,22,8,21,-10,40,63,21,-17,-9,-27,-14,-11,-25,-7,26,29,5,11,-10,6,1,3,11,-3,-18,7,8,12,-21,-18,-19,17,4,-29,-6,9,29,-4,2,24,-1,4,8,-4,-16,38,-3,0,19,7,-11,13,-27,26,8,1,-30,-9,20,-17,-15,10,23,-1,-25,5,26,2,11,34,17,-6,11,20,10,10,-25,12,34,-29,-10,32,-1,17,-13,-23,11,-3,-7,16,20,-28,-20,3,14,-3,8,-1,17,18,29,51,-26,-36,21,-1,-9,16,-26,0,-7,19,1,14,18,5,3,-8,16,-16,-10,0,-4,0,20,13,-18,3,-16,-20,11,22,8,14,7,13,-19,-25,-25,-28,-26,-6,35,0,13,-15,6,1,-1,-1,-28,-6,2,-23,-16,20,-21,18,-30,3,5,26,-13,14,28,-20,19,-11,-14,1,5,15,-5,-13,7,-27,11,26,-26,15,-11,26,-25,2,-27,-12,7,19,-7,14,18,30,7,-4,23,7,7,21,-7,7,-10,19,-24,7,-21,-26,16,3,-32,30,0,5,-22,23,-28,18,-24,8,15,3,27,11,-10,-25,-5,-6,-28,-17,-2,-13,29,22,-17,-7,-35,-8,22,23,19,-4,-29,-26,-3,-30,16,-25,-28,-16,12,-13,-15,20,-13,20,6,-8,-11,29,6,26,36,5,-8,4,24,-21,-30,-18,17,17,-14,-26,-3,-4,-12,-20,20,-26,21,8,15,-15,17,24,27,15,-22,21,-2,29,12,1,21,13,4,24,-20,-1,-17,-31,3,-14,13,25,-12,22,-21,7,-23,12,11,12,-12,-14,-4,20,18,-10,-29,20,18,-9,-17,-7,22,2,-8,23,27,8,-37,-6,-28,12,-1,22,-12,-16,6,-16,17,30,-8,19,-3,-12,27,-9,-9,-8,-28,26,14,6,-29,12,30,13,-1,4,30,17,-21,-25,-27,23,7,-2,17,9,-7,-29,6,15,-27,2,-25,9,33,8,-9,29,-8,6,-18,7,-14,-1,1,17,14,-3,11,-21,-18,-12,-4,-3,34,6,-21,7,-10,-10,20,-20,17,15,-10,10,-16,10,-1,22,-27,-8,-11,-2,39,5,-9,2,-17,-12,25,2,2,19,23,17,-18,-3,9,6,2,3,9,-10,9,2,-15,22,26,5,-21,13,-6,0,30,15,20,-22,-5,14,31,14,2,20,22,32,21,3,-3,12,-3,-10,25,-8,12,14,28,18,9,4,13,-9,-20,-10,24,4,18,29,-6,-23,-26,11,12,-3,-9,28,18,27,-17,26,40,7,36,-6,29,23,34,-1,39,24,12,-14,-22,9,25,-19,27,-9,39,-6,2,-2,4,31,21,-4,-3,10,2,-4,18,30,15,18,34,29,-6,-10,23,6,36,-18,27,-25,-12,9,3,16,1,-20,37,-28,2,-16,-11,15,30,-9,19,-10,-26,38,-1,24,26,27,17,7,-19,5,-7,28,23,-5,-21,30,-9,-22,-5,-16,-25,-7,-11,19,31,4,-15,24,-22,-24,25,18,-17,23,14,28,-16,24,-13,6,11,11,7,1,34,0,-12,-3,-4,-28,-7,6,6,5,-6,-17,38,-27,-11,39,29,-7,7,22,-15,14,28,11,0,1,-12,-21,-2,18,17,18,40,-9,15,23,35,6,-26,3,-24,-10,-6,-2,10,16,9,34,30,-19,-4,23,-1,2,6,27,-21,10,34,22,-28,33,-12,18,35,-19,-19,9,7,21,-28,23,-15,13,33,11,38,-27,-25,44,-21,21,14,30,33,10,11,3,-15,-21,-1,-2,27,16,4,-14,-27,26,-7,0,18,-30,16,6,-13,15,7,-14,23,-13,6,-26,-11,-19,-3,-19,26,-32,27,24,4,3,15,27,7,26,7,13,-25,19,-29,6,-14,27,-20,-15,-11,5,-21,-24,-6,13,27,2,-15,16,-29,17,21,-3,-17,-2,-23,5,-21,17,-23,-26,-24,17,0,10,26,-2,-19,-15,4,-21,-7,-5,19,-10,5,26,5,-8,16,-29,0,5,21,16,28,28,-1,17,-22,-27,26,6,-27,-19,3,-18,27,-24,26,-23,-31,8,-3,24,18,24,-18,-19,-18,-16,1,15,26,19,-12,6,-10,8,-3,-19,27,25,-2,9,-26,18,-34,-22,-23,-27,-18,12,-16,32,-21,-25,8,6,-6,26,-5,6,-12,21,-17,-15,15,-13,-7,-21,25,11,-17,24,1,-7,-25,12,16,-5,13,-18,-3,23,23,27,-21,23,1,31,10,22,37,34,-17,-29,18,-24,-35,-27,27,-12,22,22,5,23,3,-28,25,-11,-20,3,-29,2,16,-17,30,-6,0,-20,9,3,30,17,15,18,-14,12,-28,0,-3,-7,4,-14,-9,-7,6,-22,-16,28,-17,17,11,6,7,-34,10,26,18,-9,4,-7,-8,18,25,1,30,-1,4,-13,16,5,-23,-28,3,2,-2,-32,-19,-14,16,-6,-10,-28,24,-19,10,-29,19,15,-4,33,0,21,-18,19,14,28,33,42,-18,6,18,-7,15,7,-20,10,5,27,-16,26,25,-22,13,29,-10,-19,-4,-9,-5,-9,-14,-10,-19,19,-11,7,-32,7,-29,-1,-24,3,22,-22,-26,-6,-3,-20,16,-9,14,-19,22,28,11,19,15,-21,-1,13,-29,-5,6,-16,-22,25,21,1,-1,11,29,-16,3,1,-17,7,26,-18,-15,26,23,21,1,7,3,-9,5,16,11,-16,23,-10,-12,26,-24,-6,16,21,10,17,-20,5,-10,-8,-12,-22,-12,-27,-14,12,-25,21,4,30,-1,8,-21,-7,-16,11,-12,-2,17,-9,11,-19,-7,-3,-13,-21,7,-1,28,-5,-6,-1,-1,32,-17,-22,2,10,27,-13,23,22,-7,1,-26,3,2,-11,26,17,-24,-3,24,-4,-32,11,11,-3,-18,20,10,28,-20,23,15,6,13,27,16,5,-9,-14,-6,-23,-23,14,-4,11,-29,-2,5,27,21,24,14,-18,27,14,4,13,-28,-10,-25,-22,-8,30,-4,2,17,15,17,13,11,20,-22,2,9,12,27,-4,21,16,-13,2,-24,31,-11,-7,-5,-9,-3,6,0,-22,5,15,13,-31,-9,12,17,11,13,-28,6,-13,14,2,16,-4,30,25,-5,18,20,-4,-24,35,-28,-13,-13,-26,-28,24,-23,-28,-11,9,23,-2,13,21,-28,-2,-24,-12,-5,31,-22,-12,-24,-8,18,-7,-10,-7,26,-28,12,24,11,17,-11,-7,-29,-10,23,15,-8,-10,-16,-4,8,-12,3,-24,17,6,9,38,27,-27,39,20,-8,-2,-27,13,-17,6,-22,-3,35,-23,-7,22,-11,-20,20,-13,32,-7,-17,21,-19,-8,-6,6,21,21,13,-15,51,9,34,12,-20,12,26,-7,-10,30,-27,-18,-3,-19,40,-18,-24,15,17,24,21,2,-11,38,29,-14,10,-15,15,16,-5,-20,24,10,-3,28,-25,6,26,24,-25,24,22,-28,-16,-8,17,0,-11,31,21,3,15,7,-1,47,10,-19,29,-17,20,23,9,18,34,-8,33,14,-5,-24,-26,28,13,-3,3,-14,-4,-3,23,6,-9,-13,-8,10,45,12,30,23,-17,-23,-22,16,17,10,24,3,24,17,32,14,-7,17,17,27,30,1,-10,22,32,1,13,-13,13,22,-22,-20,31,29,11,12,31,0,24,-13,-27,20,20,12,45,16,-3,10,-26,-9,15,2,15,20,-26,2,-23,-22,-14,1,-7,2,-1,18,16,-4,11,64,-25,-20,19,10,-13,18,-18,11,-5,-28,5,32,-23,-2,21,2,19,38,10,5,11,-13,-1,17,-23,27,24,-6,47,27,-4,17,11,-29,13,17,27,26,0,-2,34,-29,28,21,-12,13,23,-3,11,14,-27,-31,31,3,-21,34,-3,-2,19,-18,50,16,-15,46,-21,-15,16,24,-11,16,-22,-7,50,12,7,26,-19,-19,6,-14,-21,7,-19,-25,25,22,26,16,27,-16,8,11,31,-25,-29,25,5,-24,31,12,3,-12,-24,18,-8,-37,-39,33,-15,21,21,19,-32,-7,30,11,-5,24,64,-15,30,18,-8,-13,3,20,63,-16,-17,-31,-12,-18,-2,-2,-7,25,-26,-11,-28,-27,31,-16,14,3,8,2,26,-27,13,36,69,-1,-20,7,-22,-24,-24,40,29,11,15,10,-22,14,-14,1,14,2,-13,-14,-34,9,-27,-22,-15,-29,0,30,21,-10,33,32,87,-23,33,24,-31,8,-36,56,39,-31,-17,-20,0,-23,-5,-34,-4,5,-22,10,1,11,-1,-34,-19,-20,3,17,-14,-32,-9,33,78,17,-19,-20,11,-23,-49,48,38,0,12,-29,-27,5,10,-7,-19,-33,4,5,6,19,20,-12,15,-8,-43,20,-1,9,10,69,92,-19,-15,-15,-8,-9,-23,44,25,-30,-10,-29,26,6,3,0,-27,-9,-10,18,17,-18,11,-27,-7,1,-32,-6,19,-5,24,52,97,12,5,14,-16,25,-15,39,49,18,-25,-3,26,-9,-30,-14,-10,-26,-1,4,-13,-1,-7,-17,-38,-15,-33,26,-9,-17,-19,7,72,-2,-21,-9,2,-17,-12,48,49,-28,-30,-36,22,6,-39,-6,24,-11,-2,-7,-33,24,-5,-36,12,8,-39,13,20,-4,33,61,65,-16,23,-25,-38,5,1,27,25,-36,-6,-22,-23,-38,-12,-31,8,19,-29,-22,9,-27,-28,23,-9,-26,-28,15,13,-24,25,25,84,0,6,4,-27,20,-33,43,7,25,5,-15,1,-14,8,16,3,-10,-21,0,24,11,29,16,11,-12,18,26,-25,9,11,26,13,30,-7,16,22,-1,-6,-25,32,-26,15,7,1,26,-14,32,-2,-25,-10,5,11,26,3,26,-9,-30,-15,27,-8,-26,-20,24,-7,18,-6,19,21,18,-33,6,31,-29,-1,4,2,8,-16,15,-10,-24,-4,1,-4,16,-28,32,2,7,31,16,-8,-20,-7,4,-3,-8,26,3,-18,0,-4,-12,18,14,-18,14,-10,17,27,18,20,-19,-8,13,11,31,30,-10,3,0,4,-23,-12,-27,-10,19,-36,30,16,26,21,6,-34,-24,10,13,26,5,20,13,-26,4,-19,-8,9,-19,23,-22,16,6,9,23,39,21,25,26,30,8,18,24,26,-1,-20,8,11,-26,-10,-7,25,17,-28,-13,-6,43,3,-5,10,-18,7,30,-8,-14,17,16,-8,-33,24,19,2,-16,-12,-25,8,-12,-12,17,-12,22,-6,3,2,37,-16,-19,-8,42,-16,-25,-25,-12,27,2,-13,23,-3,26,15,-31,-27,4,-20,1,18,1,-8,26,33,-7,-15,5,5,-20,-24,-13,11,18,-20,32,-7,19,14,-5,-20,23,-9,-17,28,16,6,6,-17,-10,-23,-26,-5,0,-22,1,0,-10,14,-30,-1,-10,22,12,21,-8,28,-8,34,-33,-25,14,2,-23,0,10,-27,-10,-12,-5,14,20,15,-13,-6,26,10,35,-5,13,-30,-18,18,-9,24,37,14,29,5,12,1,-4,52,12,34,17,24,29,16,14,-8,23,26,-12,35,-9,16,50,30,37,22,-9,41,26,22,90,10,-21,46,15,24,15,6,17,44,-19,-10,19,-1,19,26,-10,40,39,-9,-33,45,-16,23,25,-26,32,42,-10,73,2,-12,100,2,-31,7,46,-30,18,6,27,20,16,33,11,-1,37,34,-13,-18,55,-32,-13,-3,-20,9,1,-9,30,-13,-24,51,31,31,91,33,-27,15,18,-24,42,3,5,14,6,44,22,9,-8,7,8,-6,50,9,-37,19,7,-2,11,-29,-9,22,-17,76,-16,3,67,20,4,11,41,13,28,-11,50,67,-30,-4,-21,-6,-4,9,-5,39,48,-22,2,40,7,9,21,28,-12,31,22,51,31,-13,62,-11,20,34,37,-18,-10,6,46,27,21,-9,20,-18,-12,-17,-27,44,-1,-37,-24,4,-8,18,-5,-24,6,44,19,35,34,23,63,-2,-4,29,41,7,11,42,20,26,-28,14,32,-28,16,14,31,3,34,-18,0,2,-16,4,-4,-27,17,9,8,65,-5,-1,32,26,13,-14,18,-14,12,30,22,65,11,40,2,-14,22,1,24,46,11,-30,16,12,17,14,43,4,-6,38,-2,10,-13,9,88,-13,-31,41,41,-18,6,36,21,37,-21,20,-4,26,40,24,19,5,-5,-16,-36,3,-5,13,47,3,50,30,20,23,-3,38,86,-2,-13,39,36,-13,30,-20,21,13,17,-18,1,-29,21,-4,-29,14,-7,-17,-11,26,3,-26,17,2,10,-11,16,12,4,-23,31,-17,-6,13,-26,13,22,0,-15,14,-17,-29,15,-1,-16,0,-13,-14,1,9,25,23,-25,28,-17,-28,-20,-8,-24,-3,-28,-5,-19,-24,-23,20,-23,-19,24,2,-20,-24,24,25,-12,5,-9,-4,16,2,30,-22,-3,13,5,-18,-15,-20,-22,-16,30,-6,8,-20,-6,19,23,-6,9,23,26,-16,14,-4,-11,-18,18,5,1,-16,22,-3,-12,-29,23,18,9,-14,-23,25,20,-11,-24,-15,30,-21,-17,-11,-27,-17,4,0,-25,-15,-26,-17,30,14,-23,17,-20,-1,-8,-30,-13,-23,-1,3,13,-29,-9,-14,-25,-10,-8,3,22,-18,-22,-16,2,24,7,23,-26,-9,16,19,-7,-14,20,-16,24,0,-26,-17,11,-27,22,-11,13,10,28,9,16,3,-3,28,11,10,-8,2,30,30,11,29,-20,-12,14,-28,-19,-5,-19,-9,-21,3,17,-2,3,24,-10,-27,20,-10,10,-13,-16,-12,-16,-17,27,26,24,29,5,21,5,-10,20,-15,-10,14,-5,29,24,-2,-13,-1,-19,-22,8,-3,-17,-7,-14,15,-27,28,23,7,-8,-7,-25,19,23,-24,5,-8,-1,22,-24,-15,-27,20,-14,-6,-27,17,14,25,-14,-26,-21,-3,20,20,-22,-26,14,1,3,4,-6,-15,4,29,-16,-27,30,-11,21,19,-16,-25,-30,1,-13,-6,-26,-21,-26,-25,10,12,-32,1,-1,14,15,8,-1,-12,-8,11,31,-30,15,-28,-11,18,10,-1,-4,-32,-13,26,1,-2,29,9,-14,6,21,12,4,-15,7,15,21,-10,46,52,-11,-11,13,7,32,-28,38,-9,1,2,-11,-17,18,-23,-18,13,7,1,-1,-11,14,11,-23,17,24,-6,-27,-6,-16,22,44,41,-8,-10,17,23,-10,-17,-1,10,-31,-24,2,21,3,0,22,2,-17,-8,28,-27,-13,8,-19,17,-3,-6,-14,-11,-33,-7,61,58,-18,4,-26,24,11,11,2,-7,-22,-14,-27,-5,0,16,17,27,-33,14,-12,18,-6,-17,-31,6,-30,-33,-29,32,21,-10,53,9,-10,15,1,-31,18,-28,14,30,-16,-30,-28,-5,5,12,-16,24,-16,25,-4,23,-29,22,-28,-25,20,-28,-7,7,-6,-8,63,58,-29,14,1,-32,-19,25,9,-25,8,-27,-29,-14,-1,33,6,3,-17,-38,2,-27,-16,-20,-13,-13,-31,16,-5,26,-6,28,12,45,21,35,22,21,-6,21,7,10,-29,29,10,10,-30,26,-16,18,-23,-2,26,26,2,-18,-14,10,23,-32,-27,-5,7,0,60,31,-7,12,10,1,13,-16,32,-3,-40,25,-7,-12,-30,31,21,28,22,2,24,7,14,5,15,16,-16,-17,-9,-2,22,7,22,70,-19,38,17,-3,-13,-4,1,-25,-31,-15,-16,-29,-23,20,-1,-10,23,27,10,44,25,26,3,34,29,6,6,-17,14,26,5,-25,19,-25,41,37,-3,-7,-19,24,34,-17,-6,-12,47,9,52,6,-13,19,-12,2,-13,16,23,15,22,0,13,-19,-24,29,31,-14,37,-23,31,7,-30,-5,22,13,-3,27,26,3,3,-22,49,23,-26,-23,24,22,-28,-20,40,22,-3,24,-4,-26,-2,28,18,22,32,-1,21,-7,-12,30,10,-18,31,-26,15,12,11,22,1,7,-21,-3,-17,41,-10,-20,6,24,4,4,-7,7,13,15,-5,-3,26,-16,12,19,19,-12,1,33,30,-16,-9,0,54,18,10,-9,-8,-12,28,27,15,0,43,-10,-17,46,-7,9,8,8,11,-10,10,29,30,4,-7,30,-20,2,-30,28,-19,29,34,22,46,13,-6,-36,-5,-12,18,20,14,2,-7,41,-14,-22,-20,-18,-20,-32,-26,-14,17,2,-11,12,-25,-25,-15,-23,-19,33,32,17,50,30,-16,-17,5,6,-10,24,16,13,-18,27,-6,-25,-10,37,26,-23,26,30,-3,13,-3,27,-9,-7,14,-16,21,4,52,20,58,24,19,-23,-22,45,-10,9,6,18,-5,39,4,-14,21,12,19,-35,32,5,20,-17,-22,-4,-28,18,-10,13,36,12,4,32,4,1,5,-22,21,40,0,-7,10,-15,-7,46,18,20,16,41,10,16,-10,-16,-4,5,25,26,-38,24,-32,28,5,-26,14,19,11,17,23,28,27,31,-1,-20,15,-3,27,4,-7,1,-1,6,-5,-11,1,19,-11,25,-17,0,-3,-4,-20,-25,-5,-13,-22,11,21,29,9,32,19,-23,-8,-15,28,29,5,8,-3,-24,-26,-19,25,-14,5,11,-7,7,29,-11,13,9,-26,23,-14,7,-20,8,-6,31,-27,23,-8,-1,-14,19,-25,25,5,18,30,12,-14,10,21,2,-20,-27,-15,-25,-8,-4,1,-15,-26,-2,6,-16,-21,-8,19,-15,-9,-18,24,-17,-28,-22,15,29,0,-27,31,-21,-21,7,25,-7,12,6,27,10,-5,8,-28,36,36,23,16,10,9,-21,-10,-21,-19,13,30,-2,19,5,-25,15,20,-2,-24,8,6,-16,25,-4,13,-11,-7,-13,1,-27,-21,7,-10,-23,-12,-20,-7,-22,-21,15,-7,-6,30,-24,-24,-1,14,21,6,-5,22,5,-19,5,20,-19,-5,-26,21,12,25,8,-24,24,12,25,-24,-15,2,0,26,20,-19,28,-19,-3,-6,27,-9,-8,-22,29,31,10,-4,24,-2,16,32,-10,9,-2,25,14,3,-6,39,-10,10,21,0,-31,18,8,-8,28,-25,0,-4,29,0,-22,27,14,16,18,-5,23,29,26,20,-20,21,-14,-5,28,-26,33,15,19,-25,31,-7,-1,25,-26,-9,21,28,32,-21,-4,18,-14,3,11,-12,8,-16,-4,-26,2,4,-3,-20,-6,-28,1,-28,3,-23,20,20,-28,31,-20,20,7,33,23,-7,-15,1,27,10,16,12,1,46,-29,-18,26,-17,7,3,17,-33,-23,-23,27,20,-19,43,-15,-2,-22,19,-24,-30,-11,35,4,-4,-8,2,8,5,-20,20,2,4,-7,11,17,-22,6,36,-5,-2,-12,12,20,-1,16,48,-17,-3,14,-23,-4,-14,-14,8,48,-21,-14,-15,5,-25,5,-17,9,41,-7,16,19,-24,4,-14,-29,23,-9,23,-9,18,11,71,-27,-28,27,6,13,5,-27,-1,35,2,28,-6,-24,-24,32,9,-28,10,-20,-40,-2,-19,-1,12,-11,-29,32,27,18,21,23,41,-22,7,25,14,-16,-28,-17,22,54,-8,-18,-14,13,6,5,15,-32,1,-13,-38,28,21,20,-9,-21,25,35,10,4,12,23,34,-29,-32,-16,-16,15,-42,-31,41,9,-7,-10,36,-11,-26,5,-2,-29,26,-12,-36,28,-3,9,6,-6,-9,2,29,16,-3,41,80,-28,-40,-25,-26,-30,-37,-12,-8,3,13,27,-8,26,7,-4,21,-32,20,-10,-12,-8,13,24,0,17,-11,23,28,44,2,22,79,3,16,16,-29,-6,8,-19,-7,50,-30,-5,-2,-18,-7,25,-16,1,40,-19,16,15,6,32,33,-32,-3,11,24,44,-8,22,66,-21,4,1,-36,-39,-17,20,15,29,-33,-4,0,19,-24,3,12,-35,2,-18,-37,-14,15,41,-2,1,-15,-11,0,-6,26,28,81,28,-24,0,22,1,-31,1,18,-7,5,20,22,-19,13,7,-19,44,31,21,-9,27,-19,-5,-3,9,-6,7,-33,-12,-11,11,18,9,9,-24,40,3,-8,-8,-24,7,-2,14,15,19,18,11,-13,11,20,18,-19,26,5,-20,-8,-15,9,33,16,-3,-11,24,-2,15,5,14,33,-11,10,37,10,0,-13,25,-18,17,11,-2,-29,28,-28,-20,-19,-9,-18,22,7,31,39,29,0,-14,24,35,-12,10,30,-26,39,-23,49,30,-21,-29,24,17,4,-19,23,-15,-19,20,25,21,11,18,-15,-14,-20,20,20,32,-18,-17,6,-10,-1,-15,-13,1,20,-4,46,6,-21,-4,-4,16,23,18,6,19,-16,38,15,-23,-21,9,1,26,21,28,-8,4,20,-6,16,31,-26,-2,16,-11,11,-5,18,22,-16,16,0,2,-9,24,12,15,2,0,-2,21,20,-16,-19,-36,33,-16,-4,32,-31,-18,-17,-13,-11,-3,34,18,45,28,47,-11,8,19,1,-4,7,-2,25,-24,-6,7,-28,4,-14,22,10,14,14,-18,22,31,-6,-5,-13,18,-18,21,29,-3,0,29,22,32,5,-36,24,31,21,19,18,-8,16,11,-31,-16,25,23,-25,-30,-19,-28,11,-10,11,17,19,-7,-36,15,4,17,30,-4,51,-14,24,-40,30,8,-4,-25,28,11,19,31,-22,-19,-12,39,-23,-23,21,2,8,33,-28,-11,3,36,-28,-26,-8,2,13,-14,31,24,23,-26,25,4,-21,18,-13,18,-12,6,-17,-23,-1,18,11,-19,-1,11,3,6,29,30,15,-3,-12,26,-21,-14,-29,-16,3,12,-24,-21,-26,-28,29,17,-27,-15,5,1,-28,-6,-9,-7,-15,16,-29,16,-10,21,-15,-7,-24,-24,9,1,23,16,12,13,-26,26,11,30,-10,4,-9,-16,19,15,15,16,12,-29,-13,13,26,25,-2,8,20,-7,-30,-1,8,-1,19,-18,3,-16,26,2,14,22,18,-2,-1,27,0,-14,-7,-20,-10,-4,-20,29,-17,-10,-3,-22,-27,14,-12,-6,-18,17,-9,-28,13,8,22,-4,27,8,5,2,-11,-29,30,-16,-12,29,1,22,-14,-19,4,19,9,-18,21,-17,-3,-20,-27,30,-21,1,21,-18,22,14,2,-29,-10,-2,12,-28,22,-14,16,22,-27,-10,29,15,30,11,28,1,-28,15,-17,-26,-10,-20,-14,24,28,-3,-22,-24,-24,-14,-15,3,8,25,8,1,30,3,0,12,-28,24,-13,7,5,-14,-26,18,11,27,-22,-8,-6,-27,24,10,-9,-1,-30,-7,-9,4,-13,10,-13,-26,-27,30,-27,13,20,12,6,20,6,-25,-6,-11,-27,24,-8,-19,22,-2,-24,0,0,-10,8,1,-2,-12,-7,14,-19,22,24,15,3,19,3,-2,7,15,-19,13,-17,14,29,30,-17,5,29,-17,24,1,27,-28,-27,-18,-5,12,-29,-20,10,4,9,-10,2,27,-25,-21,26,62,1,-20,33,17,14,13,-10,-34,27,-32,-39,-22,4,-3,16,-31,-39,31,21,-8,23,46,67,-13,-37,-11,-40,-23,-31,2,-7,16,17,19,30,-7,0,-20,-29,-46,43,11,-9,-27,-5,9,18,-22,-20,29,33,36,28,42,90,-2,-35,24,-35,-5,-49,3,28,8,-24,-29,-8,-4,-34,6,14,-45,25,-27,8,31,1,3,30,-33,-27,-15,-11,19,22,33,52,-7,-42,7,-10,-49,-5,-28,3,6,-23,16,16,-4,-37,27,21,-1,30,5,-15,19,1,18,26,4,-10,36,-7,23,32,18,86,-15,-20,-10,-7,-30,-45,-9,-8,8,-8,4,27,-1,-6,21,17,-45,37,12,4,13,0,10,15,-32,14,2,4,11,23,55,63,12,-19,29,10,-36,3,-31,-3,43,10,23,0,-20,18,-16,-29,16,47,2,-4,-21,-2,46,31,15,28,-12,-13,38,50,11,57,-13,-3,-6,-29,-3,-42,-4,6,-1,-19,10,-19,10,20,-10,27,-34,44,6,9,-27,17,27,-3,-7,-17,-14,28,29,29,47,75,21,4,-25,14,-42,-19,10,20,8,-13,-17,13,-23,-1,-28,22,-21,39,0,-13,-1,7,33,-10,-9,11,-23,17,25,30,51,30,28,6,13,-6,-21,-2,-21,-7,2,-36,-26,14,-18,6,19,-10,-33,12,-28,7,11,-7,-9,11,-29,-20,-13,21,39,-3,38,54,15,-20,-3,-36,-21,-39,30,31,-6,-26,-14,-7,-8,-19,13,-16,-19,13,-10,-5,21,17,24,2,16,6,-14,-32,-5,-22,26,45,14,28,-21,13,-23,3,-14,-8,21,11,3,30,28,34,23,-27,30,24,14,12,29,17,-6,1,17,28,37,-22,25,-24,-12,45,10,-27,-2,-10,22,42,3,19,26,28,0,22,-28,14,2,23,13,-15,13,-18,14,1,-6,5,-6,1,-6,-30,35,-26,31,33,14,3,-4,9,32,3,14,-10,16,26,-2,7,-29,29,14,-5,-1,-5,-20,-16,-10,-6,2,48,6,5,17,-4,38,-10,3,55,31,8,30,47,-29,-8,29,-21,-16,-5,-5,18,30,13,18,11,31,24,9,-3,21,-7,8,19,8,17,21,-18,-5,-13,16,60,25,-8,24,-9,-6,8,-5,-12,38,14,19,27,24,41,35,2,23,-15,-26,12,10,-23,-1,2,11,-16,-13,-27,7,-10,8,39,25,18,2,-7,-1,-8,19,5,35,2,29,-24,-14,13,26,-21,20,25,-20,-33,28,-6,21,22,-29,22,17,-27,14,-14,34,38,5,3,10,18,6,21,27,4,-13,-30,24,-23,14,-8,13,7,8,-12,7,11,16,14,8,36,-16,37,5,-24,29,-4,-15,1,29,11,4,27,10,7,39,-4,-2,23,11,14,-7,32,28,17,33,18,3,20,14,-19,-39,25,8,29,40,-2,9,-14,11,-5,-15,15,18,41,-27,20,1,-26,-7,-8,-17,-23,11,-4,30,-28,-28,18,29,28,4,-20,-15,16,13,25,-14,2,-1,-20,-13,-6,-25,-9,-7,-9,26,20,13,-18,-23,-6,12,0,-5,6,-24,15,-25,-16,-12,15,-10,8,25,-9,10,-26,-27,-2,-10,25,-4,-10,24,-19,-19,18,-14,24,-16,-20,3,26,-7,4,25,-6,28,17,-22,2,-30,-3,15,8,-10,14,-22,17,-11,25,-22,-29,5,-24,-13,-7,-29,13,14,13,-12,-3,4,-14,-27,8,11,17,-3,6,-2,-3,-2,13,-19,11,25,6,-9,15,2,-3,-15,27,-20,-11,3,19,-19,-7,20,5,-22,-7,-10,-13,12,-9,-21,-16,-13,3,-8,3,-29,25,18,4,-5,9,25,-25,31,-6,17,15,-25,-13,-6,17,9,11,-27,-21,18,18,21,29,2,-20,26,-15,0,27,-9,17,4,-26,-14,4,27,-12,21,27,1,27,-23,30,-5,-1,22,6,-1,-15,14,-16,-25,-16,21,19,-13,-18,6,17,24,24,-18,6,9,-4,0,12,-24,0,-27,9,24,-22,4,-20,-18,-22,-20,29,-13,24,-23,-26,-19,26,2,8,-18,4,25,-20,-30,-10,21,29,-21,-16,1,-14,-4,-18,-29,28,-8,18,2,3,-5,-8,-27,-29,8,-28,8,14,18,-28,-7,24,-12,-6,-5,7,-20,-6,-9,26,1,-10,11,23,-19,-24,-22,-3,26,-23,-7,-18,25,14,17,10,-5,-16,-1,18,25,-8,-22,2,8,2,-1,16,10,-9,46,12,-14,-6,3,-14,31,3,17,-7,-11,8,1,-21,-14,-34,-2,1,-11,4,27,32,4,-15,5,-29,37,20,22,16,6,21,31,-12,7,26,14,28,4,31,-20,3,-23,8,-11,-9,0,-40,-27,7,13,27,26,-1,35,19,-35,30,30,2,12,22,17,11,25,2,32,1,27,38,15,-24,-3,17,24,-29,-10,-8,-6,-32,19,-15,-20,18,-25,35,-19,-16,-25,-15,7,13,-10,21,-3,-4,36,22,1,19,29,16,-4,27,30,19,33,-21,11,27,15,-37,-15,-16,29,47,18,51,39,14,-36,7,-5,2,-2,24,-23,8,46,-25,9,-10,32,33,-5,-23,2,7,2,-6,16,22,9,4,-15,9,18,48,-7,29,-19,-16,-18,26,24,-1,18,19,-10,8,38,-15,-9,9,-15,-18,-3,16,-23,0,6,3,21,17,-6,-28,-23,31,21,45,8,2,-6,-22,-33,-2,33,-1,0,31,23,13,33,-31,26,-19,19,-18,-3,13,-14,-13,14,11,-13,12,-20,-9,-15,21,4,47,24,38,31,-26,6,13,-9,-22,-11,18,9,-10,12,21,-19,1,37,33,29,-7,13,30,-4,15,-2,-16,23,-22,16,17,-27,47,-15,15,-13,7,-7,-8,19,-21,22,39,4,-22,48,-35,3,30,20,3,-15,15,-19,15,8,-15,-26,-18,28,-4,-27,15,-26,23,-1,44,18,-5,4,-13,8,-10,13,11,-28,29,-14,-7,16,-28,-23,19,30,-25,-17,17,5,-4,6,9,-26,11,5,19,19,7,-11,3,20,-24,17,13,-25,17,10,-12,-13,9,3,10,-6,-22,-18,-14,11,-13,24,8,16,22,-18,-26,-13,-10,5,-25,0,3,-2,23,20,9,28,-26,20,-23,26,15,-16,-10,-6,22,-7,19,21,19,14,11,19,-6,25,-10,13,13,10,-17,-10,26,-25,-27,17,-20,-2,-15,-21,-20,13,28,4,-18,2,-14,27,6,-19,-4,-10,31,-2,-9,-26,-14,-20,-23,-23,19,-21,-26,1,23,-20,-27,11,18,-10,-29,-18,-12,-1,26,13,28,19,-1,-25,-22,14,14,17,-21,-12,-19,-19,23,-14,28,8,-22,-8,-13,-20,0,-22,15,13,-14,-24,-4,-20,21,10,-6,8,5,19,-13,-24,-14,-9,26,12,17,16,-17,16,-15,-11,-20,-29,15,8,24,18,20,-4,-25,-19,26,-7,0,-21,-19,-4,-11,-28,-28,-11,-19,-16,14,-6,-29,-22,8,-20,27,-4,-28,-30,4,20,-17,-16,23,27,8,-22,5,13,-8,-22,-19,12,4,23,17,-22,30,3,8,-24,19,-3,27,30,-1,-9,8,-12,-12,-17,19,-16,-15,26,-18,-4,-2,16,25,3,7,26,24,-14,-16,-24,13,-22,-29,-22,27,22,27,-2,-22,-22,-8,9,18,-3,7,-21,2,22,-21,-13,-16,-22,20,-14,29,14,-25,-9,-20,-30,-1,4,-12,-3,-9,32,-7,24,-6,-30,-34,-1,-14,-14,-8,13,-8,32,13,-34,19,57,-26,7,37,-4,60,25,20,-15,2,22,-11,3,15,14,6,28,0,16,-7,23,-11,53,18,2,20,11,7,-22,13,21,18,51,-25,-3,16,-27,56,10,23,28,10,-3,-16,30,-15,9,12,17,8,5,34,26,23,51,-21,-27,30,5,7,26,15,-29,22,41,-37,-12,22,-12,47,30,13,21,-21,-27,24,51,24,-20,34,38,-26,18,26,-5,-7,21,27,-15,16,-6,-11,27,-39,-27,-22,7,-21,-10,2,-16,62,-20,67,11,9,-25,-13,55,-14,-21,51,12,-1,51,-22,4,-1,20,12,-6,40,4,53,-13,4,9,-20,54,14,5,-16,-31,14,29,35,-6,-9,-30,32,47,-1,5,19,-14,-6,54,-3,-31,1,37,-22,-37,16,-24,37,29,-33,5,-20,0,26,29,-5,16,62,12,43,39,-1,-29,-19,46,-6,-6,48,-8,-10,45,30,-13,-5,32,-8,-41,22,-21,-11,40,-11,26,-32,2,-27,12,-7,24,25,2,59,-8,17,-29,-14,37,5,1,15,42,-15,50,-9,-18,-32,-6,-19,-21,6,19,46,14,-2,-4,5,37,20,-19,40,-3,28,32,44,12,25,9,-19,27,18,-24,45,35,1,44,16,-23,24,25,-4,-66,53,12,22,20,-7,-25,12,37,32,4,5,2,66,5,14,3,-27,-15,19,-10,27,-4,-3,21,2,-14,14,19,14,28,-1,3,10,19,-12,15,-23,-26,-11,-24,16,-20,21,15,1,-18,-29,22,24,7,-13,-17,-3,18,-23,20,23,14,-21,8,8,-24,-18,0,-25,-1,-3,3,-21,-21,9,22,-22,-10,-16,-24,13,-27,21,-3,10,-10,14,-1,22,6,1,6,1,-8,18,17,-20,20,-10,21,22,21,-27,2,-24,-13,-24,-13,-17,-12,3,-15,-24,4,-8,-9,-10,21,-7,8,-30,12,-13,-28,-24,3,-1,-7,-15,-16,-23,-16,-13,23,-28,-18,-9,30,-2,16,2,3,-17,-13,-19,-29,-2,-27,-2,23,-22,-15,4,12,16,-11,22,-2,-21,-11,22,-27,-16,-26,-4,-28,-9,-6,-16,-12,3,11,15,23,9,2,-2,1,30,27,-1,-19,18,11,8,-17,-11,27,23,9,0,12,-4,-21,12,-11,2,2,16,11,-28,28,2,-25,-23,7,-3,4,-21,-26,15,3,3,-20,26,25,3,15,-1,4,-21,17,-18,-28,0,-4,-18,-19,-13,-20,14,-11,-2,-3,-18,-1,23,19,-14,2,9,29,-9,25,26,-21,-7,-7,24,-26,-8,-1,-2,-27,-29,25,8,-10,-5,-17,20,-21,13,5,-10,27,-21,-27,13,29,-18,-6,-2,20,15,-19,-23,-5,27,-20,-14,13,-27,10,-16,-3,-29,7,30,27,-27,29,0,-7,-8,-8,23,-21,9,-15,-1,5,-26,-19,-22,-24,13,-14,13,-1,-27,18,13,22,-26,-13,11,-24,16,14,0,-15,37,34,-12,-7,-10,15,30,17,37,34,-17,-17,-16,-17,6,-4,-9,-3,5,26,24,10,-9,22,1,-10,-26,-17,23,28,-12,-14,9,63,13,-8,-2,-11,-20,-22,36,21,-24,-24,-24,19,16,25,15,-20,-1,-9,10,23,13,-27,-9,7,26,-28,-13,-7,24,36,44,36,22,8,29,23,11,-27,52,19,-22,-15,12,3,23,-24,-23,8,-35,-24,-9,16,17,16,-10,-17,-18,-29,-12,22,-20,-28,0,34,16,18,-26,2,11,-24,20,18,-14,1,24,-15,-9,28,7,18,5,8,-31,7,-1,-22,-26,-2,-25,-32,-28,-8,13,-15,29,35,-31,4,-16,-8,-21,-9,24,40,15,11,24,18,-13,-18,-39,23,-9,-23,4,6,14,2,24,-27,13,5,-5,-5,-6,19,51,81,11,-16,-6,4,18,5,39,13,17,-1,-16,-27,9,0,-6,-16,20,14,-7,0,28,-29,-16,-26,-16,-25,-2,-11,-18,-15,20,16,24,-11,18,17,6,-20,-9,25,1,-14,20,12,-17,16,-16,18,1,-20,-14,-28,24,-15,23,14,-27,-32,-23,38,20,26,8,48,9,-22,-1,-27,14,-17,38,24,-8,-9,-5,-23,17,25,-8,27,21,11,13,-25,25,15,24,-29,6,-35,11,30,-28,-23,7,77,7,15,-30,14,-15,-26,10,39,2,5,-12,20,-21,-21,-16,25,27,-2,4,-2,10,28,-17,-21,-30,-6,-8,-15,12,-1,26,13,20,-29,17,34,0,-2,-12,16,8,4,-4,10,3,6,8,9,25,8,12,-9,-21,13,-20,17,19,15,-22,-20,9,-25,29,18,21,-19,28,33,-18,-10,14,6,1,-16,19,-20,14,-27,33,15,-17,-8,-22,11,0,4,1,-2,-8,6,-28,2,29,-7,26,-10,5,-23,2,-1,12,7,11,-21,-12,26,31,-12,-1,-25,29,8,-23,-30,-24,1,-11,7,18,9,-25,19,-7,1,13,-20,-20,27,-14,-28,-26,13,11,-19,-12,31,13,6,9,-3,12,-8,26,34,-21,-18,-16,-1,-27,8,29,-10,-11,-16,-2,-24,-13,-13,-29,-27,36,13,13,-17,-24,-9,-22,-16,20,2,23,-23,-5,-9,0,6,25,-26,7,0,-18,-21,26,10,-19,40,21,3,-4,-9,6,-30,24,21,33,-25,2,-35,-4,-13,1,3,1,-14,17,26,41,17,-17,8,1,8,-12,-15,35,-1,22,19,-19,-28,-16,-18,-1,-18,25,-23,-25,35,-24,-7,29,-29,12,-22,-17,0,40,-5,25,31,-19,-14,-16,13,-25,-5,33,29,-26,-2,5,-24,22,5,2,27,25,-13,27,14,-25,-25,4,31,12,-28,-22,-10,35,-20,14,27,-15,-13,0,-20,15,-7,-4,-11,3,-8,20,-14,28,0,-22,-12,14,10,-5,-23,-16,-6,-25,-14,4,8,33,-12,-3,14,2,1,13,7,25,-22,15,-26,2,8,2,-33,46,0,-15,27,-29,-11,-7,1,-8,-22,13,51,-6,-3,62,12,-17,-2,8,23,10,-21,7,23,22,12,-14,-13,8,32,-7,11,14,-18,-35,9,5,13,4,23,29,4,31,0,8,14,62,-7,-24,4,-32,-14,-5,15,8,8,5,-17,-2,25,-6,20,15,-3,-12,9,-14,4,18,-2,-18,19,28,-6,-2,36,20,-19,25,3,-30,14,12,-4,19,15,2,51,-31,10,22,28,6,10,-9,1,37,7,6,14,9,15,-6,16,-9,7,25,19,-5,33,64,-22,11,16,0,-35,-11,-21,-7,38,11,19,29,-15,5,8,28,-13,27,-17,-15,-25,-19,21,2,22,21,15,-22,-2,-11,30,33,4,-1,-14,3,1,-22,-32,16,51,-24,-17,23,13,-29,19,9,-41,-10,-7,-28,-15,-4,-2,-21,-23,-3,29,23,40,-21,1,22,28,-30,-11,10,-34,-5,-31,-17,10,-32,17,30,-13,3,29,16,-14,27,-20,11,-21,-4,-25,-18,13,1,-17,-25,28,-12,1,49,-9,13,8,19,2,-1,-22,-19,-9,20,3,-2,20,-30,-11,13,-33,13,21,-13,0,27,35,-14,15,-8,27,-23,37,29,-3,39,25,22,-13,-13,-5,-10,-8,20,50,-32,6,34,-3,16,-22,-25,-4,20,-30,-12,7,4,35,23,19,-25,-27,10,25,39,-10,45,-2,-18,-16,23,-30,-18,-3,2,-23,24,30,-9,-25,-11,8,5,33,25,20,24,-23,17,-3,-2,11,7,16,-27,-15,13,16,-29,28,3,23,29,17,22,4,1,-19,14,30,23,15,8,0,-25,21,3,-21,-1,25,-6,19,-22,-30,11,-5,6,27,23,9,-25,-1,-3,-10,21,-23,15,11,22,5,-23,5,-1,14,17,17,-6,-3,15,21,-1,29,-4,24,8,-7,22,17,0,18,17,-5,18,-19,-17,-28,-21,5,2,-4,-12,-27,-13,17,-5,9,31,-3,-22,29,-23,15,-15,19,-27,18,6,4,2,2,-33,-17,28,-5,-27,-9,6,-31,20,-6,28,-25,-30,-1,-30,28,4,7,26,4,-17,31,-17,-17,-5,34,7,-9,10,-23,7,-23,-26,20,-11,-3,-29,8,-8,-10,-16,4,-9,-21,22,-21,7,-12,-18,-19,15,28,-12,-7,-21,6,-4,18,-21,3,22,14,20,-22,18,-3,30,36,-24,-2,17,-24,32,-18,32,4,21,-11,-16,28,-28,25,-13,-14,10,35,-26,-31,-14,23,22,26,20,-27,30,14,-23,20,-26,30,-26,12,23,-4,0,-21,4,15,19,18,-17,-14,-12,2,26,13,15,-16,-8,-17,-26,24,-3,-30,32,-22,1,-14,-10,-10,4,39,-17,13,30,-7,12,-23,-11,-15,19,10,-23,22,25,3,32,3,3,25,0,10,-24,-10,17,1,11,-16,3,-27,-13,8,-26,-23,-30,4,-1,-10,-2,2,9,7,6,-19,19,3,4,-14,9,-31,19,25,-8,30,-10,27,-15,19,-2,13,8,28,17,-19,-1,17,11,-8,14,-26,-9,-1,-5,-21,25,-25,-27,12,14,26,13,-31,-15,-5,5,-16,23,33,-23,2,-19,14,14,-7,-20,-22,-18,10,15,5,9,-20,-15,24,2,-26,-12,-13,25,13,4,30,24,1,16,-13,-26,0,31,34,-11,-2,-33,7,31,-29,6,-7,19,-21,6,22,-5,-31,22,-9,-25,20,-18,-25,-27,21,-17,24,-16,-17,-9,22,18,-2,8,-5,20,22,3,26,31,-5,-10,-17,28,-9,-6,12,23,-21,10,-14,30,22,6,-12,2,-6,-32,27,26,-2,29,-21,11,12,-9,1,9,11,23,-2,26,-7,0,10,-18,20,-2,24,-9,9,35,25,9,7,-12,-11,-26,9,26,31,5,21,21,30,-23,6,16,-22,-3,0,12,-3,8,8,12,-28,29,-20,11,-5,1,-3,16,10,-5,19,12,-15,8,30,-5,24,9,10,11,5,14,-12,1,20,-1,-6,-6,0,-5,-27,2,-6,25,32,-35,-26,8,2,-19,-23,12,3,-33,16,28,21,29,-12,-8,5,8,19,-2,26,17,2,15,27,-4,5,24,-21,4,-28,24,25,22,9,5,21,28,-18,-15,1,-13,9,1,13,0,-26,20,-2,6,4,-2,34,16,-16,30,9,-23,-14,26,-19,-13,-32,-12,-19,12,4,32,-23,24,0,2,-20,1,-17,22,-10,27,10,-2,1,-22,-19,-4,2,29,3,22,17,6,-19,-2,-7,-21,22,-24,-22,6,-16,28,-7,17,-14,-5,22,29,-28,-23,-2,4,29,18,-9,-12,3,-17,8,-4,15,-13,-5,13,-20,-12,-28,-15,23,0,22,21,30,-10,-1,5,12,29,2,-17,30,28,-29,4,-7,-2,-5,29,15,25,-6,-16,13,5,18,-25,-14,-17,-21,-27,-5,20,-3,19,-29,1,-10,5,24,-21,-4,-27,-22,-28,-3,-17,7,-21,-13,5,-19,-1,-25,7,30,22,-15,0,4,-5,19,-18,31,1,-8,29,-15,-14,-14,24,6,28,4,-8,2,30,-23,-29,-9,18,25,-1,-27,-21,-9,-18,-11,-2,5,-25,24,-4,24,-10,-15,-29,20,-24,-26,11,0,18,-26,-9,-8,-13,15,-11,19,16,19,-14,-1,10,1,-27,9,2,20,-9,-7,-9,-12,-22,15,-10,28,-27,-3,-2,-3,11,-19,-24,-21,18,-19,8,8,21,-19,18,19,24,31,-20,-28,-28,-12,23,-10,-2,-16,-5,21,-22,-15,-11,-25,9,-6,20,-2,-28,24,-11,-28,7,20,-4,-25,-10,-26,-2,-26,-2,23,-11,25,-7,-28,-10,-28,-9,-3,-13,0,-10,5,-23,-2,15,23,6,11,26,1,23,-14,-15,-27,27,1,30,-28,24,-20,-27,6,-6,5,7,-11,13,6,-25,21,-27,-29,-23,0,4,-19,6,-20,-19,-24,26,9,14,-11,29,-26,-14,-16,-12,-12,11,-15,-24,-24,-12,4,26,-5,16,17,-24,-1,-1,10,-2,-28,1,-24,-6,19,-17,25,-3,-17,28,9,-12,25,-21,25,20,6,25,-4,-20,18,-1,12,7,-13,0,8,25,21,1,-15,20,21,20,-1,4,-14,-19,23,1,-3,3,-1,18,-2,27,0,27,-6,1,-20,10,-22,-9,-28,-23,-20,14,-22,12,-12,-2,-8,-16,1,-28,-29,0,9,21,16,2,30,22,-26,11,-26,-10,-8,-29,18,-24,9,-5,-20,25,-3,21,17,24,30,-18,21,26,-22,24,-26,0,-17,-2,34,-15,-28,14,8,-22,-25,-3,3,3,-14,17,-23,-17,-12,-7,-13,-27,-17,11,-5,-31,16,-33,2,-3,25,-6,8,26,8,17,-7,-8,2,-9,3,-11,-4,-8,29,30,22,-20,-21,-14,8,20,11,-30,-26,13,-15,6,22,1,-25,-4,5,24,-18,-19,24,-15,-6,26,-18,-10,-8,-20,7,6,23,-5,14,20,14,20,-23,-16,2,-12,22,9,-1,-35,-25,16,9,34,23,18,28,-24,10,23,31,22,-27,-31,27,17,1,19,-14,16,-17,-25,-13,17,-28,16,-28,20,25,12,-9,-27,7,2,21,11,1,-1,12,-18,7,17,7,14,30,-26,-11,-4,-14,-12,-9,27,-6,-29,-26,-24,11,4,30,21,-18,-17,-16,-11,18,8,10,8,22,-23,-3,19,-10,-8,24,37,4,-22,-18,-24,-9,16} +#define CONV2_WT_SHAPE 9216 +#define CONV2_BIAS {38,-86,8,80,-99,-14,13,-74,126,-38,-127,2,40,-82,-1,18,0,-26,-57,-61,-38,20,-55,-54,-25,20,-65,-51,-45,28,-27,58} +#define CONV2_BIAS_SHAPE 32 +#define INTERFACE_WT {19,-7,5,11,1,-8,8,17,1,-12,-14,12,16,-11,2,4,-26,-14,14,10,8,-1,-12,-7,-11,-2,-19,-6,-10,7,16,7,-11,-10,-48,-9,15,5,58,23,-10,-15,12,-12,12,1,11,-8,-11,-11,-14,0,-11,-9,10,-5,-14,2,-23,-1,15,23,1,5,-8,-20,0,4,19,17,10,12,15,-4,-36,-16,2,-7,33,9,16,4,-6,-2,14,1,4,7,10,0,-19,1,2,6,35,13,5,-10,-1,-15,12,-14,12,20,17,8,3,10,-7,1,23,16,0,-2,-1,9,15,-3,14,-4,-6,6,-7,-9,-10,16,-5,-12,-2,6,-2,-1,8,-8,17,11,3,5,-12,-5,-13,-6,-11,-2,-5,2,-8,5,33,15,-7,-9,-3,-9,-12,-3,11,-10,11,1,0,-3,-22,-21,7,-2,49,22,8,10,3,-8,15,1,15,13,-10,13,-12,-9,4,10,5,-1,-18,-1,-14,-10,21,-3,3,12,-18,-7,6,-9,18,20,9,-7,-9,9,-19,-20,-5,7,30,22,15,0,11,7,3,-1,9,-5,-6,-3,-12,1,5,6,48,21,-12,-9,-4,-1,6,2,11,11,10,0,10,-3,5,-5,16,-3,-5,-5,-1,-5,7,-6,6,15,0,-2,5,-10,-7,-10,-1,-9,-2,9,-8,11,-4,10,13,-6,-1,2,11,-12,-11,13,5,-7,7,8,4,15,12,-5,6,1,-1,-14,6,-12,0,-9,21,-12,6,9,-27,9,10,6,45,-2,4,-2,-12,8,-1,14,-3,-9,1,18,-5,7,0,8,9,8,-7,10,-8,6,20,-12,19,-7,-14,2,10,-3,12,12,10,-17,-11,1,3,0,6,10,19,5,1,-4,3,9,-14,-5,-9,4,-5,13,4,-19,8,6,26,8,-2,11,-14,11,1,-7,0,15,7,-12,11,2,16,16,21,-4,-9,9,-3,7,10,6,2,-13,11,-10,-11,-7,4,-2,6,2,14,-12,-3,-6,12,8,12,-15,2,-11,4,4,0,-9,-8,-6,0,20,11,14,27,11,12,-8,1,15,14,4,1,5,-1,-4,6,16,8,21,-3,0,25,-6,3,9,-6,-5,11,10,-7,0,0,11,16,5,5,12,-4,6,-14,11,7,-9,30,-1,7,-14,-11,-7,6,-4,28,-3,17,6,1,1,-9,-1,-14,7,13,3,9,-14,8,14,-4,2,9,1,-6,7,-7,-4,5,13,3,8,-9,11,-12,-1,-11,0,13,13,14,6,-12,4,7,11,15,4,11,-11,-6,-2,10,-9,-5,7,9,0,-9,-10,9,4,2,10,6,11,1,1,11,-6,8,-7,-4,7,-2,-1,9,1,-15,4,-1,12,5,4,29,6,13,-2,-8,-4,11,26,-2,-1,34,13,7,-9,6,33,1,-9,66,12,-5,6,-7,14,13,18,-2,-11,1,8,-3,0,-5,6,-5,4,1,9,-6,14,25,14,9,-9,-5,1,0,22,11,25,11,2,3,14,0,5,0,10,36,17,5,-14,15,-9,15,-14,4,-4,3,-3,-12,-4,14,22,33,14,14,11,4,9,4,10,2,-4,2,-11,-1,23,-1,-11,10,3,4,12,-12,-1,-7,-9,4,-1,-2,-2,13,7,-10,14,10,13,16,-4,-16,-1,-6,-1,0,11,13,12,-7,4,-18,2,0,8,-5,12,8,-14,23,22,-2,7,-8,-9,-13,26,3,4,27,-10,10,-13,-11,22,-20,-16,41,14,-7,3,1,-9,19,3,10,-11,6,12,15,1,-34,8,2,-2,-11,5,-6,11,15,5,-1,-2,8,9,14,15,28,13,-14,-16,3,-12,3,19,12,6,35,13,14,-1,6,-1,-7,-11,15,0,7,3,-2,-1,8,21,54,27,11,3,-4,-15,11,7,24,-5,19,5,2,21,-11,-11,0,-15,10,4,11,-14,6,14,-12,2,5,14,8,-14,-3,11,2,13,17,5,-1,-3,13,-1,-1,-10,-5,-13,5,-7,16,13,15,-13,-14,4,-9,9,19,6,-1,9,-6,0,-20,3,14,2,1,-7,7,3,-54,-31,15,12,20,25,-8,2,-4,0,19,6,12,10,0,-2,-1,-12,-6,12,1,13,-23,-14,4,-9,3,7,3,-17,-2,-3,4,-17,4,25,12,-13,0,10,-35,-22,-5,-1,16,11,11,14,9,-5,14,8,-9,2,6,16,-20,3,20,1,13,2,5,5,-3,-12,-12,12,21,-1,11,9,-14,-7,9,-5,-4,13,-4,10,-5,13,13,15,6,-8,3,15,15,2,19,-2,3,-1,4,7,3,-15,9,-11,7,-11,-12,-2,-5,-6,3,6,-11,4,-22,-21,-6,12,3,13,-3,-8,-3,9,-1,-20,11,-6,26,7,12,3,-32,-6,-18,-14,26,27,4,1,-5,1,0,10,-1,-7,11,-7,14,-11,-19,3,-3,-12,-18,-17,-6,-19,27,14,7,-6,-4,-5,0,-14,16,25,5,9,-7,-7,-1,-1,6,5,34,26,-10,0,-1,11,9,-8,-3,-4,-9,12,-7,-8,-2,23,38,11,-5,-1,-18,5,12,1,22,1,-6,-7,-10,-16,-4,-6,-4,7,-11,7,-5,-5,13,-5,12,0,7,10,13,1,4,-10,5,2,10,2,6,3,-1,13,12,-16,9,-7,-10,9,-5,5,6,-2,10,-5,2,-1,7,13,-2,7,12,-5,1,-6,2,12,17,-11,0,-6,3,-8,-3,-11,21,-12,-11,5,6,-6,5,5,6,-12,17,5,-11,9,3,-6,-4,16,2,-12,-6,-13,11,1,-6,-5,-4,-1,12,-19,21,12,3,7,3,-1,-16,4,-7,1,12,12,-11,13,1,-12,-10,10,15,0,-11,3,6,-5,11,-7,-5,2,-9,-4,4,15,13,13,19,-2,19,13,-6,-5,-11,12,0,0,2,3,4,2,0,-11,-14,-8,-3,13,-1,-6,4,15,-15,-6,-2,8,12,-5,-7,-5,2,10,19,5,5,5,-7,10,1,-9,-14,4,-13,14,-9,-16,-13,0,-4,13,-7,7,-2,-1,15,-12,15,-6,17,17,-8,8,19,3,7,-13,-3,-11,5,11,-10,15,-3,-9,7,1,16,1,2,15,-10,9,-9,8,7,-6,-6,-12,-10,12,19,-8,22,2,-4,-7,-9,13,-7,2,-4,-9,-7,-9,5,-7,14,-2,11,-15,5,-3,6,5,3,6,24,18,3,4,-11,-6,7,2,1,7,5,7,1,-10,16,0,3,8,3,-20,-4,-1,-5,8,-2,-2,5,6,5,5,-3,12,12,8,12,0,-11,4,14,16,-13,-12,-1,6,-3,1,-6,-9,6,9,1,-12,-4,10,-15,10,21,3,-8,-11,8,10,-1,9,-14,6,25,-8,15,6,0,13,-22,-15,34,-17,10,11,7,15,22,-3,5,-1,10,-15,6,-10,-9,14,-12,6,-5,-7,4,15,34,21,-22,-6,8,-1,16,14,17,10,-1,-11,-14,-9,17,11,-14,-9,0,-9,-3,4,-13,-5,10,-1,4,-5,7,-4,20,14,24,14,12,0,2,11,9,-16,2,4,17,19,-6,1,-2,23,-3,-17,-4,-13,16,-7,6,1,13,5,-3,6,-9,-16,-1,-11,12,1,-2,-13,10,14,23,1,-2,13,-3,-15,9,-7,17,-5,0,-11,-22,-1,3,-4,-7,0,9,9,10,10,-9,12,13,8,-20,-5,15,6,2,-15,18,37,-44,-4,26,0,-15,-1,-2,-2,20,13,-13,-9,9,-10,-6,-2,-31,-10,-12,13,-15,-11,1,19,21,1,-4,-21,15,8,-5,28,12,14,-21,-15,14,12,19,6,4,12,26,16,4,10,-14,7,5,11,-2,0,-14,-13,-6,9,-2,16,30,14,8,13,-15,-12,10,5,-2,7,1,2,6,27,-36,-18,-6,7,-13,-6,13,7,0,18,6,-2,4,2,-1,-10,-24,-10,6,1,7,-2,-7,-14,-12,9,10,7,-9,-3,12,-10,13,-14,8,14,-25,3,10,17,10,-4,-11,15,3,-8,1,-18,-4,-13,-6,-4,17,-6,-37,-17,12,-3,11,8,4,4,9,-11,-8,-7,-6,-9,1,-10,6,0,5,3,-14,-12,-12,12,7,-7,13,-4,-6,-13,-15,-4,-18,-14,21,-2,20,8,1,3,-4,-11,11,-7,-8,9,1,-5,11,-1,-10,-14,-2,-9,-10,11,-7,-12,14,-7,-10,4,3,7,1,4,-1,-4,-11,-7,2,-14,4,2,10,-6,16,-8,-13,5,10,-5,12,7,-5,-4,9,-1,-12,0,-3,-3,-9,7,14,6,-10,-7,-6,-5,13,10,5,-4,-6,13,14,-13,9,-14,4,-1,-9,13,14,4,14,2,1,-1,-15,5,2,6,2,-16,1,4,-23,-22,7,6,12,-7,4,-10,-6,-9,7,-2,9,14,1,-12,12,3,1,-1,-1,8,-17,-17,-11,6,6,11,18,-6,11,-7,3,5,4,6,4,-21,3,-8,-20,-4,5,6,19,4,4,-13,-11,2,11,-8,-5,13,-1,-7,10,-10,10,-7,19,7,3,4,-17,8,1,-7,6,11,15,5,-11,13,5,-13,1,-2,14,12,-4,0,3,15,-4,11,1,13,8,-3,14,-9,2,-5,13,-10,-1,-4,-10,1,13,-2,11,9,16,11,8,5,5,10,7,12,13,13,4,-12,13,3,1,2,11,6,13,-7,27,-11,-3,7,6,15,-2,14,16,-5,-17,-15,2,10,-1,9,13,-1,1,6,-11,-11,11,15,12,6,-1,10,20,7,6,8,-1,-17,-15,2,-5,-10,19,9,-7,-13,-1,0,-9,8,1,-8,6,-7,2,5,13,-14,-15,-5,-14,5,1,4,6,13,0,1,13,-7,14,7,-11,7,-11,-13,-3,7,0,8,8,1,15,8,14,-6,-7,-3,-12,-7,0,-1,10,-12,11,0,17,7,18,10,1,10,-2,-5,9,-11,15,12,11,-14,6,9,7,-5,11,1,-12,-11,-2,12,2,13,27,9,7,8,2,8,11,1,-5,5,6,-1,14,-28,10,15,-8,-3,15,-21,3,-13,2,-4,0,6,-12,0,3,4,-11,-10,19,-4,18,6,-8,5,5,9,-1,-3,-6,-20,-2,-14,7,13,3,12,-11,-19,3,-10,6,4,-12,11,22,-3,-10,-6,1,8,3,-10,-7,14,-6,-16,3,15,30,15,33,14,-10,10,9,3,-4,9,-5,-8,-6,8,0,-2,7,8,-2,8,3,-11,14,-11,22,-5,-11,9,10,-4,2,-1,1,-8,15,-12,-8,5,7,21,-15,-3,-6,8,3,-14,12,1,8,-5,-26,-12,15,-1,15,-4,9,6,-3,8,12,5,7,22,2,-5,10,-8,3,-31,2,37,-28,-7,14,0,13,-9,10,7,10,14,11,-14,-19,-3,16,11,-23,-5,-5,-1,1,20,22,7,17,-2,-7,-10,8,17,6,-5,12,19,-6,5,-12,6,15,1,10,9,6,11,13,-2,5,15,-5,10,-7,1,3,8,16,11,25,15,18,28,-1,2,-3,-16,4,-3,17,4,-9,-21,7,-1,-12,-6,-12,-2,13,-8,6,-13,15,11,-8,16,2,-15,13,-8,-5,-2,-4,-8,-11,2,19,15,-23,-3,-9,5,-2,-16,-3,3,5,-5,-11,-15,11,9,-1,-5,7,-4,4,8,10,-5,19,13,-2,-9,17,-14,9,-4,12,24,-61,0,4,12,14,10,15,2,-6,-1,5,-9,4,-2,2,11,-17,-6,9,4,-4,6,6,2,12,14,-3,-10,-10,1,-1,19,9,8,-25,-1,1,3,3,7,-1,-8,-2,-1,9,-5,-3,15,-1,2,6,-5,5,-5,-10,-11,-1,13,20,3,1,-12,-3,-3,12,14,-1,-6,10,-5,16,6,-16,0,8,-9,-10,-17,-9,-9,-9,-7,-7,-13,-10,4,8,-4,-6,10,-7,-2,-6,1,-13,4,-2,11,-2,7,-8,-2,0,2,17,8,-3,-14,-3,12,-9,16,4,-4,9,7,-10,4,1,-16,15,14,-2,-14,-15,14,0,2,15,15,-1,-6,-11,6,11,8,-10,-1,-9,6,-11,-7,5,10,-1,-6,10,0,3,7,-2,11,-6,-5,10,0,-15,5,-2,-16,-10,-6,18,-20,-11,-10,6,-9,-13,-3,-11,0,7,0,13,8,-9,12,3,5,-10,20,13,6,-6,11,2,3,4,-1,6,13,-5,-3,-11,13,7,-7,10,12,-5,-4,2,10,0,-3,-9,-8,0,12,-14,9,1,11,1,-2,23,10,8,-8,0,13,-4,12,5,15,0,-18,-4,-12,0,0,-12,6,2,-9,-5,0,-5,12,3,9,15,5,-5,12,3,-6,4,-2,10,6,13,-4,-3,-3,0,1,19,1,-1,-13,-7,5,2,4,-6,3,-5,-15,0,-4,14,-6,12,6,-2,2,10,4,7,-4,14,2,-3,8,9,-8,0,13,17,-11,11,-9,-6,10,-10,-11,33,8,-13,-11,-3,-9,-5,-14,12,-5,16,21,5,7,3,-1,30,-3,-7,-6,-6,-9,-14,9,5,20,-5,10,6,5,-8,7,18,-13,11,-4,-10,5,25,14,-11,-9,-9,9,-9,-10,12,-5,4,10,-9,11,-1,14,-2,-1,0,-17,-3,10,-5,-4,-13,-5,-17,7,12,23,15,9,36,3,8,10,18,-4,2,26,7,-15,26,-13,15,-3,6,6,-20,11,44,-8,5,12,2,5,22,18,13,7,-2,3,7,5,-12,1,12,8,14,-3,4,22,12,0,16,-25,13,16,26,19,21,23,19,-17,13,1,3,1,-12,10,18,19,3,-3,11,-13,-14,5,11,14,-4,-10,4,18,34,22,36,16,0,-10,-15,-10,13,-2,8,-2,-9,-15,-8,15,-4,9,25,0,1,14,4,-7,-2,-4,-4,15,-13,2,15,5,17,4,-11,-3,-3,-17,-3,20,-11,-7,13,9,8,-13,0,-4,-6,9,3,9,-11,14,3,-1,18,-4,2,-6,-9,-12,14,6,-15,-16,37,10,-3,-32,23,30,-19,-2,50,4,-3,7,-4,-4,16,22,0,14,-4,-27,14,5,-12,3,-8,-3,0,-7,26,22,28,14,-12,-20,-4,2,5,8,28,12,14,-16,-11,-13,1,29,-14,-3,46,13,10,3,6,-11,14,-11,-10,9,-14,-6,-3,-4,27,4,37,13,-12,11,10,-3,0,-1,16,3,11,-17,5,5,1,-10,4,-2,-8,13,7,12,1,-5,4,6,4,-10,-12,6,19,0,-7,-1,-17,6,-1,23,7,-6,-7,-2,-20,-12,10,-10,-7,14,1,-3,-12,1,-11,-13,-1,-2,-6,11,13,0,17,13,-9,-8,14,9,2,-34,4,40,-39,8,16,-11,-4,0,9,-1,1,19,4,15,-21,-3,15,6,-13,17,2,-5,-9,-10,19,21,17,-1,11,-11,-10,3,13,10,29,19,-5,4,8,6,-2,25,13,3,17,18,2,11,-1,9,11,-8,-3,0,-2,-6,-7,9,13,11,37,4,-3,-1,6,4,9,-6,-10,-2,7,-11,-9,18,-20,-1,13,-5,-6,-4,-4,-7,11,8,1,3,5,-10,3,13,0,12,11,8,-2,-13,20,19,-20,6,17,8,-10,4,1,-10,3,16,-7,6,0,-5,-11,-7,-4,13,2,-3,1,2,3,19,-3,11,-3,-10,13,-8,18,25,-41,3,31,10,-8,5,-8,9,9,9,-14,-5,8,-1,13,2,-29,-11,13,-6,-16,5,5,6,13,14,13,-10,6,1,20,27,3,9,-3,-1,6,-9,3,4,9,1,26,6,-3,11,-11,11,1,10,4,-5,-7,-21,1,-1,-8,-7,37,3,13,-14,-2,-7,10,0,15,-8,1,-21,20,24,-26,0,-13,-16,7,-11,14,-7,-10,3,-11,-10,8,4,8,9,5,5,10,13,2,1,-1,11,-1,-4,-5,-15,-3,2,2,6,-12,-14,11,-5,17,-6,10,5,4,13,-7,-15,-7,4,1,-5,-11,-10,20,-3,0,8,27,-7,20,-13,-5,6,9,-8,-6,-1,2,2,15,8,0,-6,14,-10,-6,1,17,7,-11,-3,15,5,-2,4,-1,-15,3,7,-7,-12,12,21,8,-9,-1,8,14,12,-1,-12,-7,1,-13,-10,-7,3,13,8,-15,12,4,16,7,18,27,5,11,3,1,1,4,10,11,2,-1,10,-1,6,15,-10,14,9,1,12,13,12,3,12,-8,0,-2,-13,-5,-1,-3,-8,5,17,-8,-1,0,12,10,13,16,11,6,-4,13,16,-4,-7,-9,-3,5,-7,10,12,9,-8,4,14,9,-3,14,5,0,-10,-9,-9,22,7,9,13,14,-3,25,3,32,-3,-8,-8,12,-9,7,16,-10,-5,-11,-8,-3,8,9,4,-6,11,6,13,18,13,29,-2,3,0,9,-11,-3,-6,2,21,18,2,1,-9,-2,10,-10,10,15,12,11,3,8,-6,-10,3,14,7,-5,-4,19,8,34,-1,21,20,6,3,2,3,-14,-4,0,-1,-2,-11,5,-10,16,22,21,-10,9,4,-7,8,3,-1,-8,14,-1,18,18,-5,9,-9,11,1,-16,-14,31,2,11,6,-2,-11,-12,-4,19,-11,18,-3,9,5,-12,5,11,-5,33,-4,1,3,11,0,11,18,11,-12,14,-1,22,-18,22,-7,5,20,37,-3,5,-7,7,5,21,18,-4,-5,2,-12,3,-7,-2,6,5,7,-9,12,22,-11,22,5,-14,-15,10,-4,33,12,29,17,-17,-11,5,4,14,-3,-8,-1,31,8,-1,13,2,3,-1,2,-11,-3,12,-9,18,9,23,12,32,9,-5,-12,-7,-12,-13,4,21,16,6,-15,-1,10,4,1,6,5,9,3,-7,-10,21,10,-8,0,3,-11,15,-12,23,16,-3,-11,-19,-3,17,-12,-9,-1,1,8,-21,8,19,-2,6,5,-3,-9,5,5,-14,2,11,-7,8,-7,4,-2,28,23,3,0,15,-5,-10,-12,26,-1,-12,12,29,10,-9,3,-7,-5,16,20,11,3,2,-6,-12,-12,1,7,9,12,8,25,30,1,18,5,-9,-3,-3,18,29,15,25,13,-24,-4,-3,4,-2,-9,11,15,28,20,-5,-1,-4,7,-14,9,-7,15,8,13,6,16,26,24,50,29,4,11,-7,10,15,-4,15,11,11,-1,16,8,-1,11,-13,-2,-3,0,-14,7,-1,-3,7,5,6,-11,15,5,4,-4,-10,-13,8,2,20,19,-11,-14,11,15,3,6,15,-8,-4,0,-20,-14,-8,6,-9,-1,16,-10,-9,2,-2,-15,13,2,3,-12,5,-6,2,-24,1,29,-23,-7,34,-2,-9,11,-7,-10,10,18,11,-13,-16,1,-8,-6,-23,-2,-8,6,1,10,23,26,9,1,-7,-19,-13,6,18,5,14,20,-10,-24,-7,14,-9,12,8,5,26,0,4,3,-12,10,-10,-4,9,-7,3,-15,7,6,21,-4,43,33,-9,7,10,-14,-8,1,13,-7,7,-12,22,4,-24,0,5,10,10,3,-11,-1,9,-7,3,-7,15,-11,5,-10,3,13,13,-11,-6,-12,22,18,-1,-15,14,-10,-6,-22,-8,12,4,-10,-20,-6,2,16,1,0,12,-9,0,-13,15,9,2,20,1,-4,16,-12,8,-15,22,29,-15,-10,9,13,9,14,-5,-1,13,10,-1,3,-18,-1,7,-3,-5,0,10,7,-12,12,0,22,2,22,-14,-6,7,-10,3,10,17,13,1,-17,14,-8,10,4,4,-7,16,20,-2,-11,-7,1,-10,11,8,10,3,-20,-11,10,-4,14,21,22,4,-12,-8,-14,4,-5,-2,12,12,-12,10,24,-16,1,2,-3,0,-8,2,10,4,18,5,3,14,2,-2,11,-14,0,-2,-13,3,-7,8,18,-10,-5,16,2,-5,7,11,2,-9,5,9,-7,-7,-7,14,4,24,21,4,-5,17,-13,2,17,9,-3,20,-6,5,-9,13,3,17,13,46,1,8,-9,11,-1,12,5,3,2,8,-4,11,9,-5,17,5,-1,12,8,27,3,17,18,15,-8,7,14,18,15,18,17,-4,5,-1,-3,15,16,-3,5,15,0,-14,-10,15,-7,14,-2,-1,3,5,8,17,2,17,7,22,12,-1,8,-14,15,15,-6,16,16,-9,-11,5,5,21,-7,-4,-13,12,4,9,-6,19,-4,8,5,-14,13,16,-8,19,-6,6,11,4,10,28,3,11,14,19,13,11,-8,-10,-8,15,-11,11,6,3,20,15,-12,19,11,-7,11,-7,15,15,-2,10,-6,36,1,4,-5,38,5,7,-1,51,15,-10,-2,14,-2,10,-4,-12,-10,-5,0,7,10,17,4,18,13,9,13,9,-5,21,27,4,-13,-1,5,29,11,14,27,11,7,8,15,23,-6,4,5,48,14,12,11,12,5,-3,-13,-7,5,-12,6,19,13,17,11,42,17,4,12,7,12,8,9,16,0,6,12,12,6,-6,17,0,3,3,-14,-6,3,27,18,-12,6,0,4,0,11,1,3,-11,12,8,-6,13,20,7,-4,14,-8,1,-9,0,-1,4,-2,5,2,13,-1,15,-4,21,10,10,10,8,-10,23,10,-16,9,31,9,23,-28,44,19,-3,13,59,16,-10,6,-9,9,18,6,10,-9,-13,-3,1,4,17,15,2,-1,5,0,29,12,44,21,-11,2,15,-4,19,9,23,6,8,5,0,-9,25,23,7,8,35,7,-2,15,-2,3,-11,-3,0,-5,3,-3,-3,22,21,15,52,8,13,-12,6,1,3,-11,18,13,0,-10,26,10,-9,3,15,-3,-5,15,-8,-7,1,18,1,9,-14,-8,7,-13,14,9,-11,-4,8,10,15,12,0,-9,-6,-8,-19,4,-6,0,-1,-11,7,-6,5,6,-2,-4,31,4,-9,-11,-1,-14,20,1,-12,-6,4,-3,23,-15,43,18,-12,3,40,22,2,-6,4,-14,21,5,0,13,-15,-3,8,-5,-10,-3,-1,14,5,7,15,18,43,8,-3,-3,13,7,29,21,22,24,-14,-3,10,-13,26,-3,12,-4,33,8,11,-10,0,-7,-13,-9,-2,-13,-7,10,2,-3,19,1,56,11,11,-5,-13,2,5,6,22,17,-6,-2,12,15,0,-6,-2,-16,6,8,-8,9,2,-12,2,13,-5,-8,10,-7,-4,-2,9,-11,-11,-17,7,9,-12,-8,3,13,-18,8,21,8,-5,10,-10,2,0,7,-2,-7,17,3,-7,6,-5,-13,2,2,-7,5,26,-3,-1,-22,35,27,-14,-4,36,20,10,12,-6,15,14,14,15,13,-16,3,18,9,-8,-14,-7,-8,-16,-6,26,17,21,27,0,-21,13,10,33,-1,37,10,-20,-23,-12,4,1,12,-7,-8,14,6,12,3,4,11,-12,6,5,-1,-6,-5,-1,7,13,-6,51,23,4,15,-4,-8,9,14,-5,13,-4,3,17,13,-21,11,-7,-9,4,-7,-7,15,8,-1,1,11,1,-7,12,10,3,0,-12,8,3,2,7,8,2,0,17,17,-11,-15,7,-2,-9,3,0,-9,6,2,-5,6,11,10,11,-4,0,11,1,-3,6,4,-3,-11,6,-11,16,9,-22,10,4,11,8,10,-13,-6,24,14,12,-9,-2,1,-5,-3,-20,-7,-2,7,-3,9,21,-3,27,-5,9,-11,11,4,25,-1,12,17,-4,0,-12,11,10,18,-12,5,6,5,5,-12,11,-7,-5,-7,-1,1,-15,2,-10,2,14,-1,32,21,3,-5,1,1,11,3,0,-9,-10,-2,6,18,-3,-8,-5,-15,7,5,-1,0,-7,-7,12,8,-12,10,-6,5,-12,6,-12,11,-13,6,-15,-14,-6,4,4,5,-13,-11,1,1,1,7,-7,11,-2,-8,0,8,2,-9,15,15,6,-3,-10,-7,-3,2,-21,-3,17,10,-5,-8,13,-1,-40,-6,-13,-15,-7,-4,13,11,0,4,12,9,-13,7,-3,15,6,2,-14,6,4,13,-1,-3,-17,5,-8,-10,2,11,-17,5,-16,13,1,11,5,-13,13,-3,-17,5,5,-11,10,-4,10,13,13,0,12,14,-12,1,4,3,-17,13,13,10,9,-13,15,8,5,-14,12,9,12,-14,1,5,-9,-4,11,13,6,0,4,1,-5,-8,8,-15,-13,-7,3,-4,15,0,5,-3,-12,-10,6,12,-12,10,4,15,14,-10,16,13,6,9,-4,2,12,4,-8,3,19,8,11,-3,2,1,8,-8,0,1,-8,1,-13,6,-7,10,-29,12,-15,-9,-13,-9,12,-13,8,-12,-4,13,-12,11,2,-11,-4,-11,-13,7,10,1,-8,-11,-17,18,-2,1,-7,6,8,-16,2,13,2,6,-5,1,3,9,-16,3,2,-5,0,5,6,0,14,15,2,7,5,11,4,-8,-1,-1,-4,-7,9,10,10,-2,-18,-12,12,2,-11,7,8,0,-5,5,-2,-14,6,5,-2,1,-8,-6,-5,13,9,6,4,3,13,-3,-1,9,11,6,17,17,6,9,9,-8,7,1,-9,-8,0,6,11,-12,4,8,-5,1,16,14,16,7,-6,-3,-7,2,-8,20,4,-3,1,12,12,12,-25,19,8,3,15,11,0,0,-14,-11,2,15,2,3,-8,0,4,-1,-11,-11,7,-3,4,2,11,20,-1,-10,-14,-1,-8,-1,-1,32,-14,2,-13,11,-1,-11,4,-6,-1,15,-13,8,-13,8,-11,-14,11,-10,-1,11,12,6,-12,3,2,11,9,-10,-8,5,5,-8,8,0,-12,9,5,10,-8,13,4,12,-8,13,16,-8,-4,2,-12,2,-11,-15,7,-2,1,7,-5,-4,-7,-13,-5,2,-9,8,7,11,2,2,-5,-5,4,8,-2,1,-3,7,-3,14,9,-3,-6,8,2,3,16,14,11,29,0,-14,-5,15,2,7,-11,32,-8,-10,-2,7,3,-3,14,7,0,-14,4,15,4,-9,-9,-5,-11,-1,1,-3,12,-7,2,26,11,10,10,-7,0,-9,-8,19,-4,-7,5,8,6,5,-15,15,12,12,3,14,5,-14,13,3,18,-10,5,-14,18,4,7,-7,-6,2,9,-5,14,8,-1,-12,16,9,-1,8,7,0,-4,12,-13,-2,-10,11,-4,3,-6,6,0,-10,9,12,15,9,8,-2,4,4,0,8,-4,11,10,16,-1,-11,15,15,9,10,-12,9,17,1,3,13,3,13,7,-2,6,-9,19,5,14,2,-6,24,-1,3,7,-9,15,1,-2,46,-6,-13,13,-6,1,-13,8,-3,-5,-14,13,-1,16,-1,5,4,13,11,-1,3,14,-4,12,14,-10,4,-7,0,-13,2,8,29,3,10,-7,6,14,0,10,7,-14,-11,10,-3,15,2,2,-3,-8,-7,5,13,8,-8,-10,-3,-10,-1,-8,14,4,12,-10,11,-5,-6,-7,13,5,-7,8,20,12,-10,-5,-9,-6,8,2,3,17,-8,2,-14,14,15,12,-2,7,6,13,-9,10,14,9,15,3,-10,15,1,-10,-13,-1,13,-7,-14,5,8,0,5,0,-4,4,-11,-3,12,-4,-1,14,15,22,4,16,12,-2,-2,-7,28,-7,-1,5,4,-2,-4,-6,2,16,8,15,1,13,-19,13,-7,-2,9,5,-1,13,-7,16,13,-3,1,6,-2,0,-8,-6,2,-14,4,11,1,-8,-6,16,18,-11,1,8,-2,6,-9,-12,5,16,1,5,11,6,-16,10,-10,8,-9,-12,5,-8,-13,6,8,0,-12,-7,15,16,7,5,0,-7,12,11,-5,15,11,5,1,-3,-14,-10,-5,-7,-11,-5,-12,-4,-3,-10,-3,-11,13,8,8,10,-1,11,-13,-11,0,15,-5,3,7,3,10,-16,-10,15,-10,14,5,-9,-8,-6,5,-26,13,-4,0,-3,-4,8,7,-38,2,2,-3,4,-8,-12,4,9,-11,10,5,3,5,-8,-7,-6,7,-10,-3,-13,13,-10,-6,3,24,-10,8,-16,-12,-1,12,4,5,-14,-9,-19,6,-6,9,-17,2,12,13,-12,1,-14,-5,13,-6,3,8,-17,-13,8,7,-15,-9,-3,-8,6,0,0,14,-7,-8,-12,1,-16,8,-10,1,5,7,15,-9,-7,-13,9,11,-11,7,16,15,3,5,16,-2,12,-2,8,-11,-17,-13,-1,-13,5,1,4,-9,2,1,-8,-7,12,3,-9,-6,-5,-2,-17,4,8,-3,-8,13,-17,13,2,11,-15,16,14,10,-26,4,19,2,-40,24,11,-6,2,-10,-6,-6,13,-10,6,-7,15,-3,-6,-3,7,2,4,-5,-16,-12,-5,2,-19,12,-2,-13,8,-8,3,-6,2,34,-11,4,-21,11,8,-5,1,20,-13,15,14,10,11,6,-1,-13,-6,-2,-17,1,-2,13,-4,8,12,-1,-7,15,14,-12,7,9,-2,-6,13,4,9,16,-9,15,5,14,-14,-3,13,-5,-10,-1,6,-10,2,14,7,10,7,7,-2,11,-6,9,-8,-2,-4,3,-5,2,14,-5,3,-9,-11,10,-15,9,-7,9,-7,13,-1,-9,-13,1,-9,3,6,-1,-20,16,14,-7,-18,9,20,2,-26,21,-9,2,8,7,-5,-8,-6,-8,9,9,9,-10,-1,15,-7,11,4,-13,8,0,-16,-5,-9,21,-13,6,-9,-6,-10,-14,-9,35,15,4,1,-5,4,8,-15,13,0,-4,-7,0,-10,4,12,-6,12,3,-15,4,13,-9,2,8,-10,5,-12,11,-11,1,-10,12,3,-8,3,5,12,17,-14,20,15,1,4,8,2,-3,-6,5,12,-7,-8,-10,15,-2,13,-3,-11,8,-6,6,-5,9,-14,23,-3,-1,4,-11,15,9,-8,-9,-8,-5,15,12,1,4,-10,9,9,-6,-9,7,-4,8,11,16,-13,-9,-3,-15,17,7,-13,26,4,-5,-10,-2,-11,-1,-8,-12,-1,7,4,-13,15,-14,-14,-4,16,5,-17,-2,-14,11,-8,5,-7,7,2,-13,4,-6,-14,26,-11,-13,-10,4,-5,-6,10,5,14,-5,-1,-14,2,-5,-12,-7,-9,0,0,14,4,7,-7,12,12,-9,-10,8,-6,-4,-5,-6,-9,-13,15,-11,-5,15,-9,26,-5,7,0,-8,-1,0,-10,3,6,-14,12,12,-1,-11,-12,9,7,11,20,-11,3,3,24,11,-3,1,-8,-12,3,-6,4,-4,13,-11,16,-11,11,-1,16,-4,3,5,8,-4,3,1,18,24,-8,8,20,12,5,-8,17,50,-13,-15,2,1,-8,0,6,-7,-5,-12,10,6,15,-13,-13,8,10,-1,13,-4,-2,-11,-1,32,-8,11,17,-6,-3,16,1,12,-14,10,7,14,12,-5,-3,14,-9,15,13,-1,-12,6,-15,13,13,-11,-5,-12,-10,-14,-3,-4,-1,-10,13,14,14,8,3,3,12,11,18,1,-9,-6,-5,23,10,6,-9,9,13,3,-8,-8,-5,13,-12,6,8,-2,-9,1,-1,-6,14,-3,13,5,24,5,2,-1,-10,-10,5,-23,-2,11,16,8,-2,0,16,5,-8,5,8,-7,22,6,-5,-6,-2,15,22,16,31,-7,-4,-2,23,12,10,-5,-9,-6,10,-9,-2,-9,16,-12,10,6,-11,-25,15,12,13,9,24,-3,4,7,20,30,6,-15,3,10,-7,10,7,16,1,3,8,-15,3,-13,24,14,-3,6,11,13,13,10,1,5,-11,-9,-10,-7,6,-7,6,-5,3,8,-5,11,-13,8,9,-11,9,0,21,-2,22,-6,12,10,9,-1,-5,10,3,7,9,6,12,2,-12,-3,-10,-5,9,-15,-10,-11,-9,12,0,14,-1,11,8,-13,7,14,-7,-8,-8,-2,-7,-9,-8,0,0,8,10,13,-13,13,-6,5,-2,11,3,10,-13,-12,-7,-10,-4,0,-27,-9,15,13,11,4,13,1,-9,-12,14,6,13,-10,-4,11,-10,5,4,-12,-13,2,3,-1,3,21,-4,2,0,-8,-15,-10,-16,23,12,-10,-14,12,4,-6,-21,10,-6,-12,7,14,-4,14,-12,8,16,-15,-10,5,-11,-13,-1,2,-10,6,3,8,-12,-2,-11,9,-8,-13,-3,11,17,11,2,-6,2,8,-9,-14,-1,5,7,-2,-8,4,-6,-10,18,-10,-9,16,1,-7,-8,-4,4,11,16,34,5,-3,9,-12,6,4,-13,4,-5,8,-12,-8,6,6,14,13,10,8,-13,-3,2,2,-15,11,-4,-1,-17,13,12,-8,-12,36,3,-13,3,10,-3,-13,0,-6,3,5,7,-5,4,-4,12,5,-1,7,-10,-7,-10,10,5,9,14,-1,1,2,-2,5,-1,26,-12,6,-14,5,10,-3,-21,20,-12,3,-12,13,-12,-14,0,9,16,3,-11,-4,17,-7,-8,-3,13,-6,3,3,5,-3,-17,-12,-4,8,10,12,3,0,7,9,12,9,4,-8,11,11,9,-5,1,-7,17,-15,-1,-10,3,17,-7,8,0,11,-2,4,10,8,-12,7,-13,-6,-9,0,13,-5,-11,13,12,2,-2,14,3,14,17,-12,12,3,3,17,7,34,-13,4,-12,-2,-5,17,14,29,-5,-10,-5,-6,-10,-6,12,8,-2,4,1,-1,8,-12,0,17,-12,17,9,4,0,-6,9,38,-1,11,12,11,-3,11,3,34,4,12,3,-8,-11,2,10,12,14,-12,6,8,-6,7,3,-15,-7,4,13,-1,-15,-12,7,-13,-13,-11,-11,6,-7,15,9,9,14,11,14,12,19,13,14,25,-4,-3,3,7,-6,6,10,-14,1,-1,-4,-7,0,-10,15,-3,-12,15,3,-3,18,-3,-11,24,8,-13,-3,14,3,-11,12,-1,2,-13,-8,-2,-9,16,-11,-14,12,-6,-8,14,9,-6,18,27,-7,-12,18,3,2,15,7,36,4,1,-1,-9,12,0,11,-13,7,9,11,0,8,6,-8,2,-10,1,20,8,-1,-7,16,29,-9,6,-4,-1,-15,-2,1,27,-6,-11,-1,7,13,12,7,14,0,-9,-2,-9,15,-7,10,13,3,-15,6,7,6,-18,5,10,8,-12,10,9,5,11,2,-10,12,9,-7,13,-5,1,6,3,-1,13,12,2,-5,-1,9,-5,9,-11,16,-8,-10,5,-3,15,0,2,1,15,-8,-8,7,2,14,-14,8,2,14,-9,9,-1,1,14,-2,-11,10,-13,-1,3,-1,-1,-6,-2,14,10,11,13,9,-13,17,-5,5,-11,22,6,-10,-7,6,11,-13,13,6,14,-2,-7,-12,-12,-9,-13,-11,-6,7,-7,11,4,11,-3,3,23,7,11,19,0,0,-12,11,13,-13,4,4,-4,-13,3,-2,23,8,-8,13,13,15,9,-10,0,-4,13,13,9,-11,-14,9,6,13,-2,8,7,-3,-3,-2,-13,-5,-12,4,8,12,-24,15,8,-6,6,14,3,15,-7,14,-13,-6,10,0,-3,11,-7,12,15,11,0,4,6,0,1,13,11,14,-11,12,10,8,-19,6,5,-8,-13,-13,15,-9,12,4,-1,-12,12,-4,15,-6,13,7,8,-9,-9,16,-1,10,-17,17,27,-4,-13,-1,8,-5,11,6,-8,4,-5,6,-9,5,-28,-12,9,3,8,16,-3,4,-5,16,5,16,-15,16,6,17,-9,12,16,-4,-11,-8,-5,2,12,-7,1,15,-11,3,8,13,14,15,-3,-10,-7,-2,-12,-13,-6,-3,5,-5,12,-4,5,3,-5,-3,-14,-2,-7,2,9,4,-6,9,-4,-1,-10,4,-10,13,-5,14,-7,5,-5,-6,-3,16,-15,-12,-9,10,10,-5,-13,2,-6,12,18,3,-9,10,0,-4,14,8,-6,15,-2,-2,-7,1,-4,10,-4,14,-13,-2,7,-3,17,1,14,9,-13,11,-11,-12,-3,15,14,0,3,-10,-2,17,17,-5,1,12,-5,9,-4,11,5,16,-4,-3,10,-11,5,-1,-13,8,12,6,14,-12,-5,0,-7,-1,17,15,-4,11,-13,-9,-12,-8,16,6,5,-8,-4,-7,-12,-12,2,13,9,19,-16,-8,17,15,13,-7,-6,12,-9,9,1,-6,6,5,-4,-4,12,9,-13,3,0,-7,-10,-2,9,9,11,13,-13,-8,5,-14,4,5,20,8,-3,2,10,-6,-12,3,-15,15,36,12,-14,2,6,-5,-3,-13,6,10,4,-3,5,-1,-8,5,1,-5,14,13,-10,1,16,9,13,-18,-10,-4,-17,-2,0,10,41,12,-3,7,-5,15,3,7,14,5,15,-2,-14,-10,-14,13,16,4,0,-12,-16,-13,14,16,27,13,3,-3,-5,-11,-3,13,15,12,-7,7,3,-6,0,0,16,8,9,-8,-6,-13,12,-10,2,16,8,6,-17,-1,-14,11,23,-6,-6,14,3,7,-2,-12,-15,8,14,9,1,11,1,13,26,3,-2,-1,9,0,-10,7,10,-2,-6,4,2,10,-9,15,16,0,13,5,9,-6,-1,17,14,-11,3,-8,-12,-13,-3,11,18,12,-15,15,4,7,-11,-9,-11,-11,3,14,12,-7,-3,18,16,1,-5,11,0,-11,12,34,36,8,15,7,8,5,7,2,-7,-1,8,-12,-12,-13,-7,14,8,-8,9,14,7,6,-9,7,15,5,-10,12,-5,10,14,20,46,-8,-9,13,2,4,2,3,23,14,0,1,8,-9,8,14,-9,13,5,16,13,6,-10,-7,-5,7,-2,14,5,10,6,8,-4,-4,-1,3,8,-9,2,2,23,-1,5,-4,0,3,18,-1,-5,10,-11,-12,-4,6,12,13,-2,9,15,16,12,-9,-11,6,1,6,8,-14,16,-18,0,14,-7,21,-14,-11,15,-6,11,-10,9,5,-7,4,11,-12,-6,21,5,-24,10,7,11,-4,-12,34,37,-6,8,-8,-13,6,1,10,-4,-23,-2,4,0,7,-14,5,9,-12,7,22,12,-3,6,16,12,8,-11,10,-7,-8,16,31,40,-5,-3,14,-11,10,14,15,27,-8,6,6,8,13,-7,-9,-8,-9,-11,-10,-5,-4,-9,-10,-12,13,9,-3,9,0,-8,-8,3,10,-5,4,-13,-15,12,12,6,-5,-1,2,-5,-3,9,-1,9,-18,5,2,2,-6,-10,1,10,10,-14,-9,-6,-6,-18,-4,-1,5,-11,12,14,-6,-4,0,7,14,8,3,-5,10,7,-4,-9,16,-2,16,-7,-2,9,8,3,-11,10,26,-12,-3,-17,11,19,-11,-8,11,14,7,8,3,-4,-4,13,-6,13,-14,-29,-8,-1,-1,4,20,-7,-14,-17,2,5,-13,0,2,-10,1,7,1,2,11,5,9,9,-12,10,2,-11,-8,10,4,3,-14,1,2,-11,10,2,8,-12,7,6,17,-10,-2,3,0,-6,6,0,-12,-7,-1,-14,23,-8,-1,-13,23,24,-12,10,-10,12,2,-8,0,5,-10,-7,9,-11,-7,-1,10,7,-6,-2,0,-6,2,-17,3,0,1,4,15,-13,9,-1,-2,0,-6,-12,15,12,-9,-2,1,14,6,15,4,-12,16,14,2,-3,9,-10,2,-13,9,-16,19,25,4,0,-15,11,-7,-1,15,-8,6,0,13,-10,-6,-13,12,16,4,14,11,0,-3,-2,11,5,-7,13,4,3,-6,9,15,8,-8,4,-4,2,5,11,6,-2,15,0,13,-1,2,-7,9,5,-11,5,15,0,-3,-20,3,9,-7,6,11,3,14,-14,10,-3,1,0,4,11,8,-13,25,8,-12,-13,-10,-1,8,-4,0,-1,-15,7,-13,-13,14,4,6,12,2,-10,-3,5,-10,-6,-7,21,5,5,-4,9,-8,-6,10,12,0,-2,-11,0,16,-1,5,10,-7,-2,-3,3,7,5,3,-2,-10,-13,13,-10,1,1,24,20,5,4,11,-7,-3,16,14,16,-9,-14,4,-14,14,1,-7,-1,6,11,4,-15,-9,-12,-1,5,-3,-13,11,12,2,14,12,7,8,-8,-11,6,-11,-13,23,0,14,7,3,1,-3,-7,9,-5,-11,-14,12,0,11,1,7,0,4,14,0,0,2,-1,3,-13,13,-5,-12,12,-13,-10,-2,-1,10,14,-10,14,-10,-11,-4,2,14,5,-1,6,14,8,-14,5,12,13,-13,-3,-2,4,20,8,7,14,12,-1,12,-1,-10,14,-1,-4,-14,-7,15,-5,-3,11,3,-9,13,-14,-3,11,-2,25,7,6,-3,-9,9,8,-4,31,12,-12,-4,-9,-6,2,-9,11,12,6,15,-1,3,7,-6,1,15,10,2,-7,-9,20,24,25,-10,-3,11,11,0,11,2,14,15,-8,-10,-14,5,-11,12,3,-9,13,0,6,-12,-5,-12,10,-5,5,0,6,9,0,10,0,10,0,-8,8,-11,13,4,6,-4,10,-11,4,10,5,9,11,18,9,-13,-4,-12,15,9,5,6,12,14,-5,-3,7,-4,17,-10,-12,-1,-7,-10,0,20,23,6,5,14,-9,8,15,17,8,2,0,-6,-1,15,9,-9,-3,-2,13,16,13,11,17,19,24,-17,-12,7,-9,9,18,30,24,-10,1,-3,-2,-13,-8,12,2,8,12,13,7,-9,-1,9,5,-7,-9,5,-12,-7,11,10,28,5,5,1,-12,-10,-3,30,31,-1,14,-1,-4,13,-6,4,-1,10,-11,-10,3,11,-12,-8,-11,3,-12,19,-13,-12,12,-1,-1,8,2,5,12,-10,0,-7,5,-1,-4,-9,8,-8,12,11,11,-7,-12,-2,-5,-4,-1,10,-6,-9,-6,-6,7,-10,11,-7,10,-9,-4,-1,-5,-5,3,5,19,11,14,5,9,-5,-10,-1,-10,18,-9,-9,3,7,-15,-12,-11,14,7,-3,15,-3,5,5,-2,-19,-1,12,-9,10,-11,15,19,-5,-8,9,-5,7,-5,6,0,7,9,2,-2,11,-6,-3,-7,0,-9,17,0,13,6,14,3,0,-13,-6,5,-4,-8,12,34,0,-11,0,-1,10,14,15,11,8,13,0,11,-2,6,-10,-15,13,7,6,-5,11,2,-1,21,4,14,-16,-2,-12,4,0,4,-10,-2,0,15,1,15,0,14,2,-11,10,-13,-9,18,-12,-10,-4,4,13,-4,3,8,2,6,-14,7,-7,15,-12,2,20,0,-14,1,9,6,8,-15,-3,21,18,-12,-11,-12,-11,-10,9,-11,13,-10,15,13,9,15,2,-5,-16,-14,24,-3,7,-20,32,-4,6,11,15,-10,-11,10,-3,11,-15,7,-14,14,-9,-8,6,5,10,-6,2,-2,-12,-10,16,16,2,12,12,-5,-13,15,21,15,5,-6,13,5,-10,-13,-6,-5,-13,-6,12,-3,14,12,-14,-4,-8,-12,-12,-3,9,-4,13,-12,3,-10,5,2,-1,9,-3,7,-6,-8,7,-3,-11,-7,18,16,-1,8,7,13,-1,-9,1,8,-2,-12,-6,-12,1,7,7,16,7,-14,17,-4,-10,6,15,5,1,14,-4,13,-14,-13,-7,14,-2,-9,-3,-3,8,10,8,3,11,12,16,13,-11,4,24,3,1,-4,9,11,-5,11,37,12,-1,5,-3,-9,-7,-8,-8,9,-17,3,-2,-4,-4,-4,15,4,5,-13,-1,11,14,2,22,-3,3,8,13,5,-5,-8,22,21,-8,-14,1,-12,2,-13,12,9,-6,-12,2,-11,4,-1,-9,-11,2,10,5,4,-3,7,-5,5,-1,11,0,0,0,-14,-3,12,-4,3,-2,-15,12,-3,9,8,-10,1,-13,15,4,-9,-11,13,-7,-3,-11,-10,1,-2,10,4,11,14,-10,-11,0,-2,6,5,-5,12,15,12,-10,0,11,-9,12,10,-13,-13,17,9,16,-3,-5,-3,14,-13,10,-5,8,-10,2,-10,-6,-3,-11,1,23,-13,3,-1,7,-10,17,12,11,6,-12,10,-10,-8,11,17,10,7,2,8,0,-2,20,2,15,3,-5,9,-12,0,-1,-8,3,13,-12,5,4,14,14,-1,23,-18,-1,12,11,13,2,8,-6,11,16,5,-1,14,-8,6,7,2,14,-3,12,-8,3,-11,3,1,9,0,4,-7,-14,12,-6,16,-9,11,6,-4,14,-5,10,10,-1,-4,7,-7,-3,13,-8,15,3,-8,-10,8,5,-11,18,13,-6,-6,6,-1,-11,16,13,0,12,8,-6,4,18,13,-7,0,-4,12,-8,13,-1,-1,16,15,-4,13,15,-11,9,3,15,23,1,-10,2,15,-12,-8,-10,-11,-2,-1,-1,2,-14,-7,-10,-2,0,-11,-8,9,-9,-3,10,30,-8,-10,-5,-14,0,0,8,32,2,5,-10,-13,13,-13,21,-7,-13,-6,5,-3,-2,-10,2,14,-4,-4,-4,-10,4,14,8,-5,-4,3,-6,-2,-3,-10,-7,-8,8,-6,12,10,-10,19,15,8,-13,0,-8,-4,-14,-9,5,-11,14,8,9,13,1,15,9,11,-4,13,11,-11,-11,-4,30,11,0,-3,12,14,-13,-8,14,-8,16,10,-9,-14,-3,17,3,11,5,0,11,3,-4,-10,8,27,-10,8,1,1,-15,25,44,48,-6,7,-13,15,5,-8,-10,-8,-15,-15,14,-3,1,4,13,12,12,0,-1,-13,2,0,33,19,15,0,12,12,-4,10,6,33,-13,8,2,3,13,15,16,7,15,-8,10,6,9,6,5,-10,2,0,17,-12,11,6,27,4,8,10,-2,-8,1,-2,-2,12,6,0,1,5,-6,22,7,14,5,-6,-4,13,-14,17,-8,-11,-2,-5,15,10,-14,15,-6,-7,-15,11,-6,15,-12,6,20,17,10,11,-1,14,-8,-12,9,8,19,-4,7,-6,-1,1,-11,9,14,-5,23,5,15,6,12,31,5,12,26,13,-11,7,22,36,4,3,3,12,-13,7,3,1,7,6,-2,-1,-7,-5,-11,13,10,-10,20,4,9,10,27,41,12,12,-5,-15,-7,14,23,37,6,-15,13,12,5,-6,18,24,7,1,-7,15,-10,-5,10,10,9,-13,0,-8,-3,-11,6,20,-2,-6,6,-3,-3,-13,-1,8,-9,-5,23,6,4,19,4,26,12,15,9,15,17,10,11,12,-1,11,-7,1,1,7,2,4,6,-8,-2,8,-3,3,14,27,4,-11,15,0,2,9,7,16,21,-14,12,11,7,10,-1,1,12,-7,29,3,17,-9,13,10,-13,10,29,-13,0,-12,44,4,3,6,6,-10,7,-1,-2,-14,-12,-2,3,-12,-11,-10,16,-6,10,-3,24,-11,-9,-7,7,32,-2,-9,8,7,1,9,22,9,12,2,25,9,-9,15,1,7,3,13,-6,-11,-2,2,-7,-8,-2,-11,21,-4,1,5,24,1,10,12,12,-7,12,-3,8,12,-6,-13,-7,8,-8,4,20,15,10,0,-3,2,4,12,5,-12,-16,1,17,3,-10,-5,16,7,4,13,-6,-1,1,15,17,2,5,-8,-2,-8,-6,2,15,-1,16,8,-14,-12,-8,5,-11,-12,8,-14,15,-4,2,12,19,-10,-17,-14,19,-14,-1,0,26,4,16,4,-13,-11,-1,-4,-1,3,-4,8,11,5,-5,10,-5,-4,-1,6,7,16,16,-4,1,-6,-5,2,3,3,8,-7,13,6,0,7,2,11,-9,-10,23,-1,-9,5,-11,-6,-10,-4,-7,-3,9,-7,-1,-11,-9,-4,-4,9,-6,10,7,-4,-7,10,14,1,2,-1,5,3,-14,8,-6,12,-7,6,13,15,-1,-1,-5,14,13,11,14,-5,-12,-7,14,-13,-12,-2,3,7,-8,-1,5,11,-8,-5,8,11,-9,13,10,15,3,11,5,15,10,13,2,-12,-10,-8,10,-18,-15,-14,5,-15,8,-13,-14,-12,9,-13,39,-4,12,10,14,-4,11,-1,8,6,-9,0,8,13,1,-3,-13,13,14,12,4,-3,17,9,-5,3,-7,-7,7,0,17,0,11,6,-8,13,-3,7,13,-9,6,2,10,-11,-5,15,11,-7,2,1,-1,15,6,2,2,-10,-1,11,8,6,-8,11,-7,3,4,9,-4,13,-3,-19,-5,-12,-4,7,1,-13,4,-8,5,-14,13,1,4,-5,-4,11,2,-12,-15,3,-13,-8,1,-13,-14,14,-7,-14,-13,11,12,10,16,-10,11,1,11,-16,10,-10,20,0,-4,1,15,7,8,-13,-12,-6,8,8,-7,6,10,-12,-8,-7,19,-6,7,-1,9,3,-10,6,-6,14,8,-12,-7,-8,15,-4,1,13,-9,-17,-7,-13,7,-14,14,-9,-9,-7,2,-9,10,-5,5,13,6,3,-8,-16,-1,6,21,3,-2,6,-9,10,-12,0,-6,-4,0,11,3,-6,-5,-6,8,-9,12,-10,-8,-14,4,-4,2,-13,7,-6,-10,3,3,-1,12,14,-1,2,-8,8,5,-6,13,-14,-6,-9,6,8,-13,9,-16,13,15,7,-5,-2,-7,4,-2,-5,-13,3,-5,9,8,-5,11,11,-13,-13,5,0,-2,-12,10,-6,-2,14,12,7,-9,6,-2,-8,-4,12,-12,-23,-10,-2,27,11,7,9,1,-3,10,9,-9,5,-13,6,-13,0,12,0,-11,-4,4,-15,8,6,-1,6,2,11,-4,-1,9,-9,11,14,12,-14,15,15,1,-13,12,3,11,-10,8,-1,-4,-6,-4,8,7,-13,12,12,2,13,-5,-13,4,15,0,2,4,-4,-4,9,-11,-2,0,12,-6,-20,-3,3,7,-9,4,-8,-3,2,8,-3,6,8,-4,-2,-1,4,-14,0,-4,15,8,7,8,5,-11,15,3,9,-14,-2,7,9,-11,-8,-1,14,-1,-15,2,10,-8,-2,8,-13,7,-14,-9,-3,-13,14,-14,-8,-11,-6,15,-25,-11,8,-8,7,0,-10,-10,10,17,4,2,-8,-6,13,8,-9,-10,10,14,-13,4,-6,5,-13,7,-1,-7,12,4,-12,2,-2,-2,14,2,6,11,-13,-1,-9,12,0,10,-1,4,0,-1,3,-7,-1,-10,13,-3,7,-8,-11,15,7,-1,10,-5,4,-13,8,0,-7,8,-8,11,7,-2,3,11,-6,10,-2,-9,-4,-4,3,-2,2,6,11,-5,16,4,5,-5,-11,-17,13,12,-1,11,9,12,-2,-8,2,13,2,15,-9,-5,6,-6,3,-4,-17,-7,14,16,-3,6,-12,1,0,-4,-10,15,-3,-4,-2,14,-6,-2,-24,4,1,1,10,12,13,-5,2,-3,-2,-2,6,-9,-3,15,-9,6,-8,-6,9,-10,-3,2,-6,12,8,-16,-11,6,3,0,-11,3,13,-11,-4,-3,4,1,-9,15,-10,-16,9,7,6,13,9,13,-11,12,-8,-4,4,9,-5,-5,-8,3,-4,-6,3,11,-5,-11,2,14,-2,-2,20,15,0,16,14,3,7,15,1,1,13,-4,9,-2,-6,2,-2,0,-6,-10,-7,-14,-2,13,6,10,8,-2,7,-17,14,-1,12,5,10,3,-8,6,-13,3,5,-14,-8,9,-5,-10,-8,-11,0,5,11,0,-2,9,2,5,18,-3,-10,11,-8,1,-9,-14,11,-7,14,14,7,4,15,3,2,5,-8,4,-6,7,-6,8,-7,-5,-11,10,-4,-19,9,2,-11,1,-8,8,-7,7,0,10,-14,5,-11,-6,-8,9,0,0,-2,1,-9,3,12,-8,-7,-9,-11,-2,-2,8,2,-9,2,-1,11,-12,-7,6,-13,-3,-5,-2,11,-12,-12,-6,10,5,2,0,9,3,8,4,0,-13,-3,-13,13,-10,11,12,-2,-1,-10,7,-14,-13,6,-6,-11,-12,12,-11,-1,3,-4,-14,-12,-4,5,-6,1,-10,11,12,-15,-12,-7,10,6,2,7,-3,-8,14,-2,11,-2,-8,3,-4,-8,24,9,-9,0,-2,7,-7,14,-9,-6,5,14,-9,-14,10,10,-5,-9,-6,7,-7,-10,10,-4,4,10,-11,13,-13,2,13,-14,-7,-7,-9,3,2,-4,-11,-11,1,-16,-11,-13,-14,11,10,-11,3,-4,-2,6,9,5,6,-12,17,-10,-13,4,12,-3,6,8,5,9,7,-8,1,7,1,-13,3,1,14,3,-4,1,15,9,9,8,8,-5,-4,-4,-8,-9,6,2,-3,4,-11,-10,-4,9,8,-10,-8,10,-12,15,-3,0,10,-8,2,-15,13,15,2,6,11,-12,10,-11,5,-18,1,-13,-10,1,-3,11,-10,4,7,-8,11,-11,5,-2,6,2,8,-8,4,-5,14,15,10,3,-13,14,11,9,-1,12,13,-12,13,-8,1,-10,-5,0,5,-6,-4,-11,7,7,11,-14,1,10,-9,-14,-6,-7,-1,13,4,5,-7,10,3,-13,-4,-6,12,-1,14,10,-7,10,-13,11,2,-15,-12,3,19,-12,-14,5,2,-14,-19,-8,2,-12,-8,-2,8,3,-4,-1,-12,13,0,12,-12,-7,-4,-15,2,5,-5,-7,-3,-1,5,14,-12,6,-8,-9,-14,-6,-3,-1,1,-10,-7,-4,0,-11,16,8,-14,11,-12,11,10,-16,-14,-10,-12,8,11,13,-1,5,-1,-12,5,4,-8,13,-3,0,17,4,-6,-12,-10,13,13,13,-6,-9,4,1,-2,5,2,9,18,13,-6,5,12,-6,-14,3,4,-3,-10,-14,9,-13,-12,11,1,9,0,6,7,-14,1,-3,-12,-9,-2,-14,8,7,-6,-5,-3,0,-9,5,12,-7,-14,-12,3,12,7,1,6,-6,-2,8,-17,6,5,2,13,11,9,-8,9,-4,7,-15,12,-8,-10,15,11,4,-12,-3,6,3,14,10,-2,-10,7,1,-9,3,7,-8,-1,10,-7,2,-6,-1,-1,-13,-2,-10,14,13,5,0,10,-8,-15,-10,-6,-7,9,-1,-5,-6,1,11,-17,-6,13,5,9,-13,6,8,-8,4,-15,3,-10,6,7,-11,6,-6,2,-5,-4,-2,5,-13,-20,5,3,6,13,-2,-5,11,-5,4,-14,6,8,-11,-11,-14,3,9,-13,-9,-9,-7,13,6,4,-5,6,10,-9,-10,-4,-3,-11,-12,9,6,8,7,-9,14,3,3,2,-4,2,6,-3,11,-19,8,4,-4,8,14,15,8,-14,14,5,17,7,-9,4,-5,-15,-11,-3,5,-1,4,20,3,0,-3,3,20,13,1,19,2,0,-6,-10,10,-13,-12,12,-7,-10,4,-12,8,1,-11,7,-7,-14,-6,-8,20,7,-21,10,-1,-12,-5,14,2,-5,1,-10,-15,8,-11,8,6,3,3,26,8,3,0,-3,-11,-1,1,-4,-3,-6,1,-11,1,-4,-7,9,-4,-5,12,9,12,13,5,-9,12,-6,-7,0,5,-10,15,-4,-8,-13,-14,-5,16,14,-4,15,1,16,-11,-6,-1,-6,3,6,-6,-3,-2,6,7,-1,-5,4,1,-15,-13,-6,-7,2,4,-1,8,-4,7,-2,14,7,-1,15,11,-13,-6,-2,1,4,-4,-4,-9,-13,7,1,15,-3,12,1,-2,8,5,14,-13,9,-2,3,-12,14,-4,3,15,-13,-12,7,-4,-7,-9,10,21,-4,2,5,-9,-4,12,-11,6,-4,8,-3,10,-10,-13,12,20,-13,12,8,-1,-15,7,-1,-2,2,17,17,9,-13,12,-13,-3,9,1,-7,-5,-20,13,-10,11,-5,-16,5,0,-14,-3,-7,-12,1,-3,-4,15,-14,8,3,1,-8,7,3,-12,2,7,-4,8,-2,12,-7,5,2,13,1,16,-5,13,-4,-14,2,-13,-8,11,-1,3,-15,11,1,9,-6,20,15,9,9,-11,12,13,9,-11,-11,-5,0,10,-10,-11,0,-3,8,-14,2,3,-13,7,-10,-1,11,2,10,7,5,11,1,-11,4,1,2,0,13,2,15,14,-3,6,-9,15,20,-3,13,0,-10,12,-8,-15,14,9,12,-9,-8,-1,5,-4,10,-5,-11,12,-15,-7,6,1,5,-6,8,10,0,8,7,3,1,-4,8,-6,-14,13,-2,13,3,-11,-3,0,5,-12,-10,-1,-4,-11,9,15,-5,11,18,13,0,6,12,8,3,9,1,13,-3,-12,-6,3,-13,14,0,10,16,-12,14,-9,13,-1,10,-14,-1,6,-5,1,1,-11,-5,2,-2,-3,13,11,-14,-15,-2,-12,-9,6,9,5,10,15,-11,-11,-18,6,-11,12,12,0,16,3,3,13,5,10,-9,-2,1,6,-6,10,-13,4,-2,7,-14,-2,9,4,12,13,10,15,-10,1,3,8,12,10,8,-14,-17,2,-15,-6,-13,-11,5,-11,13,-13,-10,-14,-8,4,-5,-2,-5,10,-19,3,-3,9,-1,10,15,-7,-5,5,9,-8,-4,-5,-1,12,11,8,-2,-4,11,-7,13,7,-1,-15,-3,-8,13,15,2,-8,0,-14,-4,15,-1,-4,-3,-1,-9,-8,6,-18,-13,-5,5,-14,10,-11,-10,1,-10,-11,2,7,8,8,6,8,-8,7,-5,9,6,-15,-4,15,-10,-12,-5,7,3,9,-5,3,11,-5,10,-9,15,9,-6,7,7,1,-14,13,-9,7,-14,11,-10,7,-29,0,-5,-1,-2,0,-8,15,15,14,-12,2,10,24,-2,5,1,-10,-13,-3,-11,7,13,-7,3,3,0,-8,-7,-2,12,6,19,14,-1,3,13,2,-10,11,-7,12,-2,2,-5,16,12,-9,-8,-9,-9,-14,11,7,14,-11,9,11,-1,3,-12,-4,15,3,0,-9,1,12,6,-5,-10,-7,-5,14,-20,3,-5,-4,-4,7,13,5,-2,7,2,14,-2,-1,15,-2,10,5,4,16,-13,-15,-7,10,-6,6,-14,10,13,-4,-8,2,-1,-2,6,-16,-4,9,-8,11,6,-4,0,4,5,4,1,2,-3,4,2,40,-10,-2,-1,15,2,0,15,0,10,-2,7,12,-13,5,4,28,1,-7,14,13,3,7,-10,-18,4,-11,21,-13,0,-12,-8,-1,1,-5,15,12,-21,11,15,15,3,-3,-4,8,4,4,-8,16,15,-7,15,7,-5,-9,3,12,8,-23,3,0,10,4,-1,-14,-7,4,12,11,14,-13,-13,7,-8,3,-6,3,0,6,-9,-7,-3,2,5,-1,12,-13,14,-8,12,-3,3,3,-12,7,7,-3,6,14,11,-9,8,6,-4,4,-14,-4,23,11,1,6,3,9,-1,11,4,6,14,-11,-2,8,-7,-9,7,14,1,-6,14,43,6,-11,14,-3,-22,10,8,6,-9,10,2,14,-8,15,8,34,12,3,15,1,15,1,9,-12,-14,-6,7,12,4,10,-11,-9,3,19,-12,5,-9,-9,-3,2,4,0,2,-3,-4,3,13,-2,5,4,-8,13,10,-8,-3,10,11,0,0,1,3,1,10,10,9,2,-10,3,-10,-11,-1,10,-6,-13,13,1,-18,-2,3,8,4,6,1,11,-7,9,-14,-7,16,-11,-10,-9,-6,-4,-8,17,1,-7,15,4,0,-5,8,25,11,10,22,5,3,-4,10,-11,-2,-1,7,6,7,-4,5,3,-3,15,-4,2,-4,-7,-10,17,12,5,-6,0,3,3,7,5,-14,10,8,8,14,-4,6,8,-5,-8,0,14,9,9,-15,-6,-9,-6,13,7,-15,5,-11,15,-13,19,9,-6,0,12,-9,7,-5,16,6,-9,-1,-8,14,11,-3,-4,-12,6,12,11,12,12,-10,-9,-1,13,20,-15,-3,-5,-2,9,-2,-5,-2,5,0,18,-2,-8,-3,0,-12,-1,14,14,2,-6,1,13,5,14,8,20,-14,-10,-3,-2,-11,12,7,16,5,10,-10,6,-15,-2,-12,5,-5,15,9,13,-15,1,-11,-11,11,-10,-1,7,1,15,1,-15,-12,-9,1,3,9,-11,-1,1,-5,-2,-3,14,13,-7,-14,-5,15,7,-10,-1,5,4,0,-9,9,6,-10,-4,1,-12,-10,-2,7,-11,7,-8,-3,12,-3,10,0,15,11,-5,8,9,5,-11,11,-13,-12,-11,17,-14,2,-13,2,14,-4,2,-3,10,-15,12,10,-16,21,0,8,1,-8,7,1,10,13,13,1,-9,3,-8,-10,13,-2,-13,6,-4,-7,-11,12,-12,5,10,9,-11,5,-6,7,3,4,-9,6,7,1,10,12,-19,12,2,-13,-11,-8,-5,10,-5,-14,15,5,3,12,-13,-10,8,15,-15,-10,6,3,-2,7,-13,-7,2,6,-10,-4,24,0,-23,-13,6,11,-13,11,-1,12,-2,16,-11,14,-12,-7,2,-4,15,7,12,9,0,12,3,14,-16,-2,5,0,6,-8,-4,6,-15,12,6,-16,-10,11,-8,0,-11,9,12,20,-8,7,-5,15,3,-5,-12,-10,13,-9,-15,-9,-13,24,-5,11,-7,8,0,2,7,2,11,1,5,-12,-4,-13,-3,-4,-7,-15,2,-1,8,-2,-9,15,-4,6,10,10,-9,0,-2,7,-14,-13,2,-8,0,6,-18,-1,-8,-6,3,9,20,6,9,10,5,5,-2,15,-2,-2,-7,9,-1,-3,-12,-14,11,9,-25,0,-6,12,-6,-7,15,6,-14,-35,-6,13,12,-14,12,-8,1,-8,3,-10,6,-4,23,2,-6,-12,6,-6,-5,3,-20,4,-12,9,3,-5,-14,-12,-12,-6,7,4,-13,-19,-8,15,-2,-10,-13,-14,-4,2,14,-1,12,-5,9,4,6,-11,-12,0,-18,-8,-24,-1,-12,0,-4,-10,-2,-9,7,-4,4,6,6,-6,14,3,-5,-28,-12,-15,-6,-5,-13,4,-14,4,8,8,-8,0,-5,15,5,9,11,11,-13,-5,25,6,-9,-12,12,-7,-13,-9,3,0,-3,-9,0,-15,10,-7,5,8,4,-5,6,-7,-6,-2,-11,2,-5,4,11,-2,-6,-2,35,9,-14,-18,-4,3,-1,-2,4,9,2,10,-11,12,1,-7,10,-6,-15,-8,-15,-8,7,11,-15,-4,-8,18,10,11,-6,8,-19,7,6,2,-12,8,7,12,2,0,-26,-7,6,2,3,13,-2,0,0,7,-8,-8,3,3,6,3,-10,-2,4,14,-11,4,-4,9,12,11,2,15,-2,-6,29,15,6,-13,-2,4,0,3,-6,-2,8,14,11,-4,11,-3,1,-1,15,4,-5,-17,9,-1,0,4,-5,17,-11,-7,4,-3,9,-1,-12,21,11,5,0,1,-5,9,5,2,-8,-5,15,-4,6,1,-15,-10,-10,7,-14,-12,17,-8,-12,9,-7,-1,-2,-6,-11,-7,2,-8,-4,-12,-6,-2,8,7,6,-3,-3,6,2,-7,-1,-10,-11,16,12,-6,7,-7,10,-7,5,4,-5,-14,-11,-7,-1,14,2,-8,2,13,0,-14,-1,9,0,0,-5,5,-8,-12,8,5,-6,12,13,4,-13,7,6,-4,8,-13,-6,5,0,0,26,-11,-7,10,-12,4,9,13,9,2,-1,-8,-4,13,10,5,11,-6,-12,12,5,-1,8,9,12,-1,-13,-6,1,4,6,5,10,13,1,19,-4,-13,5,-12,-2,15,-10,8,7,-9,-8,9,16,-2,-3,-11,8,-2,9,-14,21,-13,-16,22,-6,-2,-13,0,11,-11,2,-6,15,14,2,-7,28,-6,1,22,12,-12,-12,15,-12,-13,-2,9,-10,1,-5,1,-6,-4,-3,1,-6,-3,-10,3,6,-1,-11,11,7,-11,0,-9,-10,-6,-6,-4,10,10,-1,-9,-5,6,-6,-4,-11,20,13,-7,-11,4,-8,7,-12,0,-2,-13,25,-4,-6,-6,9,5,-13,1,-6,-6,-3,-17,1,-4,12,-13,-3,-1,11,12,3,2,-5,-11,-2,8,8,-2,-14,-3,-4,15,3,4,-4,4,13,-5,6,13,13,-2,-10,15,-2,2,7,7,-13,-8,-4,-10,-3,15,4,6,1,8,-2,12,13,29,1,4,7,-5,-6,-6,-3,-4,-7,-10,6,-1,4,3,-5,10,1,-10,12,-4,15,-1,-4,9,-6,-3,-3,-1,-3,4,7,12,3,-7,7,-12,6,0,-11,10,-8,6,1,13,-5,14,12,-7,7,-12,-12,-15,13,9,-12,4,-11,-10,-1,-5,-11,-2,2,15,7,5,7,12,2,-5,11,9,-9,-9,4,11,15,12,-7,14,14,3,4,-3,5,4,5,-6,10,2,15,5,12,-16,-3,-10,7,-2,10,12,-6,2,-2,-12,8,11,-14,-11,7,22,-6,-5,14,10,-1,-14,-18,-1,-4,4,0,-10,-7,-7,-12,-24,-15,18,2,14,-2,1,4,-4,1,-14,12,-13,14,-13,2,-13,-2,-6,3,12,-3,-14,9,4,10,-3,-2,14,-13,5,5,-5,-11,-8,-1,8,12,4,-6,11,-10,0,-4,-1,2,7,2,-9,4,15,3,-13,1,5,-19,13,-7,22,6,-8,10,13,-4,13,5,0,-2,-13,4,-9,-1,-16,-3,-5,-12,-10,-7,-4,3,-1,13,-10,-11,10,-6,2,-2,-12,-1,-4,-7,2,-5,1,17,-10,-13,-7,5,-4,-11,-6,-11,13,-14,-12,-14,-5,4,-8,1,20,-4,-14,-9,-12,-3,-12,-9,2,-5,10,2,14,16,6,-13,-31,-14,10,-12,6,7,-8,-4,22,-7,9,14,4,15,12,-12,-11,-10,-13,9,-1,-14,5,15,6,12,-8,-10,-5,-16,7,-3,-4,-6,-21,7,-1,-13,0,-11,-8,-8,5,1,-13,-5,13,13,11,3,7,13,1,-14,-5,-2,13,6,11,15,8,10,4,9,1,6,12,2,3,0,5,6,1,-6,6,-3,-7,1,9,0,5,-1,15,15,-9,13,-12,12,-6,8,-1,11,-5,4,9,18,-5,-8,7,4,11,6,6,9,-4,8,4,7,-5,12,14,-7,3,12,6,2,-14,-8,3,5,-8,3,-10,-1,0,37,-16,-18,-7,-7,-2,-4,5,-15,7,-2,15,12,15,14,1,17,-3,-13,-11,12,-3,0,-1,1,10,-2,-4,-7,-23,15,-10,-12,13,3,6,12,-29,-4,-10,7,2,-5,-1,-14,2,-4,-13,-12,13,3,-2,9,8,12,-7,1,-4,-11,26,2,2,-15,-14,1,-9,9,-1,-5,5,6,3,28,8,-1,-5,12,-19,-6,11,-9,4,5,11,-3,11,0,4,4,-12,3,-13,10,4,2,-6,1,4,-3,6,-9,-2,-11,-1,14,0,7,19,7,-14,-7,-4,7,-7,4,-9,5,12,4,-6,15,9,12,1,-13,11,11,-4,17,-8,5,-3,-1,-5,1,-11,-16,11,-4,1,10,-9,9,-9,21,-11,-12,-1,4,9,14,14,1,15,-11,13,-1,9,-14,10,11,-3,15,16,5,-17,12,1,-14,13,-2,11,-7,11,5,-3,-3,1,-3,-12,14,0,8,2,1,5,-20,16,4,26,2,-8,12,-13,13,8,4,5,-13,-12,28,-4,-13,-6,11,-4,8,13,0,-14,8,2,-11,7,-6,-4,5,1,-7,-4,3,-12,4,14,18,2,-9,7,6,16,11,13,14,15,0,-2,3,1,-3,-2,12,-3,1,12,2,6,-5,-9,-10,1,-4,-6,-15,17,-10,14,38,14,-11,5,3,7,6,-13,2,-3,-8,-12,11,4,-8,14,13,-10,13,19,-2,15,14,-13,1,3,-6,15,4,-4,-3,9,-5,7,-4,0,15,8,-11,1,-4,12,-3,1,5,6,0,-5,5,-2,15,2,9,-4,3,-2,16,5,6,-2,2,13,10,2,-13,4,5,-8,14,1,-5,7,4,2,11,20,-6,-3,-5,13,17,7,-4,-3,-7,-3,1,9,10,-9,-8,4,-10,-10,14,0,-12,7,-9,-11,15,10,15,-10,7,1,-11,4,-2,13,-1,-11,-18,13,15,13,-6,-2,-6,10,-7,4,8,-5,10,22,9,-3,-11,-10,-12,8,14,46,10,-1,-4,15,7,2,6,-9,4,15,12,3,-8,3,-1,-3,11,5,2,4,2,27,2,-10,-2,7,-8,2,-3,12,-13,-3,-13,-1,-5,-3,-8,-13,-13,20,9,4,-8,-11,11,-10,12,5,-9,13,5,-3,2,-1,10,25,-14,-8,-2,-2,-4,11,8,6,2,6,13,-9,5,-5,14,14,-8,2,6,9,-4,8,-14,-6,-6,11,4,-12,2,-16,6,-4,-10,-8,15,7,11,2,13,-2,11,0,15,8,-11,7,-14,3,6,14,-6,15,-4,8,14,-10,-11,2,11,-3,-9,10,-4,21,-9,-1,21,9,-20,3,-7,37,-2,-15,3,-3,15,1,6,12,5,-8,11,-8,-5,-4,-7,8,-4,-4,-17,7,-3,27,13,-10,4,4,5,10,-6,24,9,13,-1,-13,-6,11,-19,11,11,14,-4,13,0,1,9,13,8,-9,15,-9,2,14,-6,-4,-13,18,-6,14,-7,11,-3,2,11,-4,-6,-13,21,-13,0,-16,4,0,5,-5,-7,5,-4,5,15,-5,3,3,2,5,4,15,-4,10,-14,1,19,14,-2,-9,6,1,12,11,2,-1,-8,-7,6,3,-6,-15,-19,13,-6,6,7,-7,-5,10,-2,-9,2,12,15,3,3,-5,26,11,1,-24,-2,-11,4,-8,-14,-11,-3,10,10,-4,15,11,7,-6,-9,5,13,1,8,-5,-10,-11,-5,-1,9,1,-3,-1,-9,-6,-4,5,1,-10,8,-2,3,-2,-23,12,-6,5,-4,12,12,-8,-14,4,-10,-6,12,11,-2,-14,-12,22,-5,24,-12,9,-5,5,-4,11,-10,14,-9,7,18,12,-16,-22,1,-9,-3,-4,-17,4,-5,-3,-6,0,-3,13,14,5,-1,4,-7,-3,-14,5,1,-13,6,-4,12,-9,-13,-13,19,12,1,5,1,-16,-5,-1,-12,7,-12,0,2,-11,12,-3,-1,-8,-17,-11,3,11,5,-2,36,10,-21,-7,4,-16,-4,-8,-4,-2,5,3,-3,-4,-2,7,9,-13,14,-6,-2,13,8,-14,-8,-11,6,20,0,-16,-3,4,-16,-9,5,21,-12,-8,-11,7,12,4,-17,-6,6,-7,-10,8,-12,-4,9,-4,-11,-6,1,-6,10,10,-21,-2,-9,3,4,-11,-11,8,-15,9,-11,4,1,-12,2,13,-10,-9,9,10,13,4,11,-8,-5,8,-4,-6,-7,11,1,-1,11,10,-12,-11,-8,-15,0,-9,-12,10,-2,-3,-12,14,3,-9,1,9,14,-5,5,12,-10,-12,11,12,8,9,14,-6,2,13,-3,-10,-7,-7,-9,-9,21,1,5,-5,-9,-1,-11,2,-4,-3,5,7,1,8,8,-14,29,-3,-6,16,-10,-3,-3,-6,8,4,-13,3,-14,-5,11,-1,-12,10,-3,21,1,7,-14,-14,-10,-11,1,8,12,3,3,-10,2,-9,7,15,-13,-7,-7,-4,6,6,5,5,0,16,-9,-14,5,-4,-11,-2,9,3,0,-3,27,1,2,0,-7,-8,-9,12,-5,10,-2,1,-4,2,7,-11,8,8,12,0,-13,2,-6,-2,-2,4,9,-11,0,9,-5,-14,5,4,-6,5,-4,2,-9,6,-13,0,10,1,-11,-2,3,-12,8,-15,6,-4,13,6,4,-4,20,-9,5,-10,7,21,4,-9,2,8,6,11,-12,-6,-3,-4,7,2,0,-15,0,-4,14,-14,8,2,-5,6,2,-9,-10,-2,8,10,-10,18,12,-8,15,1,1,13,5,4,8,3,-1,-1,8,-11,15,-11,1,9,13,-2,16,-13,12,12,12,4,2,8,6,-6,3,-5,-6,-8,-2,-12,23,-1,6,15,-7,-3,12,-6,-11,7,0,-4,6,-10,12,-11,14,-9,-13,12,2,-4,-10,-7,14,-2,5,5,18,-1,-20,-8,8,13,3,3,-2,-6,8,7,3,5,1,-28,-10,4,5,-10,-6,-13,-8,5,2,-20,-9,5,9,-4,3,4,8,-53,-41,2,-12,6,-9,-5,-10,14,4,-12,9,7,15,-12,0,-3,-13,-7,12,11,6,-26,-2,-4,-6,0,10,-10,-1,-3,-6,-10,-16,4,14,7,9,-13,5,-44,-37,-14,-1,4,5,12,-5,-4,-12,8,-5,0,8,-17,6,-19,-20,-14,-14,9,-4,-14,-3,-24,-21,14,4,1,-14,1,10,5,-11,2,-4,-9,-3,1,-18,-8,8,13,-3,-1,-11,-5,13,0,9,3,-10,15,-7,-8,-9,-2,-15,4,-7,8,6,8,-2,10,9,-8,3,4,0,-17,-28,17,8,15,11,-10,-5,-4,-9,-15,-13,8,7,-16,-5,1,15,-40,-49,-8,-3,1,6,4,7,-4,14,-10,1,-5,-2,6,7,1,5,-4,-7,10,9,-24,-15,-14,-6,-12,2,13,-4,-2,-11,-7,-17,7,13,7,-13,-11,-4,-26,-13,-2,3,14,-14,-8,-1,11,12,-13,-8,-14,12,-17,1,-16,-23,8,-9,13,6,3,4,-18,-1,-3,0,5,-14,12,12,0,-16,-12,0,0,0,-5,2,-14,10,-10,-7,6,9,8,9,-3,-7,3,-7,-11,-11,-9,0,-8,-6,-6,-6,14,3,1,2,13,9,6,10,6,14,10,-21,-7,14,-8,1,14,10,18,-7,12,-19,-15,3,-11,-16,17,7,7,-27,1,3,-9,-2,-11,-16,6,-8,16,-10,-14,9,9,7,13,-12,12,-12,-10,0,-20,-13,5,6,0,-13,-5,-12,12,0,13,-9,7,-4,-2,9,12,-15,8,-26,15,-12,-14,9,-3,2,-10,-6,-4,17,1,0,0,4,14,8,-11,3,4,-13,15,-11,9,11,-8,-11,-10,10,2,10,13,-17,15,2,4,3,-12,9,-13,-7,-13,14,6,1,-1,2,9,18,-2,8,-3,9,-8,2,11,9,6,2,-12,13,0,1,6,18,-3,-8,5,7,12,-8,-1,13,12,12,14,10,17,9,10,-13,9,-2,5,-5,0,-13,3,3,1,3,-3,2,7,7,13,-1,-5,3,7,-4,11,-5,0,-3,13,1,5,-10,-7,-8,13,-5,5,-8,1,-9,-13,-10,3,5,-6,12,12,-15,-12,-9,17,-2,-3,5,-7,-4,-8,15,-6,15,3,3,-2,15,2,-15,8,2,-7,-6,-2,5,13,4,-7,-5,5,5,10,-9,16,-2,1,-12,5,-6,2,1,-12,4,-7,13,5,-11,3,0,-5,12,17,4,-14,-10,14,9,-8,1,4,4,-12,-7,11,-8,-14,0,13,3,0,-3,-8,9,-14,-4,14,-11,14,-13,0,-7,3,-10,-13,6,-13,-11,-12,6,13,6,-8,-6,15,-4,9,9,-9,7,-3,11,4,-4,-12,-9,9,9,-10,-1,4,-11,-3,1,-23,6,10,3,8,2,6,-1,0,-15,12,1,-5,5,-8,13,4,-11,-5,-13,4,4,-1,-3,-1,7,-10,8,13,16,14,2,-8,6,1,-10,12,-12,6,-11,-1,-7,-10,-3,-5,1,10,-16,23,-5,13,-10,-14,-4,-3,5,-18,-8,-1,-6,3,15,12,-2,-1,-7,9,1,-13,13,9,9,-2,11,-6,3,3,10,0,11,15,-12,10,-1,-14,-1,-12,11,-17,6,-9,17,2,-6,0,3,19,2,-8,2,-10,-1,-10,9,14,13,-21,-1,-13,14,14,-7,-17,8,-8,-8,-12,-2,10,10,26,-11,9,8,10,4,2,-5,-30,3,23,3,-10,15,0,0,-3,-3,19,16,7,5,-9,-8,5,-10,-7,-14,11,-14,-4,12,-12,14,11,-13,-10,4,11,-13,0,-14,-33,-22,-14,-2,13,-14,-9,6,-15,-2,15,10,6,-9,25,17,11,4,11,-9,-1,12,5,-15,12,-11,10,-4,2,-15,25,0,3,-12,13,-7,1,4,-4,14,8,-12,0,-10,-7,-7,0,-14,14,16,2,1,-12,10,-24,-22,-5,8,-8,5,2,-16,5,15,-17,2,11,6,6,-13,-2,9,-36,-19,6,6,5,13,1,3,-8,-11,8,-13,-13,3,-12,13,-11,-3,-7,12,-7,-1,-21,-21,9,-14,13,-14,-4,9,-23,-6,-2,1,5,-4,-15,-5,8,-1,-30,-26,14,15,3,-7,-13,-10,15,2,-9,6,9,10,-14,3,-22,-11,0,-8,-12,-13,-3,1,-10,1,-6,10,-11,5,16,5,2,-8,-14,-12,-4,15,0,0,3,8,13,-7,-11,-6,14,10,14,-3,9,11,13,-7,2,16,7,13,-6,10,-13,-2,-12,10,7,6,-9,-6,12,3,-17,-15,4,0,7,14,14,-10,12,8,-13,-2,-1,2,10,-14,27,12,-1,-3,-4,-4,14,-6,4,-10,0,-9,5,11,-7,-5,-3,-3,6,-15,-5,8,3,-6,-23,-26,16,17,7,11,-14,-14,-18,-12,9,-12,14,10,-3,0,11,-6,-21,-8,-2,-2,-6,1,3,-8,-8,9,8,1,-15,16,-4,3,-8,-13,5,-2,-6,7,13,12,-1,6,-9,-9,-9,-1,-1,18,12,-13,-12,-15,-11,6,-5,-3,5,4,2,9,3,7,11,10,9,15,-8,10,-6,8,1,-3,27,25,11,1,-3,8,-10,-6,20,-3,14,-9,5,-7,-5,4,0,6,-6,-9,-3,3,18,16,7,11,-5,9,10,-11,16,-5,40,21,2,6,-11,6,-7,-7,12,5,14,7,7,-9,-11,1,14,4,-2,4,-9,-2,-17,-19,13,5,11,-1,-2,-10,-12,-4,12,0,3,9,-14,2,-4,11,8,19,-8,-10,10,9,6,1,3,15,0,7,7,8,5,7,19,10,-1,2,-6,-14,8,-8,-16,2,12,-5,16,-12,16,-2,-4,4,-3,14,-7,10,-11,-3,-11,-7,-6,15,4,-6,6,-7,18,7,-7,-12,-5,8,-3,-15,-1,3,4,-4,-10,-10,2,-3,-9,-2,-6,-16,9,-6,15,-15,-13,-8,12,16,4,-5,12,-4,14,0,1,5,-9,1,17,12,42,28,9,-11,-4,-3,-11,5,-3,14,11,-2,11,-12,-19,-17,17,1,-8,13,-2,-6,-9,11,29,19,-6,4,7,-1,3,-14,5,15,-9,-11,13,3,-6,13,34,18,4,-8,10,-12,-7,1,7,-4,-15,-14,-12,7,6,2,10,-6,4,3,15,0,4,-5,-8,9,9,15,0,2,-4,9,25,2,14,-14,12,0,-4,-15,-14,6,13,17,-1,-3,11,17,9,8,2,1,11,4,13,5,14,-7,0,-3,-11,7,-5,6,8,17,-9,12,-5,-9,-15,-17,12,1,-3,-7,-13,-5,17,-2,19,-1,7,14,-3,-10,24,-6,6,-8,14,4,14,0,-9,11,0,-3,-5,16,-8,-9,-1,2,0,15,6,2,-10,7,-2,-12,33,19,13,1,7,-10,-3,11,30,2,12,15,7,2,-7,1,-4,18,-9,-4,15,7,-1,-4,10,-2,-8,3,-15,1,7,-20,-13,0,12,6,9,8,1,1,-2,10,9,17,-5,-13,27,18,5,6,-11,-14,-8,12,-5,6,14,8,8,-6,12,-11,19,14,16,-10,10,0,2,-12,-8,13,-1,-7,-12,-6,-2,-9,3,7,8,5,-7,4,6,0,-3,-12,4,-13,9,11,-11,-15,17,12,-5,2,6,17,2,10,56,25,-13,-2,7,9,0,1,-17,-1,-13,12,-6,-7,-7,-14,11,15,-7,5,-6,-6,-2,-11,-7,-5,25,20,-5,1,15,14,-8,-17,28,11,-9,-12,-3,-2,10,1,4,-10,-3,-8,-2,5,-12,8,-14,9,-10,0,3,-7,-2,-14,-25,0,7,6,-2,-11,15,-5,-10,-7,13,-2,5,9,19,8,17,6,2,9,13,9,-7,1,-1,12,9,15,1,-12,2,10,15,9,-14,6,-10,-5,-7,-9,-4,-9,-4,11,-1,11,9,8,1,-7,-5,10,-2,2,3,2,14,-6,4,4,-15,-15,-1,6,1,-2,-13,3,11,-2,10,5,-11,-1,-13,9,9,-3,12,-5,13,14,0,7,-6,-8,-12,5,15,14,-15,-9,-12,16,-3,-3,20,15,13,-9,-2,-6,-7,-6,15,14,-2,3,-9,-2,3,0,-4,-19,-7,8,2,9,-10,13,12,-4,-7,-8,-8,6,1,-7,14,7,0,-12,5,-15,-7,14,-15,3,4,-3,12,-8,17,13,7,-15,4,0,-1,0,-5,-9,0,8,10,3,-11,-2,15,-10,9,8,0,-5,6,7,2,13,3,17,5,10,12,-1,15,2,-8,12,11,1,13,-9,-11,-11,17,-9,-12,0,10,-6,0,-9,19,14,-13,6,3,3,-6,24,13,-3,-1,6,-12,-2,6,-17,0,1,-6,-4,0,7,-1,12,8,6,-2,-13,4,11,3,-18,1,16,-1,-12,12,14,1,-12,15,-7,4,0,10,5,11,-11,20,-6,-8,-8,-4,-12,-6,-14,13,-4,-3,9,14,-14,-2,-20,13,10,2,-4,-15,10,2,-3,6,-8,-13,4,12,-12,-4,14,8,-2,13,-15,-2,-13,0,-3,15,-14,7,-7,-12,-13,-5,-9,-6,-14,5,4,14,11,1,0,21,22,5,12,-5,1,5,-1,15,20,-1,-9,10,12,2,2,-13,-8,0,8,-8,9,18,-4,20,-9,3,23,-1,0,11,5,21,27,14,0,16,3,6,2,6,-5,3,5,9,-2,12,-10,-10,17,-14,-11,-13,-9,-6,-16,24,24,0,-10,-3,-10,6,-1,32,6,-11,5,-3,9,12,-7,20,-2,4,-13,15,-5,-5,-12,1,5,-13,5,0,-7,-20,2,6,-12,-15,-12,-2,-14,-1,-6,-12,-16,-13,14,-14,6,27,24,22,12,-5,12,5,4,-2,-17,-10,-10,-4,6,-9,-1,-14,-1,18,-1,8,5,1,6,-15,-5,13,1,5,12,-10,3,-2,4,2,13,10,-9,-11,-13,-10,0,11,9,7,-3,3,-18,-3,16,-7,-13,5,5,7,9,31,19,12,-5,-7,14,-14,15,3,2,-14,-6,0,16,-9,-3,1,11,6,10,8,7,-12,-5,-8,-2,24,21,14,0,3,13,-6,-13,29,5,-10,15,0,-6,9,0,-4,10,-7,-5,6,5,-12,14,1,13,-14,0,-4,-9,-19,-1,-18,-18,-11,7,-9,10,13,-5,-3,-11,-14,19,-3,8,8,2,16,9,3,-7,-12,-2,-11,-9,-10,2,11,1,1,-13,-11,-4,-8,8,4,-5,-12,1,-9,2,25,7,8,5,-8,11,5,6,15,5,10,-3,13,-6,-22,-8,5,5,2,12,-1,10,18,13,-4,-2,-1,19,6,-12,30,7,10,-3,-9,-10,-10,-7,-9,-3,-6,-2,-10,9,1,-5,-10,-7,0,-14,0,2,14,1,-16,-5,9,-1,-11,-12,6,17,-8,-3,24,23,3,-13,-7,-5,-14,-3,3,7,6,1,-2,8,-5,-14,13,13,9,-6,2,-13,-12,-8,-27,-6,10,13,3,4,4,-13,4,9,11,6,1,-13,25,11,-2,8,0,-1,-5,15,4,5,14,5,3,-13,-2,0,-6,-9,20,14,10,6,-6,17,-6,-3,16,-2,11,9,9,-6,-1,-14,2,9,14,2,12,2,-3,8,-12,4,7,-11,-10,-5,0,20,3,-9,7,25,12,3,63,38,4,9,-5,9,0,-15,-15,10,1,-6,-3,-6,8,-14,20,16,9,-10,-11,10,-2,12,-23,-8,30,20,13,3,-13,-1,-14,6,43,18,-5,-1,12,-4,-8,10,-3,-5,-12,-12,-11,0,-9,7,-1,12,14,-2,6,-10,13,-11,-13,2,-5,-3,13,2,-4,-10,-12,-5,-7,10,14,-3,36,12,6,-2,-9,2,12,2,-6,10,6,3,-2,4,13,0,2,12,10,9,0,-13,-1,-6,-14,-11,-2,17,-6,-8,15,4,-9,-2,6,-11,-2,1,-10,-13,16,-18,2,-1,-6,-4,-9,5,10,2,11,11,7,-9,-7,-9,1,4,6,4,-11,-13,0,12,6,-2,-7,-9,-13,-8,11,-13,4,2,-7,1,-2,-15,6,9,5,2,14,2,9,-13,-3,3,-11,-10,23,14,11,-4,-7,3,-13,6,23,-17,-11,12,-6,-8,-2,8,-3,-10,12,-8,-12,-4,-16,3,16,7,-6,-9,-6,7,15,-8,-11,7,-11,0,4,2,3,12,5,-3,-15,5,-11,3,-7,-13,7,2,-14,3,11,-10,-2,1,11,-10,10,10,6,-1,13,1,8,17,-4,7,-14,11,-6,7,-8,12,-9,-3,5,-7,10,-17,13,14,4,-5,10,-15,17,3,12,-3,-13,20,-6,-2,-2,3,26,-6,-7,12,-1,12,10,-9,15,4,9,18,-6,5,-12,13,13,-11,0,10,-2,12,4,-13,18,8,-6,2,-4,-10,-10,3,28,7,-6,9,-10,4,7,-11,7,5,-8,-10,3,8,-1,-4,-1,-12,-1,5,-3,-10,-22,-30,7,1,-12,10,12,11,10,-9,-17,-4,-10,5,2,14,10,5,-7,8,6,-17,-8,-12,-7,-12,5,1,3,13,-1,14,-19,5,11,2,9,18,-14,-11,7,19,24,10,10,-3,-2,12,-11,-6,10,7,12,5,-2,-14,-31,-27,-4,5,-4,9,6,9,12,0,-6,-2,8,21,4,7,40,32,9,9,-4,-12,-6,8,5,-19,7,-1,3,17,-13,9,10,24,17,4,-10,0,7,13,-16,-15,7,-5,-11,-13,-9,-11,-9,4,39,12,1,-3,11,5,-14,6,0,-6,-15,-8,-14,15,2,-12,-1,-4,10,-6,2,-3,-15,-16,-1,-1,-6,5,-13,11,-3,-7,-12,-14,0,25,5,12,30,34,-4,4,-1,3,0,-3,-8,-14,6,5,-14,3,3,-12,11,0,-2,-7,-14,5,-4,11,-11,13,17,-7,13,-7,-7,2,-2,8,17,24,1,-17,5,-6,-4,-22,11,-8,6,15,-4,-5,2,-8,-12,-4,-6,9,7,-26,24,38,-13,-32,3,-16,-11,-9,-9,-16,2,9,0,10,5,13,10,1,-5,1,-2,-1,-2,-1,-5,-18,4,8,14,-13,-14,7,0,-19,33,-6,-3,15,-11,2,6,4,-13,-17,-11,14,-14,-6,2,-4,4,10,12,3,6,-11,-24,-5,-25,-25,-1,0,-2,-6,-1,3,8,10,8,12,10,2,15,14,-11,-13,8,12,12,15,-14,-14,-4,-14,5,-10,-2,-8,11,-12,12,17,14,-11,0,12,-5,14,-5,7,10,-6,12,1,-2,3,14,10,5,4,6,1,-6,-7,9,10,2,4,-1,11,-3,-7,2,5,-11,23,12,-20,33,21,3,-9,-1,13,-14,11,-8,-5,-10,2,-9,-2,4,9,8,-1,8,10,-10,-15,-12,11,-8,-1,-4,6,2,8,-6,-12,-18,-8,20,23,1,-13,14,10,12,7,6,-8,15,-1,9,5,11,2,-1,12,-11,0,-12,-4,-3,3,-18,-27,9,0,2,2,-14,7,6,12,-8,16,9,-5,21,23,-12,-7,11,-4,-1,-12,1,3,-9,-10,13,-8,12,14,11,-8,14,10,1,16,4,-1,-7,14,10,9,-14,5,13,-3,0,14,10,16,7,13,8,-14,8,-8,-4,9,-14,1,5,-11,2,11,5,9,-2,-2,0,-8,42,35,4,-14,7,8,8,9,-3,-14,6,13,2,8,-11,-5,10,5,17,-14,9,13,-11,7,-17,-14,11,6,-12,7,9,-11,-2,-7,28,-2,4,-6,-11,-12,-12,14,9,0,-3,8,0,-10,12,8,-9,2,3,11,-11,0,16,15,-20,-21,6,-3,-8,0,0,-5,2,12,14,19,8,-15,32,2,0,5,-10,-5,6,4,20,18,14,7,-2,5,0,5,19,-7,-7,1,-8,-7,-10,9,2,-7,18,-8,6,-8,10,-9,-14,-6,-9,10,-2,1,-2,3,-13,-9,-6,-1,0,15,-2,12,1,-13,10,4,-8,-12,11,0,-4,-15,13,5,6,-13,13,-14,8,2,12,10,2,-11,-10,-4,-4,6,-7,-16,-8,14,0,4,1,-15,-4,8,-11,9,-2,-1,8,-15,7,-8,-6,3,7,-7,-3,-10,10,-6,7,2,10,-12,14,5,14,-2,8,-9,1,-5,-4,-20,-2,-3,10,7,-8,0,2,-5,-18,7,15,-4,-12,9,1,-9,-9,-16,7,-4,11,9,-18,-6,-2,-6,5,-5,11,-13,12,6,-8,13,-11,12,3,3,10,-14,4,22,3,-8,11,-4,-1,-12,-5,16,1,4,-14,14,-18,-15,13,14,-13,4,-4,0,14,15,8,3,12,-9,11,1,-9,-15,16,12,3,-9,-2,0,-15,-5,11,-14,15,7,-5,0,-17,-14,2,-16,0,8,-6,12,-18,-6,22,6,12,-9,-11,12,-2,-14,28,26,15,-9,4,12,-8,-8,3,11,3,4,-9,-14,14,7,1,7,-2,-15,-3,6,-32,-5,-9,-4,4,-8,7,1,3,-11,-17,-3,-1,-5,3,-9,-13,-6,-2,-3,-11,2,9,-1,-19,-6,-6,-7,-4,-3,1,6,-7,8,-7,7,-8,13,-5,2,-1,-9,30,10,-6,8,13,-10,-16,-12,21,-5,7,10,-12,-10,-12,-21,-6,6,15,4,-11,15,5,-1,-1,19,-6,-1,-5,-7,27,17,8,5,2,4,-8,-10,-6,-2,-13,14,-5,-7,11,11,5,16,10,-5,4,-18,-2,6,-19,-25,18,17,3,-11,-4,2,6,0,35,22,-4,0,-6,-14,-9,5,18,14,13,-5,-2,-3,7,-8,-14,-13,3,0,-4,-12,-25,-16,0,-11,-9,10,-3,11,-14,-8,-15,-13,-8,20,-11,13,19,22,29,14,6,-9,11,1,-4,2,-6,14,7,8,-7,16,-18,7,-5,6,9,-1,11,8,-11,11,19,21,15,9,-8,2,1,-8,25,20,-9,-7,15,0,6,-9,2,2,15,2,1,-11,-3,3,9,7,10,15,-1,13,40,34,9,-2,14,-12,5,8,-15,2,-10,-1,-3,-5,-1,0,-10,-3,0,12,-13,-14,5,15,-8,-19,11,17,9,-2,-8,11,-19,-19,28,32,-3,11,-1,-10,-4,-2,-14,1,14,4,13,11,8,15,-9,1,-8,9,-9,-3,-18,-11,-24,-3,1,-1,-4,2,9,5,4,-7,-4,19,3,-10,20,25,9,1,-13,-13,-10,5,-17,-17,4,1,-11,-8,15,2,-14,-10,7,10,4,14,6,3,-8,7,-1,10,5,-11,-2,-12,4,1,25,1,-6,0,14,15,-6,5,-11,14,-2,10,-13,6,14,15,-12,-4,-2,-2,1,-4,28,17,-11,11,-6,-14,-5,-7,8,-14,-2,-11,-3,1,13,-12,3,-6,-5,5,-7,10,0,-5,-25,-20,17,-8,3,-3,5,14,-19,4,22,18,12,-2,2,-2,-8,12,-11,6,3,3,-12,15,0,8,13,-14,0,9,12,-4,-8,1,-21,-27,12,15,2,-7,-5,7,9,13,15,14,-13,-13,30,24,-7,13,10,-8,10,-11,16,13,-11,11,8,3,-13,11,3,16,-3,17,13,7,3,6,8,-2,-6,0,-6,16,10,9,8,-6,2,-4,9,2,9,10,-6,11,-4,7,-10,-5,-5,8,21,-7,7,-5,10,10,-10,11,41,37,10,-1,3,1,-1,6,0,-6,15,1,-13,2,2,14,13,28,7,-5,15,-3,6,16,8,4,-1,-5,-14,4,5,8,-5,0,5,-4,-14,-2,-14,5,12,-11,8,-9,14,-4,11,14,11,-2,-2,-10,-5,17,-14,9,2,12,-17,-8,14,15,7,8,11,-5,-11,-6,8,7,2,1,19,22,-9,-4,-13,3,-5,9,-7,0,12,-9,3,15,-10,10,24,10,2,10,-15,-7,5,0,4,-6,6,10,-1,13,5,-6,14,7,-9,14,-14,7,10,-4,-11,-16,2,18,0,4,5,-9,0,-6,1,-18,-1,-2,8,-13,-15,-3,-46,-19,-4,1,4,-2,-19,3,11,3,-1,3,9,-10,-1,0,-15,-7,9,-13,14,13,-3,-3,2,5,-8,-10,-8,10,-12,-4,6,4,1,-11,-10,-18,-8,8,-10,-18,-9,2,-3,-4,2,-11,-10,-2,5,-4,-13,7,-17,0,-19,-13,1,-11,1,8,-2,4,-21,5,-2,-5,2,-5,13,-8,-7,-8,4,8,-12,7,4,-17,-4,-11,6,1,-14,-2,13,8,5,-8,0,1,11,9,-4,12,1,-4,-1,14,-10,14,16,-6,0,-2,4,-10,-7,12,-29,-8,18,15,15,6,-12,12,6,4,-17,-23,5,9,6,-21,-1,0,-19,-21,-1,10,13,-1,-18,0,14,-5,7,-10,-10,5,17,17,6,-9,-13,10,-11,6,-41,-24,11,-3,-10,-13,17,4,-20,-13,8,9,-12,12,0,-7,-9,2,-32,-24,-12,-4,3,-2,1,-1,-8,-2,-10,-8,-3,-9,-32,-11,-37,-21,-11,-14,-10,-10,9,15,-5,-7,12,9,-10,-10,-2,1,1,-13,-7,-6,-13,6,-4,1,-11,-3,6,-8,13,-14,4,1,9,13,2,10,17,9,18,6,20,29,6,11,-2,5,-1,14,19,5,2,-8,-13,5,-10,-24,6,10,5,11,8,-3,-4,15,-12,-3,4,13,-3,-10,19,23,16,2,-2,8,3,-1,-22,-17,10,5,6,-1,-2,5,9,20,-14,10,-1,-15,-8,17,-32,-5,14,31,-12,-3,10,19,-3,-20,28,26,-2,1,-5,8,13,4,-16,-18,3,6,15,4,4,8,1,5,2,8,-6,-9,-19,-2,-31,-19,-5,-7,-5,12,3,-12,2,-18,-6,19,12,-9,11,7,7,0,12,6,6,4,3,-20,11,-5,12,11,3,4,9,-6,7,5,-10,11,15,14,19,17,22,11,4,-11,-7,-9,-7,-3,7,21,-7,3,11,8,5,-11,-9,11,12,1,-5,-10,4,3,-8,11,6,23,13,-12,27,36,15,14,-13,0,3,-5,6,-11,-4,1,14,5,-5,-9,1,24,-5,5,9,-10,17,-4,-22,1,36,15,-12,-4,10,-8,-6,-6,52,18,-9,7,10,1,8,-9,-20,-16,14,8,-2,1,7,-9,-11,12,-5,-10,5,-1,-5,-11,-14,-10,15,6,-10,5,-1,-14,-6,-18,3,-3,12,-2,34,10,8,20,2,2,-1,11,11,-13,-5,0,1,7,1,8,8,14,15,-8,6,-4,16,-2,-2,19,6,8,5,3,7,-8,-2,19,16,22,-10,-11,-14,10,-16,-10,-13,-10,15,8,16,-16,-8,-7,-5,4,-4,24,15,2,49,35,-11,-2,-14,-4,-11,-10,-17,-2,-5,-7,10,12,14,-6,15,23,1,6,-4,5,-12,0,-11,-4,14,-1,2,9,12,4,-4,-14,33,25,11,-9,4,7,-13,-1,-8,4,14,-10,6,13,0,-2,2,9,1,7,-2,0,8,-18,-32,-13,8,9,9,9,3,4,10,0,0,-4,1,14,17,10,23,5,6,12,-10,1,-8,7,-6,2,-11,10,-8,9,7,14,-4,-11,5,14,-11,-2,21,22,-5,-8,8,-1,-6,-10,26,19,17,-8,0,-11,-7,10,-13,-4,-6,-2,0,-12,-4,2,-4,-6,-9,-8,9,19,6,6,28,22,-6,-6,9,3,-14,3,-12,-8,-11,-2,2,12,12,-9,18,30,-9,-7,-10,-9,-3,8,1,-8,5,-9,-1,-5,1,-1,-13,-22,30,26,-14,-10,-1,7,-12,0,-7,-8,-3,-10,10,-13,-8,-4,-3,-10,-2,2,10,11,11,5,-17,-24,15,-8,-11,-14,-9,-8,-13,12,2,4,3,0,15,9,17,12,-13,5,2,-11,1,10,-8,0,-4,13,8,12,10,-7,16,-1,3,16,-11,5,-3,-8,11,11,10,0,1,-11,-7,7,6,7,5,8,8,4,-16,5,-11,-4,-9,0,-2,-12,14,-4,3,8,12,13,-19,11,-8,10,-14,7,10,-4,-6,13,-12,11,8,14,7,-5,-9,-9,11,5,-5,5,2,0,2,-9,4,-14,9,-5,6,15,-15,-5,9,1,-14,-8,-13,3,-15,5,-10,-14,1,2,8,2,-9,-5,2,5,12,-13,-2,-2,-15,-6,-4,-15,8,3,10,-6,0,2,15,-2,-1,4,15,-14,-6,1,9,13,12,11,14,-11,1,4,-4,2,-1,10,7,9,2,-4,13,2,6,0,-5,-3,3,3,15,-10,11,-10,-6,-7,8,-10,-12,-9,3,-2,8,9,2,11,4,-9,17,11,-6,8,-15,9,-10,-10,-10,0,12,0,9,15,-7,-14,3,-2,-14,-7,-7,0,-13,-2,11,-7,9,-15,-13,-6,17,-4,9,13,-12,9,-6,11,11,10,12,9,-6,4,-3,-13,-5,-10,12,15,-4,-14,8,-3,10,3,-9,16,11,-12,-5,-4,-8,4,8,15,11,-5,-2,5,-7,10,2,-4,9,11,-12,3,10,-5,6,0,-4,-11,-9,-6,-5,15,3,-9,-14,0,6,-8,10,-4,14,3,6,-13,4,-12,9,-8,7,9,5,12,3,-9,5,-8,10,7,-1,-9,-5,4,-9,10,2,-11,-1,14,-12,-12,15,10,17,-2,-13,-13,-13,-7,10,9,-1,14,7,-3,-6,7,-3,0,6,-7,-6,13,-11,13,-3,-15,-7,11,-4,-13,-10,-11,-6,8,4,-8,-3,15,5,-3,-5,-15,15,3,-10,15,-6,-13,-1,-11,1,-1,10,-13,-1,17,-11,-9,7,6,2,0,-7,13,1,7,-2,-5,10,17,8,18,-1,9,4,13,6,-6,-1,5,4,-6,5,-1,15,-11,-1,-13,14,-3,-4,10,7,5,-1,11,-13,9,4,-3,14,8,13,-4,16,2,14,0,-13,-7,11,14,14,-14,8,-7,13,4,13,2,-1,-8,-1,-5,12,-8,14,1,-1,13,14,15,-4,0,-5,-4,3,-5,1,12,-1,-13,-8,-2,5,0,19,3,-8,15,-3,-10,-6,5,15,-14,2,-14,1,3,-4,6,-12,-6,9,16,-10,16,10,-14,-4,11,-8,6,1,1,13,5,14,-7,15,-8,-14,5,8,-5,-9,6,10,5,-3,-4,4,-1,11,-7,10,8,2,4,5,-13,0,-2,5,5,1,-10,14,13,-8,-11,7,14,-10,-12,0,-2,9,9,-7,11,0,-6,10,14,7,9,2,6,-11,12,7,7,9,13,-8,12,-5,15,12,2,8,5,15,-8,8,-4,13,-4,12,5,9,21,0,9,-4,-4,15,3,-2,-4,5,20,5,-9,-1,0,10,-13,-9,24,11,12,1,-13,13,15,14,14,-10,-4,9,-15,13,-7,-9,-12,-5,2,1,-10,6,-4,6,7,-4,-13,1,-13,-6,13,6,-2,4,-1,-7,1,-13,15,-5,11,11,9,16,2,-11,7,-3,-11,8,-10,5,13,-11,15,3,11,-16,-2,-1,0,2,12,-7,-5,8,11,-10,4,15,-12,-3,11,5,9,13,8,14,-1,-3,-7,5,12,-7,12,16,-10,-7,3,10,-5,6,-10,13,-2,0,10,12,4,1,5,-12,4,4,16,-13,0,4,0,4,-1,-1,-8,5,6,4,11,-11,-4,16,18,8,-1,-3,15,3,10,16,26,-5,1,20,7,-4,-1,2,-12,-15,-12,13,10,13,-1,-8,7,-3,15,-13,13,12,-4,16,8,-14,6,7,-1,4,17,-7,-10,-11,-9,8,13,13,0,11,-5,15,-12,5,-13,11,12,-13,0,-4,12,11,-9,-7,-7,-6,21,-10,-5,-8,-13,-10,-12,-11,-11,-13,10,-3,-2,-7,-13,-3,-11,4,-12,1,-12,10,-7,-5,5,3,13,6,3,-2,-4,-1,-13,10,-9,-4,12,-13,-10,-14,1,10,2,-12,16,-6,-8,13,-3,5,-1,-10,9,6,-3,-4,14,-2,7,-9,1,1,9,-12,-4,-4,3,-4,-12,7,1,11,-8,7,-3,-13,-8,7,-5,4,-13,1,-13,7,-13,14,13,-12,15,-4,-13,-2,-2,9,-14,-5,9,9,14,-11,0,-11,11,-5,-4,12,12,2,11,1,8,8,-1,13,13,-13,-1,-12,-12,-12,-6,9,5,5,6,-10,7,9,10,15,-6,-8,12,-12,4,13,7,-9,-10,-12,13,7,7,-9,-6,14,-7,16,9,-6,-9,-8,9,-6,-15,1,8,2,8,2,-11,-13,12,-5,0,4,0,-11,-2,0,-2,6,2,2,7,3,9,-8,11,10,12,13,-3,4,6,1,11,10,-8,15,12,-6,16,7,8,-14,-12,-12,2,3,-7,-9,8,-19,13,1,10,-13,1,-8,7,-1,-14,14,4,3,-12,0,3,14,10,1,7,0,15,-11,3,-12,6,3,-3,-10,10,9,-4,11,7,13,1,11,-4,14,-1,-10,-12,9,-4,2,15,8,5,6,-14,13,11,-9,-5,5,-1,-2,3,6,-5,-13,11,9,-2,-6,4,1,10,-11,3,-8,-14,9,11,11,-1,9,-11,-4,-12,9,7,3,16,2,-10,-12,15,13,-3,-11,-13,-14,-2,3,-3,12,5,-11,0,-10,13,5,7,-15,-7,-5,14,5,8,-5,12,-2,12,-5,9,12,2,-13,-7,14,-8,12,-10,-16,7,17,6,0,6,7,-11,-11,-1,-14,-5,12,6,9,13,11,-13,4,-14,11,8,11,-4,3,-10,13,-4,5,1,16,-6,10,-7,13,0,-6,14,-13,-10,-10,14,-12,13,-3,0,0,-2,14,6,-4,-8,11,15,-11,-8,-2,5,-14,-12,-5,-15,-9,-13,6,-4,14,3,-9,13,-3,-13,-11,9,6,12,-9,-8,7,-5,-3,0,-11,-9,-13,0,9,-3,-13,12,-6,8,13,-5,4,-14,-14,-12,10,9,-8,-5,-5,-4,-12,-1,2,5,13,12,-1,9,15,8,-1,-11,-2,-13,15,14,8,-1,-7,-6,6,15,9,-8,-9,-10,13,-11,3,9,14,-5,0,7,2,8,15,-13,-13,-11,-1,-13,-3,12,-6,12,-5,-12,13,7,14,4,6,10,-3,-12,-12,11,13,-8,16,12,12,-4,-11,-13,-13,-8,7,-7,-12,-10,-8,6,4,3,-7,-13,-6,-2,13,12,10,1,15,5,6,-9,-2,-12,14,-4,1,-5,5,12,-12,16,0,11,-4,4,-12,2,11,-10,-8,-11,-1,0,13,5,6,7,9,-15,-6,3,1,-14,13,9,4,-9,25,-2,11,3,-11,-10,-13,-4,0,-10,-5,7,16,-1,3,0,-14,14,12,-9,7,13,14,6,-2,-6,0,11,0,-2,-10,4,26,4,7,5,13,-12,-11,14,3,-7,3,12,-5,1,-5,-5,-11,5,8,15,12,-7,1,9,25,-10,15,10,-10,1,6,3,12,0,10,-10,-3,-12,13,5,-3,3,5,7,11,-3,-14,12,6,1,13,15,13,14,-9,6,5,-12,15,3,-3,-11,4,9,11,7,10,15,4,5,11,12,-1,-3,6,7,1,-6,-14,0,-1,9,3,14,8,-10,8,11,5,-4,3,-1,-8,9,-4,-7,9,-14,-1,2,3,-10,-7,-8,-6,-13,4,-3,-2,-10,3,8,-2,-3,-12,6,-10,-6,10,-9,-2,2,-10,10,12,18,6,5,29,-14,2,-9,7,-1,5,-7,4,-14,8,-13,6,-1,13,-13,3,-10,12,4,-8,-11,-11,12,25,7,6,3,14,8,4,12,23,8,-8,-9,-1,4,-3,-7,0,14,15,13,-8,9,14,-15,13,-14,4,-10,-7,-6,6,15,10,12,-5,-13,-13,-1,11,7,-8,-11,0,3,3,8,11,8,18,5,-9,-3,15,2,0,5,-3,3,-4,-12,-6,6,11,13,3,-7,0,16,2,-1,10,11,11,6,-2,12,-9,-11,15,-11,4,-8,5,10,5,14,10,-12,7,9,-5,-10,11,8,11,-8,12,13,8,-2,-5,-2,11,-9,1,10,-9,-3,14,5,14,-8,6,14,-8,4,7,-10,-14,-13,0,-10,1,-13,5,-7,1,7,-5,17,-6,-8,14,1,-13,11,-1,0,0,-14,-4,5,0,-6,-4,-3,-9,1,8,14,15,-3,-11,6,-2,-2,2,0,10,9,17,-1,-5,15,1,-12,-12,10,2,-1,10,-2,-14,-12,-2,-8,16,-6,0,15,4,15,4,6,-6,12,13,-9,-6,-15,13,2,4,-5,10,10,7,11,-2,-3,-7,-2,-7,13,-9,2,13,-5,3,7,9,-16,14,13,13,9,4,9,2,-12,-13,-7,9,6,-2,1,2,-14,1,-19,5,12,-6,-2,11,10,-4,-2,-7,10,1,14,-1,-4,14,12,8,14,2,0,-6,7,-15,-1,-2,-3,6,15,-9,2,-9,-12,12,4,-5,-1,-12,-9,-2,-11,11,-11,3,11,2,-11,12,-12,2,-9,-14,12,-13,-6,-6,-17,0,-5,6,0,9,-4,-12,6,11,-6,12,14,-7,2,7,7,-5,-13,-2,13,12,-4,0,10,12,14,7,1,0,15,9,4,1,-11,1,11,-1,-6,-4,-3,16,3,-7,6,0,-9,5,3,-12,-3,14,-9,14,-9,-7,-12,7,10,-11,0,0,-11,-3,3,15,7,19,-9,-9,16,-2,5,3,8,4,-4,-2,11,11,16,-13,10,-12,-3,0,15,6,5,-19,-1,-8,-6,12,3,8,12,-2,-6,1,-4,-11,-12,-4,2,5,3,14,-7,8,9,-3,-16,-9,3,3,12,4,6,0,4,3,2,-14,14,-7,9,15,-16,9,4,-2,-11,2,-9,-11,-7,15,-1,2,-14,6,-5,7,-7,8,-15,12,17,14,12,13,-5,1,-7,3,-12,-1,-5,13,-4,7,-12,-4,-12,-5,14,-2,5,10,-4,4,12,13,-2,11,-4,-15,-12,0,11,-11,11,-14,-11,9,2,14,13,7,-5,1,-13,10,3,-2,2,5,-2,-7,7,-21,2,31,7,1,-16,5,-12,-7,2,-6,7,-8,13,-5,15,-5,9,16,-10,3,2,-1,-9,1,-7,26,3,-10,7,-13,-10,-5,-6,-1,14,-3,8,-9,8,12,12,-2,-6,14,5,-6,-13,-7,15,14,-14,9,-4,10,0,4,-7,-7,-2,6,-7,-7,-2,-7,-11,3,10,13,-8,-7,15,10,-12,7,13,5,-6,-1,14,1,8,-7,8,7,0,10,7,11,-8,2,1,10,9,-5,16,-2,0,-5,2,2,-7,4,-8,2,14,-11,-9,5,-16,3,-13,2,1,-9,-10,-8,-11,13,-8,-13,12,1,11,-7,9,-3,-8,-1,-1,30,-3,-6,-3,14,4,12,10,-1,2,-6,-8,-6,9,3,-6,-10,-9,5,-10,5,10,1,5,7,6,0,-10,-7,-2,6,-1,-4,-9,12,14,-3,-10,1,-2,-7,-12,6,3,12,-5,15,1,15,0,-2,-5,11,-2,-4,6,-9,15,-6,13,-12,-4,14,-9,-10,-10,1,15,1,-9,-3,-7,15,6,9,4,10,-13,-10,10,13,8,7,7,-9,14,-1,7,-10,0,0,11,16,-13,6,8,-8,-12,10,1,8,1,2,14,12,-1,3,13,-11,5,16,12,6,-8,9,-14,0,4,6,15,13,-13,11,-7,-11,10,-9,8,28,-15,-13,4,-8,-7,-2,1,-2,-2,-10,-5,-13,-2,-2,0,3,6,1,7,9,7,10,-8,11,-14,-10,12,-4,9,-4,-13,19,11,-10,0,13,16,9,11,2,7,-11,11,13,-5,-11,-13,-12,-14,12,9,-5,17,-15,10,11,-3,-5,8,1,-3,12,5,4,14,8,3,10,9,-11,1,0,-1,-14,8,8,-13,-10,-9,-14,-10,8,10,12,0,-3,9,-7,-10,-3,-1,-4,6,-10,-14,-1,7,-2,-4,-11,15,12,1,-1,3,-7,-9,-13,4,11,-1,-10,3,1,5,13,-6,10,3,-9,1,6,11,-3,-22,-14,2,9,-8,-10,0,-7,13,17,1,12,2,15,14,-4,-11,-10,-13,-13,4,14,-16,7,-4,13,-14,-11,16,0,-14,1,11,0,0,0,10,-5,-14,8,-1,5,-8,-2,8,12,-2,-8,-6,-14,8,1,10,4,-4,14,-4,6,-6,14,-4,0,-7,11,12,5,4,-7,-9,4,-12,-12,-15,9,0,-7,1,-8,6,13,-8,3,-7,-11,4,10,-8,1,11,7,-11,-1,-4,11,1,7,8,-5,2,-3,-7,11,15,-13,7,12,-13,15,-6,10,-16,11,10,-4,12,-3,8,-3,-10,10,3,14,-10,20,7,-1,18,14,-14,-8,5,6,1,8,7,-12,11,7,-5,0,13,12,-10,-6,12,12,-6,-9,12,-5,-16,-6,-10,-5,1,0,-11,-2,-1,2,-10,8,3,1,0,-13,-8,8,-4,-14,2,6,-13,-5,2,6,12,-8,-10,14,-3,7,12,4,-21,4,3,0,-8,-13,-14,-3,-9,-4,-12,-1,-11,5,6,-7,-14,-11,2,19,15,8,-11,6,1,0,3,12,0,7,1,12,7,-5,-3,-9,8,4,-12,-6,3,9,12,19,9,-13,-12,1,-9,7,-13,-3,5,8,-2,-1,-14,-4,-6,9,-1,-12,-5,0,8,7,-5,26,-6,-1,1,-7,-13,-24,-9,11,-4,-4,-16,1,10,-12,-8,-4,7,5,1,-11,15,-10,6,5,8,-1,-14,-11,-10,-10,-2,24,14,-6,-17,10,-5,12,-15,29,14,2,-12,-3,-2,-10,-10,-3,6,-5,-6,-8,-9,8,-5,-6,2,-4,7,-1,-10,-11,1,7,-9,-7,4,-10,0,-4,-9,-14,0,-9,5,5,-3,-9,-7,-3,-1,-12,-11,0,-10,1,11,2,3,-15,2,11,-6,-7,2,8,0,1,-9,8,-6,7,-1,10,3,-9,-1,-5,11,-18,15,2,15,14,7,14,11,22,-3,-13,5,-5,-14,3,-18,-1,-7,25,-5,-13,15,8,-10,-24,-18,18,4,3,-1,14,4,4,8,6,-5,-14,8,-6,16,1,0,1,6,2,3,2,9,8,-10,14,8,-2,-13,-1,-7,1,-13,16,-1,4,-4,2,-19,-8,5,21,3,15,-12,12,6,14,9,-2,14,-8,-5,13,-13,0,14,4,7,12,1,-7,-4,14,2,-7,-10,8,0,-11,-2,-16,-6,23,6,3,-14,-3,4,-7,9,11,10,-14,3,-2,13,-3,-14,-14,0,14,6,-5,10,12,3,3,5,12,6,14,14,2,5,5,14,3,-15,-10,15,3,9,-14,13,0,2,-10,1,2,3,7,12,14,-2,-10,1,8,-10,15,13,-11,1,-10,15,-14,-9,14,14,-6,1,6,-3,3,-12,8,7,-12,6,3,1,6,3,-3,4,-2,-7,12,8,1,0,19,3,9,7,6,-8,-8,-5,2,-9,13,-7,8,-3,4,-8,-2,1,-14,11,10,-9,-11,-3,-7,-14,-14,9,12,2,-6,-6,5,5,4,16,17,3,-2,13,13,-15,-6,-7,-1,11,-1,10,-10,-2,0,1,-3,-8,-12,10,-3,9,-10,-6,4,-4,7,-13,1,-2,-4,-10,4,-11,-9,-3,3,-5,-9,-4,5,9,9,1,-4,-11,6,14,15,9,-4,7,6,-14,-12,-6,13,12,-2,7,20,-11,10,9,12,12,4,14,-13,6,4,8,8,3,-12,-3,-11,15,14,7,-1,-9,4,-1,17,15,11,5,-7,-16,12,7,7,-3,-3,-2,-5,-14,-8,7,6,-6,-4,-12,-13,5,7,-2,5,-8,-14,16,16,-1,-5,-8,-15,-4,-5,12,-1,-2,14,9,-14,12,-11,11,-11,6,-8,-8,21,15,-12,11,4,8,-2,13,-6,-10,-8,5,-10,4,-8,-13,-3,1,13,6,11,-4,-14,-4,-6,-10,6,-8,8,4,2,6,-9,-13,-7,8,15,3,5,-5,13,13,0,-3,-1,2,-5,-5,4,-14,13,9,13,-5,13,12,3,-2,-3,-17,9,-9,-10,-2,-14,-2,-4,13,-5,3,1,5,-9,5,8,0,-13,12,4,-2,15,10,6,11,12,6,2,9,8,-12,-12,-11,6,-8,11,-14,-7,-2,2,6,-5,14,-3,8,2,4,15,2,3,-5,13,-11,-1,-14,10,-7,1,-5,1,1,-10,-9,-4,2,-6,-4,12,-1,13,16,14,6,-10,5,3,-2,5,14,-7,-11,2,0,15,3,15,-5,6,-14,13,-8,-6,14,8,15,6,-2,8,-6,-11,4,-8,8,-10,-15,13,-2,2,-11,2,-4,-4,-1,-7,-8,4,4,9,4,4,-9,-11,-16,-17,14,-6,11,-4,-7,5,-7,-12,-12,-4,-8,11,0,9,8,-14,14,14,-6,10,-14,-8,-9,15,11,12,6,8,9,-13,-10,12,-12,-8,-3,13,-6,-1,-1,-6,-9,9,-10,-5,-2,4,10,10,-7,8,-7,1,12,14,-10,0,15,-12,1,-13,-5,0,-5,-11,-14,-1,4,13,11,3,14,10,-12,17,6,11,-13,15,-4,-11,0,-10,-3,4,3,0,-7,-11,13,-3,3,6,3,-4,3,-16,14,5,-2,-5,5,7,1,3,11,1,-14,12,1,0,1,16,-9,-9,3,8,-11,-7,-8,3,-4,11,9,-13,-6,6,13,-14,6,16,12,-8,-14,13,11,-7,-7,2,8,-11,5,12,-12,11,6,3,0,9,6,12,0,5,0,11,7,1,1,-4,12,-5,-6,9,-8,-2,14,6,-10,-5,0,19,-2,-8,-8,3,-12,11,7,-7,10,5,-2,4,7,-11,-8,-2,-7,14,9,14,-11,13,-14,2,13,-16,8,0,4,-9,1,8,-5,-6,5,1,9,-12,-10,-5,7,0,-2,-8,9,-7,3,-2,-8,-4,10,0,3,-7,7,-6,-3,5,-10,-11,-6,-11,10,-3,9,-7,-3,-14,2,-11,-8,-9,15,0,16,-8,-7,5,2,20,-2,-13,9,18,-7,-13,9,14,-1,-14,-1,6,7,-8,-6,-9,-5,0,14,-11,2,3,15,2,-13,3,12,-7,13,8,8,20,13,9,-13,0,-2,14,9,23,-4,-11,-6,-5,12,-10,-12,5,9,9,-1,-5,-9,-2,15,14,-3,-4,-1,-10,-10,-14,-2,-17,10,15,4,-2,-6,-8,13,13,-7,-2,-11,-1,4,6,-10,18,5,-11,3,-4,5,0,7,-7,-12,-8,-9,-4,-3,-15,4,-1,-12,-13,-1,16,-10,-7,12,19,-15,-11,13,-7,-9,12,-8,9,3,4,-11,12,11,8,-6,-1,-1,2,9,17,-2,-1,1,23,6,9,-3,17,4,-16,-4,20,6,-3,0,-11,4,-15,-3,-4,-13,3,-2,7,-9,7,13,-14,-4,-14,9,1,-6,3,-6,-3,5,11,2,3,-15,3,-14,6,-10,-5,-6,-1,12,8,1,8,6,0,16,-2,-2,6,-6,2,-10,2,5,6,-10,-18,-13,5,10,-12,6,12,-11,-13,7,11,5,-14,11,5,-15,11,3,5,-7,-14,17,3,13,-5,-1,-5,-5,0,7,-6,3,13,-13,-13,-12,4,4,1,7,13,11,12,5,-9,8,1,-6,-1,-13,-11,10,-10,14,4,9,-2,-2,7,6,-5,-2,15,2,-6,8,10,2,0,-6,12,4,-17,-11,11,7,-8,0,10,-14,-2,-4,-10,-14,-7,9,-1,-7,-10,-13,1,15,12,-5,-4,-17,14,-4,-5,12,-5,15,-7,-5,10,-9,11,8,1,-4,-2,16,2,10,14,-4,-6,3,-6,2,-9,-2,-7,10,-1,-5,-8,6,-10,-10,-4,14,5,12,14,-4,-14,-14,12,16,0,8,16,-11,6,12,11,-15,1,-11,-2,-10,-13,1,-6,3,-6,8,6,5,6,2,2,9,-14,-1,11,-8,-7,2,11,-12,4,-13,0,12,-8,4,-5,-11,16,-3,4,-14,2,10,8,14,-6,12,-8,12,-15,4,11,13,-10,-11,-11,17,9,3,10,9,1,-9,-7,-9,17,12,-8,11,-15,15,1,-1,-10,-13,5,10,-11,4,-5,2,-8,8,-5,-7,16,1,10,-13,-9,-5,10,13,8,-11,-12,5,-6,-8,0,-13,7,-11,11,1,12,-8,11,12,7,10,4,-14,-6,-8,18,-13,1,5,2,0,3,-7,5,-9,1,6,11,8,5,5,-11,-12,7,-14,13,3,-12,-4,-6,-12,-12,12,15,0,14,-11,-9,11,-2,2,-11,0,14,15,-4,-9,-5,-12,0,15,-8,8,15,-3,5,-7,0,-11,8,-12,9,-9,8,11,4,2,1,-15,-2,-9,7,5,-8,18,-12,4,17,3,9,13,-2,9,-3,-14,-10,6,-12,7,12,8,-14,3,6,-12,-3,-10,6,14,11,-13,13,9,-3,14,10,18,-13,11,-2,-11,-7,-11,-3,5,-6,-6,16,-11,-4,13,-7,-12,13,9,-3,-13,10,5,16,0,6,-5,-11,7,-5,6,11,16,-6,5,14,1,-10,-5,10,9,-6,-13,12,-6,15,-6,15,3,12,-9,-8,-10,-1,-6,-5,-10,4,15,5,2,13,-14,-2,4,-11,14,-1,-10,-15,11,-6,10,13,6,6,1,-7,2,-11,6,7,-10,-11,13,-3,10,9,6,0,-13,2,14,4,-4,17,16,-9,5,10,7,1,-12,-3,13,1,7,15,8,-4,1,16,1,1,-10,-8,-4,16,-7,4,19,-3,7,-4,14,-8,12,12,-3,2,-6,8,3,8,15,-10,17,-6,-12,4,-4,-12,5,9,4,-5,-13,-2,-8,2,-7,7,11,11,-8,3,0,5,-12,-14,8,8,6,-15,-8,-15,-3,14,5,0,13,7,-9,-4,4,9,-12,-12,3,9,-5,-1,8,3,4,7,-6,-2,1,4,-5,-6,4,14,-4,7,7,-14,-3,-1,-13,-2,-10,11,14,-10,-7,7,6,18,15,-13,7,3,2,13,-13,8,3,10,11,-7,-11,10,16,-15,-5,15,-13,12,1,2,-1,-10,-13,-13,-12,9,0,-1,4,-1,-2,-7,-2,-4,9,14,14,2,-6,13,10,-10,5,10,-10,-3,10,1,-12,8,-8,5,-11,-8,13,8,-6,0,-6,1,1,-8,15,-8,-10,4,-7,18,-7,-1,-5,-8,-13,-7,14,-13,2,-1,6,12,-1,4,15,9,-9,-5,0,4,-7,-13,-2,-2,10,0,2,11,-6,5,-12,4,-6,10,-13,9,-11,2,14,8,14,10,0,6,-10,7,-11,1,7,-13,10,3,-14,11,-11,-14,-4,9,0,-4,5,3,12,3,4,-12,0,18,-7,-3,10,-6,7,-15,-5,19,-5,-3,0,11,11,6,-14,-7,9,4,-6,7,16,-3,4,-6,-2,-1,-6,10,8,10,-8,1,14,4,-9,-1,6,-1,14,12,-12,10,10,-9,1,14,14,3,5,9,0,4,-3,-2,1,2,11,15,1,-4,3,13,-10,10,-5,-6,6,-14,12,8,6,6,-6,9,5,2,-7,5,1,2,-1,10,14,-12,-5,11,-2,0,1,-11,-3,-3,1,0,-11,8,-5,6,15,3,4,1,-7,7,-3,0,-13,-11,13,-15,-7,13,-8,-12,-13,8,-6,9,-5,0,0,12,14,16,15,8,-9,-8,-15,-11,6,-9,14,4,14,13,-3,3,-2,-11,8,13,-11,-1,0,4,-10,5,-2,3,-3,-12,10,-4,8,9,7,-4,-14,13,13,10,6,15,-8,-4,6,1,-7,-12,5,-8,7,1,3,-2,-7,-6,-6,3,2,0,4,13,11,11,-12,-1,19,5,1,-4,-14,2,-10,-8,0,4,3,-10,14,0,16,6,10,1,-13,-2,9,3,-13,-11,-2,-10,10,11,15,-2,12,-10,-11,-7,1,5,-7,-9,-9,5,5,-13,8,8,0,-12,-3,-11,15,-3,-1,-14,12,17,11,6,-6,0,5,3,-8,5,-13,8,6,-3,8,12,-14,3,-3,-12,15,-6,8,23,8,8,4,14,13,14,-8,10,10,-14,3,-9,11,8,8,13,-5,-7,10,-19,16,9,-12,-8,-10,2,13,6,-2,22,-7,11,-8,11,-10,16,-1,-9,-7,20,-12,-3,-10,10,-10,1,-3,-14,-2,7,14,-3,16,13,8,19,0,-11,2,15,-3,4,5,6,-2,-5,16,-10,-2,-1,-9,-12,-14,6,17,4,6,2,14,-3,2,-16,-4,-13,-12,7,-11,5,-14,-9,13,-21,22,3,-8,-24,8,16,-13,12,7,0,-11,-12,1,16,-3,-14,-10,21,-7,2,-15,-13,6,6,15,8,12,-5,8,13,12,-25,15,9,-8,9,12,-12,10,8,-1,10,12,0,-11,5,4,2,-8,8,10,-1,14,-11,-9,-13,-1,10,-14,-14,-12,16,3,-6,8,4,9,-10,7,12,-9,-6,-2,0,11,0,-8,10,-6,-10,10,-5,-8,-9,2,9,-11,-18,4,5,-4,16,4,7,-4,-7,-8,6,8,-3,-8,-14,-3,-14,17,0,-6,-5,9,-16,-2,8,10,-3,-3,-12,-13,-13,6,7,13,2,5,-10,-10,-8,8,-1,22,8,-12,-4,-11,-12,-9,-9,-3,-12,10,-5,-1,15,3,-3,8,-7,-2,3,0,-9,4,-13,22,7,2,-4,0,2,8,-12,31,-1,-3,-7,-1,2,7,8,1,9,-14,6,9,16,-3,-11,10,6,11,11,13,-2,8,-8,20,20,-13,-3,-1,4,2,-7,31,21,-12,-31,-7,-2,14,9,3,2,-5,11,-3,15,10,8,-2,-6,15,4,-9,17,0,-6,2,0,-2,14,-15,14,2,5,-9,11,5,2,-2,-4,14,-12,20,-15,-4,-6,5,2,-4,2,-9,-14,2,-12,9,15,-5,14,-1,4,11,-14,9,-7,11,-9,4,6,-10,-16,-12,12,-7,-5,-6,14,9,7,-13,6,-3,9,-3,4,-5,2,-6,4,1,-25,17,10,9,-16,5,7,-3,-32,35,16,5,-36,-10,2,0,10,7,8,3,-10,13,12,14,4,13,1,-2,1,14,-14,15,3,24,1,5,-25,10,-8,-11,-22,6,12,1,-15,-8,11,11,0,0,-5,1,-8,7,8,8,-12,12,11,-11,-2,-1,1,7,2,-2,2,10,-7,5,-6,-2,7,-11,-2,-13,7,9,-3,12,-1,19,12,1,4,-9,8,-11,-9,11,1,4,6,9,14,12,2,1,12,0,6,6,-3,3,-17,5,0,-13,-9,14,2,-11,4,-10,2,-8,-8,14,-7,-4,12,-4,-2,8,8,4,1,-11,-10,28,-3,4,-11,4,30,13,-48,35,17,-6,-29,13,-2,6,8,-10,11,-1,13,-8,25,-3,-10,0,22,-1,-1,-2,-28,-11,6,6,7,11,-13,11,-2,-13,7,9,-13,-8,-2,-1,14,-10,-27,4,1,-6,-6,1,-1,2,-13,-1,-9,-7,4,12,0,-5,-28,0,-7,8,-15,1,13,10,1,-15,2,-1,-6,8,28,11,-17,23,14,-7,-25,-10,-9,8,-4,-6,-6,8,-7,13,11,7,12,5,16,3,10,-5,17,-9,-8,-6,20,10,0,6,0,-4,-4,6,21,3,1,8,-11,1,2,6,1,13,6,-12,13,12,-10,8,9,-10,-1,13,29,-3,-6,3,15,0,-20,-6,-7,12,7,-9,5,-6,-13,6,39,3,-14,-11,20,3,-15,-5,-8,3,10,10,-4,-5,8,1,6,-14,-8,-3,18,-5,-12,-11,-14,16,-18,-4,-5,-2,-18,-2,-4,6,11,-12,4,-12,6,12,9,8,-21,-16,17,14,-16,-13,-14,-1,-19,11,1,-10,-1,4,20,3,-1,1,1,6,-18,-6,6,-1,12,6,10,4,0,-1,4,-10,11,0,9,2,1,-2,4,-12,-19,-2,-18,-1,3,-5,7,14,-18,5,-5,2,-5,-7,7,3,-14,-5,30,-15,-6,0,-5,5,-2,14,-4,6,22,10,7,-1,21,7,-10,7,25,-8,-3,14,-8,-7,-7,-12,14,-11,-8,-5,14,16,7,-6,1,-10,0,3,-3,15,-3,10,-8,12,-6,2,-8,-1,9,-4,-2,-2,15,6,24,17,-4,-1,13,10,-3,-9,4,7,3,-14,0,-9,8,-7,8,-9,20,-2,15,5,-8,-5,20,7,8,4,9,-12,-2,11,-3,5,-10,-1,-18,-9,1,2,2,4,-11,15,-1,13,-5,-6,10,-6,-13,6,-3,-3,18,-13,-10,-5,2,6,-4,14,12,6,-16,12,19,-5,-8,-9,-5,2,-13,-5,-11,14,-4,-14,2,-4,-23,-6,-13,4,7,10,20,9,-27,16,-8,11,-15,5,-11,9,-6,2,-7,-3,14,10,5,4,-1,-7,-7,-14,0,0,0,16,0,7,16,-9,-1,12,5,-2,-1,24,15,-11,-26,-14,14,8,-13,2,-8,-10,0,-7,7,-9,-1,14,-4,5,-13,11,-15,5,-8,-13,3,1,-7,-3,0,9,-5,-3,-11,5,4,-9,11,14,-2,20,7,-9,-23,9,-16,10,8,6,5,-12,-7,7,-6,6,7,15,-12,-13,-12,-4,-5,-12,-22,22,9,-8,-27,-13,-4,15,3,14,-3,-11,-13,-13,-8,-11,13,4,-11,-14,-10,1,-5,5,-2,17,3,-13,-12,4,0,7,-14,15,-3,-9,-12,-1,-5,-8,2,-14,9,3,-6,8,19,16,-10,-6,22,-3,-16,3,-6,-7,-10,4,2,-12,-3,-7,-4,9,-12,14,11,8,-5,12,-2,-13,6,2,15,-6,2,-15,8,3,-7,2,16,-2,9,0,-11,-2,6,2,9,-6,1,-12,2,-10,5,-2,9,0,-12,-3,11,5,-13,26,15,-7,-20,2,-17,0,8,-12,3,-6,15,3,-10,-7,3,-6,-8,-1,10,-14,-3,6,-13,17,14,4,-26,-4,-7,5,10,-11,-5,14,-1,3,-10,16,16,6,6,14,-2,-13,17,16,6,16,6,13,-8,0,21,2,-26,28,-1,4,-42,-6,-4,9,10,3,11,13,-4,13,22,4,4,-13,19,8,3,11,-2,9,-12,26,-3,-1,0,13,-13,-1,-4,24,-1,5,-6,-14,-2,-11,-13,14,13,-14,-24,-4,8,-4,-14,5,12,6,4,-14,12,6,1,8,17,-2,-10,-8,12,1,4,3,9,-11,5,9,23,10,-13,1,2,6,-13,4,-13,-12,-13,-10,-1,-8,5,14,16,10,11,-2,14,13,6,-9,12,-14,-15,21,27,1,-16,11,26,-20,1,9,14,13,12,13,4,-6,13,-3,-7,-14,-3,-6,3,15,-19,20,-13,11,-2,1,50,8,-13,38,43,-12,-42,-5,8,11,-3,3,16,-2,-8,7,13,5,7,-7,24,-9,11,10,4,15,4,10,0,-4,-25,-11,-7,-4,-8,16,-4,-13,-26,-5,14,6,-24,10,-10,5,-17,-14,-4,0,15,-7,7,5,-7,1,-5,-3,-2,1,9,14,-7,5,14,4,0,-11,8,-10,-6,6,34,-6,2,10,28,-15,-22,-11,-2,-4,14,9,4,-11,12,-12,24,-7,-9,11,14,7,9,10,14,-11,-17,17,23,5,2,-5,15,-19,14,-7,28,-5,-2,5,-7,-6,-13,5,1,9,-3,12,-1,-11,7,16,2,1,-20,-11,71,-13,-6,13,33,2,2,8,-8,-12,8,10,7,9,3,-13,56,-7,-9,12,36,-2,6,-4,-10,-11,10,-1,-2,3,-10,7,9,13,11,23,3,0,1,11,10,-2,-23,4,-14,-10,-15,3,7,5,-10,12,-11,15,-7,14,17,-13,-23,-10,8,-1,15,1,6,-9,0,1,-11,-2,-10,11,41,-10,14,24,23,7,7,5,-13,3,-7,-12,-14,-12,7,-5,22,-9,10,3,5,4,6,1,-16,12,0,14,7,-5,-13,9,13,-6,-14,-3,4,6,8,-11,22,14,-14,8,30,13,7,-5,5,4,12,-8,-15,-9,15,8,-13,-1,29,20,0,-8,16,-6,18,-12,-9,-9,8,11,9,0,1,14,11,-7,-9,11,-5,11,12,12,15,0,22,-11,-14,13,9,7,-14,16,-2,-5,-9,6,-7,8,11,18,7,7,5,8,-2,-4,5,3,15,0,0,0,16,-12,20,7,8,-2,4,-1,9,-9,24,12,4,15,11,15,-11,-7,-8,10,-9,13,-8,15,-7,-1,-12,5,4,-6,-3,12,-12,-9,6,-5,-7,1,-12,-3,14,-1,-3,10,10,-10,-14,1,6,-7,-6,2,-5,6,-9,3,5,-6,-1,-4,-11,10,13,-10,13,9,-6,6,-4,-13,-24,9,3,3,-26,8,17,-12,-21,0,4,-15,-11,-10,4,-14,-12,5,6,-7,2,-12,21,4,-1,12,-12,0,-11,3,5,-6,-10,15,8,13,-6,19,12,15,-16,-12,-3,1,9,-4,-11,11,-19,10,2,7,-1,-2,5,10,-11,6,16,-9,-2,-9,11,2,4,-11,-10,9,1,14,-6,-15,10,-4,14,-6,-20,17,12,-4,-2,3,-9,-1,3,0,-6,14,-12,-2,-13,3,1,-10,-8,-3,2,-11,-3,-13,-7,2,-7,12,-12,-4,11,14,7,-11,-7,3,-3,10,12,17,-12,16,16,9,-8,11,-16,-2,-25,19,6,10,-6,14,25,15,-21,8,8,4,-29,-13,7,6,10,7,1,15,-13,-2,17,-13,3,-5,6,11,-13,14,-14,-7,2,24,-3,10,-30,8,4,8,1,8,3,12,-29,-3,10,8,1,20,9,-5,2,-12,15,-3,-9,7,-2,-11,-3,-3,-10,4,-3,4,19,14,6,8,-10,2,-3,-16,14,12,17,8,6,2,-16,2,-6,6,-25,-12,-1,14,13,9,11,10,0,6,-12,-1,2,18,2,-12,-1,7,8,-13,-18,1,1,10,-5,-2,12,-16,-1,-2,5,-10,-3,4,0,-2,10,12,-9,-1,14,-2,-3,-2,-23,7,-7,-13,-16,9,41,-15,-21,37,3,10,-24,0,0,-5,15,11,12,-14,11,10,15,-18,-16,13,26,-6,-15,-12,-12,3,-2,28,-1,12,-3,-7,-6,2,9,23,1,10,-23,-5,-1,-6,-31,7,3,-10,-29,-15,-4,-8,-2,-10,-13,-4,-1,-3,-13,-2,-21,-8,18,14,4,-6,-5,2,12,-11,-8,-7,-9,11,7,-16,5,19,11,12,-19,5,-14,-11,-2,-14,-15,1,-11,1,-4,-4,-12,13,-5,10,-9,1,32,6,-9,11,10,9,2,9,11,0,5,-8,30,-3,-15,-8,1,-13,-6,5,-12,0,-3,1,3,6,-19,7,-6,-1,-19,-9,57,-6,-27,22,48,3,-33,-2,-2,-13,1,-5,2,-4,0,13,33,-10,1,-7,49,-9,9,6,0,14,-9,13,7,0,-5,14,-2,-15,-6,-1,2,12,-2,1,-12,15,-17,3,-5,-13,-17,1,6,-4,3,-10,3,11,-12,7,-8,5,-17,2,18,-2,3,1,-1,10,-15,-5,-7,-1,7,2,44,-15,11,3,31,-7,-8,-7,-14,1,-9,-4,-12,-14,6,5,10,-15,-12,10,4,10,-11,-8,34,8,-10,-9,22,-4,-10,1,34,-18,12,-9,28,-4,-1,-13,6,-10,4,9,-11,5,0,-5,2,-9,-13,-4,14,-7,-16,3,59,-1,-2,20,46,-1,-16,0,-15,12,6,0,13,8,-5,-5,33,-14,-4,2,32,8,13,-12,-12,12,10,12,11,-10,-20,-7,-10,-10,1,13,10,2,-11,0,15,-4,-19,5,9,-6,-7,-3,1,-13,-9,15,-2,-14,5,-13,2,2,-1,-3,3,7,-4,-10,3,4,1,-6,-1,13,1,1,50,3,0,22,37,6,-12,10,-6,-15,-13,9,-3,-1,-3,-5,18,2,15,8,11,0,-1,-4,-7,-6,5,-5,-8,15,-9,-7,-1,-8,-5,-3,16,-8,-12,13,4,-6,11,12,-11,-12,1,-2,-2,0,18,6,-18,-12,-6,7,20,8,23,16,17,7,-11,-12,8,14,2,-11,18,-1,-1,-12,18,2,-12,-12,-1,14,0,-7,7,16,14,12,-5,7,-7,-6,-1,9,3,19,3,-1,10,-13,2,-7,11,13,5,3,10,11,-3,11,2,5,11,-12,-14,5,-3,-3,-2,13,-11,-9,-1,-9,-5,-11,12,10,-10,5,-4,0,15,8,17,2,14,-14,-10,-7,-6,-9,-9,10,8,12,3,-9,5,9,3,10,-12,4,-9,-14,7,-11,-27,14,22,14,-15,-5,16,2,14,0,5,-11,13,15,-7,13,11,6,-8,-1,8,9,-5,0,-27,21,-9,6,-5,-2,6,-5,-43,27,-2,-4,-42,-14,-4,6,0,13,9,1,-8,15,0,1,4,6,10,6,-3,2,-26,9,-20,4,-17,11,-25,-13,3,7,-5,1,-1,5,-17,6,-13,-5,-25,4,-4,7,-11,6,-12,5,-13,-5,-1,-3,-10,-3,2,-2,-28,20,-5,2,-2,2,-2,-1,-11,-9,-2,1,8,1,1,15,-22,0,-12,-3,1,15,-16,19,0,1,-13,-8,-11,-4,0,-7,-13,0,10,1,3,2,-5,16,-6,4,-8,-7,-6,6,-1,-10,1,15,0,-12,-8,6,-4,-1,-13,4,-2,-2,10,10,15,-10,-15,0,11,-10,-14,7,19,0,-30,21,-10,2,-43,12,5,-15,-11,6,2,-9,-1,8,24,-2,3,7,3,14,0,-1,-9,5,-22,22,-12,-1,-15,-13,-12,-10,-9,11,-10,5,-20,-2,4,10,-20,21,-4,-4,-24,-3,-8,8,-2,-11,-12,15,-2,-4,-5,-4,-22,3,-2,4,-12,-6,0,-3,7,-11,-6,15,12,6,23,-2,-22,9,-11,5,-10,-3,-20,-6,15,-4,-6,-1,6,-7,-5,-5,13,3,-6,14,-5,-13,11,-8,-9,-6,3,2,3,9,24,-4,1,-4,13,8,1,5,-7,2,9,1,-10,9,-7,11,20,-7,-20,21,7,-11,-6,2,56,-3,-31,29,35,-7,-14,7,1,-11,10,-7,-10,7,0,5,36,-15,1,8,16,8,1,11,-10,-14,1,28,9,6,-11,2,-21,-12,12,34,-8,2,-5,-14,4,16,-23,-2,-12,-1,-21,14,-6,-8,7,-5,6,14,-9,11,-12,-6,-31,-8,20,10,-17,12,-7,-9,-16,-4,15,5,-7,-9,35,0,-14,7,7,-13,-22,13,-3,-13,-1,6,-5,14,-12,2,-7,-14,11,-8,-5,-6,-12,2,35,5,8,2,27,-6,-2,-7,22,-20,11,-7,32,-2,-8,-6,-17,-2,2,-13,-11,12,-9,15,13,9,-22,-1,5,3,-1,-10,57,-6,-19,18,28,-4,-26,-6,1,-15,9,8,6,8,3,-6,49,-22,5,0,52,8,-8,-13,-5,-4,-2,14,-10,13,5,-8,-17,1,4,2,-8,-14,7,15,15,-4,-14,-14,-11,2,-3,-11,-2,3,-10,3,5,-2,-13,2,16,-17,-6,-9,18,-1,-7,-9,5,-4,-4,-18,-2,-11,-1,2,38,7,3,18,19,8,6,-10,9,-6,14,1,7,6,8,0,1,-11,-2,7,20,-7,-10,9,15,-5,9,17,22,-9,9,-5,12,-1,-5,6,29,10,-11,-7,12,-3,-6,6,6,13,-12,2,2,11,2,22,-5,-6,-8,-12,52,2,-6,-2,38,10,-19,-4,-10,-7,3,-9,-12,-5,-9,-7,40,-17,-10,13,17,6,3,10,-2,9,3,18,14,-11,4,-7,7,-3,-6,27,-2,9,-5,9,-4,-7,-19,11,12,2,8,2,10,-1,-2,-13,-10,-14,-1,13,23,-18,-7,4,17,12,3,-8,6,9,13,-7,-3,1,-9,-14,29,-14,5,4,36,7,-2,-13,8,-6,-2,1,2,-1,1,4,10,-2,16,12,6,-9,-6,-11,0,15,-7,-3,9,9,-5,4,5,-7,13,-1,3,-10,4,-9,-8,1,13,7,12,-3,-10,-13,13,-10,0,5,3,1,10,-1,-5,-7,-18,16,11,11,-9,-9,-3,2,-4,13,1,-2,-11,14,17,6,-10,5,0,10,13,8,4,3,13,15,14,14,12,-11,0,11,12,10,8,6,-6,6,13,-9,-8,9,12,-13,-7,2,5,-6,-7,-4,-5,10,-6,5,8,9,-13,1,-14,-1,-1,3,8,0,1,-7,-6,2,-6,-7,14,-14,-7,0,15,-7,12,-11,-6,3,-7,-3,-11,-11,14,-6,-5,-3,3,15,-1,-8,-1,10,14,-5,-5,16,20,-13,-2,3,19,-4,9,-8,-3,12,-1,1,-11,13,5,-9,-12,7,-1,6,-4,-11,-4,-7,10,-14,-16,14,-15,8,-37,4,-7,-6,-38,-6,1,-11,6,-6,3,-11,-3,0,21,-10,6,-4,7,10,0,-6,-1,13,-21,16,-19,5,-3,-6,-25,1,-18,1,-5,-3,-11,2,-4,10,0,-7,7,-13,-25,2,7,14,-7,-13,7,14,6,11,-16,7,-26,18,3,-14,-11,10,-7,5,9,-5,-11,6,-8,5,-18,0,-11,2,-10,-5,-7,15,-10,-9,14,-2,0,1,14,-4,-3,9,-17,-1,1,12,0,5,-1,8,-19,11,5,-12,-10,-11,10,-2,10,-10,19,5,-14,15,-6,0,-7,-11,-12,0,8,-7,10,-4,-9,-2,1,6,-15,-13,25,-8,-22,5,15,6,-15,-15,-8,-10,-11,-9,3,12,-13,6,22,-11,1,5,13,-14,-3,0,-20,15,-6,5,-4,-5,-19,6,3,-13,3,19,-8,-1,-25,-15,4,12,-5,10,12,-11,-13,-4,-2,-11,12,-1,7,-3,5,-11,0,20,-30,12,14,8,-15,0,-3,-9,-18,1,-9,-4,5,-11,9,4,8,15,3,2,-2,5,-6,8,13,9,2,13,12,-5,10,-5,-19,0,2,-15,-1,3,33,5,-10,-1,27,-10,4,1,31,-6,13,12,28,1,-10,-13,-5,-5,-7,-8,10,7,10,-8,14,9,-17,14,-1,0,-14,12,52,-4,-18,16,22,-14,-15,-6,-19,-5,-6,-7,8,-4,-6,1,27,5,-12,-3,36,7,0,-6,-13,7,-8,-7,1,-10,-27,-5,-29,-3,16,18,10,13,-13,14,2,13,-4,-2,-13,6,-15,1,7,-8,-13,-3,11,-3,1,-8,-9,-5,-38,-15,13,10,-11,-6,4,7,10,9,-7,-5,-8,-10,25,0,4,-2,8,-7,-6,14,-5,-1,14,-8,-8,-6,14,-11,10,-5,-11,-4,19,9,-4,10,23,7,0,22,27,-8,-16,14,27,-15,-14,15,15,-14,-2,-9,14,7,15,-1,4,3,15,2,-13,-6,-14,5,3,1,-15,9,65,4,-10,-3,33,-9,-21,7,4,5,-12,-12,-9,-3,2,15,33,-3,12,14,20,-3,-14,-4,-12,-11,-5,-2,1,12,-7,-1,-25,12,15,6,13,13,4,8,-3,-3,3,5,1,-4,6,-1,-12,1,15,0,13,-13,-10,-9,14,-7,-31,-6,4,5,-2,-4,1,-6,2,-10,8,-13,3,10,42,-6,-7,10,33,7,-7,5,-8,8,-13,-4,-9,4,-10,-2,22,-4,2,-12,11,-1,-1,1,18,0,-19,8,14,-14,-8,3,10,1,10,-8,9,0,1,-10,3,17,-7,-6,6,-1,12,7,8,-3,-8,21,11,13,12,-6,36,-13,3,12,33,8,-16,-14,7,0,-9,-4,11,1,-14,3,32,6,-9,-5,32,-12,14,2,8,10,-3,-2,9,-7,-5,6,-2,-14,11,20,15,3,-11,0,-5,-14,-2,6,3,1,10,3,-5,2,-7,10,-2,15,-9,6,13,6,2,-8,23,-1,5,9,15,-2,11,8,11,-12,4,-15,18,0,6,6,2,8,6,-11,-9,4,-13,-9,4,-8,14,-7,-5,-8,-11,-8,-11,-11,17,2,6,3,10,-5,1,-1,-10,15,5,15,-3,6,11,1,15,1,-8,15,-9,-7,-7,5,-10,-13,12,2,-23,16,-5,8,-16,-7,10,-6,-2,-3,-4,-8,-1,-5,-4,-3,-9,10,-6,3,9,-14,7,-12,-13,11,12,-2,2,4,-5,-8,11,1,7,1,-8,1,-11,13,7,0,7,13,-16,-3,15,-12,-15,5,9,7,-1,3,10,-5,5,-7,-10,8,-14,-9,-18,-5,-1,-1,-11,6,-9,-10,-9,7,-10,-4,-7,14,-12,-7,-11,-13,10,8,-8,-14,2,3,-20,1,-9,4,-4,-1,11,0,-14,-12,9,10,3,-8,11,1,3,14,0,13,1,-5,-4,10,2,0,7,13,2,-13,15,-6,-8,-1,-13,-6,-18,9,-2,0,9,11,-16,-8,-13,-7,-31,10,9,-6,-50,15,7,-5,-31,-14,7,6,12,-4,-2,-8,11,-12,23,18,-20,15,0,-1,1,-13,-35,17,-22,-8,-3,-6,-24,6,-19,10,-11,4,-11,0,-26,14,3,-1,-14,-9,0,-4,-2,3,13,-4,-5,2,-3,-13,12,-14,-3,-9,-49,8,-8,0,-19,9,-1,11,-11,9,2,-10,-3,8,-5,9,-19,12,14,12,-8,3,-23,-8,0,0,12,-6,-9,-8,-13,15,8,11,13,-7,-17,10,14,4,-22,-6,10,-3,-16,-11,0,6,12,4,-10,-8,-13,-3,2,11,-9,2,-17,-6,-1,5,1,-1,-25,3,-10,3,-20,-13,21,2,-56,14,14,-3,-41,-14,6,-11,5,-1,3,-10,7,-3,19,11,-12,-1,12,-13,-8,12,-7,-3,-10,7,-7,9,-37,-4,-5,-9,-26,-3,-16,-14,-11,3,-2,12,-12,16,-3,7,-5,6,3,1,5,-14,10,-6,7,4,-12,-1,-38,6,5,-14,-19,3,-4,-5,-18,5,15,7,1,14,17,-3,2,15,6,-13,-27,2,-21,-4,1,12,-6,14,-8,-8,-4,7,-13,-13,3,8,-16,-9,4,-11,-13,1,-3,7,-5,0,18,-14,10,10,22,8,-15,9,-5,12,-13,-13,-12,-14,4,1,-1,11,-22,1,14,2,1,1,24,-7,-38,27,-13,8,-25,13,-19,-2,-1,-3,10,10,4,-13,29,1,-4,-11,0,-6,7,-7,-14,-5,-20,19,8,-12,-34,10,-16,-11,-21,23,-6,1,-39,8,3,6,-33,10,1,-11,-21,11,-5,5,14,-3,-1,-9,-3,1,-1,-7,-38,3,20,-12,-7,10,6,2,-14,-13,-10,12,-1,-13,13,17,7,9,5,-10,-16,-13,-6,-12,-6,2,13,1,-7,-3,-7,-5,12,17,-8,-13,-14,-3,23,-1,4,6,3,8,-18,-4,33,1,-7,17,4,-4,-12,5,-11,-2,3,-5,13,14,12,0,9,13,-1,17,8,13,-2,-9,41,6,-25,14,12,10,3,14,-5,-12,-6,6,10,-10,9,-12,23,-16,-3,-3,2,0,-8,2,-7,-8,-19,20,13,-15,-24,10,-19,7,6,11,-7,-8,-18,11,-10,12,4,4,9,1,13,14,13,-14,15,-3,-5,4,3,-4,1,2,-24,-11,9,-4,0,6,-13,-14,-15,-9,-8,14,-4,-14,42,-15,-12,13,0,9,-17,5,10,-1,-1,-14,14,1,-4,9,16,7,12,6,6,8,-17,0,12,-4,10,5,6,-13,7,-9,11,4,-10,-11,0,5,-7,4,5,6,-6,0,8,6,-2,14,-7,-11,-15,-10,8,3,-8,-12,25,0,-7,-3,13,-10,0,6,-1,6,-6,-9,-6,-13,15,4,28,-15,2,8,1,-12,-7,-5,-1,-10,-11,-2,16,13,3,-10,-19,-15,-3,13,5,0,7,-8,-5,13,-16,-13,11,6,0,7,-13,-6,12,10,7,-2,13,-6,19,-4,-23,-1,2,9,5,5,-10,5,8,1,0,-15,-10,-11,13,10,0,17,16,-15,-2,-4,1,5,-8,-10,11,12,-13,2,1,1,10,-2,6,10,-3,9,1,13,15,16,-11,-2,6,-5,-3,-2,11,-12,12,-7,1,-5,-3,8,-6,0,4,-4,1,-12,2,-10,-4,4,-14,12,-20,-14,-4,-1,4,30,14,2,-15,-7,-4,7,9,9,7,-2,13,3,13,-7,7,13,-14,15,12,15,12,21,-14,-4,-24,-8,-8,-7,-3,15,8,-1,-6,0,-12,-12,4,9,-8,17,14,4,-10,2,-2,7,13,6,-5,7,6,8,13,-5,11,4,-16,-8,0,-5,4,-1,-7,14,1,-10,7,9,-6,1,1,20,13,-2,6,-8,7,5,15,-7,-6,-5,-12,14,-5,-10,9,-6,-4,-8,-7,-5,0,-13,0,20,-5,0,-4,2,-5,15,2,12,11,7,-8,-8,9,-6,9,1,-5,10,11,3,15,8,4,18,10,5,-7,-13,8,5,-13,39,-2,12,-29,1,-3,15,-8,-6,-6,-7,-1,-8,-12,-8,0,6,7,7,-2,-6,-14,-3,2,1,-15,-12,-5,-11,-8,-4,-14,12,-9,8,-11,12,14,-2,-10,21,-6,14,-7,1,-9,-13,-14,14,5,-3,-8,-14,13,11,3,15,-3,13,-7,11,1,13,3,-6,11,12,7,3,15,-5,6,21,3,-8,3,-8,-9,-2,10,10,1,-7,16,-12,9,13,-6,-8,5,-3,13,14,10,4,-11,14,-6,4,10,-7,-5,10,-5,17,3,-11,7,13,10,4,7,16,-11,-2,14,-1,-8,12,-4,5,-12,4,-3,4,-12,-1,2,16,-5,15,-15,-14,9,11,14,-2,-5,-13,-7,-2,3,3,15,18,11,9,-14,15,-11,10,14,13,-15,12,8,4,0,-10,7,22,11,3,-3,12,-7,-6,-14,22,9,-4,-12,0,2,1,0,-3,13,2,1,-7,-7,10,-2,17,3,7,-8,-11,10,9,7,3,1,-8,5,-5,5,20,15,15,2,-7,0,8,-11,-11,-14,1,-1,0,1,3,4,-10,0,7,0,3,-12,-8,-2,12,-9,10,-10,7,6,-11,-10,4,2,7,-7,5,-4,8,-4,10,8,7,6,-4,16,-14,7,16,15,-3,11,-3,13,-3,7,15,-3,26,13,11,-1,-5,-2,9,13,6,-13,0,-13,-2,6,-5,-14,5,8,-10,4,6,-12,-5,-10,21,-19,-12,0,-13,-8,11,5,6,9,-4,5,-4,8,-14,5,7,-2,5,9,11,10,9,4,9,4,8,-4,9,-10,7,-6,15,2,15,-6,-13,-8,14,-5,3,-12,-5,-14,4,1,11,8,15,2,4,6,11,12,16,-9,12,-8,1,-13,-9,-3,18,0,-2,7,-1,17,14,-7,-3,7,20,-1,-6,-5,8,-5,1,-2,-8,-1,-5,15,-1,-2,12,-11,-10,12,-13,-5,-12,-10,-14,-1,12,9,-10,-16,14,3,-9,5,35,7,-9,11,0,-14,-1,0,-3,7,-14,-14,-4,11,-17,-8,13,-4,-6,-8,6,-7,0,7,22,-3,-12,-12,12,7,20,-4,1,-3,-5,-9,2,12,13,5,8,-11,0,9,-6,13,10,2,-6,6,5,-12,5,3,9,-8,4,-14,2,14,-11,-12,14,-7,0,-11,4,4,15,6,1,-12,1,-8,9,11,15,-1,1,-7,0,10,-12,-3,3,12,12,-10,13,8,-13,13,3,-13,-3,10,15,15,-11,14,13,-10,1,3,13,1,13,13,7,-2,15,13,-11,0,-9,1,3,4,0,6,5,-2,-1,-13,-9,1,-15,4,29,10,-3,-10,-7,4,16,7,11,1,-11,-14,-13,13,-19,6,-10,-6,-12,9,3,-9,4,11,6,-11,1,-3,3,-2,21,-7,10,3,5,5,-4,11,-11,-2,15,1,1,15,6,13,8,-14,-2,4,-7,1,-10,-5,11,-3,20,15,12,-1,0,-10,0,-14,6,10,-12,-4,1,5,5,12,-2,15,-14,-6,8,3,11,7,-4,-4,-6,6,-12,-4,-4,-2,-12,4,8,-6,-12,2,13,-12,17,8,12,-7,-13,-9,8,-13,-5,-1,-1,-12,-6,-13,15,-10,11,-9,-12,15,-4,-12,5,4,-3,-2,2,-12,-3,14,-4,-1,9,12,14,-2,-10,10,8,-5,-6,10,-10,12,-13,6,-3,4,-2,-4,11,0,1,-2,-9,-6,9,-3,12,-11,-14,-4,11,-10,4,11,-7,3,-6,3,-4,-6,10,9,7,5,1,-6,-5,9,-4,7,5,14,0,8,15,-1,14,-8,8,5,-11,-4,-9,-13,-6,-7,-10,-2,7,10,17,4,19,2,14,-13,10,-4,6,-8,9,14,9,-13,14,-3,-11,3,1,17,10,4,14,-5,-4,1,4,9,11,15,-7,-9,5,-13,-1,3,8,-1,10,-4,9,12,15,-4,-4,3,-7,7,-12,-11,4,-1,14,9,7,-2,5,-14,39,-4,-9,-18,-15,-5,2,-1,-2,9,0,15,3,-12,10,14,-5,-2,11,-10,9,-9,-2,-12,24,-14,10,15,-14,-3,15,9,14,3,4,3,-1,-4,10,11,5,-13,-2,-8,9,10,1,14,-10,1,-14,7,-6,-13,14,-2,31,-3,7,2,14,-3,1,5,7,-8,-1,9,-9,-1,-13,-10,6,5,4,3,15,8,-2,-4,15,-3,-3,-8,4,3,-9,-14,8,-4,7,2,-13,1,-13,3,12,0,1,20,-13,-4,-6,0,7,5,15,19,-9,-11,-2,-14,5,10,6,-7,-8,-6,-7,-12,3,0,2,17,12,-7,-2,9,20,-8,6,15,3,-13,6,-9,-6,1,-10,-12,-1,-7,5,3,7,6,9,6,2,2,16,8,22,-2,-7,-1,-4,-7,-11,14,9,13,14,-7,-4,9,-4,14,4,0,2,7,-2,-13,16,-3,1,-5,-4,-14,-10,12,4,-3,14,-13,7,-4,6,-9,-12,10,6,-4,-14,6,-11,-10,1,12,22,3,14,9,14,8,1,6,8,-9,13,14,-1,-10,-4,11,13,-2,-6,12,-13,-7,-12,-14,14,0,2,6,0,-12,-8,14,14,8,-2,-9,-4,2,0,-11,-6,5,-3,11,11,9,8,14,19,-9,-13,-8,12,-3,15,1,9,8,-4,8,-6,-8,10,3,-5,4,5,16,-10,-6,-11,1,-2,0,-1,-2,-8,-3,9,-8,10,-2,-7,16,6,0,4,11,10,-8,11,10,7,-15,-2,10,-2,7,-5,16,1,6,-6,-9,-7,-12,9,-10,-6,9,11,-4,7,-19,-9,-8,14,-11,-8,-12,-9,4,6,2,-4,14,10,-5,18,3,-13,-7,10,9,16,0,3,3,-5,5,9,-8,-5,5,-9,14,15,10,-8,1,-10,-14,6,-17,15,11,15,1,-11,-6,11,8,-8,-11,-3,1,16,-1,0,-9,10,-9,7,11,1,-5,9,-7,-3,-8,-5,0,-14,-12,15,15,-4,2,-4,-6,-7,-8,-7,14,9,12,-10,12,-8,1,-13,2,11,8,6,10,8,12,3,-17,8,-8,1,4,6,14,22,-8,6,-2,5,1,-9,-10,15,-3,8,-3,14,3,7,-3,-2,6,4,-9,8,-5,2,12,3,5,-14,-5,-12,14,-2,8,-3,3,-4,-6,-13,4,-12,-6,15,14,6,-12,-11,2,18,13,14,-9,-2,14,12,4,-9,-10,2,-9,6,-3,0,9,-20,-8,3,-13,4,15,15,12,-22,13,-2,-12,-1,3,7,4,-1,4,-5,-15,4,-14,-12,11,-2,4,15,2,16,6,-4,-3,-20,14,16,-2,1,-9,-11,4,-10,15,-5,-6,8,-8,0,6,-22,-14,2,-6,-1,15,-14,9,17,14,17,-11,4,18,-5,-4,5,4,7,-11,1,10,-8,-7,7,11,20,2,-13,-2,3,-6,5,11,-1,-5,-9,-1,6,15,-10,-9,18,11,-14,-13,8,14,-2,7,7,-3,0,-12,-3,-6,-13,-5,3,-6,4,-12,-1,-6,-14,7,11,5,-11,3,3,-4,-1,9,0,1,2,-7,5,14,5,11,18,-10,-6,2,-1,-1,-7,-7,3,4,9,6,5,-6,6,-8,-6,-15,-13,-10,-1,0,-2,10,10,-14,-1,-11,14,-4,-4,1,-4,5,-3,-16,-4,9,5,-3,2,6,-14,-6,-9,0,11,11,2,-3,-1,-3,13,-1,-9,-8,-1,-11,-6,-4,-15,9,2,13,14,-8,10,4,2,-1,14,-9,-3,12,11,0,-13,-2,-8,2,-14,12,-9,13,-2,14,9,-8,16,-15,1,5,-4,-6,13,10,-7,11,12,8,15,11,16,16,3,-6,-5,1,-11,-6,-10,14,-4,-6,-10,3,1,6,1,15,-7,7,0,5,1,-9,4,-12,4,7,-6,18,-10,-14,4,-14,-3,13,-9,-6,-10,-4,5,5,10,-1,-13,-13,0,-9,4,-11,20,15,11,-4,6,5,15,-7,18,18,-11,-8,-8,-10,-6,15,3,-8,-11,10,-8,-7,10,12,16,4,-14,-13,4,-12,-7,-7,26,1,-12,5,-2,-6,2,-6,22,5,10,-3,14,7,-1,10,24,-2,-14,8,-3,-14,6,12,-1,14,11,3,-2,3,7,-12,12,1,6,7,-6,-4,5,15,-6,14,15,14,2,-9,-3,13,0,-7,1,-4,7,-2,8,-12,8,-7,-10,10,12,14,14,-8,7,2,-8,5,6,-5,-1,-8,14,-5,-11,4,-9,9,8,11,-8,8,8,-7,-12,9,-3,-1,-6,0,-2,7,-3,1,14,-11,28,-11,-5,5,4,-7,-8,-6,26,3,-8,-5,14,7,-8,4,-6,-10,2,7,3,12,-2,-6,12,5,-7,7,-13,8,2,5,19,3,-3,18,5,12,-12,-2,8,-10,14,2,-9,4,0,5,10,7,4,-11,-8,-8,-10,-11,-2,9,5,-12,12,9,-6,5,11,-16,-1,13,-3,12,-9,8,1,13,-13,-1,-10,12,-9,-6,9,10,5,19,-1,-5,17,-3,-10,-15,4,13,-8,4,15,-10,-6,2,7,-3,-5,10,-8,1,19,-12,13,-6,-2,-11,5,9,-13,-5,0,18,-11,7,14,5,1,-5,3,2,-2,15,4,-12,21,-1,-1,-7,11,-11,-1,4,22,18,-5,-10,13,-13,5,-5,7,-3,12,12,10,6,14,-10,10,10,5,-6,-5,11,16,2,1,-8,5,1,-14,3,-4,12,15,12,-6,-1,13,-8,0,6,22,-1,-1,-15,-8,11,9,-5,-3,-4,12,2,-10,2,-8,-4,23,6,14,-22,-10,2,4,7,14,3,-7,-10,6,-2,-13,-14,10,-1,-8,9,-3,13,-9,10,-14,-10,4,14,-3,4,-3,14,14,-11,-13,12,-5,9,-10,-6,-2,-12,5,6,5,-5,4,0,-3,-14,-11,18,8,-7,-2,14,6,-18,6,-14,11,-11,-10,7,11,10,6,-11,-7,10,-12,11,13,-2,-2,2,-12,-12,-7,-4,13,-17,0,10,14,13,-4,-9,11,8,0,-11,-4,13,12,15,-11,5,-1,20,-2,-3,10,-10,13,-16,3,-2,6,4,13,-2,-3,4,-11,7,-1,5,-5,-10,2,7,-11,-3,-14,1,-1,-6,1,-11,6,-4,3,4,12,2,13,14,11,-1,6,-10,-22,0,11,-8,-13,-6,-10,5,13,-8,15,7,0,-12,4,-14,12,14,13,-4,3,15,-4,-3,-23,6,-8,2,7,-9,-14,5,-11,-12,-1,-14,9,21,12,1,-1,3,7,2,3,7,11,13,-5,-1,2,4,-8,13,9,-7,-27,-11,12,4,-4,1,-1,5,-8,-11,-5,-6,-13,-13,2,-5,-3,-10,-1,-3,-11,10,-11,11,-2,11,-6,4,-9,3,-2,13,1,14,-10,-11,-12,8,-3,13,-12,0,0,-4,-10,8,-12,-10,-12,3,-2,-13,-10,8,11,0,0,-7,0,15,14,-16,13,0,6,10,-3,-9,7,-10,-7,-5,-20,11,11,-3,-8,4,5,-3,-5,-8,-7,-1,15,8,-1,-10,-6,-6,-15,9,2,-3,-3,2,-2,11,8,15,7,8,-4,-14,-12,1,-9,8,14,5,11,-11,-6,-1,5,11,-14,-9,-8,-10,-6,1,3,13,-6,9,7,-2,12,-12,0,14,-7,-4,-3,7,12,10,-10,-14,1,15,-3,-14,9,-8,15,-3,-11,-15,4,-11,7,-4,13,-10,0,3,9,3,7,-11,4,-10,-1,-4,4,8,4,9,4,5,-13,11,-11,7,0,-8,-2,-8,14,12,-4,5,11,14,18,4,-4,3,4,-8,-8,-2,4,-3,2,-1,6,15,13,-9,-9,-7,-10,-1,-1,-4,7,5,10,8,-9,12,-11,-1,-3,-9,-7,7,-14,-1,-2,-13,7,8,4,14,-11,-2,13,-13,-9,-9,-12,-10,-14,-1,12,-5,-1,-6,-8,-4,-7,-8,-12,7,4,10,7,-9,-8,-5,-9,6,12,-9,27,10,-2,12,14,8,-2,8,0,4,11,0,15,-2,-15,-3,-9,9,-3,12,-12,-13,19,13,18,-8,2,17,-11,9,17,-1,7,-5,-5,2,-8,-9,-15,-6,7,-6,-5,-8,4,-7,-5,4,1,-7,13,13,4,-12,9,-6,30,-24,-1,5,-3,4,-2,6,-1,-3,-10,-16,-6,-10,18,4,12,11,-4,-14,-6,3,14,-10,12,-4,-2,-6,-3,2,4,14,14,-13,-11,-13,5,5,4,10,27,4,-12,0,7,7,-11,2,-7,3,4,-6,-8,9,9,2,5,-27,-2,10,5,6,13,-14,30,4,4,-12,5,-7,6,7,23,35,-6,-13,-6,10,-6,-5,-12,5,13,6,15,15,-9,-9,9,14,11,-1,2,-6,3,5,17,-9,14,2,-13,5,1,14,11,-2,6,12,-12,2,10,-12,8,13,7,-6,7,11,15,12,8,13,3,12,8,-15,-2,6,0,-8,-14,-4,-10,8,13,-5,4,-13,-13,7,12,8,-10,-9,20,21,-11,-7,7,10,21,15,-11,-13,8,13,-11,-13,17,2,0,-1,14,3,-12,-12,-17,-7,-6,7,-12,-9,-12,8,-10,15,-3,0,12,14,4,14,-2,-5,-8,5,0,-10,14,13,8,-2,27,-4,14,-9,-5,-9,0,-5,26,27,-14,-13,-6,11,-10,15,-11,-5,-6,3,-14,-10,10,12,15,6,15,13,2,-4,0,11,-1,-23,2,-8,-15,0,10,11,21,6,5,1,13,7,10,-5,21,-8,10,-5,-15,-12,-1,5,-7,-2,6,-8,9,-3,6,-9,15,7,1,-18,9,0,3,10,-5,7,-8,13,-4,2,-13,-1,10,17,-5,0,-7,15,12,10,-12,11,6,-8,-7,-6,-2,-12,-13,-2,-7,-10,6,11,-19,-12,-7,-9,6,11,-4,0,-14,-13,8,-5,2,16,10,-10,4,13,-7,-16,-12,-9,14,13,8,-14,9,-1,0,-18,-7,11,-12,-10,7,22,-5,-6,8,3,7,-13,2,11,-10,-11,10,-1,-12,0,3,2,4,-13,7,9,15,-1,10,-9,-8,-7,0,-14,18,1,10,-14,-12,13,-13,-10,10,9,-8,8,8,5,10,9,4,10,-1,6,-13,-7,12,-1,11,-10,23,6,-8,-3,-4,-6,3,-13,-12,8,-2,4,3,-2,-11,11,4,19,15,-5,-2,-3,17,-9,-8,5,-5,6,-2,-5,-5,-12,15,-6,-4,17,8,0,-10,6,1,-7,-5,0,6,6,-6,-13,13,8,-6,-5,-3,15,-6,1,13,-8,-7,-6,5,9,-13,-6,-3,-8,-2,4,4,-3,-16,-1,21,25,7,-18,12,0,-8,-6,9,5,0,-1,0,-10,-16,-13,-9,-9,9,12,14,11,16,4,15,8,-11,-2,-9,-1,18,8,-10,6,9,16,7,5,8,4,-8,7,-13,12,14,-6,-2,15,2,9,-1,3,3,-8,-10,-4,20,13,-3,-14,5,4,-2,-4,-11,0,-12,9,1,7,-12,11,-9,16,2,-9,-13,1,-6,5,13,2,-4,-2,-2,6,-11,9,3,14,12,7,-13,-13,-6,13,-10,10,-5,2,11,-12,-1,3,-3,2,-11,-7,13,-10,1,-7,-1,-4,-3,16,-12,15,-9,-15,11,-11,12,3,15,-4,-6,1,-1,4,4,-19,6,7,3,-7,15,4,-14,2,-13,-9,4,2,0,7,4,-8,6,4,-8,-6,12,-6,0,10,-8,14,17,-2,-8,-8,-11,9,-7,16,4,13,-3,11,-10,-8,7,0,3,13,-12,-14,12,13,6,-6,17,-8,12,-15,10,0,-6,14,4,11,12,-7,12,8,2,1,-6,-12,-10,4,6,-17,-11,-2,-1,-4,10,3,-14,-10,-1,-3,10,8,8,3,-8,5,-3,-4,6,2,5,-14,12,13,1,2,10,14,-2,-6,2,3,-3,-7,14,3,-9,-12,2,6,-12,7,-11,10,11,2,4,14,-14,13,24,9,20,15,-11,12,12,11,-2,7,-13,10,-3,-13,-13,-2,-5,-5,2,-1,9,-16,-5,-6,1,-13,19,-21,15,-2,-13,0,9,1,19,4,-10,1,-10,-8,-11,6,15,14,-9,7,11,-2,2,-14,11,12,-1,13,-12,-1,21,-1,13,3,-5,-4,10,8,9,3,9,10,11,2,-7,13,21,-13,-5,-7,-12,15,-7,-7,1,-12,-6,-20,-10,11,-9,8,13,13,-5,0,8,6,-10,-5,3,9,1,7,1,2,10,15,-4,-12,-11,-8,0,14,-13,-3,2,15,-11,6,15,-8,-14,11,-7,-9,10,18,0,-7,7,4,-4,-6,35,23,8,18,-14,2,13,-7,-11,4,-13,9,-3,-5,-6,-9,15,-7,-5,-2,2,1,-1,-6,2,-6,4,-3,-14,14,16,13,24,-8,5,26,-13,-3,11,3,23,7,-1,17,-13,-1,0,3,-5,5,-5,-10,-9,-4,8,-4,12,-19,6,-3,0,6,-14,12,3,14,2,4,-5,-15,11,-12,11,11,-5,11,-2,7,-7,5,9,-7,-14,5,11,11,1,9,12,4,-1,0,15,12,-6,-11,-1,18,12,25,5,-7,8,13,4,-10,14,23,-9,-7,6,6,-7,-5,-10,-11,2,12,5,-14,22,6,5,-1,11,-10,-3,-1,28,34,3,16,-8,10,5,2,-12,-11,-13,6,3,13,-2,14,-2,-5,-13,2,15,-9,12,3,-4,-17,14,23,-7,14,14,-4,8,0,-9,28,-7,9,-6,9,19,11,-2,-10,-10,-11,-10,2,0,-10,-3,12,-9,9,4,8,9,7,1,-7,10,-2,15,0,-11,-1,-13,10,2,1,-5,-5,-7,6,10,1,-14,5,1,13,13,7,-11,4,10,5,16,13,-12,17,-11,12,12,5,-9,-7,16,11,-4,-1,2,5,-6,6,1,-15,13,9,1,0,-8,-6,-5,-6,-9,-6,6,12,15,7,8,14,2,-7,-12,-9,-17,-4,16,2,15,-9,8,-3,-5,7,14,-7,12,9,9,-13,-11,7,5,5,1,10,-14,0,17,-1,13,-11,-4,8,-6,-2,0,11,4,-9,-7,1,-10,-9,-7,-4,13,6,14,4,3,7,-10,2,5,5,-3,-1,-7,-8,8,10,22,-4,2,-11,-13,1,-4,-14,-10,-2,12,-4,6,8,5,0,-3,-2,-9,10,-14,2,17,-9,10,-6,-1,-2,0,-7,14,14,11,8,2,12,-8,-11,0,-13,-7,4,-7,-12,5,15,-14,0,8,-2,9,-10,14,12,-6,-5,-9,4,12,11,-10,11,9,-13,8,11,6,-13,15,-11,-7,0,3,33,15,-3,12,12,7,0,-1,-3,3,14,7,-11,-11,-5,3,17,-11,-2,-8,14,-7,-13,-6,-1,5,-12,0,-7,16,-5,4,1,7,2,-1,-13,10,12,-4,-13,0,1,15,12,-10,11,-5,-9,-13,-8,9,10,4,4,2,10,-13,-1,7,6,10,-12,-2,0,0,6,14,9,13,-5,16,-3,0,-9,-13,-12,3,-5,0,10,8,10,-12,9,-4,-11,-3,10,6,0,-3,-13,-12,-5,1,7,-8,-15,-10,2,4,-10,-1,4,11,4,-14,-6,11,-8,13,-2,14,1,1,-13,11,-12,-4,1,-9,-8,2,3,-7,-13,8,15,13,-27,-6,0,7,-8,7,3,0,-13,14,6,-3,15,1,16,-12,1,12,-11,15,-14,-11,-20,2,8,-2,8,17,8,16,-13,11,-4,-14,-14,3,-1,-8,-11,3,-5,-8,1,6,-11,6,12,4,-11,-11,14,5,5,18,8,-1,-22,3,-11,-13,-5,9,-8,10,-18,7,-12,4,3,6,0,-9,-6,4,6,2,-6,-11,-10,-2,14,6,2,-7,9,-4,-11,-3,7,-1,8,-11,4,-4,6,12,11,-8,2,-11,14,11,-12,-14,-12,-5,11,21,3,-2,-17,5,-7,0,15,3,14,12,11,-3,-3,5,11,-6,13,32,0,-13,-19,-4,8,-9,-12,4,-19,-8,-10,-9,8,16,1,7,18,-8,12,-6,10,22,-5,17,-11,3,-10,-6,11,-3,4,-2,2,-14,0,8,7,0,-8,13,-7,-12,5,10,-7,-6,13,-7,3,8,-4,3,-10,7,10,23,-12,14,-15,-2,5,9,-1,2,3,8,-16,-1,11,9,-3,9,-8,9,-15,4,-4,21,8,15,-8,1,-5,-5,2,18,7,2,-1,-11,-10,10,-8,9,8,25,17,6,15,12,13,7,8,16,-2,-1,13,-4,14,8,3,13,-19,-4,-10,12,11,11,15,24,5,10,3,-1,-12,-4,13,43,16,11,15,-11,5,-7,12,10,7,2,-11,-1,4,19,-9,5,-6,11,7,15,-10,21,0,20,-2,-3,5,-4,-12,1,-13,25,-3,7,20,-11,5,10,-7,28,5,-12,2,15,-8,-12,-5,4,-8,9,2,4,-10,5,-15,12,-15,9,-19,2,14,10,12,6,-1,11,-6,13,5,-2,4,-2,21,-14,2,-13,-6,1,-4,-2,5,-3,8,9,-9,2,11,12,-2,2,16,7,-7,-1,-9,4,-9,-12,13,-6,-10,-6,2,11,6,-13,-3,-7,-6,6,-11,1,1,6,1,-12,-11,7,-3,-1,17,13,3,14,-11,9,-5,24,23,10,15,-11,-5,19,-5,-1,-2,4,0,-8,-14,12,2,14,1,10,-1,-6,7,16,13,4,8,-6,0,-3,3,17,13,3,1,-8,4,6,12,-9,12,-1,-12,2,-3,-1,-13,12,-10,-7,12,11,-5,-5,2,-9,-2,26,3,-6,2,6,2,8,-11,-11,-12,4,10,7,9,14,15,-2,20,3,1,-11,-4,0,-2,6,-16,-11,-1,0,4,-4,2,16,-12,-11,15,-6,11,7,-1,11,-8,5,-9,14,14,-4,-14,-7,6,7,10,-6,13,1,-7,-1,13,-5,-4,7,3,-9,2,10,-3,-10,-7,9,-4,2,14,7,24,1,12,0,3,11,9,-5,11,-14,-3,1,-13,1,6,-10,3,12,12,-13,13,-9,-10,14,3,15,-4,12,-14,22,-4,11,-2,0,12,6,8,13,7,8,-4,-3,2,-2,12,-2,1,-15,-7,13,-1,-9,-5,8,10,19,5,6,-19,-11,10,-2,11,-10,2,6,-12,5,5,5,10,-11,3,10,13,4,-5,-6,-2,15,9,-10,-11,-3,-3,-3,-9,-2,-1,-10,-4,11,-13,0,-13,16,19,12,13,-14,6,-4,-14,-12,15,-15,-4,-14,8,4,-14,-12,-10,-7,13,3,8,10,-6,-10,8,4,14,-2,-13,-21,-8,6,17,-11,0,13,8,-9,-7,-2,-11,3,-14,-1,6,-11,14,-8,27,1,14,-12,4,-10,3,9,-8,1,-8,8,-13,5,-11,-3,-5,-5,19,14,-14,8,12,18,-7,4,-3,-12,-6,-4,13,6,9,5,-6,-6,-6,10,-2,11,-2,-12,-6,-13,1,-11,7,11,8,-5,-12,8,-7,-3,-5,-13,-3,-4,5,11,7,3,1,-4,15,5,-7,12,-11,11,10,10,1,11,-12,8,10,13,6,-1,-14,-7,2,8,2,-3,-1,3,-7,-1,-10,13,-3,6,-10,3,-10,24,15,-4,0,-12,15,13,-12,1,0,13,10,3,39,64,7,3,0,36,9,3,14,2,1,5,-5,10,10,11,-11,10,-7,14,14,0,22,24,8,-6,9,23,-1,6,16,13,3,-7,-4,8,6,-16,1,-11,29,32,-7,8,-1,6,6,13,10,-6,1,14,12,7,18,8,17,49,3,8,-11,22,3,8,-6,21,14,0,3,9,-2,16,13,-5,-6,5,9,-12,14,1,-3,10,3,-13,13,12,15,1,-7,10,-3,14,10,-4,-10,7,-12,-5,7,9,0,-4,-13,-13,-6,11,-6,3,0,-7,5,5,-9,-1,5,0,1,9,-7,11,-2,13,15,-5,8,3,7,4,16,12,-5,11,-14,16,-2,20,1,-8,-7,-2,5,3,3,1,-4,2,-9,1,2,-13,-3,7,8,-12,-2,20,6,0,4,31,-7,-1,-2,0,-13,8,14,-11,1,7,15,14,-10,15,10,2,6,0,1,14,10,12,10,22,9,21,2,-7,-2,21,0,-2,-2,12,-12,-13,10,20,-12,-5,-7,-4,-13,0,3,-7,-1,-3,0,3,10,-6,14,-9,-8,17,12,12,15,16,11,-14,4,1,0,0,-7,0,10,-10,7,11,7,-1,1,17,-1,-3,3,-6,-10,5,-6,14,-8,-1,-5,-15,-1,-6,3,4,0,1,-9,-11,-21,-6,-10,-10,14,-6,11,12,-8,6,-13,1,11,-12,4,-1,14,8,9,1,-12,1,-2,-7,-4,-17,1,12,1,-4,-4,2,-9,-3,8,-1,-5,-19,13,2,-19,-11,-6,-8,-14,16,12,12,-1,3,0,10,-12,-4,19,2,4,6,10,16,-13,6,12,-7,4,16,-3,-5,-4,8,-7,2,-24,-17,12,10,-3,-10,-9,13,5,-3,4,16,3,5,1,14,-2,4,-9,3,-6,5,16,11,-15,0,7,-8,-14,-18,-12,-5,10,-6,-5,2,0,-8,-4,7,10,0,-14,2,13,14,0,-14,-16,-19,-5,-4,-10,-1,-8,16,-27,-26,-2,14,6,7,10,3,-7,-5,11,3,-13,9,14,-2,13,-12,15,10,7,-14,12,-10,-3,-26,-6,9,10,3,-10,5,-3,-17,14,-13,-1,3,11,-11,-21,-11,-1,14,3,-11,-14,12,3,-5,13,-5,12,4,11,4,9,-1,11,18,-15,10,-14,8,-11,20,-10,-10,-13,4,10,-2,-20,-18,-1,17,-14,-13,7,-2,-3,0,-3,7,-12,1,5,2,-14,-2,-11,-1,15,8,1,-17,-3,-11,4,-5,-1,-18,9,-5,-4,-6,-7,-4,-11,6,1,11,-13,-11,8,12,5,-13,-16,6,2,3,10,2,5,-2,-13,-21,6,18,0,15,5,-2,8,22,-11,9,8,4,4,14,-10,-16,-5,-9,-4,1,3,-1,17,19,-13,-30,2,-8,-3,-17,27,37,-4,-11,-1,-1,11,9,12,-11,19,29,4,8,4,3,-5,4,-1,0,12,15,13,12,14,28,7,36,-11,-1,9,4,12,10,-1,23,3,-12,-1,-12,-10,-1,-2,-10,11,6,-5,0,-5,-1,-1,-3,-7,-11,11,1,8,8,-7,3,-9,9,14,12,-5,-18,8,3,-1,10,-14,-13,6,6,12,5,-10,2,8,-10,27,26,-4,2,-6,10,-12,-11,11,4,4,12,15,-8,10,-12,-8,-12,21,41,9,-8,4,-4,10,3,12,-1,-8,4,8,-10,-1,-18,12,-15,-11,18,-10,4,14,24,6,2,5,4,11,-7,14,27,-20,-15,12,19,-11,-17,3,4,25,28,-1,-13,-9,15,10,15,14,-7,0,-7,-12,11,26,36,25,42,-8,15,-1,2,-9,-11,14,6,11,13,6,0,-5,2,-12,-19,7,7,15,-16,11,23,-2,5,1,8,3,10,-13,-11,11,-8,6,10,11,-12,-14,14,-12,-1,-10,-9,-3,5,1,3,6,11,-3,-13,-3,3,0,3,12,7,11,10,-4,14,13,-2,1,11,2,13,-6,15,16,11,6,33,13,4,-2,5,8,8,1,13,-13,-6,14,-1,-10,3,-9,5,3,2,-12,-6,16,21,-12,1,3,-2,-4,1,0,6,7,-12,-7,9,6,-9,-7,-11,23,3,-8,14,-7,7,9,-8,0,-11,2,0,4,-12,16,32,17,41,6,22,-7,6,2,-13,0,3,-10,-11,-8,-1,-1,14,-2,-12,-4,-7,11,9,-6,9,-14,-10,12,1,-12,-12,6,-1,15,11,0,12,13,6,1,-2,-3,8,10,4,-5,-3,3,-18,4,-5,-2,16,8,-10,-6,14,-14,11,8,18,2,-12,10,-2,-5,-4,-12,-14,2,3,-1,-21,9,46,14,-11,-4,-2,12,6,3,5,12,8,1,-10,-1,-17,-4,11,7,-6,14,-10,0,32,-11,-7,-12,0,-11,-6,13,29,-2,-13,-6,19,6,0,-4,0,2,23,13,-11,-2,14,-6,-8,4,8,8,-6,5,15,23,15,25,47,-8,16,-8,17,-13,7,-5,25,4,10,-2,16,-17,-6,-6,-14,-6,-14,5,5,-11,5,-4,-9,0,-7,-13,-10,4,22,-5,-6,3,3,10,2,-15,-4,0,-7,-12,-4,5,-3,13,-2,-11,0,8,-10,-3,11,-3,11,10,4,-13,3,6,-4,1,-2,-7,-7,-9,-3,-5,4,-12,-2,-12,-11,-2,16,-14,-27,16,23,10,11,0,4,-2,10,-7,10,0,13,6,14,7,12,8,28,-11,-14,14,10,-10,-2,16,-1,4,-2,-11,9,-3,-2,9,-10,17,1,5,14,1,-10,-3,1,14,12,0,12,-8,-9,17,3,25,29,-13,2,-4,-17,13,15,-9,15,-12,-10,6,15,-8,-11,5,-20,-1,-2,11,5,6,13,5,7,16,12,5,1,4,17,-7,10,-14,10,4,-7,3,-8,-1,-14,-1,0,-6,-10,6,6,-12,5,-9,10,-5,4,11,-12,3,-15,14,-6,12,11,9,10,4,-25,15,-6,2,0,-7,-5,-9,-14,2,4,2,-8,5,-7,7,14,-3,12,1,3,10,18,-1,-8,-5,16,-3,-6,3,7,-4,-30,-1,-11,4,-21,-4,9,-19,-17,9,-14,-14,5,-1,-14,-2,-8,7,7,15,-12,15,-2,-12,-12,3,4,-11,-3,7,5,1,-3,-14,10,-10,-2,-15,-5,7,10,1,3,12,1,6,6,-3,-18,-7,2,8,4,-3,-4,-12,-5,-3,-11,12,-12,0,2,-6,-7,-5,0,4,-11,-16,-10,-31,-9,-8,8,2,-3,2,-1,4,-8,4,-5,-8,-2,17,7,15,-15,13,0,-4,15,-15,-17,-10,-8,8,-10,10,-9,-12,-22,4,-8,-13,13,13,-17,-5,-3,-1,8,15,15,15,4,-12,10,12,3,0,28,15,14,-2,29,-25,-16,14,16,-10,-3,12,3,-23,-22,14,-10,3,-13,-6,11,2,5,-10,-6,-9,7,0,0,13,-5,-14,-5,-9,-1,-2,21,12,15,-6,10,-12,-4,7,12,17,2,-6,6,-5,-11,-16,-30,-21,-15,0,-6,5,-9,-2,-3,-8,-4,-2,7,-4,-10,-10,4,3,11,-10,2,-11,10,-11,-12,-9,-3,1,-5,-6,-12,8,3,-18,-4,1,6,-14,9,4,17,-2,2,0,-1,-13,8,10,-4,-5,0,2,-5,-3,-10,-9,-48,-9,8,-7,-2,14,-3,-1,9,6,-3,8,5,15,-2,-14,-30,-2,-5,-13,-1,8,-9,18,26,-30,-25,-5,12,-13,6,1,19,-25,-33,15,12,-2,-18,15,12,0,-4,-1,15,-14,-8,-14,-14,-10,-13,-14,5,-12,0,30,10,21,41,-3,14,13,2,-14,-13,13,6,7,9,12,13,-27,-10,-22,-25,-1,-4,0,-12,6,-5,14,0,3,-2,8,-9,6,2,-5,-18,15,-10,-5,-5,5,-11,8,-1,7,5,1,-13,6,-5,12,14,-9,0,-9,-5,-7,10,-12,-1,-11,0,-6,-14,14,-15,2,-9,3,3,13,19,-11,11,-2,-19,-8,10,-9,23,5,0,10,12,-14,11,1,15,-10,17,6,2,12,3,-1,17,-13,9,3,6,4,15,-14,-18,15,21,-7,-8,0,20,-5,-10,-6,-1,-1,-14,-13,-5,-1,14,-3,-9,6,12,-1,-2,-7,-4,2,20,1,1,14,1,-3,5,-10,-4,-13,14,-8,1,-1,12,14,14,-4,-9,10,-1,6,13,0,-6,-2,0,-2,10,-4,11,9,11,13,15,11,8,1,14,13,-14,-15,-7,-4,-7,2,-17,-10,-8,9,-10,9,7,13,-14,-3,-11,13,-5,6,15,10,-6,12,5,-12,5,-4,9,8,-19,-6,18,10,-3,2,0,-12,-16,2,24,8,-12,-8,14,2,13,0,-12,-5,-1,1,19,13,-1,20,16,-5,-17,-12,9,-4,-10,16,26,-2,-19,8,-11,2,-24,0,12,-7,4,4,7,12,-5,-9,-2,-5,-11,-8,-3,13,1,13,11,-3,16,7,22,-5,2,6,5,18,10,-7,0,2,-10,-10,16,-14,-21,-14,1,-1,-2,1,-2,-10,7,-12,14,15,-14,-1,22,0,-11,-10,18,-10,-9,16,1,0,-15,-7,21,-3,-7,-3,-7,10,-5,-1,-3,4,-2,0,14,8,14,-4,6,13,-4,12,-15,-19,-3,15,6,4,-25,26,0,-6,-4,6,-10,-7,-34,5,16,-13,-14,3,-2,2,-4,26,17,-6,8,11,15,8,3,7,17,-3,-15,-2,7,0,-10,7,14,-11,-2,-1,-15,1,-8,-13,-4,13,-2,-3,2,5,-9,-11,13,10,-6,13,-10,3,1,3,24,1,25,-11,18,-6,-10,10,13,14,-2,-7,-9,0,2,4,-3,6,-13,-7,11,3,-13,-2,10,-14,8,-4,-1,9,-2,8,18,-4,-12,-1,-5,-1,6,-6,9,-11,5,-14,0,2,-6,7,23,5,2,-10,11,7,-14,-3,-5,-9,-1,-6,0,-13,0,-5,2,-4,-24,-12,-11,5,-15,7,15,-4,-19,6,11,3,2,3,-12,-3,0,3,9,8,-12,24,25,3,16,3,15,-5,2,2,-3,-19,-26,14,17,3,-6,10,1,-13,-25,8,-9,-13,-17,11,4,8,-4,7,6,6,1,-3,1,-8,-7,4,-9,4,-8,4,11,23,13,2,5,9,11,-7,10,-9,5,-2,-8,3,-6,5,20,-2,-11,1,-1,9,-17,19,25,16,5,7,-4,3,-9,15,23,14,5,-9,13,-1,2,6,10,-8,-4,7,13,-14,-18,10,4,-10,3,7,5,11,-3,15,-6,0,5,11,10,-13,-6,9,-19,3,-13,-10,-14,8,0,-5,-1,-11,8,-2,1,5,-12,-3,18,8,-5,-6,5,-8,3,10,0,-9,6,11,9,-3,7,-1,30,-14,-10,6,17,13,-19,24,5,-11,-33,6,13,-13,-8,3,-4,16,17,9,14,10,-5,3,-6,11,9,11,16,11,-11,8,8,33,41,15,-6,10,22,-8,15,18,14,-1,12,-14,10,-2,2,4,-28,1,19,3,-17,14,8,0,-14,4,-10,2,1,4,-2,14,-2,-5,-10,-6,13,-13,-10,4,1,8,-5,-3,-1,2,-3,-8,-5,-3,-10,-9,4,15,2,15,0,5,11,12,5,7,3,-16,-12,-6,-16,-4,-2,-16,-35,0,6,-11,-13,8,-10,13,17,-5,12,-1,-12,-14,13,-3,-14,3,-1,-7,1,-8,3,13,31,-5,-27,-4,2,5,7,9,8,-9,-33,-7,2,-5,-10,12,0,1,7,-1,-10,-3,2,9,-15,-9,5,12,-9,-9,-4,27,3,39,43,14,-1,-3,-3,-9,4,13,13,5,-6,10,-13,-1,-25,-14,-24,11,-10,11,-12,7,-5,11,3,0,-4,14,-13,13,-9,-2,0,6,-9,-3,6,11,13,-9,8,-14,-10,-14,-17,-1,7,0,13,-13,-1,10,10,9,-11,4,12,-9,-7,-8,-8,4,-12,7,-8,14,-12,3,-3,19,5,-30,-33,-10,6,0,11,12,-16,1,7,5,-3,-14,13,-3,15,-12,10,-12,-7,13,12,6,-21,-3,-13,1,20,-9,-11,10,-12,6,-4,15,-9,-13,-19,-10,5,-8,1,-10,5,-13,-5,-7,-6,-6,15,-3,-9,1,-8,8,-5,3,-9,5,2,9,0,11,-5,-12,-3,-5,-9,1,8,6,9,4,-6,-7,-7,3,-15,14,7,14,0,-13,-1,4,-14,-7,15,-3,15,-5,7,-13,12,-8,5,-5,-10,-8,13,6,-3,-4,4,-9,6,-6,11,-12,8,-8,-14,1,-11,-2,2,-13,-2,-6,9,-11,4,-7,-8,0,4,26,25,5,9,-1,6,1,-32,1,20,6,7,15,15,15,-7,-2,5,7,10,4,-3,7,-10,10,15,1,-17,13,7,9,-19,-7,0,2,1,14,-13,13,-20,-13,13,-11,-2,-11,-7,-10,-6,-13,9,7,-6,0,-7,11,-12,-8,0,-3,16,-11,19,-3,-7,-6,-14,-4,-2,-4,14,0,10,4,9,-18,-4,-10,3,10,-14,-14,18,-8,-7,-11,-6,-8,15,13,9,13,-7,-5,8,9,-12,3,0,1,-12,-3,-3,10,2,4,20,-3,-11,7,16,3,-4,-6,21,-5,-3,11,9,-1,-5,-11,-12,-2,-5,-8,3,-13,10,11,2,7,-9,10,4,10,-20,6,-6,-6,-10,-9,16,-3,-9,7,17,11,6,-9,-5,-6,-9,-13,12,-24,-17,12,-11,-4,0,10,24,-7,-27,5,-2,1,-10,-2,6,-14,10,-6,4,6,-10,6,-13,-12,13,14,-8,8,0,4,11,15,28,14,0,-3,-7,3,-5,10,13,12,-12,-3,-12,7,-1,-2,-10,-3,14,9,-4,12,10,-7,0,3,3,-6,15,7,3,6,-16,-10,2,2,3,15,18,-17,-8,-10,11,0,13,16,4,-13,3,-4,-6,8,8,14,11,-15,1,-11,15,-3,6,-2,6,6,-4,1,15,-12,-4,12,9,-14,2,4,19,-12,7,10,15,5,-2,-13,6,-15,10,12,21,6,0,-10,17,15,-12,18,31,-18,-19,4,-5,-13,-15,10,15,-20,-21,-2,-8,-7,3,-3,-8,-12,17,5,-8,-1,8,11,-10,4,2,4,-9,-3,8,12,39,23,53,-8,-1,-7,22,0,10,4,5,-1,4,-8,4,-7,-8,-21,-24,5,3,7,-10,15,8,11,11,-2,0,9,-14,9,5,-1,-12,-11,-11,4,15,16,16,-13,-6,13,2,-4,-14,13,-9,-11,3,6,10,-7,-14,18,7,5,-5,-5,-5,0,12,-13,-15,-6,9,-10,7,0,8,8,-2,-18,11,-4,8,5,3,3,27,8,0,12,-8,2,3,7,-4,8,-10,6,-7,-2,0,9,35,-23,-23,-2,3,1,-15,29,27,-20,-9,15,19,-10,-5,-4,-3,2,15,-15,8,-5,14,-8,5,5,6,-9,-3,6,-3,1,25,29,21,4,-8,-11,7,6,-6,9,16,-13,-11,4,-12,-11,-18,-2,-18,-11,-8,-11,8,18,5,4,9,15,-8,8,10,12,11,-16,-10,14,-7,6,1,-12,-12,-18,12,6,-5,-8,13,7,14,-11,7,15,-8,-12,3,-14,-12,-10,7,-9,7,-9,-1,9,-10,5,-13,-13,15,10,3,-5,-19,2,-3,10,-8,14,3,16,5,-4,1,1,17,-7,-5,-8,-12,-4,-1,-7,-1,0,3,24,4,-10,-23,-3,0,2,0,5,32,-23,-29,-12,7,-4,2,-9,12,1,19,7,-9,9,6,3,-3,14,8,7,-1,-14,11,12,8,16,38,5,2,13,19,7,-14,5,-9,14,11,-13,-9,11,-9,-2,-2,-5,-10,-7,-4,-11,-6,12,3,9,12,-14,-1,-10,-7,-14,-12,-1,2,-5,-4,-2,7,0,-15,5,-12,4,-1,15,-8,-4,13,12,-4,-1,-10,9,12,-4,4,5,1,-7,7,14,9,-12,13,12,1,0,-6,-12,-3,-9,15,13,9,8,4,-10,4,11,-5,-6,-1,5,5,13,-11,2,-3,13,16,-1,16,1,-3,-3,3,-12,6,13,-3,9,17,7,-6,-14,-1,-9,-7,-11,0,17,21,15,-9,-4,1,-7,-3,13,2,7,0,14,2,15,21,0,21,-3,10,-9,13,11,-11,1,9,-14,-4,9,9,0,2,5,-20,15,-4,-14,-15,-6,2,11,5,7,-10,11,9,-3,-4,-3,4,3,-4,-7,-8,4,18,-9,-9,5,17,0,-24,-4,-10,-13,-5,1,2,-2,-8,6,-6,5,5,5,0,-6,-1,-6,2,-2,-3,4,1,0,-2,29,32,12,30,-13,-6,14,-23,19,20,-1,8,-9,-11,-2,15,-9,20,11,-5,-14,13,1,-9,5,22,7,0,-1,10,-5,-6,11,10,12,-13,-10,-12,3,4,12,0,11,3,2,-13,8,-15,-4,1,7,1,-3,-1,-4,-14,16,9,2,26,6,14,-6,10,10,-4,-5,-3,-11,-14,12,-8,9,26,6,0,8,8,0,-11,1,2,-10,0,14,10,4,-11,16,1,15,-6,6,-10,-1,10,8,3,10,-10,-5,10,15,-20,-2,-7,9,-10,-1,-8,-11,5,6,-6,-9,-4,-7,-5,0,-3,13,10,16,4,-7,12,15,-5,21,32,8,24,11,14,-13,-17,-11,6,9,8,-2,-5,-2,-1,5,11,3,1,-12,12,-5,-6,8,-1,0,-3,-11,15,6,-22,12,24,-26,-26,8,-7,5,-11,0,6,8,24,12,1,-9,-18,-5,-11,7,-4,-13,-5,-11,15,1,20,-4,25,15,11,0,-10,6,-4,13,2,3,-7,8,13,23,0,3,-17,1,11,-10,10,7,-6,-2,-13,13,7,5,13,11,15,-4,8,-9,8,-11,14,-7,6,14,-5,15,10,7,-6,12,21,9,12,3,17,11,5,10,7,-13,1,-12,12,-7,11,-8,-3,-11,16,14,-16,13,-15,11,10,-1,20,-11,15,-10,-3,-4,-1,2,0,5,4,7,-12,20,20,13,6,-1,17,-10,-1,1,26,-15,-13,6,-1,-10,-16,-1,35,-29,-31,-14,10,10,10,-7,-3,16,19,-3,-3,-13,2,-3,-5,-12,-3,14,-4,-1,-11,24,21,33,58,-6,22,-8,14,-14,1,11,26,11,3,8,13,4,0,-6,-24,0,21,-11,5,-7,7,13,-13,-4,2,13,-5,-1,0,9,7,-11,1,4,1,14,7,-3,1,-11,-1,-8,12,8,-13,7,-8,15,9,15,6,10,-5,-10,-12,8,6,-12,1,5,-3,4,-16,12,10,-7,-7,-8,-13,-8,15,-10,0,4,-6,-4,16,13,0,-11,9,12,-8,6,5,-8,1,3,8,7,-13,0,14,-21,-30,7,-10,3,-7,4,32,-9,-12,-13,0,-3,-12,10,-14,5,22,-2,9,-9,14,16,-13,15,-7,7,11,9,3,13,19,41,59,10,-10,6,-3,-7,13,5,19,7,3,-5,1,8,11,1,-23,1,7,-10,10,-5,6,-12,-11,11,3,5,-3,3,17,5,3,11,5,13,14,15,-9,9,0,9,-13,-5,1,9,2,1,-3,11,10,-9,11,-3,-13,6,9,-1,7,2,-7,2,13,1,2,12,-14,7,-2,-8,-16,-10,3,0,0,-7,7,-4,15,-9,5,-7,-7,-5,7,3,14,12,7,-5,-8,14,-14,13,2,-19,-26,14,-5,7,1,17,28,-29,-39,12,14,12,0,-12,-4,-4,15,-12,-9,-8,4,-4,3,12,-7,-8,-13,-9,8,24,7,34,47,-11,-5,-13,16,14,2,-4,-11,5,15,-1,-4,-4,5,-3,1,9,14,-9,-7,-3,9,-13,-1,-6,-3,5,-11,5,12,17,-2,7,1,-4,8,-6,-6,-11,-3,16,-5,-13,-16,7,-4,-4,-9,-13,10,7,15,16,8,-15,-2,10,0,12,3,-2,-5,12,-4,6,-9,-15,-3,-1,2,3,17,-13,2,2,19,-10,-10,-10,-12,-7,-7,-9,-11,1,8,17,-8,-10,4,-9,-11,-3,10,3,2,7,14,-3,-5,19,13,-1,-10,-6,-2,5,-4,-7,2,-5,22,2,-10,-10,2,-14,5,-1,-6,-9,-8,5,8,23,17,22,43,14,-7,-5,23,12,3,-6,-1,-13,13,-3,1,-1,14,-3,12,1,-2,1,9,4,0,-14,5,-13,-8,-3,12,-8,8,6,16,-4,11,9,-14,2,12,13,-5,-4,16,-1,9,11,4,0,4,-13,3,13,11,-5,6,3,12,14,-12,-12,12,2,5,17,20,-11,-9,14,-11,20,-4,15,28,3,4,10,-10,12,-4,-10,7,11,-3,1,-1,3,1,3,2,-14,-4,14,-10,25,14,-17,-19,-3,11,-5,5,16,12,-17,-18,-7,0,5,-3,11,8,28,16,-11,-11,-12,-12,-13,-8,-1,-2,2,15,1,15,21,25,36,58,-2,-7,0,-4,11,7,17,27,7,14,14,-9,5,24,-13,-2,-8,-4,-7,-7,-4,30,-13,5,-6,10,9,-7,-4,22,15,-7,-7,1,-1,10,8,17,0,-11,0,19,-10,-3,-7,-3,1,-7,6,7,8,-4,3,2,-9,-15,-12,-5,10,3,-6,-11,7,12,-3,14,-11,-12,20,16,16,18,-14,6,6,-24,12,28,11,1,15,5,1,10,8,8,13,-6,3,21,-11,13,15,20,-7,-2,13,-4,9,-13,6,32,-4,-8,-10,-2,-2,4,3,13,16,5,3,-2,14,-1,15,-6,10,-1,6,-13,-12,9,26,17,26,31,-8,-4,-6,-6,8,10,10,-3,15,-7,-1,9,18,10,-2,-22,-8,-5,13,5,-7,-3,5,1,-9,-10,-14,-13,1,12,-10,-4,-7,-11,15,-14,-10,-13,3,-2,-1,9,-4,2,7,7,-14,-3,14,8,-4,-17,4,7,7,-3,0,-2,14,-3,0,-4,-8,-11,9,-9,-11,-14,5,-13,5,26,6,14,-12,-16,-4,6,-1,9,-6,-8,1,1,6,-1,-15,7,-12,-2,12,-6,10,21,-11,-7,-13,-6,-11,-19,22,25,-22,-27,-5,-5,-13,-13,-6,-9,27,21,5,-14,10,-5,11,-5,9,13,10,-4,3,-13,14,19,26,44,1,11,-10,1,-9,10,19,-1,-8,3,-11,1,4,-14,-19,-29,-11,-4,10,2,-8,9,14,5,14,-7,9,1,0,22,-6,-16,2,10,-8,4,-14,-4,5,0,10,-12,-13,7,-5,-8,-9,7,15,13,9,5,-2,-1,-7,6,2,-5,9,11,-4,-6,-17,-2,-13,12,9,-12,-4,-24,-7,17,11,8,-11,11,3,23,8,-9,-11,8,14,-6,-8,-8,10,13,-4,6,10,1,25,17,-2,-13,3,18,11,0,27,19,-18,-33,1,14,0,-19,-8,4,7,16,-14,14,-5,12,7,-12,3,4,-9,3,13,-14,12,30,25,58,14,10,11,-3,0,-3,12,17,-7,-11,6,11,12,-6,-22,-7,-4,10,-2,-3,19,-7,-13,-7,10,-12,0,10,3,19,-13,-9,-1,6,-8,-9,-5,5,4,0,-9,-3,-8,-2,6,7,-15,6,4,3,-14,-3,14,14,1,4,-6,-13,-11,2,12,-5,-14,18,-6,15,13,4,5,10,4,7,-12,-5,-14,10,10,21,11,-2,2,-12,-1,11,-10,-18,-12,-10,5,-17,-5,15,13,16,-10,-5,13,14,12,-13,16,35,0,-21,-8,10,15,12,2,-10,-2,24,8,5,0,6,-1,9,12,0,15,-9,-13,12,16,26,34,25,-13,11,11,1,7,1,3,4,12,1,-6,-3,0,8,-9,-15,-4,10,15,-9,10,14,-9,10,-8,-5,3,1,-3,5,4,15,8,13,2,10} +#define INTERFACE_WT_SHAPE 36864 +#define INTERFACE_BIAS {21,-41,9,4,-13,-11,29,51,-13,20,-17,-13,-23,18,74,62,12,15,5,-28,76,8,25,19,-19,9,53,20,6,36,-8,23} +#define INTERFACE_BIAS_SHAPE 32 +#define LINEAR_WT {-39,-9,-54,56,31,24,-32,45,-19,-12,-23,22,-18,35,-30,-14,-14,-14,-40,-23,-7,29,3,29,-3,-17,-48,-7,6,-11,27,43,-13,-3,16,21,17,-3,-31,15,36,10,21,9,20,-26,15,-20,-6,-21,9,-54,12,2,53,-11,16,12,2,-28,23,-6,38,-26,15,17,-1,-21,17,27,0,23,-4,19,-5,-20,12,-10,3,18,64,-16,53,12,-2,-61,-30,-34,-22,-17,7,-9,9,32,9,-21,18,-7,-8,-16,-18,-9,17,-24,-38,24,-22,10,10,40,-13,-4,-16,36,-14,-20,-18,-29,-15,4,-31,68,19,24,-35,-17,-23,9} +#define LINEAR_WT_SHAPE 128 +#define LINEAR_BIAS {-43,-66,63,-51} +#define LINEAR_BIAS_SHAPE 4 diff --git a/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/Makefile b/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/Makefile index d94a82b4f..e257b9a29 100644 --- a/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/Makefile +++ b/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/Makefile @@ -83,8 +83,7 @@ ifeq ($(CONFIG_USING_TENSORFLOWLITEMICRO),y) -Isource/third_party/ruy DEFINES += -DTF_LITE_USE_GLOBAL_CMATH_FUNCTIONS \ -DTF_LITE_USE_GLOBAL_MAX \ - -DTF_LITE_USE_GLOBAL_MIN \ - -DTF_LITE_STATIC_MEMORY + -DTF_LITE_USE_GLOBAL_MIN endif include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/source/Makefile b/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/source/Makefile index 81b754f30..9636a1e1f 100644 --- a/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/source/Makefile +++ b/APP_Framework/Framework/knowing/tensorflow-lite/tensorflow-lite-for-mcu/source/Makefile @@ -23,8 +23,8 @@ $(patsubst %.cc,%.o,$(patsubst %.c,%.o,$(SRCS))) LIBRARY_OBJS := $(filter-out tensorflow/lite/micro/examples/%, $(OBJS)) -CXXFLAGS += -std=c++11 -fno-rtti -fno-exceptions -fno-threadsafe-statics -fno-unwind-tables -ffunction-sections -fdata-sections -fmessage-length=0 -DTF_LITE_STATIC_MEMORY -DTF_LITE_DISABLE_X86_NEON -O3 -Werror -Wsign-compare -Wdouble-promotion -Wshadow -Wunused-variable -Wmissing-field-initializers -Wunused-function -Wswitch -Wvla -Wall -Wextra -Wstrict-aliasing -Wno-unused-parameter -DCMSIS_NN -DTF_LITE_USE_CTIME -I. -I./third_party/gemmlowp -I./third_party/flatbuffers/include -I./third_party/ruy -CCFLAGS += -std=c11 -fno-unwind-tables -ffunction-sections -fdata-sections -fmessage-length=0 -DTF_LITE_STATIC_MEMORY -DTF_LITE_DISABLE_X86_NEON -O3 -Werror -Wsign-compare -Wdouble-promotion -Wshadow -Wunused-variable -Wmissing-field-initializers -Wunused-function -Wswitch -Wvla -Wall -Wextra -Wstrict-aliasing -Wno-unused-parameter -DCMSIS_NN -DTF_LITE_USE_CTIME -I. -I./third_party/gemmlowp -I./third_party/flatbuffers/include -I./third_party/ruy +CXXFLAGS += -std=c++11 -fno-rtti -fno-exceptions -fno-threadsafe-statics -fno-unwind-tables -ffunction-sections -fdata-sections -fmessage-length=0 -DTF_LITE_DISABLE_X86_NEON -O3 -Werror -Wsign-compare -Wdouble-promotion -Wshadow -Wunused-variable -Wmissing-field-initializers -Wunused-function -Wswitch -Wvla -Wall -Wextra -Wstrict-aliasing -Wno-unused-parameter -DCMSIS_NN -DTF_LITE_USE_CTIME -I. -I./third_party/gemmlowp -I./third_party/flatbuffers/include -I./third_party/ruy +CCFLAGS += -std=c11 -fno-unwind-tables -ffunction-sections -fdata-sections -fmessage-length=0 -DTF_LITE_DISABLE_X86_NEON -O3 -Werror -Wsign-compare -Wdouble-promotion -Wshadow -Wunused-variable -Wmissing-field-initializers -Wunused-function -Wswitch -Wvla -Wall -Wextra -Wstrict-aliasing -Wno-unused-parameter -DCMSIS_NN -DTF_LITE_USE_CTIME -I. -I./third_party/gemmlowp -I./third_party/flatbuffers/include -I./third_party/ruy LDFLAGS += -lm