file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/151705055.c
/** * Name: Charles Cash * Date: October 26, 2016 * Class: COP 2220 * Assignment: Parking Charges * Compiled with GCC on Arch Linux */ #include <stdio.h> #include <stdlib.h> /** * Struct to store hours and charges */ typedef struct parkingCharge_struct{ double hours; double charge; } parkingCharge; void populateHours(parkingCharge* carsArrToPopulate, int size); // gets user input for hours void calculateCharges(parkingCharge* carsArrToPopulate, int size); // takes hours and calculates charges void printCharges(parkingCharge* carArrsToPrint, int size); // prints tabulated output /** * Runs through initial calculation and then goes into a loop based upon user inputData * Designed this way so malloc would run on initial invocation and then use realloc */ int main(void){ int numCars = 0; parkingCharge* carsArr = NULL; char repeat = 'n'; printf("Please enter the number of vehicles:\n"); scanf("%d", &numCars); carsArr = (parkingCharge*) malloc(numCars * sizeof(parkingCharge)); printf("Number of cars %d\n", numCars); populateHours(carsArr, numCars); calculateCharges(carsArr, numCars); printCharges(carsArr, numCars); printf("Would you like to do another calculation? (y/n)\n"); scanf(" %c", &repeat); while(repeat == 'y' || repeat == 'Y'){ printf("Please enter the number of vehicles:\n"); scanf("%d", &numCars); carsArr = (parkingCharge*) realloc(carsArr, (numCars * sizeof(parkingCharge))); populateHours(carsArr, numCars); calculateCharges(carsArr, numCars); printCharges(carsArr, numCars); printf("Would you like to do another calculation? (y/n)\n"); scanf(" %c", &repeat); } free(carsArr); return 0; } /** * Populates an array of parkingCharges with the amount of hours a car has been parked */ void populateHours(parkingCharge* carsArrToPopulate, int size){ int i = 0; double temp = 0.0; for(i = 0; i < size; i++){ printf("Enter hours:\n"); scanf("%lf", &temp); carsArrToPopulate[i].hours = temp; } return; } /* * Takes an array of parking charges with amount of hours and populates charge */ void calculateCharges(parkingCharge* carsArrToPopulate, int size){ int i = 0; for(i = 0; i < size; i++){ if(carsArrToPopulate[i].hours <= 3){ carsArrToPopulate[i].charge = 2.00; }else{ carsArrToPopulate[i].charge = ((carsArrToPopulate[i].hours - 3) * 0.5) + 2.00; if(carsArrToPopulate[i].charge > 10){ carsArrToPopulate[i].charge = 10.00; } } } return; } /* * Takes an array of parking charges and prints hours and charge in tab output */ void printCharges(parkingCharge* carArrsToPrint, int size){ int i = 0; double totalHours = 0.0; double totalCharge = 0.0; printf("Car\tHours\tCharge\t\n"); for(i = 0; i < size; i++){ printf("%d\t%.2lf\t%.2lf\n", (i+1), carArrsToPrint[i].hours, carArrsToPrint[i].charge); totalHours += carArrsToPrint[i].hours; totalCharge += carArrsToPrint[i].charge; } printf("Total\t%.1lf\t%.2lf\n", totalHours, totalCharge); return; }
the_stack_data/7950767.c
#define _BSD_SOURCE #include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <string.h> #include <unistd.h> #include <pwd.h> #include <errno.h> struct passwd * my_getpwnam(const char *name) { struct passwd *ptr; setpwent(); // rewind first while ((ptr = getpwent()) != NULL) { if (strcmp(name, ptr->pw_name) == 0) { break; } } endpwent(); // close return ptr; } void print_passwd(const char *name) { errno = 0; struct passwd *pwd; pwd = my_getpwnam(name); if (pwd != NULL) { printf("User: %s\n", pwd->pw_name); printf("Home directory: %s\n", pwd->pw_dir); printf("Default shell: %s\n", pwd->pw_shell); } else { fprintf(stderr, "getpwnam error for %s", name); if (errno != 0) { perror("Error info: "); } putchar('\n'); } } int main(int argc, char const *argv[]) { if (argc < 2) { printf("Usage: getpwnam <username>\n"); exit(0); } for (int i = 1; i < argc; ++i) { print_passwd(argv[i]); } return 0; }
the_stack_data/1098407.c
/* P24 PROGRAMMING PROBLEM 6 */ /* Write a program that asks the user enter the number of x and then * display the value of following mulitily item formule: * * The program asks the user to enter the value of x and then * displays the value of following polynomial * ((((3x + 2)x - 5)x -1)x + 7)x - 6 */ #include <stdio.h> int main(void) { int x; scanf("%d", &x); printf("3x^5 + 2x^4 - 5x^3 - x^2 + 7x - 6 = %d \n", ((((3 * x + 2) * x - 5) * x -1) * x + 7) * x - 6); return 0; }
the_stack_data/234518674.c
/* * tlsanim2r3d.c * * Create a modular Raster3D input file from a list of CA coordinates * with associated chain, segment, and model information. * We assume that a suitable header file is being created elsewhere. * * LAST UPDATE: 2010-06-10 * * TODO: * - command-line options for trace radius, etc * - color half-bonds at segment break */ #include <stdio.h> #include <math.h> typedef struct CA { int model; /* Which chain-trace within the animation */ char chain; /* 1 char CHAINID */ int segment; /* TLS segment index */ int libration; /* 1/2/3 which libration component */ double x,y,z; /* The coordinates of this CA atom */ } CA; typedef struct color { double R,G,B; } color; /* This color table should match the one in Colors.py used by TLSMD */ static color segcolor[] = { {0.750, 0.750, 0.750}, /* Grey */ {0.000, 0.000, 1.000}, /* Blue */ {0.000, 1.000, 0.000}, /* Green */ {1.000, 0.000, 1.000}, /* Magenta */ {1.000, 0.000, 0.000}, /* Red */ {0.000, 1.000, 1.000}, /* Cyan */ {1.000, 1.000, 0.000}, /* Yellow */ {1.000, 0.500, 1.000}, /* Violet */ {0.500, 0.000, 1.000}, /* PurpleBlue */ {1.000, 0.600, 0.500}, /* Salmon */ {0.500, 1.000, 0.500}, /* Lime */ {0.500, 0.500, 1.000}, /* Slate */ {0.000, 1.000, 0.500}, /* BlueGreen */ {1.000, 0.000, 0.500}, /* HotPink */ {1.000, 0.500, 0.000}, /* Orange */ {0.500, 1.000, 0.000}, /* YellowGreen */ {0.500, 0.000, 1.000}, /* BlueViolet */ {0.000, 0.500, 1.000}, /* Marine */ {0.750, 0.750, 0.000}, /* Olive */ {0.750, 0.000, 0.750}, /* Purple */ {0.000, 0.750, 0.750}, /* Teal */ {0.500, 0.100, 0.100}, /* Ruby */ {0.100, 0.500, 0.100}, /* Forest */ {0.100, 0.100, 0.500}, /* Deep */ {0,0,0} }; static double dist(CA *a, CA *b) { return (a->x - b->x)*(a->x - b->x) + (a->y - b->y)*(a->y - b->y) + (a->z - b->z)*(a->z - b->z); } int main(int argc, char *argv[]) { /* Internal constants - may add command line options later */ double radius = 0.2; /* Radius of trace in Angstroms */ double gap = 5.0*5.0; /* Square of longest allowable CA-CA distance */ int nca = 0; /* Number of CAs read so far for this segment */ int maxcolor = sizeof(segcolor) / sizeof(color); int color = 0; int desired_libration_group = 0; /* Bookkeeping */ CA previous, current; double thickness = radius; int ierr; /* Informational only */ fprintf(stderr,"tlsanim2r3d version 0.2\n"); fprintf(stderr,"\tmaxcolors = %d\n",maxcolor); while (8 == (ierr = scanf("%d %d %c %d %d %lf %lf %lf", &desired_libration_group, &current.model, &current.chain, &current.segment, &current.libration, &current.x, &current.y, &current.z))) { if (0) printf("%2d %2d %1c %d %d %g %g %g\n", desired_libration_group, current.model, current.chain, current.segment, current.libration, current.x, current.y, current.z); /* Ignore unwanted libration groups. * So far there is no way to specify which one we want, * so arbitrarily take the first */ if (!desired_libration_group) { continue; } /* Start new segment */ if (nca == 0) { previous = current; nca = 1; continue; } /* Check for end of model or chain */ if ((current.model != previous.model) || (current.chain != previous.chain)) { previous = current; nca = 1; continue; } /* Check for gap in chain */ if (dist(&current,&previous) > gap) { previous = current; nca = 1; continue; } /* OK, we have both ends of a chain-trace segment */ color = current.segment % maxcolor; thickness = (current.model == 0) ? radius : radius * 1.1; printf("3\n %.3f %.3f %.3f %4.2f %.3f %.3f %.3f %4.2f", previous.x, previous.y, previous.z, thickness, current.x, current.y, current.z, thickness); printf(" %5.3f %5.3f %5.3f\n", segcolor[color].R, segcolor[color].G, segcolor[color].B); previous = current; nca++; } return 0; }
the_stack_data/125139242.c
/* $NetBSD: aic7xxx_asm.c,v 1.4 1996/05/20 00:48:48 thorpej Exp $ */ /*+M************************************************************************* * Adaptec AIC7770/AIC7870 sequencer code assembler. * * Copyright (c) 1994 John Aycock * The University of Calgary Department of Computer Science. * 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. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of Calgary * Department of Computer Science and its contributors. * 4. 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 AUTHOR 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 AUTHOR 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. * * Comments are started by `#' and continue to the end of the line; lines * may be of the form: * <label>* * <label>* <undef-sym> = <value> * <label>* <opcode> <operand>* * * A <label> is an <undef-sym> ending in a colon. Spaces, tabs, and commas * are token separators. * *-M*************************************************************************/ static char id[] = "$NetBSD: aic7xxx_asm.c,v 1.4 1996/05/20 00:48:48 thorpej Exp $"; #include <ctype.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> #define MEMORY 448 #define MAXLINE 1024 #define MAXTOKEN 32 #define ADOTOUT "a.out" #define NOVALUE -1 /* * AIC-7770/AIC-7870 register definitions */ #define R_SINDEX 0x65 #define R_ALLONES 0x69 #define R_ALLZEROS 0x6a #define R_NONE 0x6a int debug; int lineno, LC; char *filename; unsigned char M[MEMORY][4]; void error(char *s) { fprintf(stderr, "%s: %s at line %d\n", filename, s, lineno); exit(EXIT_FAILURE); } void * Malloc(size_t size) { void *p = malloc(size); if (!p) error("out of memory"); return(p); } void * Realloc(void *ptr, size_t size) { void *p = realloc(ptr, size); if (!p) error("out of memory"); return(p); } char * Strdup(char *s) { char *p = (char *)Malloc(strlen(s) + 1); strcpy(p, s); return(p); } typedef struct sym_t { struct sym_t *next; /* MUST BE FIRST */ char *name; int value; int npatch; int *patch; } sym_t; sym_t *head; void define(char *name, int value) { sym_t *p, *q; for (p = head, q = (sym_t *)&head; p; p = p->next) { if (!strcmp(p->name, name)) error("redefined symbol"); q = p; } p = q->next = (sym_t *)Malloc(sizeof(sym_t)); p->next = NULL; p->name = Strdup(name); p->value = value; p->npatch = 0; p->patch = NULL; if (debug) { fprintf(stderr, "\"%s\" ", p->name); if (p->value != NOVALUE) fprintf(stderr, "defined as 0x%x\n", p->value); else fprintf(stderr, "undefined\n"); } } sym_t * lookup(char *name) { sym_t *p; for (p = head; p; p = p->next) if (!strcmp(p->name, name)) return(p); return(NULL); } void patch(sym_t *p, int location) { p->npatch += 1; p->patch = (int *)Realloc(p->patch, p->npatch * sizeof(int *)); p->patch[p->npatch - 1] = location; } void backpatch(void) { int i; sym_t *p; for (p = head; p; p = p->next) { if (p->value == NOVALUE) { fprintf(stderr, "%s: undefined symbol \"%s\"\n", filename, p->name); exit(EXIT_FAILURE); } if (p->npatch) { if (debug) fprintf(stderr, "\"%s\" (0x%x) patched at", p->name, p->value); for (i = 0; i < p->npatch; i++) { M[p->patch[i]][0] &= ~1; M[p->patch[i]][0] |= ((p->value >> 8) & 1); M[p->patch[i]][1] = p->value & 0xff; if (debug) fprintf(stderr, " 0x%x", p->patch[i]); } if (debug) fputc('\n', stderr); } } } /* * Output words in byte-reversed order (least significant first) * since the sequencer RAM is loaded that way. */ void output(FILE *fp) { int i; for (i = 0; i < LC; i++) fprintf(fp, "\t0x%02x, 0x%02x, 0x%02x, 0x%02x,\n", M[i][3], M[i][2], M[i][1], M[i][0]); printf("%d out of %d instructions used.\n", LC, MEMORY); } char ** getl(int *n) { int i; char *p, *quote; static char buf[MAXLINE]; static char *a[MAXTOKEN]; i = 0; while (fgets(buf, sizeof(buf), stdin)) { lineno += 1; if (buf[strlen(buf)-1] != '\n') error("line too long"); p = strchr(buf, '#'); if (p) *p = '\0'; p = buf; rescan: quote = strchr(p, '\"'); if (quote) *quote = '\0'; for (p = strtok(p, ", \t\n"); p; p = strtok(NULL, ", \t\n")) if (i < MAXTOKEN-1) a[i++] = p; else error("too many tokens"); if (quote) { quote++; p = strchr(quote, '\"'); if (!p) error("unterminated string constant"); else if (i < MAXTOKEN-1) { a[i++] = quote; *p = '\0'; p++; } else error("too many tokens"); goto rescan; } if (i) { *n = i; return(a); } } return(NULL); } #define A 0x8000 /* `A'ccumulator ok */ #define I 0x4000 /* use as immediate value */ #define SL 0x2000 /* shift left */ #define SR 0x1000 /* shift right */ #define RL 0x0800 /* rotate left */ #define RR 0x0400 /* rotate right */ #define LO 0x8000 /* lookup: ori-{jmp,jc,jnc,call} */ #define LA 0x4000 /* lookup: and-{jz,jnz} */ #define LX 0x2000 /* lookup: xor-{je,jne} */ #define NA -1 /* not applicable */ struct { char *name; int n; /* number of operands, including opcode */ unsigned int op; /* immediate or L?|pos_from_0 */ unsigned int dest; /* NA, pos_from_0, or I|immediate */ unsigned int src; /* NA, pos_from_0, or I|immediate */ unsigned int imm; /* pos_from_0, A|pos_from_0, or I|immediate */ unsigned int addr; /* NA or pos_from_0 */ int fmt; /* instruction format - 1, 2, or 3 */ } instr[] = { /* * N OP DEST SRC IMM ADDR FMT */ { "mov", 3, 1, 1, 2, I|0xff, NA, 1 }, { "mov", 4, LO|2, NA, 1, I|0, 3, 3 }, { "mvi", 3, 0, 1, I|R_ALLZEROS, A|2, NA, 1 }, { "mvi", 4, LO|2, NA, I|R_ALLZEROS, 1, 3, 3 }, { "not", 2, 2, 1, 1, I|0xff, NA, 1 }, { "and", 3, 1, 1, 1, A|2, NA, 1 }, { "and", 4, 1, 1, 3, A|2, NA, 1 }, { "or", 3, 0, 1, 1, A|2, NA, 1 }, { "or", 4, 0, 1, 3, A|2, NA, 1 }, { "or", 5, LO|3, NA, 1, 2, 4, 3 }, { "xor", 3, 2, 1, 1, A|2, NA, 1 }, { "xor", 4, 2, 1, 3, A|2, NA, 1 }, { "nop", 1, 1, I|R_NONE, I|R_ALLZEROS, I|0xff, NA, 1 }, { "inc", 2, 3, 1, 1, I|1, NA, 1 }, { "inc", 3, 3, 1, 2, I|1, NA, 1 }, { "dec", 2, 3, 1, 1, I|0xff, NA, 1 }, { "dec", 3, 3, 1, 2, I|0xff, NA, 1 }, { "jmp", 2, LO|0, NA, I|R_SINDEX, I|0, 1, 3 }, { "jc", 2, LO|0, NA, I|R_SINDEX, I|0, 1, 3 }, { "jnc", 2, LO|0, NA, I|R_SINDEX, I|0, 1, 3 }, { "call", 2, LO|0, NA, I|R_SINDEX, I|0, 1, 3 }, { "test", 5, LA|3, NA, 1, A|2, 4, 3 }, { "cmp", 5, LX|3, NA, 1, A|2, 4, 3 }, { "ret", 1, 1, I|R_NONE, I|R_ALLZEROS, I|0xff, NA, 1 }, { "ret", 1, 1, I|R_NONE, I|R_ALLZEROS, I|0xff, NA, 1 }, { "clc", 1, 3, I|R_NONE, I|R_ALLZEROS, I|1, NA, 1 }, { "clc", 4, 3, 2, I|R_ALLZEROS, A|3, NA, 1 }, { "stc", 2, 3, 1, I|R_ALLONES, I|1, NA, 1 }, { "add", 3, 3, 1, 1, A|2, NA, 1 }, { "add", 4, 3, 1, 3, A|2, NA, 1 }, { "adc", 3, 4, 1, 1, A|2, NA, 1 }, { "adc", 4, 4, 1, 3, A|2, NA, 1 }, { "shl", 3, 5, 1, 1, SL|2, NA, 2 }, { "shl", 4, 5, 1, 2, SL|3, NA, 2 }, { "shr", 3, 5, 1, 1, SR|2, NA, 2 }, { "shr", 4, 5, 1, 2, SR|3, NA, 2 }, { "rol", 3, 5, 1, 1, RL|2, NA, 2 }, { "rol", 4, 5, 1, 2, RL|3, NA, 2 }, { "ror", 3, 5, 1, 1, RR|2, NA, 2 }, { "ror", 4, 5, 1, 2, RR|3, NA, 2 }, /* * Extensions (note also that mvi allows A) */ { "clr", 2, 1, 1, I|R_ALLZEROS, I|0xff, NA, 1 }, { 0, 0, 0, 0, 0, 0, 0, 0 } }; int eval_operand(char **a, int spec) { int i; unsigned int want = spec & (LO|LA|LX); static struct { unsigned int what; char *name; int value; } jmptab[] = { { LO, "jmp", 8 }, { LO, "jc", 9 }, { LO, "jnc", 10 }, { LO, "call", 11 }, { LA, "jz", 15 }, { LA, "jnz", 13 }, { LX, "je", 14 }, { LX, "jne", 12 }, }; spec &= ~(LO|LA|LX); for (i = 0; i < sizeof(jmptab)/sizeof(jmptab[0]); i++) if (jmptab[i].what == want && !strcmp(jmptab[i].name, a[spec])) { return(jmptab[i].value); } if (want) error("invalid jump"); return(spec); /* "case 0" - no flags set */ } int eval_sdi(char **a, int spec) { sym_t *p; unsigned val; if (spec == NA) return(NA); switch (spec & (A|I|SL|SR|RL|RR)) { case SL: case SR: case RL: case RR: if (isdigit(*a[spec &~ (SL|SR|RL|RR)])) val = strtol(a[spec &~ (SL|SR|RL|RR)], NULL, 0); else { p = lookup(a[spec &~ (SL|SR|RL|RR)]); if (!p) error("undefined symbol used"); val = p->value; } switch (spec & (SL|SR|RL|RR)) { /* blech */ case SL: if (val > 7) return(0xf0); return(((val % 8) << 4) | (val % 8)); case SR: if (val > 7) return(0xf0); return(((val % 8) << 4) | (1 << 3) | ((8 - (val % 8)) % 8)); case RL: return(val % 8); case RR: return((8 - (val % 8)) % 8); } case I: return(spec &~ I); case A: /* * An immediate field of zero selects * the accumulator. Vigorously object * if zero is given otherwise - it's * most likely an error. */ spec &= ~A; if (!strcmp("A", a[spec])) return(0); if (isdigit(*a[spec]) && strtol(a[spec], NULL, 0) == 0) { error("immediate value of zero selects accumulator"); } /* falls through */ case 0: if (isdigit(*a[spec])) return(strtol(a[spec], NULL, 0)); p = lookup(a[spec]); if (p) return(p->value); error("undefined symbol used"); } return(NA); /* shut the compiler up */ } int eval_addr(char **a, int spec) { sym_t *p; if (spec == NA) return(NA); if (isdigit(*a[spec])) return(strtol(a[spec], NULL, 0)); p = lookup(a[spec]); if (p) { if (p->value != NOVALUE) return(p->value); patch(p, LC); } else { define(a[spec], NOVALUE); p = lookup(a[spec]); patch(p, LC); } return(NA); /* will be patched in later */ } int crack(char **a, int n) { int i; int I_imm, I_addr; int I_op, I_dest, I_src, I_ret; /* * Check for "ret" at the end of the line; remove * it unless it's "ret" alone - we still want to * look it up in the table. */ I_ret = (strcmp(a[n-1], "ret") ? 0 : !0); if (I_ret && n > 1) n -= 1; for (i = 0; instr[i].name; i++) { /* * Look for match in table given constraints, * currently just the name and the number of * operands. */ if (!strcmp(instr[i].name, *a) && instr[i].n == n) break; } if (!instr[i].name) error("unknown opcode or wrong number of operands"); I_op = eval_operand(a, instr[i].op); I_src = eval_sdi(a, instr[i].src); I_imm = eval_sdi(a, instr[i].imm); I_dest = eval_sdi(a, instr[i].dest); I_addr = eval_addr(a, instr[i].addr); if( LC >= MEMORY ) error("Memory exhausted!\n"); switch (instr[i].fmt) { case 1: case 2: M[LC][0] = (I_op << 1) | I_ret; M[LC][1] = I_dest; M[LC][2] = I_src; M[LC][3] = I_imm; break; case 3: if (I_ret) error("illegal use of \"ret\""); M[LC][0] = (I_op << 1) | ((I_addr >> 8) & 1); M[LC][1] = I_addr & 0xff; M[LC][2] = I_src; M[LC][3] = I_imm; break; } return (1); /* no two-byte instructions yet */ } #undef SL #undef SR #undef RL #undef RR #undef LX #undef LA #undef LO #undef I #undef A void assemble(FILE *ofile) { int n; char **a; sym_t *p; while ((a = getl(&n))) { while (a[0][strlen(*a)-1] == ':') { a[0][strlen(*a)-1] = '\0'; p = lookup(*a); if (p) p->value = LC; else define(*a, LC); a += 1; n -= 1; } if (!n) /* line was all labels */ continue; if (n == 3 && !strcmp("VERSION", *a)) fprintf(ofile, "#define %s \"%s\"\n", a[1], a[2]); else { if (n == 3 && !strcmp("=", a[1])) define(*a, strtol(a[2], NULL, 0)); else LC += crack(a, n); } } backpatch(); output(ofile); if (debug) output(stderr); } int main(int argc, char **argv) { int c; int pid; int ifile; FILE *ofile; int fd[2]; ofile = NULL; while ((c = getopt(argc, argv, "dho:vD:")) != EOF) { switch (c) { case 'd': debug = !0; break; case 'D': { char *p; if ((p = strchr(optarg, '=')) != NULL) { *p = '\0'; define(optarg, strtol(p + 1, NULL, 0)); } else define(optarg, 1); break; } case 'o': if ((ofile = fopen(optarg, "w")) == NULL) { perror(optarg); exit(EXIT_FAILURE); } break; case 'h': printf("usage: %s [-d] [-Dname] [-ooutput] input\n", *argv); exit(EXIT_SUCCESS); break; case 'v': printf("%s\n", id); exit(EXIT_SUCCESS); break; default: exit(EXIT_FAILURE); break; } } if (argc - optind != 1) { fprintf(stderr, "%s: must have one input file\n", *argv); exit(EXIT_FAILURE); } filename = argv[optind]; if ((ifile = open(filename, O_RDONLY)) < 0) { perror(filename); exit(EXIT_FAILURE); } if (!ofile) { if ((ofile = fopen(ADOTOUT, "w")) == NULL) { perror(ADOTOUT); exit(EXIT_FAILURE); } } if (pipe(fd) < 0) { perror("pipe failed"); exit(1); } if ((pid = fork()) < 0 ) { perror("fork failed"); exit(1); } else if (pid > 0) { /* Parent */ close(fd[1]); /* Close write end */ if (fd[0] != STDIN_FILENO) { if (dup2(fd[0], STDIN_FILENO) != STDIN_FILENO) { perror("dup2 error on stdin"); exit(EXIT_FAILURE); } close(fd[0]); } assemble(ofile); exit(EXIT_SUCCESS); } else { /* Child */ close(fd[0]); /* Close Read end */ if (fd[1] != STDOUT_FILENO) { if (dup2(fd[1], STDOUT_FILENO) != STDOUT_FILENO) { perror("dup2 error on stdout"); exit(EXIT_FAILURE); } close(fd[1]); } if (ifile != STDIN_FILENO) { if (dup2(ifile, STDIN_FILENO) != STDIN_FILENO) { perror("dup2 error on stdin"); exit(EXIT_FAILURE); } close(ifile); } execl("/usr/bin/cpp", "/usr/bin/cpp", "-P", "-", "-", NULL); } return(EXIT_SUCCESS); }
the_stack_data/20012.c
//<math.h> //example shows the usage of asin() function. #include <stdio.h> #include <math.h> #define PI 3.14159265 int main () { double x, ret, val; x = 0.9; val = 180.0 / PI; ret = asin(x) * val; printf("The arc sine of %lf is %lf degrees", x, ret); return(0); }
the_stack_data/212644473.c
/** ******************************************************************************* * @file sleep_api.c * @brief Implementation of a sleep functionality * @internal * @author ON Semiconductor * $Rev: $ * $Date: $ ****************************************************************************** * @copyright (c) 2015 ON Semiconductor. All rights reserved. * ON Semiconductor is supplying this software for use with ON Semiconductor * processor based microcontrollers only. * * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. * ON SEMICONDUCTOR SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. * @endinternal * * @ingroup sleep * * @details * Sleep implementation TBD - Dummy function is fine for first release * */ #if DEVICE_SLEEP #include "sleep.h" #include "sleep_api.h" #include "cmsis_nvic.h" void mbed_enter_sleep(sleep_t *obj) { /* Empty implementation, this will be implemented for mbed5.0 */ } void mbed_exit_sleep(sleep_t *obj) { (void)obj; } #endif /* DEVICE_SLEEP */
the_stack_data/150144474.c
// ==================================== /* Fast Fourier/Cosine/Sine Transform dimension :one data length :power of 2 decimation :frequency radix :split-radix data :inplace table :use functions cdft: Complex Discrete Fourier Transform rdft: Real Discrete Fourier Transform ddct: Discrete Cosine Transform ddst: Discrete Sine Transform dfct: Cosine Transform of RDFT (Real Symmetric DFT) dfst: Sine Transform of RDFT (Real Anti-symmetric DFT) function prototypes void cdft(int, int, double *, int *, double *); void rdft(int, int, double *, int *, double *); void ddct(int, int, double *, int *, double *); void ddst(int, int, double *, int *, double *); void dfct(int, double *, double *, int *, double *); void dfst(int, double *, double *, int *, double *); macro definitions USE_CDFT_PTHREADS : default=not defined CDFT_THREADS_BEGIN_N : must be >= 512, default=8192 CDFT_4THREADS_BEGIN_N : must be >= 512, default=65536 USE_CDFT_WINTHREADS : default=not defined CDFT_THREADS_BEGIN_N : must be >= 512, default=32768 CDFT_4THREADS_BEGIN_N : must be >= 512, default=524288 -------- Complex DFT (Discrete Fourier Transform) -------- [definition] <case1> X[k] = sum_j=0^n-1 x[j]*exp(2*pi*i*j*k/n), 0<=k<n <case2> X[k] = sum_j=0^n-1 x[j]*exp(-2*pi*i*j*k/n), 0<=k<n (notes: sum_j=0^n-1 is a summation from j=0 to n-1) [usage] <case1> ip[0] = 0; // first time only cdft(2*n, 1, a, ip, w); <case2> ip[0] = 0; // first time only cdft(2*n, -1, a, ip, w); [parameters] 2*n :data length (int) n >= 1, n = power of 2 a[0...2*n-1] :input/output data (double *) input data a[2*j] = Re(x[j]), a[2*j+1] = Im(x[j]), 0<=j<n output data a[2*k] = Re(X[k]), a[2*k+1] = Im(X[k]), 0<=k<n ip[0...*] :work area for bit reversal (int *) length of ip >= 2+sqrt(n) strictly, length of ip >= 2+(1<<(int)(log(n+0.5)/log(2))/2). ip[0],ip[1] are pointers of the cos/sin table. w[0...n/2-1] :cos/sin table (double *) w[],ip[] are initialized if ip[0] == 0. [remark] Inverse of cdft(2*n, -1, a, ip, w); is cdft(2*n, 1, a, ip, w); for (j = 0; j <= 2 * n - 1; j++) { a[j] *= 1.0 / n; } . -------- Real DFT / Inverse of Real DFT -------- [definition] <case1> RDFT R[k] = sum_j=0^n-1 a[j]*cos(2*pi*j*k/n), 0<=k<=n/2 I[k] = sum_j=0^n-1 a[j]*sin(2*pi*j*k/n), 0<k<n/2 <case2> IRDFT (excluding scale) a[k] = (R[0] + R[n/2]*cos(pi*k))/2 + sum_j=1^n/2-1 R[j]*cos(2*pi*j*k/n) + sum_j=1^n/2-1 I[j]*sin(2*pi*j*k/n), 0<=k<n [usage] <case1> ip[0] = 0; // first time only rdft(n, 1, a, ip, w); <case2> ip[0] = 0; // first time only rdft(n, -1, a, ip, w); [parameters] n :data length (int) n >= 2, n = power of 2 a[0...n-1] :input/output data (double *) <case1> output data a[2*k] = R[k], 0<=k<n/2 a[2*k+1] = I[k], 0<k<n/2 a[1] = R[n/2] <case2> input data a[2*j] = R[j], 0<=j<n/2 a[2*j+1] = I[j], 0<j<n/2 a[1] = R[n/2] ip[0...*] :work area for bit reversal (int *) length of ip >= 2+sqrt(n/2) strictly, length of ip >= 2+(1<<(int)(log(n/2+0.5)/log(2))/2). ip[0],ip[1] are pointers of the cos/sin table. w[0...n/2-1] :cos/sin table (double *) w[],ip[] are initialized if ip[0] == 0. [remark] Inverse of rdft(n, 1, a, ip, w); is rdft(n, -1, a, ip, w); for (j = 0; j <= n - 1; j++) { a[j] *= 2.0 / n; } . -------- DCT (Discrete Cosine Transform) / Inverse of DCT -------- [definition] <case1> IDCT (excluding scale) C[k] = sum_j=0^n-1 a[j]*cos(pi*j*(k+1/2)/n), 0<=k<n <case2> DCT C[k] = sum_j=0^n-1 a[j]*cos(pi*(j+1/2)*k/n), 0<=k<n [usage] <case1> ip[0] = 0; // first time only ddct(n, 1, a, ip, w); <case2> ip[0] = 0; // first time only ddct(n, -1, a, ip, w); [parameters] n :data length (int) n >= 2, n = power of 2 a[0...n-1] :input/output data (double *) output data a[k] = C[k], 0<=k<n ip[0...*] :work area for bit reversal (int *) length of ip >= 2+sqrt(n/2) strictly, length of ip >= 2+(1<<(int)(log(n/2+0.5)/log(2))/2). ip[0],ip[1] are pointers of the cos/sin table. w[0...n*5/4-1] :cos/sin table (double *) w[],ip[] are initialized if ip[0] == 0. [remark] Inverse of ddct(n, -1, a, ip, w); is a[0] *= 0.5; ddct(n, 1, a, ip, w); for (j = 0; j <= n - 1; j++) { a[j] *= 2.0 / n; } . -------- DST (Discrete Sine Transform) / Inverse of DST -------- [definition] <case1> IDST (excluding scale) S[k] = sum_j=1^n A[j]*sin(pi*j*(k+1/2)/n), 0<=k<n <case2> DST S[k] = sum_j=0^n-1 a[j]*sin(pi*(j+1/2)*k/n), 0<k<=n [usage] <case1> ip[0] = 0; // first time only ddst(n, 1, a, ip, w); <case2> ip[0] = 0; // first time only ddst(n, -1, a, ip, w); [parameters] n :data length (int) n >= 2, n = power of 2 a[0...n-1] :input/output data (double *) <case1> input data a[j] = A[j], 0<j<n a[0] = A[n] output data a[k] = S[k], 0<=k<n <case2> output data a[k] = S[k], 0<k<n a[0] = S[n] ip[0...*] :work area for bit reversal (int *) length of ip >= 2+sqrt(n/2) strictly, length of ip >= 2+(1<<(int)(log(n/2+0.5)/log(2))/2). ip[0],ip[1] are pointers of the cos/sin table. w[0...n*5/4-1] :cos/sin table (double *) w[],ip[] are initialized if ip[0] == 0. [remark] Inverse of ddst(n, -1, a, ip, w); is a[0] *= 0.5; ddst(n, 1, a, ip, w); for (j = 0; j <= n - 1; j++) { a[j] *= 2.0 / n; } . -------- Cosine Transform of RDFT (Real Symmetric DFT) -------- [definition] C[k] = sum_j=0^n a[j]*cos(pi*j*k/n), 0<=k<=n [usage] ip[0] = 0; // first time only dfct(n, a, t, ip, w); [parameters] n :data length - 1 (int) n >= 2, n = power of 2 a[0...n] :input/output data (double *) output data a[k] = C[k], 0<=k<=n t[0...n/2] :work area (double *) ip[0...*] :work area for bit reversal (int *) length of ip >= 2+sqrt(n/4) strictly, length of ip >= 2+(1<<(int)(log(n/4+0.5)/log(2))/2). ip[0],ip[1] are pointers of the cos/sin table. w[0...n*5/8-1] :cos/sin table (double *) w[],ip[] are initialized if ip[0] == 0. [remark] Inverse of a[0] *= 0.5; a[n] *= 0.5; dfct(n, a, t, ip, w); is a[0] *= 0.5; a[n] *= 0.5; dfct(n, a, t, ip, w); for (j = 0; j <= n; j++) { a[j] *= 2.0 / n; } . -------- Sine Transform of RDFT (Real Anti-symmetric DFT) -------- [definition] S[k] = sum_j=1^n-1 a[j]*sin(pi*j*k/n), 0<k<n [usage] ip[0] = 0; // first time only dfst(n, a, t, ip, w); [parameters] n :data length + 1 (int) n >= 2, n = power of 2 a[0...n-1] :input/output data (double *) output data a[k] = S[k], 0<k<n (a[0] is used for work area) t[0...n/2-1] :work area (double *) ip[0...*] :work area for bit reversal (int *) length of ip >= 2+sqrt(n/4) strictly, length of ip >= 2+(1<<(int)(log(n/4+0.5)/log(2))/2). ip[0],ip[1] are pointers of the cos/sin table. w[0...n*5/8-1] :cos/sin table (double *) w[],ip[] are initialized if ip[0] == 0. [remark] Inverse of dfst(n, a, t, ip, w); is dfst(n, a, t, ip, w); for (j = 1; j <= n - 1; j++) { a[j] *= 2.0 / n; } . Appendix : The cos/sin table is recalculated when the larger table required. w[] and ip[] are compatible with all routines. */ void cdft(int n, int isgn, double *a, int *ip, double *w) { void makewt(int nw, int *ip, double *w); void cftfsub(int n, double *a, int *ip, int nw, double *w); void cftbsub(int n, double *a, int *ip, int nw, double *w); int nw; nw = ip[0]; if (n > (nw << 2)) { nw = n >> 2; makewt(nw, ip, w); } if (isgn >= 0) { cftfsub(n, a, ip, nw, w); } else { cftbsub(n, a, ip, nw, w); } } void rdft(int n, int isgn, double *a, int *ip, double *w) { void makewt(int nw, int *ip, double *w); void makect(int nc, int *ip, double *c); void cftfsub(int n, double *a, int *ip, int nw, double *w); void cftbsub(int n, double *a, int *ip, int nw, double *w); void rftfsub(int n, double *a, int nc, double *c); void rftbsub(int n, double *a, int nc, double *c); int nw, nc; double xi; nw = ip[0]; if (n > (nw << 2)) { nw = n >> 2; makewt(nw, ip, w); } nc = ip[1]; if (n > (nc << 2)) { nc = n >> 2; makect(nc, ip, w + nw); } if (isgn >= 0) { if (n > 4) { cftfsub(n, a, ip, nw, w); rftfsub(n, a, nc, w + nw); } else if (n == 4) { cftfsub(n, a, ip, nw, w); } xi = a[0] - a[1]; a[0] += a[1]; a[1] = xi; } else { a[1] = 0.5 * (a[0] - a[1]); a[0] -= a[1]; if (n > 4) { rftbsub(n, a, nc, w + nw); cftbsub(n, a, ip, nw, w); } else if (n == 4) { cftbsub(n, a, ip, nw, w); } } } void ddct(int n, int isgn, double *a, int *ip, double *w) { void makewt(int nw, int *ip, double *w); void makect(int nc, int *ip, double *c); void cftfsub(int n, double *a, int *ip, int nw, double *w); void cftbsub(int n, double *a, int *ip, int nw, double *w); void rftfsub(int n, double *a, int nc, double *c); void rftbsub(int n, double *a, int nc, double *c); void dctsub(int n, double *a, int nc, double *c); int j, nw, nc; double xr; nw = ip[0]; if (n > (nw << 2)) { nw = n >> 2; makewt(nw, ip, w); } nc = ip[1]; if (n > nc) { nc = n; makect(nc, ip, w + nw); } if (isgn < 0) { xr = a[n - 1]; for (j = n - 2; j >= 2; j -= 2) { a[j + 1] = a[j] - a[j - 1]; a[j] += a[j - 1]; } a[1] = a[0] - xr; a[0] += xr; if (n > 4) { rftbsub(n, a, nc, w + nw); cftbsub(n, a, ip, nw, w); } else if (n == 4) { cftbsub(n, a, ip, nw, w); } } dctsub(n, a, nc, w + nw); if (isgn >= 0) { if (n > 4) { cftfsub(n, a, ip, nw, w); rftfsub(n, a, nc, w + nw); } else if (n == 4) { cftfsub(n, a, ip, nw, w); } xr = a[0] - a[1]; a[0] += a[1]; for (j = 2; j < n; j += 2) { a[j - 1] = a[j] - a[j + 1]; a[j] += a[j + 1]; } a[n - 1] = xr; } } void ddst(int n, int isgn, double *a, int *ip, double *w) { void makewt(int nw, int *ip, double *w); void makect(int nc, int *ip, double *c); void cftfsub(int n, double *a, int *ip, int nw, double *w); void cftbsub(int n, double *a, int *ip, int nw, double *w); void rftfsub(int n, double *a, int nc, double *c); void rftbsub(int n, double *a, int nc, double *c); void dstsub(int n, double *a, int nc, double *c); int j, nw, nc; double xr; nw = ip[0]; if (n > (nw << 2)) { nw = n >> 2; makewt(nw, ip, w); } nc = ip[1]; if (n > nc) { nc = n; makect(nc, ip, w + nw); } if (isgn < 0) { xr = a[n - 1]; for (j = n - 2; j >= 2; j -= 2) { a[j + 1] = -a[j] - a[j - 1]; a[j] -= a[j - 1]; } a[1] = a[0] + xr; a[0] -= xr; if (n > 4) { rftbsub(n, a, nc, w + nw); cftbsub(n, a, ip, nw, w); } else if (n == 4) { cftbsub(n, a, ip, nw, w); } } dstsub(n, a, nc, w + nw); if (isgn >= 0) { if (n > 4) { cftfsub(n, a, ip, nw, w); rftfsub(n, a, nc, w + nw); } else if (n == 4) { cftfsub(n, a, ip, nw, w); } xr = a[0] - a[1]; a[0] += a[1]; for (j = 2; j < n; j += 2) { a[j - 1] = -a[j] - a[j + 1]; a[j] -= a[j + 1]; } a[n - 1] = -xr; } } void dfct(int n, double *a, double *t, int *ip, double *w) { void makewt(int nw, int *ip, double *w); void makect(int nc, int *ip, double *c); void cftfsub(int n, double *a, int *ip, int nw, double *w); void rftfsub(int n, double *a, int nc, double *c); void dctsub(int n, double *a, int nc, double *c); int j, k, l, m, mh, nw, nc; double xr, xi, yr, yi; nw = ip[0]; if (n > (nw << 3)) { nw = n >> 3; makewt(nw, ip, w); } nc = ip[1]; if (n > (nc << 1)) { nc = n >> 1; makect(nc, ip, w + nw); } m = n >> 1; yi = a[m]; xi = a[0] + a[n]; a[0] -= a[n]; t[0] = xi - yi; t[m] = xi + yi; if (n > 2) { mh = m >> 1; for (j = 1; j < mh; j++) { k = m - j; xr = a[j] - a[n - j]; xi = a[j] + a[n - j]; yr = a[k] - a[n - k]; yi = a[k] + a[n - k]; a[j] = xr; a[k] = yr; t[j] = xi - yi; t[k] = xi + yi; } t[mh] = a[mh] + a[n - mh]; a[mh] -= a[n - mh]; dctsub(m, a, nc, w + nw); if (m > 4) { cftfsub(m, a, ip, nw, w); rftfsub(m, a, nc, w + nw); } else if (m == 4) { cftfsub(m, a, ip, nw, w); } a[n - 1] = a[0] - a[1]; a[1] = a[0] + a[1]; for (j = m - 2; j >= 2; j -= 2) { a[2 * j + 1] = a[j] + a[j + 1]; a[2 * j - 1] = a[j] - a[j + 1]; } l = 2; m = mh; while (m >= 2) { dctsub(m, t, nc, w + nw); if (m > 4) { cftfsub(m, t, ip, nw, w); rftfsub(m, t, nc, w + nw); } else if (m == 4) { cftfsub(m, t, ip, nw, w); } a[n - l] = t[0] - t[1]; a[l] = t[0] + t[1]; k = 0; for (j = 2; j < m; j += 2) { k += l << 2; a[k - l] = t[j] - t[j + 1]; a[k + l] = t[j] + t[j + 1]; } l <<= 1; mh = m >> 1; for (j = 0; j < mh; j++) { k = m - j; t[j] = t[m + k] - t[m + j]; t[k] = t[m + k] + t[m + j]; } t[mh] = t[m + mh]; m = mh; } a[l] = t[0]; a[n] = t[2] - t[1]; a[0] = t[2] + t[1]; } else { a[1] = a[0]; a[2] = t[0]; a[0] = t[1]; } } void dfst(int n, double *a, double *t, int *ip, double *w) { void makewt(int nw, int *ip, double *w); void makect(int nc, int *ip, double *c); void cftfsub(int n, double *a, int *ip, int nw, double *w); void rftfsub(int n, double *a, int nc, double *c); void dstsub(int n, double *a, int nc, double *c); int j, k, l, m, mh, nw, nc; double xr, xi, yr, yi; nw = ip[0]; if (n > (nw << 3)) { nw = n >> 3; makewt(nw, ip, w); } nc = ip[1]; if (n > (nc << 1)) { nc = n >> 1; makect(nc, ip, w + nw); } if (n > 2) { m = n >> 1; mh = m >> 1; for (j = 1; j < mh; j++) { k = m - j; xr = a[j] + a[n - j]; xi = a[j] - a[n - j]; yr = a[k] + a[n - k]; yi = a[k] - a[n - k]; a[j] = xr; a[k] = yr; t[j] = xi + yi; t[k] = xi - yi; } t[0] = a[mh] - a[n - mh]; a[mh] += a[n - mh]; a[0] = a[m]; dstsub(m, a, nc, w + nw); if (m > 4) { cftfsub(m, a, ip, nw, w); rftfsub(m, a, nc, w + nw); } else if (m == 4) { cftfsub(m, a, ip, nw, w); } a[n - 1] = a[1] - a[0]; a[1] = a[0] + a[1]; for (j = m - 2; j >= 2; j -= 2) { a[2 * j + 1] = a[j] - a[j + 1]; a[2 * j - 1] = -a[j] - a[j + 1]; } l = 2; m = mh; while (m >= 2) { dstsub(m, t, nc, w + nw); if (m > 4) { cftfsub(m, t, ip, nw, w); rftfsub(m, t, nc, w + nw); } else if (m == 4) { cftfsub(m, t, ip, nw, w); } a[n - l] = t[1] - t[0]; a[l] = t[0] + t[1]; k = 0; for (j = 2; j < m; j += 2) { k += l << 2; a[k - l] = -t[j] - t[j + 1]; a[k + l] = t[j] - t[j + 1]; } l <<= 1; mh = m >> 1; for (j = 1; j < mh; j++) { k = m - j; t[j] = t[m + k] + t[m + j]; t[k] = t[m + k] - t[m + j]; } t[0] = t[m + mh]; m = mh; } a[l] = t[0]; } a[0] = 0; } /* -------- initializing routines -------- */ #include <math.h> void makewt(int nw, int *ip, double *w) { void makeipt(int nw, int *ip); int j, nwh, nw0, nw1; double delta, wn4r, wk1r, wk1i, wk3r, wk3i; ip[0] = nw; ip[1] = 1; if (nw > 2) { nwh = nw >> 1; delta = atan(1.0) / nwh; wn4r = cos(delta * nwh); w[0] = 1; w[1] = wn4r; if (nwh == 4) { w[2] = cos(delta * 2); w[3] = sin(delta * 2); } else if (nwh > 4) { makeipt(nw, ip); w[2] = 0.5 / cos(delta * 2); w[3] = 0.5 / cos(delta * 6); for (j = 4; j < nwh; j += 4) { w[j] = cos(delta * j); w[j + 1] = sin(delta * j); w[j + 2] = cos(3 * delta * j); w[j + 3] = -sin(3 * delta * j); } } nw0 = 0; while (nwh > 2) { nw1 = nw0 + nwh; nwh >>= 1; w[nw1] = 1; w[nw1 + 1] = wn4r; if (nwh == 4) { wk1r = w[nw0 + 4]; wk1i = w[nw0 + 5]; w[nw1 + 2] = wk1r; w[nw1 + 3] = wk1i; } else if (nwh > 4) { wk1r = w[nw0 + 4]; wk3r = w[nw0 + 6]; w[nw1 + 2] = 0.5 / wk1r; w[nw1 + 3] = 0.5 / wk3r; for (j = 4; j < nwh; j += 4) { wk1r = w[nw0 + 2 * j]; wk1i = w[nw0 + 2 * j + 1]; wk3r = w[nw0 + 2 * j + 2]; wk3i = w[nw0 + 2 * j + 3]; w[nw1 + j] = wk1r; w[nw1 + j + 1] = wk1i; w[nw1 + j + 2] = wk3r; w[nw1 + j + 3] = wk3i; } } nw0 = nw1; } } } void makeipt(int nw, int *ip) { int j, l, m, m2, p, q; ip[2] = 0; ip[3] = 16; m = 2; for (l = nw; l > 32; l >>= 2) { m2 = m << 1; q = m2 << 3; for (j = m; j < m2; j++) { p = ip[j] << 2; ip[m + j] = p; ip[m2 + j] = p + q; } m = m2; } } void makect(int nc, int *ip, double *c) { int j, nch; double delta; ip[1] = nc; if (nc > 1) { nch = nc >> 1; delta = atan(1.0) / nch; c[0] = cos(delta * nch); c[nch] = 0.5 * c[0]; for (j = 1; j < nch; j++) { c[j] = 0.5 * cos(delta * j); c[nc - j] = 0.5 * sin(delta * j); } } } /* -------- child routines -------- */ #ifdef USE_CDFT_PTHREADS #define USE_CDFT_THREADS #ifndef CDFT_THREADS_BEGIN_N #define CDFT_THREADS_BEGIN_N 8192 #endif #ifndef CDFT_4THREADS_BEGIN_N #define CDFT_4THREADS_BEGIN_N 65536 #endif #include <pthread.h> #include <stdio.h> #include <stdlib.h> #define cdft_thread_t pthread_t #define cdft_thread_create(thp,func,argp) { \ if (pthread_create(thp, NULL, func, (void *) argp) != 0) { \ fprintf(stderr, "cdft thread error\n"); \ exit(1); \ } \ } #define cdft_thread_wait(th) { \ if (pthread_join(th, NULL) != 0) { \ fprintf(stderr, "cdft thread error\n"); \ exit(1); \ } \ } #endif /* USE_CDFT_PTHREADS */ #ifdef USE_CDFT_WINTHREADS #define USE_CDFT_THREADS #ifndef CDFT_THREADS_BEGIN_N #define CDFT_THREADS_BEGIN_N 32768 #endif #ifndef CDFT_4THREADS_BEGIN_N #define CDFT_4THREADS_BEGIN_N 524288 #endif #include <windows.h> #include <stdio.h> #include <stdlib.h> #define cdft_thread_t HANDLE #define cdft_thread_create(thp,func,argp) { \ DWORD thid; \ *(thp) = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) func, (LPVOID) argp, 0, &thid); \ if (*(thp) == 0) { \ fprintf(stderr, "cdft thread error\n"); \ exit(1); \ } \ } #define cdft_thread_wait(th) { \ WaitForSingleObject(th, INFINITE); \ CloseHandle(th); \ } #endif /* USE_CDFT_WINTHREADS */ void cftfsub(int n, double *a, int *ip, int nw, double *w) { void bitrv2(int n, int *ip, double *a); void bitrv216(double *a); void bitrv208(double *a); void cftf1st(int n, double *a, double *w); void cftrec4(int n, double *a, int nw, double *w); void cftleaf(int n, int isplt, double *a, int nw, double *w); void cftfx41(int n, double *a, int nw, double *w); void cftf161(double *a, double *w); void cftf081(double *a, double *w); void cftf040(double *a); void cftx020(double *a); #ifdef USE_CDFT_THREADS void cftrec4_th(int n, double *a, int nw, double *w); #endif /* USE_CDFT_THREADS */ if (n > 8) { if (n > 32) { cftf1st(n, a, &w[nw - (n >> 2)]); #ifdef USE_CDFT_THREADS if (n > CDFT_THREADS_BEGIN_N) { cftrec4_th(n, a, nw, w); } else #endif /* USE_CDFT_THREADS */ if (n > 512) { cftrec4(n, a, nw, w); } else if (n > 128) { cftleaf(n, 1, a, nw, w); } else { cftfx41(n, a, nw, w); } bitrv2(n, ip, a); } else if (n == 32) { cftf161(a, &w[nw - 8]); bitrv216(a); } else { cftf081(a, w); bitrv208(a); } } else if (n == 8) { cftf040(a); } else if (n == 4) { cftx020(a); } } void cftbsub(int n, double *a, int *ip, int nw, double *w) { void bitrv2conj(int n, int *ip, double *a); void bitrv216neg(double *a); void bitrv208neg(double *a); void cftb1st(int n, double *a, double *w); void cftrec4(int n, double *a, int nw, double *w); void cftleaf(int n, int isplt, double *a, int nw, double *w); void cftfx41(int n, double *a, int nw, double *w); void cftf161(double *a, double *w); void cftf081(double *a, double *w); void cftb040(double *a); void cftx020(double *a); #ifdef USE_CDFT_THREADS void cftrec4_th(int n, double *a, int nw, double *w); #endif /* USE_CDFT_THREADS */ if (n > 8) { if (n > 32) { cftb1st(n, a, &w[nw - (n >> 2)]); #ifdef USE_CDFT_THREADS if (n > CDFT_THREADS_BEGIN_N) { cftrec4_th(n, a, nw, w); } else #endif /* USE_CDFT_THREADS */ if (n > 512) { cftrec4(n, a, nw, w); } else if (n > 128) { cftleaf(n, 1, a, nw, w); } else { cftfx41(n, a, nw, w); } bitrv2conj(n, ip, a); } else if (n == 32) { cftf161(a, &w[nw - 8]); bitrv216neg(a); } else { cftf081(a, w); bitrv208neg(a); } } else if (n == 8) { cftb040(a); } else if (n == 4) { cftx020(a); } } void bitrv2(int n, int *ip, double *a) { int j, j1, k, k1, l, m, nh, nm; double xr, xi, yr, yi; m = 1; for (l = n >> 2; l > 8; l >>= 2) { m <<= 1; } nh = n >> 1; nm = 4 * m; if (l == 8) { for (k = 0; k < m; k++) { for (j = 0; j < k; j++) { j1 = 4 * j + 2 * ip[m + k]; k1 = 4 * k + 2 * ip[m + j]; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 -= nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nh; k1 += 2; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 += nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += 2; k1 += nh; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 -= nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nh; k1 -= 2; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 += nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; } k1 = 4 * k + 2 * ip[m + k]; j1 = k1 + 2; k1 += nh; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 -= nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= 2; k1 -= nh; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nh + 2; k1 += nh + 2; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nh - nm; k1 += 2 * nm - 2; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; } } else { for (k = 0; k < m; k++) { for (j = 0; j < k; j++) { j1 = 4 * j + ip[m + k]; k1 = 4 * k + ip[m + j]; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nh; k1 += 2; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += 2; k1 += nh; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nh; k1 -= 2; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; } k1 = 4 * k + ip[m + k]; j1 = k1 + 2; k1 += nh; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += nm; xr = a[j1]; xi = a[j1 + 1]; yr = a[k1]; yi = a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; } } } void bitrv2conj(int n, int *ip, double *a) { int j, j1, k, k1, l, m, nh, nm; double xr, xi, yr, yi; m = 1; for (l = n >> 2; l > 8; l >>= 2) { m <<= 1; } nh = n >> 1; nm = 4 * m; if (l == 8) { for (k = 0; k < m; k++) { for (j = 0; j < k; j++) { j1 = 4 * j + 2 * ip[m + k]; k1 = 4 * k + 2 * ip[m + j]; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 -= nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nh; k1 += 2; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 += nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += 2; k1 += nh; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 -= nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nh; k1 -= 2; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 += nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; } k1 = 4 * k + 2 * ip[m + k]; j1 = k1 + 2; k1 += nh; a[j1 - 1] = -a[j1 - 1]; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; a[k1 + 3] = -a[k1 + 3]; j1 += nm; k1 += 2 * nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 -= nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= 2; k1 -= nh; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nh + 2; k1 += nh + 2; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nh - nm; k1 += 2 * nm - 2; a[j1 - 1] = -a[j1 - 1]; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; a[k1 + 3] = -a[k1 + 3]; } } else { for (k = 0; k < m; k++) { for (j = 0; j < k; j++) { j1 = 4 * j + ip[m + k]; k1 = 4 * k + ip[m + j]; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nh; k1 += 2; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += 2; k1 += nh; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 += nm; k1 += nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nh; k1 -= 2; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; j1 -= nm; k1 -= nm; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; } k1 = 4 * k + ip[m + k]; j1 = k1 + 2; k1 += nh; a[j1 - 1] = -a[j1 - 1]; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; a[k1 + 3] = -a[k1 + 3]; j1 += nm; k1 += nm; a[j1 - 1] = -a[j1 - 1]; xr = a[j1]; xi = -a[j1 + 1]; yr = a[k1]; yi = -a[k1 + 1]; a[j1] = yr; a[j1 + 1] = yi; a[k1] = xr; a[k1 + 1] = xi; a[k1 + 3] = -a[k1 + 3]; } } } void bitrv216(double *a) { double x1r, x1i, x2r, x2i, x3r, x3i, x4r, x4i, x5r, x5i, x7r, x7i, x8r, x8i, x10r, x10i, x11r, x11i, x12r, x12i, x13r, x13i, x14r, x14i; x1r = a[2]; x1i = a[3]; x2r = a[4]; x2i = a[5]; x3r = a[6]; x3i = a[7]; x4r = a[8]; x4i = a[9]; x5r = a[10]; x5i = a[11]; x7r = a[14]; x7i = a[15]; x8r = a[16]; x8i = a[17]; x10r = a[20]; x10i = a[21]; x11r = a[22]; x11i = a[23]; x12r = a[24]; x12i = a[25]; x13r = a[26]; x13i = a[27]; x14r = a[28]; x14i = a[29]; a[2] = x8r; a[3] = x8i; a[4] = x4r; a[5] = x4i; a[6] = x12r; a[7] = x12i; a[8] = x2r; a[9] = x2i; a[10] = x10r; a[11] = x10i; a[14] = x14r; a[15] = x14i; a[16] = x1r; a[17] = x1i; a[20] = x5r; a[21] = x5i; a[22] = x13r; a[23] = x13i; a[24] = x3r; a[25] = x3i; a[26] = x11r; a[27] = x11i; a[28] = x7r; a[29] = x7i; } void bitrv216neg(double *a) { double x1r, x1i, x2r, x2i, x3r, x3i, x4r, x4i, x5r, x5i, x6r, x6i, x7r, x7i, x8r, x8i, x9r, x9i, x10r, x10i, x11r, x11i, x12r, x12i, x13r, x13i, x14r, x14i, x15r, x15i; x1r = a[2]; x1i = a[3]; x2r = a[4]; x2i = a[5]; x3r = a[6]; x3i = a[7]; x4r = a[8]; x4i = a[9]; x5r = a[10]; x5i = a[11]; x6r = a[12]; x6i = a[13]; x7r = a[14]; x7i = a[15]; x8r = a[16]; x8i = a[17]; x9r = a[18]; x9i = a[19]; x10r = a[20]; x10i = a[21]; x11r = a[22]; x11i = a[23]; x12r = a[24]; x12i = a[25]; x13r = a[26]; x13i = a[27]; x14r = a[28]; x14i = a[29]; x15r = a[30]; x15i = a[31]; a[2] = x15r; a[3] = x15i; a[4] = x7r; a[5] = x7i; a[6] = x11r; a[7] = x11i; a[8] = x3r; a[9] = x3i; a[10] = x13r; a[11] = x13i; a[12] = x5r; a[13] = x5i; a[14] = x9r; a[15] = x9i; a[16] = x1r; a[17] = x1i; a[18] = x14r; a[19] = x14i; a[20] = x6r; a[21] = x6i; a[22] = x10r; a[23] = x10i; a[24] = x2r; a[25] = x2i; a[26] = x12r; a[27] = x12i; a[28] = x4r; a[29] = x4i; a[30] = x8r; a[31] = x8i; } void bitrv208(double *a) { double x1r, x1i, x3r, x3i, x4r, x4i, x6r, x6i; x1r = a[2]; x1i = a[3]; x3r = a[6]; x3i = a[7]; x4r = a[8]; x4i = a[9]; x6r = a[12]; x6i = a[13]; a[2] = x4r; a[3] = x4i; a[6] = x6r; a[7] = x6i; a[8] = x1r; a[9] = x1i; a[12] = x3r; a[13] = x3i; } void bitrv208neg(double *a) { double x1r, x1i, x2r, x2i, x3r, x3i, x4r, x4i, x5r, x5i, x6r, x6i, x7r, x7i; x1r = a[2]; x1i = a[3]; x2r = a[4]; x2i = a[5]; x3r = a[6]; x3i = a[7]; x4r = a[8]; x4i = a[9]; x5r = a[10]; x5i = a[11]; x6r = a[12]; x6i = a[13]; x7r = a[14]; x7i = a[15]; a[2] = x7r; a[3] = x7i; a[4] = x3r; a[5] = x3i; a[6] = x5r; a[7] = x5i; a[8] = x1r; a[9] = x1i; a[10] = x6r; a[11] = x6i; a[12] = x2r; a[13] = x2i; a[14] = x4r; a[15] = x4i; } void cftf1st(int n, double *a, double *w) { int j, j0, j1, j2, j3, k, m, mh; double wn4r, csc1, csc3, wk1r, wk1i, wk3r, wk3i, wd1r, wd1i, wd3r, wd3i; double x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i, y0r, y0i, y1r, y1i, y2r, y2i, y3r, y3i; mh = n >> 3; m = 2 * mh; j1 = m; j2 = j1 + m; j3 = j2 + m; x0r = a[0] + a[j2]; x0i = a[1] + a[j2 + 1]; x1r = a[0] - a[j2]; x1i = a[1] - a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[0] = x0r + x2r; a[1] = x0i + x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; a[j2] = x1r - x3i; a[j2 + 1] = x1i + x3r; a[j3] = x1r + x3i; a[j3 + 1] = x1i - x3r; wn4r = w[1]; csc1 = w[2]; csc3 = w[3]; wd1r = 1; wd1i = 0; wd3r = 1; wd3i = 0; k = 0; for (j = 2; j < mh - 2; j += 4) { k += 4; wk1r = csc1 * (wd1r + w[k]); wk1i = csc1 * (wd1i + w[k + 1]); wk3r = csc3 * (wd3r + w[k + 2]); wk3i = csc3 * (wd3i + w[k + 3]); wd1r = w[k]; wd1i = w[k + 1]; wd3r = w[k + 2]; wd3i = w[k + 3]; j1 = j + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j] + a[j2]; x0i = a[j + 1] + a[j2 + 1]; x1r = a[j] - a[j2]; x1i = a[j + 1] - a[j2 + 1]; y0r = a[j + 2] + a[j2 + 2]; y0i = a[j + 3] + a[j2 + 3]; y1r = a[j + 2] - a[j2 + 2]; y1i = a[j + 3] - a[j2 + 3]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; y2r = a[j1 + 2] + a[j3 + 2]; y2i = a[j1 + 3] + a[j3 + 3]; y3r = a[j1 + 2] - a[j3 + 2]; y3i = a[j1 + 3] - a[j3 + 3]; a[j] = x0r + x2r; a[j + 1] = x0i + x2i; a[j + 2] = y0r + y2r; a[j + 3] = y0i + y2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; a[j1 + 2] = y0r - y2r; a[j1 + 3] = y0i - y2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2] = wk1r * x0r - wk1i * x0i; a[j2 + 1] = wk1r * x0i + wk1i * x0r; x0r = y1r - y3i; x0i = y1i + y3r; a[j2 + 2] = wd1r * x0r - wd1i * x0i; a[j2 + 3] = wd1r * x0i + wd1i * x0r; x0r = x1r + x3i; x0i = x1i - x3r; a[j3] = wk3r * x0r + wk3i * x0i; a[j3 + 1] = wk3r * x0i - wk3i * x0r; x0r = y1r + y3i; x0i = y1i - y3r; a[j3 + 2] = wd3r * x0r + wd3i * x0i; a[j3 + 3] = wd3r * x0i - wd3i * x0r; j0 = m - j; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0] + a[j2]; x0i = a[j0 + 1] + a[j2 + 1]; x1r = a[j0] - a[j2]; x1i = a[j0 + 1] - a[j2 + 1]; y0r = a[j0 - 2] + a[j2 - 2]; y0i = a[j0 - 1] + a[j2 - 1]; y1r = a[j0 - 2] - a[j2 - 2]; y1i = a[j0 - 1] - a[j2 - 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; y2r = a[j1 - 2] + a[j3 - 2]; y2i = a[j1 - 1] + a[j3 - 1]; y3r = a[j1 - 2] - a[j3 - 2]; y3i = a[j1 - 1] - a[j3 - 1]; a[j0] = x0r + x2r; a[j0 + 1] = x0i + x2i; a[j0 - 2] = y0r + y2r; a[j0 - 1] = y0i + y2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; a[j1 - 2] = y0r - y2r; a[j1 - 1] = y0i - y2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2] = wk1i * x0r - wk1r * x0i; a[j2 + 1] = wk1i * x0i + wk1r * x0r; x0r = y1r - y3i; x0i = y1i + y3r; a[j2 - 2] = wd1i * x0r - wd1r * x0i; a[j2 - 1] = wd1i * x0i + wd1r * x0r; x0r = x1r + x3i; x0i = x1i - x3r; a[j3] = wk3i * x0r + wk3r * x0i; a[j3 + 1] = wk3i * x0i - wk3r * x0r; x0r = y1r + y3i; x0i = y1i - y3r; a[j3 - 2] = wd3i * x0r + wd3r * x0i; a[j3 - 1] = wd3i * x0i - wd3r * x0r; } wk1r = csc1 * (wd1r + wn4r); wk1i = csc1 * (wd1i + wn4r); wk3r = csc3 * (wd3r - wn4r); wk3i = csc3 * (wd3i - wn4r); j0 = mh; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0 - 2] + a[j2 - 2]; x0i = a[j0 - 1] + a[j2 - 1]; x1r = a[j0 - 2] - a[j2 - 2]; x1i = a[j0 - 1] - a[j2 - 1]; x2r = a[j1 - 2] + a[j3 - 2]; x2i = a[j1 - 1] + a[j3 - 1]; x3r = a[j1 - 2] - a[j3 - 2]; x3i = a[j1 - 1] - a[j3 - 1]; a[j0 - 2] = x0r + x2r; a[j0 - 1] = x0i + x2i; a[j1 - 2] = x0r - x2r; a[j1 - 1] = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2 - 2] = wk1r * x0r - wk1i * x0i; a[j2 - 1] = wk1r * x0i + wk1i * x0r; x0r = x1r + x3i; x0i = x1i - x3r; a[j3 - 2] = wk3r * x0r + wk3i * x0i; a[j3 - 1] = wk3r * x0i - wk3i * x0r; x0r = a[j0] + a[j2]; x0i = a[j0 + 1] + a[j2 + 1]; x1r = a[j0] - a[j2]; x1i = a[j0 + 1] - a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[j0] = x0r + x2r; a[j0 + 1] = x0i + x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2] = wn4r * (x0r - x0i); a[j2 + 1] = wn4r * (x0i + x0r); x0r = x1r + x3i; x0i = x1i - x3r; a[j3] = -wn4r * (x0r + x0i); a[j3 + 1] = -wn4r * (x0i - x0r); x0r = a[j0 + 2] + a[j2 + 2]; x0i = a[j0 + 3] + a[j2 + 3]; x1r = a[j0 + 2] - a[j2 + 2]; x1i = a[j0 + 3] - a[j2 + 3]; x2r = a[j1 + 2] + a[j3 + 2]; x2i = a[j1 + 3] + a[j3 + 3]; x3r = a[j1 + 2] - a[j3 + 2]; x3i = a[j1 + 3] - a[j3 + 3]; a[j0 + 2] = x0r + x2r; a[j0 + 3] = x0i + x2i; a[j1 + 2] = x0r - x2r; a[j1 + 3] = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2 + 2] = wk1i * x0r - wk1r * x0i; a[j2 + 3] = wk1i * x0i + wk1r * x0r; x0r = x1r + x3i; x0i = x1i - x3r; a[j3 + 2] = wk3i * x0r + wk3r * x0i; a[j3 + 3] = wk3i * x0i - wk3r * x0r; } void cftb1st(int n, double *a, double *w) { int j, j0, j1, j2, j3, k, m, mh; double wn4r, csc1, csc3, wk1r, wk1i, wk3r, wk3i, wd1r, wd1i, wd3r, wd3i; double x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i, y0r, y0i, y1r, y1i, y2r, y2i, y3r, y3i; mh = n >> 3; m = 2 * mh; j1 = m; j2 = j1 + m; j3 = j2 + m; x0r = a[0] + a[j2]; x0i = -a[1] - a[j2 + 1]; x1r = a[0] - a[j2]; x1i = -a[1] + a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[0] = x0r + x2r; a[1] = x0i - x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i + x2i; a[j2] = x1r + x3i; a[j2 + 1] = x1i + x3r; a[j3] = x1r - x3i; a[j3 + 1] = x1i - x3r; wn4r = w[1]; csc1 = w[2]; csc3 = w[3]; wd1r = 1; wd1i = 0; wd3r = 1; wd3i = 0; k = 0; for (j = 2; j < mh - 2; j += 4) { k += 4; wk1r = csc1 * (wd1r + w[k]); wk1i = csc1 * (wd1i + w[k + 1]); wk3r = csc3 * (wd3r + w[k + 2]); wk3i = csc3 * (wd3i + w[k + 3]); wd1r = w[k]; wd1i = w[k + 1]; wd3r = w[k + 2]; wd3i = w[k + 3]; j1 = j + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j] + a[j2]; x0i = -a[j + 1] - a[j2 + 1]; x1r = a[j] - a[j2]; x1i = -a[j + 1] + a[j2 + 1]; y0r = a[j + 2] + a[j2 + 2]; y0i = -a[j + 3] - a[j2 + 3]; y1r = a[j + 2] - a[j2 + 2]; y1i = -a[j + 3] + a[j2 + 3]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; y2r = a[j1 + 2] + a[j3 + 2]; y2i = a[j1 + 3] + a[j3 + 3]; y3r = a[j1 + 2] - a[j3 + 2]; y3i = a[j1 + 3] - a[j3 + 3]; a[j] = x0r + x2r; a[j + 1] = x0i - x2i; a[j + 2] = y0r + y2r; a[j + 3] = y0i - y2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i + x2i; a[j1 + 2] = y0r - y2r; a[j1 + 3] = y0i + y2i; x0r = x1r + x3i; x0i = x1i + x3r; a[j2] = wk1r * x0r - wk1i * x0i; a[j2 + 1] = wk1r * x0i + wk1i * x0r; x0r = y1r + y3i; x0i = y1i + y3r; a[j2 + 2] = wd1r * x0r - wd1i * x0i; a[j2 + 3] = wd1r * x0i + wd1i * x0r; x0r = x1r - x3i; x0i = x1i - x3r; a[j3] = wk3r * x0r + wk3i * x0i; a[j3 + 1] = wk3r * x0i - wk3i * x0r; x0r = y1r - y3i; x0i = y1i - y3r; a[j3 + 2] = wd3r * x0r + wd3i * x0i; a[j3 + 3] = wd3r * x0i - wd3i * x0r; j0 = m - j; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0] + a[j2]; x0i = -a[j0 + 1] - a[j2 + 1]; x1r = a[j0] - a[j2]; x1i = -a[j0 + 1] + a[j2 + 1]; y0r = a[j0 - 2] + a[j2 - 2]; y0i = -a[j0 - 1] - a[j2 - 1]; y1r = a[j0 - 2] - a[j2 - 2]; y1i = -a[j0 - 1] + a[j2 - 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; y2r = a[j1 - 2] + a[j3 - 2]; y2i = a[j1 - 1] + a[j3 - 1]; y3r = a[j1 - 2] - a[j3 - 2]; y3i = a[j1 - 1] - a[j3 - 1]; a[j0] = x0r + x2r; a[j0 + 1] = x0i - x2i; a[j0 - 2] = y0r + y2r; a[j0 - 1] = y0i - y2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i + x2i; a[j1 - 2] = y0r - y2r; a[j1 - 1] = y0i + y2i; x0r = x1r + x3i; x0i = x1i + x3r; a[j2] = wk1i * x0r - wk1r * x0i; a[j2 + 1] = wk1i * x0i + wk1r * x0r; x0r = y1r + y3i; x0i = y1i + y3r; a[j2 - 2] = wd1i * x0r - wd1r * x0i; a[j2 - 1] = wd1i * x0i + wd1r * x0r; x0r = x1r - x3i; x0i = x1i - x3r; a[j3] = wk3i * x0r + wk3r * x0i; a[j3 + 1] = wk3i * x0i - wk3r * x0r; x0r = y1r - y3i; x0i = y1i - y3r; a[j3 - 2] = wd3i * x0r + wd3r * x0i; a[j3 - 1] = wd3i * x0i - wd3r * x0r; } wk1r = csc1 * (wd1r + wn4r); wk1i = csc1 * (wd1i + wn4r); wk3r = csc3 * (wd3r - wn4r); wk3i = csc3 * (wd3i - wn4r); j0 = mh; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0 - 2] + a[j2 - 2]; x0i = -a[j0 - 1] - a[j2 - 1]; x1r = a[j0 - 2] - a[j2 - 2]; x1i = -a[j0 - 1] + a[j2 - 1]; x2r = a[j1 - 2] + a[j3 - 2]; x2i = a[j1 - 1] + a[j3 - 1]; x3r = a[j1 - 2] - a[j3 - 2]; x3i = a[j1 - 1] - a[j3 - 1]; a[j0 - 2] = x0r + x2r; a[j0 - 1] = x0i - x2i; a[j1 - 2] = x0r - x2r; a[j1 - 1] = x0i + x2i; x0r = x1r + x3i; x0i = x1i + x3r; a[j2 - 2] = wk1r * x0r - wk1i * x0i; a[j2 - 1] = wk1r * x0i + wk1i * x0r; x0r = x1r - x3i; x0i = x1i - x3r; a[j3 - 2] = wk3r * x0r + wk3i * x0i; a[j3 - 1] = wk3r * x0i - wk3i * x0r; x0r = a[j0] + a[j2]; x0i = -a[j0 + 1] - a[j2 + 1]; x1r = a[j0] - a[j2]; x1i = -a[j0 + 1] + a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[j0] = x0r + x2r; a[j0 + 1] = x0i - x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i + x2i; x0r = x1r + x3i; x0i = x1i + x3r; a[j2] = wn4r * (x0r - x0i); a[j2 + 1] = wn4r * (x0i + x0r); x0r = x1r - x3i; x0i = x1i - x3r; a[j3] = -wn4r * (x0r + x0i); a[j3 + 1] = -wn4r * (x0i - x0r); x0r = a[j0 + 2] + a[j2 + 2]; x0i = -a[j0 + 3] - a[j2 + 3]; x1r = a[j0 + 2] - a[j2 + 2]; x1i = -a[j0 + 3] + a[j2 + 3]; x2r = a[j1 + 2] + a[j3 + 2]; x2i = a[j1 + 3] + a[j3 + 3]; x3r = a[j1 + 2] - a[j3 + 2]; x3i = a[j1 + 3] - a[j3 + 3]; a[j0 + 2] = x0r + x2r; a[j0 + 3] = x0i - x2i; a[j1 + 2] = x0r - x2r; a[j1 + 3] = x0i + x2i; x0r = x1r + x3i; x0i = x1i + x3r; a[j2 + 2] = wk1i * x0r - wk1r * x0i; a[j2 + 3] = wk1i * x0i + wk1r * x0r; x0r = x1r - x3i; x0i = x1i - x3r; a[j3 + 2] = wk3i * x0r + wk3r * x0i; a[j3 + 3] = wk3i * x0i - wk3r * x0r; } #ifdef USE_CDFT_THREADS struct cdft_arg_st { int n0; int n; double *a; int nw; double *w; }; typedef struct cdft_arg_st cdft_arg_t; void cftrec4_th(int n, double *a, int nw, double *w) { void *cftrec1_th(void *p); void *cftrec2_th(void *p); int i, idiv4, m, nthread; cdft_thread_t th[4]; cdft_arg_t ag[4]; nthread = 2; idiv4 = 0; m = n >> 1; if (n > CDFT_4THREADS_BEGIN_N) { nthread = 4; idiv4 = 1; m >>= 1; } for (i = 0; i < nthread; i++) { ag[i].n0 = n; ag[i].n = m; ag[i].a = &a[i * m]; ag[i].nw = nw; ag[i].w = w; if (i != idiv4) { cdft_thread_create(&th[i], cftrec1_th, &ag[i]); } else { cdft_thread_create(&th[i], cftrec2_th, &ag[i]); } } for (i = 0; i < nthread; i++) { cdft_thread_wait(th[i]); } } void *cftrec1_th(void *p) { int cfttree(int n, int j, int k, double *a, int nw, double *w); void cftleaf(int n, int isplt, double *a, int nw, double *w); void cftmdl1(int n, double *a, double *w); int isplt, j, k, m, n, n0, nw; double *a, *w; n0 = ((cdft_arg_t *) p)->n0; n = ((cdft_arg_t *) p)->n; a = ((cdft_arg_t *) p)->a; nw = ((cdft_arg_t *) p)->nw; w = ((cdft_arg_t *) p)->w; m = n0; while (m > 512) { m >>= 2; cftmdl1(m, &a[n - m], &w[nw - (m >> 1)]); } cftleaf(m, 1, &a[n - m], nw, w); k = 0; for (j = n - m; j > 0; j -= m) { k++; isplt = cfttree(m, j, k, a, nw, w); cftleaf(m, isplt, &a[j - m], nw, w); } return (void *) 0; } void *cftrec2_th(void *p) { int cfttree(int n, int j, int k, double *a, int nw, double *w); void cftleaf(int n, int isplt, double *a, int nw, double *w); void cftmdl2(int n, double *a, double *w); int isplt, j, k, m, n, n0, nw; double *a, *w; n0 = ((cdft_arg_t *) p)->n0; n = ((cdft_arg_t *) p)->n; a = ((cdft_arg_t *) p)->a; nw = ((cdft_arg_t *) p)->nw; w = ((cdft_arg_t *) p)->w; k = 1; m = n0; while (m > 512) { m >>= 2; k <<= 2; cftmdl2(m, &a[n - m], &w[nw - m]); } cftleaf(m, 0, &a[n - m], nw, w); k >>= 1; for (j = n - m; j > 0; j -= m) { k++; isplt = cfttree(m, j, k, a, nw, w); cftleaf(m, isplt, &a[j - m], nw, w); } return (void *) 0; } #endif /* USE_CDFT_THREADS */ void cftrec4(int n, double *a, int nw, double *w) { int cfttree(int n, int j, int k, double *a, int nw, double *w); void cftleaf(int n, int isplt, double *a, int nw, double *w); void cftmdl1(int n, double *a, double *w); int isplt, j, k, m; m = n; while (m > 512) { m >>= 2; cftmdl1(m, &a[n - m], &w[nw - (m >> 1)]); } cftleaf(m, 1, &a[n - m], nw, w); k = 0; for (j = n - m; j > 0; j -= m) { k++; isplt = cfttree(m, j, k, a, nw, w); cftleaf(m, isplt, &a[j - m], nw, w); } } int cfttree(int n, int j, int k, double *a, int nw, double *w) { void cftmdl1(int n, double *a, double *w); void cftmdl2(int n, double *a, double *w); int i, isplt, m; if ((k & 3) != 0) { isplt = k & 1; if (isplt != 0) { cftmdl1(n, &a[j - n], &w[nw - (n >> 1)]); } else { cftmdl2(n, &a[j - n], &w[nw - n]); } } else { m = n; for (i = k; (i & 3) == 0; i >>= 2) { m <<= 2; } isplt = i & 1; if (isplt != 0) { while (m > 128) { cftmdl1(m, &a[j - m], &w[nw - (m >> 1)]); m >>= 2; } } else { while (m > 128) { cftmdl2(m, &a[j - m], &w[nw - m]); m >>= 2; } } } return isplt; } void cftleaf(int n, int isplt, double *a, int nw, double *w) { void cftmdl1(int n, double *a, double *w); void cftmdl2(int n, double *a, double *w); void cftf161(double *a, double *w); void cftf162(double *a, double *w); void cftf081(double *a, double *w); void cftf082(double *a, double *w); if (n == 512) { cftmdl1(128, a, &w[nw - 64]); cftf161(a, &w[nw - 8]); cftf162(&a[32], &w[nw - 32]); cftf161(&a[64], &w[nw - 8]); cftf161(&a[96], &w[nw - 8]); cftmdl2(128, &a[128], &w[nw - 128]); cftf161(&a[128], &w[nw - 8]); cftf162(&a[160], &w[nw - 32]); cftf161(&a[192], &w[nw - 8]); cftf162(&a[224], &w[nw - 32]); cftmdl1(128, &a[256], &w[nw - 64]); cftf161(&a[256], &w[nw - 8]); cftf162(&a[288], &w[nw - 32]); cftf161(&a[320], &w[nw - 8]); cftf161(&a[352], &w[nw - 8]); if (isplt != 0) { cftmdl1(128, &a[384], &w[nw - 64]); cftf161(&a[480], &w[nw - 8]); } else { cftmdl2(128, &a[384], &w[nw - 128]); cftf162(&a[480], &w[nw - 32]); } cftf161(&a[384], &w[nw - 8]); cftf162(&a[416], &w[nw - 32]); cftf161(&a[448], &w[nw - 8]); } else { cftmdl1(64, a, &w[nw - 32]); cftf081(a, &w[nw - 8]); cftf082(&a[16], &w[nw - 8]); cftf081(&a[32], &w[nw - 8]); cftf081(&a[48], &w[nw - 8]); cftmdl2(64, &a[64], &w[nw - 64]); cftf081(&a[64], &w[nw - 8]); cftf082(&a[80], &w[nw - 8]); cftf081(&a[96], &w[nw - 8]); cftf082(&a[112], &w[nw - 8]); cftmdl1(64, &a[128], &w[nw - 32]); cftf081(&a[128], &w[nw - 8]); cftf082(&a[144], &w[nw - 8]); cftf081(&a[160], &w[nw - 8]); cftf081(&a[176], &w[nw - 8]); if (isplt != 0) { cftmdl1(64, &a[192], &w[nw - 32]); cftf081(&a[240], &w[nw - 8]); } else { cftmdl2(64, &a[192], &w[nw - 64]); cftf082(&a[240], &w[nw - 8]); } cftf081(&a[192], &w[nw - 8]); cftf082(&a[208], &w[nw - 8]); cftf081(&a[224], &w[nw - 8]); } } void cftmdl1(int n, double *a, double *w) { int j, j0, j1, j2, j3, k, m, mh; double wn4r, wk1r, wk1i, wk3r, wk3i; double x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i; mh = n >> 3; m = 2 * mh; j1 = m; j2 = j1 + m; j3 = j2 + m; x0r = a[0] + a[j2]; x0i = a[1] + a[j2 + 1]; x1r = a[0] - a[j2]; x1i = a[1] - a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[0] = x0r + x2r; a[1] = x0i + x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; a[j2] = x1r - x3i; a[j2 + 1] = x1i + x3r; a[j3] = x1r + x3i; a[j3 + 1] = x1i - x3r; wn4r = w[1]; k = 0; for (j = 2; j < mh; j += 2) { k += 4; wk1r = w[k]; wk1i = w[k + 1]; wk3r = w[k + 2]; wk3i = w[k + 3]; j1 = j + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j] + a[j2]; x0i = a[j + 1] + a[j2 + 1]; x1r = a[j] - a[j2]; x1i = a[j + 1] - a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[j] = x0r + x2r; a[j + 1] = x0i + x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2] = wk1r * x0r - wk1i * x0i; a[j2 + 1] = wk1r * x0i + wk1i * x0r; x0r = x1r + x3i; x0i = x1i - x3r; a[j3] = wk3r * x0r + wk3i * x0i; a[j3 + 1] = wk3r * x0i - wk3i * x0r; j0 = m - j; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0] + a[j2]; x0i = a[j0 + 1] + a[j2 + 1]; x1r = a[j0] - a[j2]; x1i = a[j0 + 1] - a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[j0] = x0r + x2r; a[j0 + 1] = x0i + x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2] = wk1i * x0r - wk1r * x0i; a[j2 + 1] = wk1i * x0i + wk1r * x0r; x0r = x1r + x3i; x0i = x1i - x3r; a[j3] = wk3i * x0r + wk3r * x0i; a[j3 + 1] = wk3i * x0i - wk3r * x0r; } j0 = mh; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0] + a[j2]; x0i = a[j0 + 1] + a[j2 + 1]; x1r = a[j0] - a[j2]; x1i = a[j0 + 1] - a[j2 + 1]; x2r = a[j1] + a[j3]; x2i = a[j1 + 1] + a[j3 + 1]; x3r = a[j1] - a[j3]; x3i = a[j1 + 1] - a[j3 + 1]; a[j0] = x0r + x2r; a[j0 + 1] = x0i + x2i; a[j1] = x0r - x2r; a[j1 + 1] = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; a[j2] = wn4r * (x0r - x0i); a[j2 + 1] = wn4r * (x0i + x0r); x0r = x1r + x3i; x0i = x1i - x3r; a[j3] = -wn4r * (x0r + x0i); a[j3 + 1] = -wn4r * (x0i - x0r); } void cftmdl2(int n, double *a, double *w) { int j, j0, j1, j2, j3, k, kr, m, mh; double wn4r, wk1r, wk1i, wk3r, wk3i, wd1r, wd1i, wd3r, wd3i; double x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i, y0r, y0i, y2r, y2i; mh = n >> 3; m = 2 * mh; wn4r = w[1]; j1 = m; j2 = j1 + m; j3 = j2 + m; x0r = a[0] - a[j2 + 1]; x0i = a[1] + a[j2]; x1r = a[0] + a[j2 + 1]; x1i = a[1] - a[j2]; x2r = a[j1] - a[j3 + 1]; x2i = a[j1 + 1] + a[j3]; x3r = a[j1] + a[j3 + 1]; x3i = a[j1 + 1] - a[j3]; y0r = wn4r * (x2r - x2i); y0i = wn4r * (x2i + x2r); a[0] = x0r + y0r; a[1] = x0i + y0i; a[j1] = x0r - y0r; a[j1 + 1] = x0i - y0i; y0r = wn4r * (x3r - x3i); y0i = wn4r * (x3i + x3r); a[j2] = x1r - y0i; a[j2 + 1] = x1i + y0r; a[j3] = x1r + y0i; a[j3 + 1] = x1i - y0r; k = 0; kr = 2 * m; for (j = 2; j < mh; j += 2) { k += 4; wk1r = w[k]; wk1i = w[k + 1]; wk3r = w[k + 2]; wk3i = w[k + 3]; kr -= 4; wd1i = w[kr]; wd1r = w[kr + 1]; wd3i = w[kr + 2]; wd3r = w[kr + 3]; j1 = j + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j] - a[j2 + 1]; x0i = a[j + 1] + a[j2]; x1r = a[j] + a[j2 + 1]; x1i = a[j + 1] - a[j2]; x2r = a[j1] - a[j3 + 1]; x2i = a[j1 + 1] + a[j3]; x3r = a[j1] + a[j3 + 1]; x3i = a[j1 + 1] - a[j3]; y0r = wk1r * x0r - wk1i * x0i; y0i = wk1r * x0i + wk1i * x0r; y2r = wd1r * x2r - wd1i * x2i; y2i = wd1r * x2i + wd1i * x2r; a[j] = y0r + y2r; a[j + 1] = y0i + y2i; a[j1] = y0r - y2r; a[j1 + 1] = y0i - y2i; y0r = wk3r * x1r + wk3i * x1i; y0i = wk3r * x1i - wk3i * x1r; y2r = wd3r * x3r + wd3i * x3i; y2i = wd3r * x3i - wd3i * x3r; a[j2] = y0r + y2r; a[j2 + 1] = y0i + y2i; a[j3] = y0r - y2r; a[j3 + 1] = y0i - y2i; j0 = m - j; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0] - a[j2 + 1]; x0i = a[j0 + 1] + a[j2]; x1r = a[j0] + a[j2 + 1]; x1i = a[j0 + 1] - a[j2]; x2r = a[j1] - a[j3 + 1]; x2i = a[j1 + 1] + a[j3]; x3r = a[j1] + a[j3 + 1]; x3i = a[j1 + 1] - a[j3]; y0r = wd1i * x0r - wd1r * x0i; y0i = wd1i * x0i + wd1r * x0r; y2r = wk1i * x2r - wk1r * x2i; y2i = wk1i * x2i + wk1r * x2r; a[j0] = y0r + y2r; a[j0 + 1] = y0i + y2i; a[j1] = y0r - y2r; a[j1 + 1] = y0i - y2i; y0r = wd3i * x1r + wd3r * x1i; y0i = wd3i * x1i - wd3r * x1r; y2r = wk3i * x3r + wk3r * x3i; y2i = wk3i * x3i - wk3r * x3r; a[j2] = y0r + y2r; a[j2 + 1] = y0i + y2i; a[j3] = y0r - y2r; a[j3 + 1] = y0i - y2i; } wk1r = w[m]; wk1i = w[m + 1]; j0 = mh; j1 = j0 + m; j2 = j1 + m; j3 = j2 + m; x0r = a[j0] - a[j2 + 1]; x0i = a[j0 + 1] + a[j2]; x1r = a[j0] + a[j2 + 1]; x1i = a[j0 + 1] - a[j2]; x2r = a[j1] - a[j3 + 1]; x2i = a[j1 + 1] + a[j3]; x3r = a[j1] + a[j3 + 1]; x3i = a[j1 + 1] - a[j3]; y0r = wk1r * x0r - wk1i * x0i; y0i = wk1r * x0i + wk1i * x0r; y2r = wk1i * x2r - wk1r * x2i; y2i = wk1i * x2i + wk1r * x2r; a[j0] = y0r + y2r; a[j0 + 1] = y0i + y2i; a[j1] = y0r - y2r; a[j1 + 1] = y0i - y2i; y0r = wk1i * x1r - wk1r * x1i; y0i = wk1i * x1i + wk1r * x1r; y2r = wk1r * x3r - wk1i * x3i; y2i = wk1r * x3i + wk1i * x3r; a[j2] = y0r - y2r; a[j2 + 1] = y0i - y2i; a[j3] = y0r + y2r; a[j3 + 1] = y0i + y2i; } void cftfx41(int n, double *a, int nw, double *w) { void cftf161(double *a, double *w); void cftf162(double *a, double *w); void cftf081(double *a, double *w); void cftf082(double *a, double *w); if (n == 128) { cftf161(a, &w[nw - 8]); cftf162(&a[32], &w[nw - 32]); cftf161(&a[64], &w[nw - 8]); cftf161(&a[96], &w[nw - 8]); } else { cftf081(a, &w[nw - 8]); cftf082(&a[16], &w[nw - 8]); cftf081(&a[32], &w[nw - 8]); cftf081(&a[48], &w[nw - 8]); } } void cftf161(double *a, double *w) { double wn4r, wk1r, wk1i, x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i, y0r, y0i, y1r, y1i, y2r, y2i, y3r, y3i, y4r, y4i, y5r, y5i, y6r, y6i, y7r, y7i, y8r, y8i, y9r, y9i, y10r, y10i, y11r, y11i, y12r, y12i, y13r, y13i, y14r, y14i, y15r, y15i; wn4r = w[1]; wk1r = w[2]; wk1i = w[3]; x0r = a[0] + a[16]; x0i = a[1] + a[17]; x1r = a[0] - a[16]; x1i = a[1] - a[17]; x2r = a[8] + a[24]; x2i = a[9] + a[25]; x3r = a[8] - a[24]; x3i = a[9] - a[25]; y0r = x0r + x2r; y0i = x0i + x2i; y4r = x0r - x2r; y4i = x0i - x2i; y8r = x1r - x3i; y8i = x1i + x3r; y12r = x1r + x3i; y12i = x1i - x3r; x0r = a[2] + a[18]; x0i = a[3] + a[19]; x1r = a[2] - a[18]; x1i = a[3] - a[19]; x2r = a[10] + a[26]; x2i = a[11] + a[27]; x3r = a[10] - a[26]; x3i = a[11] - a[27]; y1r = x0r + x2r; y1i = x0i + x2i; y5r = x0r - x2r; y5i = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; y9r = wk1r * x0r - wk1i * x0i; y9i = wk1r * x0i + wk1i * x0r; x0r = x1r + x3i; x0i = x1i - x3r; y13r = wk1i * x0r - wk1r * x0i; y13i = wk1i * x0i + wk1r * x0r; x0r = a[4] + a[20]; x0i = a[5] + a[21]; x1r = a[4] - a[20]; x1i = a[5] - a[21]; x2r = a[12] + a[28]; x2i = a[13] + a[29]; x3r = a[12] - a[28]; x3i = a[13] - a[29]; y2r = x0r + x2r; y2i = x0i + x2i; y6r = x0r - x2r; y6i = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; y10r = wn4r * (x0r - x0i); y10i = wn4r * (x0i + x0r); x0r = x1r + x3i; x0i = x1i - x3r; y14r = wn4r * (x0r + x0i); y14i = wn4r * (x0i - x0r); x0r = a[6] + a[22]; x0i = a[7] + a[23]; x1r = a[6] - a[22]; x1i = a[7] - a[23]; x2r = a[14] + a[30]; x2i = a[15] + a[31]; x3r = a[14] - a[30]; x3i = a[15] - a[31]; y3r = x0r + x2r; y3i = x0i + x2i; y7r = x0r - x2r; y7i = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; y11r = wk1i * x0r - wk1r * x0i; y11i = wk1i * x0i + wk1r * x0r; x0r = x1r + x3i; x0i = x1i - x3r; y15r = wk1r * x0r - wk1i * x0i; y15i = wk1r * x0i + wk1i * x0r; x0r = y12r - y14r; x0i = y12i - y14i; x1r = y12r + y14r; x1i = y12i + y14i; x2r = y13r - y15r; x2i = y13i - y15i; x3r = y13r + y15r; x3i = y13i + y15i; a[24] = x0r + x2r; a[25] = x0i + x2i; a[26] = x0r - x2r; a[27] = x0i - x2i; a[28] = x1r - x3i; a[29] = x1i + x3r; a[30] = x1r + x3i; a[31] = x1i - x3r; x0r = y8r + y10r; x0i = y8i + y10i; x1r = y8r - y10r; x1i = y8i - y10i; x2r = y9r + y11r; x2i = y9i + y11i; x3r = y9r - y11r; x3i = y9i - y11i; a[16] = x0r + x2r; a[17] = x0i + x2i; a[18] = x0r - x2r; a[19] = x0i - x2i; a[20] = x1r - x3i; a[21] = x1i + x3r; a[22] = x1r + x3i; a[23] = x1i - x3r; x0r = y5r - y7i; x0i = y5i + y7r; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); x0r = y5r + y7i; x0i = y5i - y7r; x3r = wn4r * (x0r - x0i); x3i = wn4r * (x0i + x0r); x0r = y4r - y6i; x0i = y4i + y6r; x1r = y4r + y6i; x1i = y4i - y6r; a[8] = x0r + x2r; a[9] = x0i + x2i; a[10] = x0r - x2r; a[11] = x0i - x2i; a[12] = x1r - x3i; a[13] = x1i + x3r; a[14] = x1r + x3i; a[15] = x1i - x3r; x0r = y0r + y2r; x0i = y0i + y2i; x1r = y0r - y2r; x1i = y0i - y2i; x2r = y1r + y3r; x2i = y1i + y3i; x3r = y1r - y3r; x3i = y1i - y3i; a[0] = x0r + x2r; a[1] = x0i + x2i; a[2] = x0r - x2r; a[3] = x0i - x2i; a[4] = x1r - x3i; a[5] = x1i + x3r; a[6] = x1r + x3i; a[7] = x1i - x3r; } void cftf162(double *a, double *w) { double wn4r, wk1r, wk1i, wk2r, wk2i, wk3r, wk3i, x0r, x0i, x1r, x1i, x2r, x2i, y0r, y0i, y1r, y1i, y2r, y2i, y3r, y3i, y4r, y4i, y5r, y5i, y6r, y6i, y7r, y7i, y8r, y8i, y9r, y9i, y10r, y10i, y11r, y11i, y12r, y12i, y13r, y13i, y14r, y14i, y15r, y15i; wn4r = w[1]; wk1r = w[4]; wk1i = w[5]; wk3r = w[6]; wk3i = -w[7]; wk2r = w[8]; wk2i = w[9]; x1r = a[0] - a[17]; x1i = a[1] + a[16]; x0r = a[8] - a[25]; x0i = a[9] + a[24]; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); y0r = x1r + x2r; y0i = x1i + x2i; y4r = x1r - x2r; y4i = x1i - x2i; x1r = a[0] + a[17]; x1i = a[1] - a[16]; x0r = a[8] + a[25]; x0i = a[9] - a[24]; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); y8r = x1r - x2i; y8i = x1i + x2r; y12r = x1r + x2i; y12i = x1i - x2r; x0r = a[2] - a[19]; x0i = a[3] + a[18]; x1r = wk1r * x0r - wk1i * x0i; x1i = wk1r * x0i + wk1i * x0r; x0r = a[10] - a[27]; x0i = a[11] + a[26]; x2r = wk3i * x0r - wk3r * x0i; x2i = wk3i * x0i + wk3r * x0r; y1r = x1r + x2r; y1i = x1i + x2i; y5r = x1r - x2r; y5i = x1i - x2i; x0r = a[2] + a[19]; x0i = a[3] - a[18]; x1r = wk3r * x0r - wk3i * x0i; x1i = wk3r * x0i + wk3i * x0r; x0r = a[10] + a[27]; x0i = a[11] - a[26]; x2r = wk1r * x0r + wk1i * x0i; x2i = wk1r * x0i - wk1i * x0r; y9r = x1r - x2r; y9i = x1i - x2i; y13r = x1r + x2r; y13i = x1i + x2i; x0r = a[4] - a[21]; x0i = a[5] + a[20]; x1r = wk2r * x0r - wk2i * x0i; x1i = wk2r * x0i + wk2i * x0r; x0r = a[12] - a[29]; x0i = a[13] + a[28]; x2r = wk2i * x0r - wk2r * x0i; x2i = wk2i * x0i + wk2r * x0r; y2r = x1r + x2r; y2i = x1i + x2i; y6r = x1r - x2r; y6i = x1i - x2i; x0r = a[4] + a[21]; x0i = a[5] - a[20]; x1r = wk2i * x0r - wk2r * x0i; x1i = wk2i * x0i + wk2r * x0r; x0r = a[12] + a[29]; x0i = a[13] - a[28]; x2r = wk2r * x0r - wk2i * x0i; x2i = wk2r * x0i + wk2i * x0r; y10r = x1r - x2r; y10i = x1i - x2i; y14r = x1r + x2r; y14i = x1i + x2i; x0r = a[6] - a[23]; x0i = a[7] + a[22]; x1r = wk3r * x0r - wk3i * x0i; x1i = wk3r * x0i + wk3i * x0r; x0r = a[14] - a[31]; x0i = a[15] + a[30]; x2r = wk1i * x0r - wk1r * x0i; x2i = wk1i * x0i + wk1r * x0r; y3r = x1r + x2r; y3i = x1i + x2i; y7r = x1r - x2r; y7i = x1i - x2i; x0r = a[6] + a[23]; x0i = a[7] - a[22]; x1r = wk1i * x0r + wk1r * x0i; x1i = wk1i * x0i - wk1r * x0r; x0r = a[14] + a[31]; x0i = a[15] - a[30]; x2r = wk3i * x0r - wk3r * x0i; x2i = wk3i * x0i + wk3r * x0r; y11r = x1r + x2r; y11i = x1i + x2i; y15r = x1r - x2r; y15i = x1i - x2i; x1r = y0r + y2r; x1i = y0i + y2i; x2r = y1r + y3r; x2i = y1i + y3i; a[0] = x1r + x2r; a[1] = x1i + x2i; a[2] = x1r - x2r; a[3] = x1i - x2i; x1r = y0r - y2r; x1i = y0i - y2i; x2r = y1r - y3r; x2i = y1i - y3i; a[4] = x1r - x2i; a[5] = x1i + x2r; a[6] = x1r + x2i; a[7] = x1i - x2r; x1r = y4r - y6i; x1i = y4i + y6r; x0r = y5r - y7i; x0i = y5i + y7r; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); a[8] = x1r + x2r; a[9] = x1i + x2i; a[10] = x1r - x2r; a[11] = x1i - x2i; x1r = y4r + y6i; x1i = y4i - y6r; x0r = y5r + y7i; x0i = y5i - y7r; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); a[12] = x1r - x2i; a[13] = x1i + x2r; a[14] = x1r + x2i; a[15] = x1i - x2r; x1r = y8r + y10r; x1i = y8i + y10i; x2r = y9r - y11r; x2i = y9i - y11i; a[16] = x1r + x2r; a[17] = x1i + x2i; a[18] = x1r - x2r; a[19] = x1i - x2i; x1r = y8r - y10r; x1i = y8i - y10i; x2r = y9r + y11r; x2i = y9i + y11i; a[20] = x1r - x2i; a[21] = x1i + x2r; a[22] = x1r + x2i; a[23] = x1i - x2r; x1r = y12r - y14i; x1i = y12i + y14r; x0r = y13r + y15i; x0i = y13i - y15r; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); a[24] = x1r + x2r; a[25] = x1i + x2i; a[26] = x1r - x2r; a[27] = x1i - x2i; x1r = y12r + y14i; x1i = y12i - y14r; x0r = y13r - y15i; x0i = y13i + y15r; x2r = wn4r * (x0r - x0i); x2i = wn4r * (x0i + x0r); a[28] = x1r - x2i; a[29] = x1i + x2r; a[30] = x1r + x2i; a[31] = x1i - x2r; } void cftf081(double *a, double *w) { double wn4r, x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i, y0r, y0i, y1r, y1i, y2r, y2i, y3r, y3i, y4r, y4i, y5r, y5i, y6r, y6i, y7r, y7i; wn4r = w[1]; x0r = a[0] + a[8]; x0i = a[1] + a[9]; x1r = a[0] - a[8]; x1i = a[1] - a[9]; x2r = a[4] + a[12]; x2i = a[5] + a[13]; x3r = a[4] - a[12]; x3i = a[5] - a[13]; y0r = x0r + x2r; y0i = x0i + x2i; y2r = x0r - x2r; y2i = x0i - x2i; y1r = x1r - x3i; y1i = x1i + x3r; y3r = x1r + x3i; y3i = x1i - x3r; x0r = a[2] + a[10]; x0i = a[3] + a[11]; x1r = a[2] - a[10]; x1i = a[3] - a[11]; x2r = a[6] + a[14]; x2i = a[7] + a[15]; x3r = a[6] - a[14]; x3i = a[7] - a[15]; y4r = x0r + x2r; y4i = x0i + x2i; y6r = x0r - x2r; y6i = x0i - x2i; x0r = x1r - x3i; x0i = x1i + x3r; x2r = x1r + x3i; x2i = x1i - x3r; y5r = wn4r * (x0r - x0i); y5i = wn4r * (x0r + x0i); y7r = wn4r * (x2r - x2i); y7i = wn4r * (x2r + x2i); a[8] = y1r + y5r; a[9] = y1i + y5i; a[10] = y1r - y5r; a[11] = y1i - y5i; a[12] = y3r - y7i; a[13] = y3i + y7r; a[14] = y3r + y7i; a[15] = y3i - y7r; a[0] = y0r + y4r; a[1] = y0i + y4i; a[2] = y0r - y4r; a[3] = y0i - y4i; a[4] = y2r - y6i; a[5] = y2i + y6r; a[6] = y2r + y6i; a[7] = y2i - y6r; } void cftf082(double *a, double *w) { double wn4r, wk1r, wk1i, x0r, x0i, x1r, x1i, y0r, y0i, y1r, y1i, y2r, y2i, y3r, y3i, y4r, y4i, y5r, y5i, y6r, y6i, y7r, y7i; wn4r = w[1]; wk1r = w[2]; wk1i = w[3]; y0r = a[0] - a[9]; y0i = a[1] + a[8]; y1r = a[0] + a[9]; y1i = a[1] - a[8]; x0r = a[4] - a[13]; x0i = a[5] + a[12]; y2r = wn4r * (x0r - x0i); y2i = wn4r * (x0i + x0r); x0r = a[4] + a[13]; x0i = a[5] - a[12]; y3r = wn4r * (x0r - x0i); y3i = wn4r * (x0i + x0r); x0r = a[2] - a[11]; x0i = a[3] + a[10]; y4r = wk1r * x0r - wk1i * x0i; y4i = wk1r * x0i + wk1i * x0r; x0r = a[2] + a[11]; x0i = a[3] - a[10]; y5r = wk1i * x0r - wk1r * x0i; y5i = wk1i * x0i + wk1r * x0r; x0r = a[6] - a[15]; x0i = a[7] + a[14]; y6r = wk1i * x0r - wk1r * x0i; y6i = wk1i * x0i + wk1r * x0r; x0r = a[6] + a[15]; x0i = a[7] - a[14]; y7r = wk1r * x0r - wk1i * x0i; y7i = wk1r * x0i + wk1i * x0r; x0r = y0r + y2r; x0i = y0i + y2i; x1r = y4r + y6r; x1i = y4i + y6i; a[0] = x0r + x1r; a[1] = x0i + x1i; a[2] = x0r - x1r; a[3] = x0i - x1i; x0r = y0r - y2r; x0i = y0i - y2i; x1r = y4r - y6r; x1i = y4i - y6i; a[4] = x0r - x1i; a[5] = x0i + x1r; a[6] = x0r + x1i; a[7] = x0i - x1r; x0r = y1r - y3i; x0i = y1i + y3r; x1r = y5r - y7r; x1i = y5i - y7i; a[8] = x0r + x1r; a[9] = x0i + x1i; a[10] = x0r - x1r; a[11] = x0i - x1i; x0r = y1r + y3i; x0i = y1i - y3r; x1r = y5r + y7r; x1i = y5i + y7i; a[12] = x0r - x1i; a[13] = x0i + x1r; a[14] = x0r + x1i; a[15] = x0i - x1r; } void cftf040(double *a) { double x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i; x0r = a[0] + a[4]; x0i = a[1] + a[5]; x1r = a[0] - a[4]; x1i = a[1] - a[5]; x2r = a[2] + a[6]; x2i = a[3] + a[7]; x3r = a[2] - a[6]; x3i = a[3] - a[7]; a[0] = x0r + x2r; a[1] = x0i + x2i; a[2] = x1r - x3i; a[3] = x1i + x3r; a[4] = x0r - x2r; a[5] = x0i - x2i; a[6] = x1r + x3i; a[7] = x1i - x3r; } void cftb040(double *a) { double x0r, x0i, x1r, x1i, x2r, x2i, x3r, x3i; x0r = a[0] + a[4]; x0i = a[1] + a[5]; x1r = a[0] - a[4]; x1i = a[1] - a[5]; x2r = a[2] + a[6]; x2i = a[3] + a[7]; x3r = a[2] - a[6]; x3i = a[3] - a[7]; a[0] = x0r + x2r; a[1] = x0i + x2i; a[2] = x1r + x3i; a[3] = x1i - x3r; a[4] = x0r - x2r; a[5] = x0i - x2i; a[6] = x1r - x3i; a[7] = x1i + x3r; } void cftx020(double *a) { double x0r, x0i; x0r = a[0] - a[2]; x0i = a[1] - a[3]; a[0] += a[2]; a[1] += a[3]; a[2] = x0r; a[3] = x0i; } void rftfsub(int n, double *a, int nc, double *c) { int j, k, kk, ks, m; double wkr, wki, xr, xi, yr, yi; m = n >> 1; ks = 2 * nc / m; kk = 0; for (j = 2; j < m; j += 2) { k = n - j; kk += ks; wkr = 0.5 - c[nc - kk]; wki = c[kk]; xr = a[j] - a[k]; xi = a[j + 1] + a[k + 1]; yr = wkr * xr - wki * xi; yi = wkr * xi + wki * xr; a[j] -= yr; a[j + 1] -= yi; a[k] += yr; a[k + 1] -= yi; } } void rftbsub(int n, double *a, int nc, double *c) { int j, k, kk, ks, m; double wkr, wki, xr, xi, yr, yi; m = n >> 1; ks = 2 * nc / m; kk = 0; for (j = 2; j < m; j += 2) { k = n - j; kk += ks; wkr = 0.5 - c[nc - kk]; wki = c[kk]; xr = a[j] - a[k]; xi = a[j + 1] + a[k + 1]; yr = wkr * xr + wki * xi; yi = wkr * xi - wki * xr; a[j] -= yr; a[j + 1] -= yi; a[k] += yr; a[k + 1] -= yi; } } void dctsub(int n, double *a, int nc, double *c) { int j, k, kk, ks, m; double wkr, wki, xr; m = n >> 1; ks = nc / n; kk = 0; for (j = 1; j < m; j++) { k = n - j; kk += ks; wkr = c[kk] - c[nc - kk]; wki = c[kk] + c[nc - kk]; xr = wki * a[j] - wkr * a[k]; a[j] = wkr * a[j] + wki * a[k]; a[k] = xr; } a[m] *= c[0]; } void dstsub(int n, double *a, int nc, double *c) { int j, k, kk, ks, m; double wkr, wki, xr; m = n >> 1; ks = nc / n; kk = 0; for (j = 1; j < m; j++) { k = n - j; kk += ks; wkr = c[kk] - c[nc - kk]; wki = c[kk] + c[nc - kk]; xr = wki * a[k] - wkr * a[j]; a[k] = wkr * a[k] + wki * a[j]; a[j] = xr; } a[m] *= c[0]; }
the_stack_data/111021.c
// Copyright (c) 2019, Ryo Currency Project // // 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. // !! NB // Hash functions in this file were optimised to handle only 200 bytes long input. As such they // are not useable outside of PoW calculation. // // Optimisations made by https://github.com/BaseMax // /* * Based on followig implementations: * * BLAKE reference C implementation * Copyright (c) 2012 Jean-Philippe Aumasson <[email protected]> * To the extent possible under law, the author(s) have dedicated all copyright * and related and neighboring rights to this software to the public domain * worldwide. This software is distributed without any warranty. * * Groestl ANSI C code optimised for 32-bit machines * Author: Thomas Krinninger * * This work is based on the implementation of * Soeren S. Thomsen and Krystian Matusiewicz * * JH implementation by Wu Hongjun * * * Implementation of the Skein hash function. * Source code author: Doug Whiting, 2008. * This algorithm and source code is released to the public domain. */ #include <stdio.h> #include <stdint.h> #include <string.h> /////////////////////////////////////////////////////////////////////////////////////////////// ///// blake_hash /////////////////////////////////////////////////////////////////////////////////////////////// typedef struct { uint32_t h[8], s[4], t[2]; } blake_ctx; #define U8TO32(p) \ (((uint32_t)((p)[0]) << 24) | ((uint32_t)((p)[1]) << 16) | \ ((uint32_t)((p)[2]) << 8) | ((uint32_t)((p)[3]) )) #define U32TO8(p,v) \ (p)[0] = (uint8_t)((v) >> 24);(p)[1] = (uint8_t)((v) >> 16);\ (p)[2] = (uint8_t)((v) >> 8);(p)[3] = (uint8_t)((v) ); const uint8_t sigma[][16] = { { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}, {14,10,4,8,9,15,13,6,1,12,0,2,11,7,5,3}, {11,8,12,0,5,2,15,13,10,14,3,6,7,1,9,4}, { 7,9,3,1,13,12,11,14,2,6,5,10,4,0,15,8}, { 9,0,5,7,2,4,10,15,14,1,11,12,6,8,3,13}, { 2,12,6,10,0,11,8,3,4,13,7,5,15,14,1,9}, {12,5,1,15,14,13,4,10,0,7,6,3,9,2,8,11}, {13,11,7,14,12,1,3,9,5,0,15,4,8,6,2,10}, { 6,15,14,9,11,3,0,8,12,2,13,7,1,4,10,5}, {10,2,8,4,7,6,1,5,15,11,9,14,3,12,13,0}, { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}, {14,10,4,8,9,15,13,6,1,12,0,2,11,7,5,3}, {11,8,12,0,5,2,15,13,10,14,3,6,7,1,9,4}, { 7,9,3,1,13,12,11,14,2,6,5,10,4,0,15,8} }; const uint32_t cst[16] = { 0x243F6A88,0x85A308D3,0x13198A2E,0x03707344, 0xA4093822,0x299F31D0,0x082EFA98,0xEC4E6C89, 0x452821E6,0x38D01377,0xBE5466CF,0x34E90C6C, 0xC0AC29B7,0xC97C50DD,0x3F84D5B5,0xB5470917 }; void blake256_compress(blake_ctx* S,const uint8_t* block) { uint32_t v[16],m[16],i; #define ROT(x,n) (((x)<<(32-n))|((x)>>(n))) #define G(a,b,c,d,e) \ v[a] += (m[sigma[i][e]] ^ cst[sigma[i][e+1]]) + v[b];\ v[d] = ROT(v[d] ^ v[a],16); \ v[c] += v[d]; \ v[b] = ROT(v[b] ^ v[c],12); \ v[a] += (m[sigma[i][e+1]] ^ cst[sigma[i][e]])+v[b]; \ v[d] = ROT(v[d] ^ v[a],8); \ v[c] += v[d]; \ v[b] = ROT(v[b] ^ v[c],7); for(i = 0;i < 16;++i) m[i] = U8TO32(block + i * 4); for(i = 0;i < 8; ++i) v[i] = S->h[i]; v[8] = S->s[0] ^ 0x243F6A88; v[9] = S->s[1] ^ 0x85A308D3; v[10] = S->s[2] ^ 0x13198A2E; v[11] = S->s[3] ^ 0x03707344; v[12] = 0xA4093822; v[13] = 0x299F31D0; v[14] = 0x082EFA98; v[15] = 0xEC4E6C89; v[12] ^= S->t[0]; v[13] ^= S->t[0]; v[14] ^= S->t[1]; v[15] ^= S->t[1]; for(i = 0;i < 14;++i) { G(0,4,8,12,0); G(1,5,9,13,2); G(2,6,10,14,4); G(3,7,11,15,6); G(3,4,9,14,14); G(2,7,8,13,12); G(0,5,10,15,8); G(1,6,11,12,10); } for(i = 0;i < 16;++i) S->h[i % 8] ^= v[i]; for(i = 0;i < 8;++i) S->h[i] ^= S->s[i % 4]; } void blake256_hash(const uint8_t* data,uint8_t* hashval) { blake_ctx S; S.h[0] = 0x6A09E667; S.h[1] = 0xBB67AE85; S.h[2] = 0x3C6EF372; S.h[3] = 0xA54FF53A; S.h[4] = 0x510E527F; S.h[5] = 0x9B05688C; S.h[6] = 0x1F83D9AB; S.h[7] = 0x5BE0CD19; S.t[0] = S.t[1] = 0; S.s[0] = S.s[1] = S.s[2] = S.s[3] = 0; S.t[0] += 512; blake256_compress(&S,data); data += 64; S.t[0] += 512; blake256_compress(&S,data); data += 64; S.t[0] += 512; blake256_compress(&S,data); data += 64; uint8_t buf[64]; memcpy(buf,data,8); memset(buf+8,0,48); buf[8] = 0x80; buf[55] = 0x01; S.t[0] += 64; U32TO8(buf+56,S.t[1]); U32TO8(buf+60,S.t[0]); blake256_compress(&S,buf); U32TO8(hashval + 0,S.h[0]); U32TO8(hashval + 4,S.h[1]); U32TO8(hashval + 8,S.h[2]); U32TO8(hashval + 12,S.h[3]); U32TO8(hashval + 16,S.h[4]); U32TO8(hashval + 20,S.h[5]); U32TO8(hashval + 24,S.h[6]); U32TO8(hashval + 28,S.h[7]); } /////////////////////////////////////////////////////////////////////////////////////////////// ///// groestl_hash /////////////////////////////////////////////////////////////////////////////////////////////// #define ROTL32(v, n) ((((v)<<(n))|((v)>>(32-(n))))&li_32(ffffffff)) #define li_32(h) 0x##h##u #define u32BIG(a)\ ((ROTL32(a,8) & li_32(00FF00FF)) |\ (ROTL32(a,24) & li_32(FF00FF00))) typedef struct { uint32_t chaining[16]; } groestl_ctx; const uint32_t T[512] = {0xa5f432c6, 0xc6a597f4, 0x84976ff8, 0xf884eb97, 0x99b05eee, 0xee99c7b0, 0x8d8c7af6, 0xf68df78c, 0xd17e8ff, 0xff0de517, 0xbddc0ad6, 0xd6bdb7dc, 0xb1c816de, 0xdeb1a7c8, 0x54fc6d91, 0x915439fc , 0x50f09060, 0x6050c0f0, 0x3050702, 0x2030405, 0xa9e02ece, 0xcea987e0, 0x7d87d156, 0x567dac87, 0x192bcce7, 0xe719d52b, 0x62a613b5, 0xb56271a6, 0xe6317c4d, 0x4de69a31, 0x9ab559ec, 0xec9ac3b5 , 0x45cf408f, 0x8f4505cf, 0x9dbca31f, 0x1f9d3ebc, 0x40c04989, 0x894009c0, 0x879268fa, 0xfa87ef92, 0x153fd0ef, 0xef15c53f, 0xeb2694b2, 0xb2eb7f26, 0xc940ce8e, 0x8ec90740, 0xb1de6fb, 0xfb0bed1d , 0xec2f6e41, 0x41ec822f, 0x67a91ab3, 0xb3677da9, 0xfd1c435f, 0x5ffdbe1c, 0xea256045, 0x45ea8a25, 0xbfdaf923, 0x23bf46da, 0xf7025153, 0x53f7a602, 0x96a145e4, 0xe496d3a1, 0x5bed769b, 0x9b5b2ded , 0xc25d2875, 0x75c2ea5d, 0x1c24c5e1, 0xe11cd924, 0xaee9d43d, 0x3dae7ae9, 0x6abef24c, 0x4c6a98be, 0x5aee826c, 0x6c5ad8ee, 0x41c3bd7e, 0x7e41fcc3, 0x206f3f5, 0xf502f106, 0x4fd15283, 0x834f1dd1 , 0x5ce48c68, 0x685cd0e4, 0xf4075651, 0x51f4a207, 0x345c8dd1, 0xd134b95c, 0x818e1f9, 0xf908e918, 0x93ae4ce2, 0xe293dfae, 0x73953eab, 0xab734d95, 0x53f59762, 0x6253c4f5, 0x3f416b2a, 0x2a3f5441 , 0xc141c08, 0x80c1014, 0x52f66395, 0x955231f6, 0x65afe946, 0x46658caf, 0x5ee27f9d, 0x9d5e21e2, 0x28784830, 0x30286078, 0xa1f8cf37, 0x37a16ef8, 0xf111b0a, 0xa0f1411, 0xb5c4eb2f, 0x2fb55ec4 , 0x91b150e, 0xe091c1b, 0x365a7e24, 0x2436485a, 0x9bb6ad1b, 0x1b9b36b6, 0x3d4798df, 0xdf3da547, 0x266aa7cd, 0xcd26816a, 0x69bbf54e, 0x4e699cbb, 0xcd4c337f, 0x7fcdfe4c, 0x9fba50ea, 0xea9fcfba , 0x1b2d3f12, 0x121b242d, 0x9eb9a41d, 0x1d9e3ab9, 0x749cc458, 0x5874b09c, 0x2e724634, 0x342e6872, 0x2d774136, 0x362d6c77, 0xb2cd11dc, 0xdcb2a3cd, 0xee299db4, 0xb4ee7329, 0xfb164d5b, 0x5bfbb616 , 0xf601a5a4, 0xa4f65301, 0x4dd7a176, 0x764decd7, 0x61a314b7, 0xb76175a3, 0xce49347d, 0x7dcefa49, 0x7b8ddf52, 0x527ba48d, 0x3e429fdd, 0xdd3ea142, 0x7193cd5e, 0x5e71bc93, 0x97a2b113, 0x139726a2 , 0xf504a2a6, 0xa6f55704, 0x68b801b9, 0xb96869b8, 0x0, 0x0, 0x2c74b5c1, 0xc12c9974, 0x60a0e040, 0x406080a0, 0x1f21c2e3, 0xe31fdd21, 0xc8433a79, 0x79c8f243, 0xed2c9ab6, 0xb6ed772c , 0xbed90dd4, 0xd4beb3d9, 0x46ca478d, 0x8d4601ca, 0xd9701767, 0x67d9ce70, 0x4bddaf72, 0x724be4dd, 0xde79ed94, 0x94de3379, 0xd467ff98, 0x98d42b67, 0xe82393b0, 0xb0e87b23, 0x4ade5b85, 0x854a11de , 0x6bbd06bb, 0xbb6b6dbd, 0x2a7ebbc5, 0xc52a917e, 0xe5347b4f, 0x4fe59e34, 0x163ad7ed, 0xed16c13a, 0xc554d286, 0x86c51754, 0xd762f89a, 0x9ad72f62, 0x55ff9966, 0x6655ccff, 0x94a7b611, 0x119422a7 , 0xcf4ac08a, 0x8acf0f4a, 0x1030d9e9, 0xe910c930, 0x60a0e04, 0x406080a, 0x819866fe, 0xfe81e798, 0xf00baba0, 0xa0f05b0b, 0x44ccb478, 0x7844f0cc, 0xbad5f025, 0x25ba4ad5, 0xe33e754b, 0x4be3963e , 0xf30eaca2, 0xa2f35f0e, 0xfe19445d, 0x5dfeba19, 0xc05bdb80, 0x80c01b5b, 0x8a858005, 0x58a0a85, 0xadecd33f, 0x3fad7eec, 0xbcdffe21, 0x21bc42df, 0x48d8a870, 0x7048e0d8, 0x40cfdf1, 0xf104f90c , 0xdf7a1963, 0x63dfc67a, 0xc1582f77, 0x77c1ee58, 0x759f30af, 0xaf75459f, 0x63a5e742, 0x426384a5, 0x30507020, 0x20304050, 0x1a2ecbe5, 0xe51ad12e, 0xe12effd, 0xfd0ee112, 0x6db708bf, 0xbf6d65b7 , 0x4cd45581, 0x814c19d4, 0x143c2418, 0x1814303c, 0x355f7926, 0x26354c5f, 0x2f71b2c3, 0xc32f9d71, 0xe13886be, 0xbee16738, 0xa2fdc835, 0x35a26afd, 0xcc4fc788, 0x88cc0b4f, 0x394b652e, 0x2e395c4b , 0x57f96a93, 0x93573df9, 0xf20d5855, 0x55f2aa0d, 0x829d61fc, 0xfc82e39d, 0x47c9b37a, 0x7a47f4c9, 0xacef27c8, 0xc8ac8bef, 0xe73288ba, 0xbae76f32, 0x2b7d4f32, 0x322b647d, 0x95a442e6, 0xe695d7a4 , 0xa0fb3bc0, 0xc0a09bfb, 0x98b3aa19, 0x199832b3, 0xd168f69e, 0x9ed12768, 0x7f8122a3, 0xa37f5d81, 0x66aaee44, 0x446688aa, 0x7e82d654, 0x547ea882, 0xabe6dd3b, 0x3bab76e6, 0x839e950b, 0xb83169e , 0xca45c98c, 0x8cca0345, 0x297bbcc7, 0xc729957b, 0xd36e056b, 0x6bd3d66e, 0x3c446c28, 0x283c5044, 0x798b2ca7, 0xa779558b, 0xe23d81bc, 0xbce2633d, 0x1d273116, 0x161d2c27, 0x769a37ad, 0xad76419a , 0x3b4d96db, 0xdb3bad4d, 0x56fa9e64, 0x6456c8fa, 0x4ed2a674, 0x744ee8d2, 0x1e223614, 0x141e2822, 0xdb76e492, 0x92db3f76, 0xa1e120c, 0xc0a181e, 0x6cb4fc48, 0x486c90b4, 0xe4378fb8, 0xb8e46b37 , 0x5de7789f, 0x9f5d25e7, 0x6eb20fbd, 0xbd6e61b2, 0xef2a6943, 0x43ef862a, 0xa6f135c4, 0xc4a693f1, 0xa8e3da39, 0x39a872e3, 0xa4f7c631, 0x31a462f7, 0x37598ad3, 0xd337bd59, 0x8b8674f2, 0xf28bff86 , 0x325683d5, 0xd532b156, 0x43c54e8b, 0x8b430dc5, 0x59eb856e, 0x6e59dceb, 0xb7c218da, 0xdab7afc2, 0x8c8f8e01, 0x18c028f, 0x64ac1db1, 0xb16479ac, 0xd26df19c, 0x9cd2236d, 0xe03b7249, 0x49e0923b , 0xb4c71fd8, 0xd8b4abc7, 0xfa15b9ac, 0xacfa4315, 0x709faf3, 0xf307fd09, 0x256fa0cf, 0xcf25856f, 0xafea20ca, 0xcaaf8fea, 0x8e897df4, 0xf48ef389, 0xe9206747, 0x47e98e20, 0x18283810, 0x10182028 , 0xd5640b6f, 0x6fd5de64, 0x888373f0, 0xf088fb83, 0x6fb1fb4a, 0x4a6f94b1, 0x7296ca5c, 0x5c72b896, 0x246c5438, 0x3824706c, 0xf1085f57, 0x57f1ae08, 0xc7522173, 0x73c7e652, 0x51f36497, 0x975135f3 , 0x2365aecb, 0xcb238d65, 0x7c8425a1, 0xa17c5984, 0x9cbf57e8, 0xe89ccbbf, 0x21635d3e, 0x3e217c63, 0xdd7cea96, 0x96dd377c, 0xdc7f1e61, 0x61dcc27f, 0x86919c0d, 0xd861a91, 0x85949b0f, 0xf851e94 , 0x90ab4be0, 0xe090dbab, 0x42c6ba7c, 0x7c42f8c6, 0xc4572671, 0x71c4e257, 0xaae529cc, 0xccaa83e5, 0xd873e390, 0x90d83b73, 0x50f0906, 0x6050c0f, 0x103f4f7, 0xf701f503, 0x12362a1c, 0x1c123836 , 0xa3fe3cc2, 0xc2a39ffe, 0x5fe18b6a, 0x6a5fd4e1, 0xf910beae, 0xaef94710, 0xd06b0269, 0x69d0d26b, 0x91a8bf17, 0x17912ea8, 0x58e87199, 0x995829e8, 0x2769533a, 0x3a277469, 0xb9d0f727, 0x27b94ed0 , 0x384891d9, 0xd938a948, 0x1335deeb, 0xeb13cd35, 0xb3cee52b, 0x2bb356ce, 0x33557722, 0x22334455, 0xbbd604d2, 0xd2bbbfd6, 0x709039a9, 0xa9704990, 0x89808707, 0x7890e80, 0xa7f2c133, 0x33a766f2 , 0xb6c1ec2d, 0x2db65ac1, 0x22665a3c, 0x3c227866, 0x92adb815, 0x15922aad, 0x2060a9c9, 0xc9208960, 0x49db5c87, 0x874915db, 0xff1ab0aa, 0xaaff4f1a, 0x7888d850, 0x5078a088, 0x7a8e2ba5, 0xa57a518e , 0x8f8a8903, 0x38f068a, 0xf8134a59, 0x59f8b213, 0x809b9209, 0x980129b, 0x1739231a, 0x1a173439, 0xda751065, 0x65daca75, 0x315384d7, 0xd731b553, 0xc651d584, 0x84c61351, 0xb8d303d0, 0xd0b8bbd3 , 0xc35edc82, 0x82c31f5e, 0xb0cbe229, 0x29b052cb, 0x7799c35a, 0x5a77b499, 0x11332d1e, 0x1e113c33, 0xcb463d7b, 0x7bcbf646, 0xfc1fb7a8, 0xa8fc4b1f, 0xd6610c6d, 0x6dd6da61, 0x3a4e622c, 0x2c3a584e}; #define ROTATE_COLUMN_DOWN(v1,v2,amount_bytes,temp_var)\ temp_var = (v1 << (8 * amount_bytes)) | (v2 >> (8 * (4 - amount_bytes)));\ v2 = (v2 << (8 * amount_bytes)) | (v1 >> (8 * (4 - amount_bytes)));\ v1 = temp_var; #define COLUMN(x,y,i,c0,c1,c2,c3,c4,c5,c6,c7,tv1,tv2,tu,tl,t)\ tu = T[2 * (uint32_t) x[4 * c0 + 0]];\ tl = T[2 * (uint32_t) x[4 * c0 + 0] + 1];\ tv1 = T[2 * (uint32_t) x[4 * c1 + 1]];\ tv2 = T[2 * (uint32_t) x[4 * c1 + 1] + 1];\ ROTATE_COLUMN_DOWN(tv1,tv2,1,t)\ tu ^= tv1;\ tl ^= tv2;\ tv1 = T[2 * (uint32_t) x[4 * c2 + 2]];\ tv2 = T[2 * (uint32_t) x[4 * c2 + 2] + 1];\ ROTATE_COLUMN_DOWN(tv1,tv2,2,t)\ tu ^= tv1;\ tl ^= tv2;\ tv1 = T[2 * (uint32_t) x[4 * c3 + 3]];\ tv2 = T[2 * (uint32_t) x[4 * c3 + 3] + 1];\ ROTATE_COLUMN_DOWN(tv1,tv2,3,t)\ tu ^= tv1;\ tl ^= tv2;\ tl ^= T[2 * (uint32_t) x[4 * c4 + 0]];\ tu ^= T[2 * (uint32_t) x[4 * c4 + 0] + 1];\ tv1 = T[2 * (uint32_t) x[4 * c5 + 1]];\ tv2 = T[2 * (uint32_t) x[4 * c5 + 1] + 1];\ ROTATE_COLUMN_DOWN(tv1,tv2,1,t)\ tl ^= tv1;\ tu ^= tv2;\ tv1 = T[2 * (uint32_t) x[4 * c6 + 2]];\ tv2 = T[2 * (uint32_t) x[4 * c6 + 2] + 1];\ ROTATE_COLUMN_DOWN(tv1,tv2,2,t)\ tl ^= tv1;\ tu ^= tv2;\ tv1 = T[2 * (uint32_t) x[4 * c7 + 3]];\ tv2 = T[2 * (uint32_t) x[4 * c7 + 3] + 1];\ ROTATE_COLUMN_DOWN(tv1,tv2,3,t)\ tl ^= tv1;\ tu ^= tv2;\ y[i] = tu;\ y[i + 1] = tl; static void RND512P(uint8_t* x,uint32_t* y,uint32_t r) { uint32_t temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp; uint32_t* x32 = (uint32_t*) x; x32[0] ^= 0x00000000 ^ r; x32[2] ^= 0x00000010 ^ r; x32[4] ^= 0x00000020 ^ r; x32[6] ^= 0x00000030 ^ r; x32[8] ^= 0x00000040 ^ r; x32[10] ^= 0x00000050 ^ r; x32[12] ^= 0x00000060 ^ r; x32[14] ^= 0x00000070 ^ r; COLUMN(x,y,0,0,2,4,6,9,11,13,15,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,2,2,4,6,8,11,13,15,1,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,4,4,6,8,10,13,15,1,3,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,6,6,8,10,12,15,1,3,5,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,8,8,10,12,14,1,3,5,7,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,10,10,12,14,0,3,5,7,9,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,12,12,14,0,2,5,7,9,11,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,14,14,0,2,4,7,9,11,13,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); } static void RND512Q(uint8_t* x,uint32_t* y,uint32_t r) { uint32_t temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp; uint32_t*x32 = (uint32_t*) x; x32[0] = ~x32[0]; x32[1] ^= 0xffffffff ^ r; x32[2] = ~x32[2]; x32[3] ^= 0xefffffff ^ r; x32[4] = ~x32[4]; x32[5] ^= 0xdfffffff ^ r; x32[6] = ~x32[6]; x32[7] ^= 0xcfffffff ^ r; x32[8] = ~x32[8]; x32[9] ^= 0xbfffffff ^ r; x32[10] = ~x32[10]; x32[11] ^= 0xafffffff ^ r; x32[12] = ~x32[12]; x32[13] ^= 0x9fffffff ^ r; x32[14] = ~x32[14]; x32[15] ^= 0x8fffffff ^ r; COLUMN(x,y,0,2,6,10,14,1,5,9,13,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,2,4,8,12,0,3,7,11,15,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,4,6,10,14,2,5,9,13,1,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,6,8,12,0,4,7,11,15,3,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,8,10,14,2,6,9,13,1,5,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,10,12,0,4,8,11,15,3,7,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,12,14,2,6,10,13,1,5,9,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); COLUMN(x,y,14,0,4,8,12,15,3,7,11,temp_v1,temp_v2,temp_upper_value,temp_lower_value,temp); } static void Transform(groestl_ctx* ctx,const uint8_t* input,int msglen) { for(; msglen >= 64; msglen -= 64,input += 64) { uint32_t Ptmp[16]; uint32_t Qtmp[16]; uint32_t y[16]; uint32_t z[16]; z[0] = ((uint32_t*) input)[0]; Ptmp[0] = ctx->chaining[0] ^ ((uint32_t*) input)[0]; z[1] = ((uint32_t*) input)[1]; Ptmp[1] = ctx->chaining[1] ^ ((uint32_t*) input)[1]; z[2] = ((uint32_t*) input)[2]; Ptmp[2] = ctx->chaining[2] ^ ((uint32_t*) input)[2]; z[3] = ((uint32_t*) input)[3]; Ptmp[3] = ctx->chaining[3] ^ ((uint32_t*) input)[3]; z[4] = ((uint32_t*) input)[4]; Ptmp[4] = ctx->chaining[4] ^ ((uint32_t*) input)[4]; z[5] = ((uint32_t*) input)[5]; Ptmp[5] = ctx->chaining[5] ^ ((uint32_t*) input)[5]; z[6] = ((uint32_t*) input)[6]; Ptmp[6] = ctx->chaining[6] ^ ((uint32_t*) input)[6]; z[7] = ((uint32_t*) input)[7]; Ptmp[7] = ctx->chaining[7] ^ ((uint32_t*) input)[7]; z[8] = ((uint32_t*) input)[8]; Ptmp[8] = ctx->chaining[8] ^ ((uint32_t*) input)[8]; z[9] = ((uint32_t*) input)[9]; Ptmp[9] = ctx->chaining[9] ^ ((uint32_t*) input)[9]; z[10] = ((uint32_t*) input)[10]; Ptmp[10] = ctx->chaining[10] ^ ((uint32_t*) input)[10]; z[11] = ((uint32_t*) input)[11]; Ptmp[11] = ctx->chaining[11] ^ ((uint32_t*) input)[11]; z[12] = ((uint32_t*) input)[12]; Ptmp[12] = ctx->chaining[12] ^ ((uint32_t*) input)[12]; z[13] = ((uint32_t*) input)[13]; Ptmp[13] = ctx->chaining[13] ^ ((uint32_t*) input)[13]; z[14] = ((uint32_t*) input)[14]; Ptmp[14] = ctx->chaining[14] ^ ((uint32_t*) input)[14]; z[15] = ((uint32_t*) input)[15]; Ptmp[15] = ctx->chaining[15] ^ ((uint32_t*) input)[15]; RND512Q((uint8_t*) z,y,0x00000000); RND512Q((uint8_t*) y,z,0x01000000); RND512Q((uint8_t*) z,y,0x02000000); RND512Q((uint8_t*) y,z,0x03000000); RND512Q((uint8_t*) z,y,0x04000000); RND512Q((uint8_t*) y,z,0x05000000); RND512Q((uint8_t*) z,y,0x06000000); RND512Q((uint8_t*) y,z,0x07000000); RND512Q((uint8_t*) z,y,0x08000000); RND512Q((uint8_t*) y,Qtmp,0x09000000); RND512P((uint8_t*) Ptmp,y,0x00000000); RND512P((uint8_t*) y,z,0x00000001); RND512P((uint8_t*) z,y,0x00000002); RND512P((uint8_t*) y,z,0x00000003); RND512P((uint8_t*) z,y,0x00000004); RND512P((uint8_t*) y,z,0x00000005); RND512P((uint8_t*) z,y,0x00000006); RND512P((uint8_t*) y,z,0x00000007); RND512P((uint8_t*) z,y,0x00000008); RND512P((uint8_t*) y,Ptmp,0x00000009); ctx->chaining[0] ^= Ptmp[0] ^ Qtmp[0]; ctx->chaining[1] ^= Ptmp[1] ^ Qtmp[1]; ctx->chaining[2] ^= Ptmp[2] ^ Qtmp[2]; ctx->chaining[3] ^= Ptmp[3] ^ Qtmp[3]; ctx->chaining[4] ^= Ptmp[4] ^ Qtmp[4]; ctx->chaining[5] ^= Ptmp[5] ^ Qtmp[5]; ctx->chaining[6] ^= Ptmp[6] ^ Qtmp[6]; ctx->chaining[7] ^= Ptmp[7] ^ Qtmp[7]; ctx->chaining[8] ^= Ptmp[8] ^ Qtmp[8]; ctx->chaining[9] ^= Ptmp[9] ^ Qtmp[9]; ctx->chaining[10] ^= Ptmp[10] ^ Qtmp[10]; ctx->chaining[11] ^= Ptmp[11] ^ Qtmp[11]; ctx->chaining[12] ^= Ptmp[12] ^ Qtmp[12]; ctx->chaining[13] ^= Ptmp[13] ^ Qtmp[13]; ctx->chaining[14] ^= Ptmp[14] ^ Qtmp[14]; ctx->chaining[15] ^= Ptmp[15] ^ Qtmp[15]; } } void groestl_hash(const uint8_t* data,uint8_t* hashval) { groestl_ctx context; memset(context.chaining, 0, 60); context.chaining[15] = u32BIG((uint32_t) 256); Transform(&context,data,200); uint8_t buf[64]; memcpy(buf,data+192,8); memset(buf+8,0,56); buf[8] = 0x80; buf[63] = 4; Transform(&context,buf,64); uint32_t temp[16]; uint32_t y[16]; uint32_t z[16]; memcpy(temp, context.chaining, 64); RND512P((uint8_t*) temp,y,0x00000000); RND512P((uint8_t*) y,z,0x00000001); RND512P((uint8_t*) z,y,0x00000002); RND512P((uint8_t*) y,z,0x00000003); RND512P((uint8_t*) z,y,0x00000004); RND512P((uint8_t*) y,z,0x00000005); RND512P((uint8_t*) z,y,0x00000006); RND512P((uint8_t*) y,z,0x00000007); RND512P((uint8_t*) z,y,0x00000008); RND512P((uint8_t*) y,temp,0x00000009); context.chaining[8] ^= temp[8]; context.chaining[9] ^= temp[9]; context.chaining[10] ^= temp[10]; context.chaining[11] ^= temp[11]; context.chaining[12] ^= temp[12]; context.chaining[13] ^= temp[13]; context.chaining[14] ^= temp[14]; context.chaining[15] ^= temp[15]; memcpy(hashval, context.chaining+8, 32); } /////////////////////////////////////////////////////////////////////////////////////////////// ///// jh_hash /////////////////////////////////////////////////////////////////////////////////////////////// #if defined(__GNUC__) #define DATA_ALIGN16(x) x __attribute__ ((aligned(16))) #else #define DATA_ALIGN16(x) __declspec(align(16)) x #endif typedef struct { DATA_ALIGN16(uint64_t x[8][2]); } jh_ctx; const unsigned char JH256_H0[128]={0xeb,0x98,0xa3,0x41,0x2c,0x20,0xd3,0xeb,0x92,0xcd,0xbe,0x7b,0x9c,0xb2,0x45,0xc1,0x1c,0x93,0x51,0x91,0x60,0xd4,0xc7,0xfa,0x26,0x0,0x82,0xd6,0x7e,0x50,0x8a,0x3,0xa4,0x23,0x9e,0x26,0x77,0x26,0xb9,0x45,0xe0,0xfb,0x1a,0x48,0xd4,0x1a,0x94,0x77,0xcd,0xb5,0xab,0x26,0x2,0x6b,0x17,0x7a,0x56,0xf0,0x24,0x42,0xf,0xff,0x2f,0xa8,0x71,0xa3,0x96,0x89,0x7f,0x2e,0x4d,0x75,0x1d,0x14,0x49,0x8,0xf7,0x7d,0xe2,0x62,0x27,0x76,0x95,0xf7,0x76,0x24,0x8f,0x94,0x87,0xd5,0xb6,0x57,0x47,0x80,0x29,0x6c,0x5c,0x5e,0x27,0x2d,0xac,0x8e,0xd,0x6c,0x51,0x84,0x50,0xc6,0x57,0x5,0x7a,0xf,0x7b,0xe4,0xd3,0x67,0x70,0x24,0x12,0xea,0x89,0xe3,0xab,0x13,0xd3,0x1c,0xd7,0x69}; const unsigned char E8_bitslice_roundconstant[42][32]={ {0x72,0xd5,0xde,0xa2,0xdf,0x15,0xf8,0x67,0x7b,0x84,0x15,0xa,0xb7,0x23,0x15,0x57,0x81,0xab,0xd6,0x90,0x4d,0x5a,0x87,0xf6,0x4e,0x9f,0x4f,0xc5,0xc3,0xd1,0x2b,0x40}, {0xea,0x98,0x3a,0xe0,0x5c,0x45,0xfa,0x9c,0x3,0xc5,0xd2,0x99,0x66,0xb2,0x99,0x9a,0x66,0x2,0x96,0xb4,0xf2,0xbb,0x53,0x8a,0xb5,0x56,0x14,0x1a,0x88,0xdb,0xa2,0x31}, {0x3,0xa3,0x5a,0x5c,0x9a,0x19,0xe,0xdb,0x40,0x3f,0xb2,0xa,0x87,0xc1,0x44,0x10,0x1c,0x5,0x19,0x80,0x84,0x9e,0x95,0x1d,0x6f,0x33,0xeb,0xad,0x5e,0xe7,0xcd,0xdc}, {0x10,0xba,0x13,0x92,0x2,0xbf,0x6b,0x41,0xdc,0x78,0x65,0x15,0xf7,0xbb,0x27,0xd0,0xa,0x2c,0x81,0x39,0x37,0xaa,0x78,0x50,0x3f,0x1a,0xbf,0xd2,0x41,0x0,0x91,0xd3}, {0x42,0x2d,0x5a,0xd,0xf6,0xcc,0x7e,0x90,0xdd,0x62,0x9f,0x9c,0x92,0xc0,0x97,0xce,0x18,0x5c,0xa7,0xb,0xc7,0x2b,0x44,0xac,0xd1,0xdf,0x65,0xd6,0x63,0xc6,0xfc,0x23}, {0x97,0x6e,0x6c,0x3,0x9e,0xe0,0xb8,0x1a,0x21,0x5,0x45,0x7e,0x44,0x6c,0xec,0xa8,0xee,0xf1,0x3,0xbb,0x5d,0x8e,0x61,0xfa,0xfd,0x96,0x97,0xb2,0x94,0x83,0x81,0x97}, {0x4a,0x8e,0x85,0x37,0xdb,0x3,0x30,0x2f,0x2a,0x67,0x8d,0x2d,0xfb,0x9f,0x6a,0x95,0x8a,0xfe,0x73,0x81,0xf8,0xb8,0x69,0x6c,0x8a,0xc7,0x72,0x46,0xc0,0x7f,0x42,0x14}, {0xc5,0xf4,0x15,0x8f,0xbd,0xc7,0x5e,0xc4,0x75,0x44,0x6f,0xa7,0x8f,0x11,0xbb,0x80,0x52,0xde,0x75,0xb7,0xae,0xe4,0x88,0xbc,0x82,0xb8,0x0,0x1e,0x98,0xa6,0xa3,0xf4}, {0x8e,0xf4,0x8f,0x33,0xa9,0xa3,0x63,0x15,0xaa,0x5f,0x56,0x24,0xd5,0xb7,0xf9,0x89,0xb6,0xf1,0xed,0x20,0x7c,0x5a,0xe0,0xfd,0x36,0xca,0xe9,0x5a,0x6,0x42,0x2c,0x36}, {0xce,0x29,0x35,0x43,0x4e,0xfe,0x98,0x3d,0x53,0x3a,0xf9,0x74,0x73,0x9a,0x4b,0xa7,0xd0,0xf5,0x1f,0x59,0x6f,0x4e,0x81,0x86,0xe,0x9d,0xad,0x81,0xaf,0xd8,0x5a,0x9f}, {0xa7,0x5,0x6,0x67,0xee,0x34,0x62,0x6a,0x8b,0xb,0x28,0xbe,0x6e,0xb9,0x17,0x27,0x47,0x74,0x7,0x26,0xc6,0x80,0x10,0x3f,0xe0,0xa0,0x7e,0x6f,0xc6,0x7e,0x48,0x7b}, {0xd,0x55,0xa,0xa5,0x4a,0xf8,0xa4,0xc0,0x91,0xe3,0xe7,0x9f,0x97,0x8e,0xf1,0x9e,0x86,0x76,0x72,0x81,0x50,0x60,0x8d,0xd4,0x7e,0x9e,0x5a,0x41,0xf3,0xe5,0xb0,0x62}, {0xfc,0x9f,0x1f,0xec,0x40,0x54,0x20,0x7a,0xe3,0xe4,0x1a,0x0,0xce,0xf4,0xc9,0x84,0x4f,0xd7,0x94,0xf5,0x9d,0xfa,0x95,0xd8,0x55,0x2e,0x7e,0x11,0x24,0xc3,0x54,0xa5}, {0x5b,0xdf,0x72,0x28,0xbd,0xfe,0x6e,0x28,0x78,0xf5,0x7f,0xe2,0xf,0xa5,0xc4,0xb2,0x5,0x89,0x7c,0xef,0xee,0x49,0xd3,0x2e,0x44,0x7e,0x93,0x85,0xeb,0x28,0x59,0x7f}, {0x70,0x5f,0x69,0x37,0xb3,0x24,0x31,0x4a,0x5e,0x86,0x28,0xf1,0x1d,0xd6,0xe4,0x65,0xc7,0x1b,0x77,0x4,0x51,0xb9,0x20,0xe7,0x74,0xfe,0x43,0xe8,0x23,0xd4,0x87,0x8a}, {0x7d,0x29,0xe8,0xa3,0x92,0x76,0x94,0xf2,0xdd,0xcb,0x7a,0x9,0x9b,0x30,0xd9,0xc1,0x1d,0x1b,0x30,0xfb,0x5b,0xdc,0x1b,0xe0,0xda,0x24,0x49,0x4f,0xf2,0x9c,0x82,0xbf}, {0xa4,0xe7,0xba,0x31,0xb4,0x70,0xbf,0xff,0xd,0x32,0x44,0x5,0xde,0xf8,0xbc,0x48,0x3b,0xae,0xfc,0x32,0x53,0xbb,0xd3,0x39,0x45,0x9f,0xc3,0xc1,0xe0,0x29,0x8b,0xa0}, {0xe5,0xc9,0x5,0xfd,0xf7,0xae,0x9,0xf,0x94,0x70,0x34,0x12,0x42,0x90,0xf1,0x34,0xa2,0x71,0xb7,0x1,0xe3,0x44,0xed,0x95,0xe9,0x3b,0x8e,0x36,0x4f,0x2f,0x98,0x4a}, {0x88,0x40,0x1d,0x63,0xa0,0x6c,0xf6,0x15,0x47,0xc1,0x44,0x4b,0x87,0x52,0xaf,0xff,0x7e,0xbb,0x4a,0xf1,0xe2,0xa,0xc6,0x30,0x46,0x70,0xb6,0xc5,0xcc,0x6e,0x8c,0xe6}, {0xa4,0xd5,0xa4,0x56,0xbd,0x4f,0xca,0x0,0xda,0x9d,0x84,0x4b,0xc8,0x3e,0x18,0xae,0x73,0x57,0xce,0x45,0x30,0x64,0xd1,0xad,0xe8,0xa6,0xce,0x68,0x14,0x5c,0x25,0x67}, {0xa3,0xda,0x8c,0xf2,0xcb,0xe,0xe1,0x16,0x33,0xe9,0x6,0x58,0x9a,0x94,0x99,0x9a,0x1f,0x60,0xb2,0x20,0xc2,0x6f,0x84,0x7b,0xd1,0xce,0xac,0x7f,0xa0,0xd1,0x85,0x18}, {0x32,0x59,0x5b,0xa1,0x8d,0xdd,0x19,0xd3,0x50,0x9a,0x1c,0xc0,0xaa,0xa5,0xb4,0x46,0x9f,0x3d,0x63,0x67,0xe4,0x4,0x6b,0xba,0xf6,0xca,0x19,0xab,0xb,0x56,0xee,0x7e}, {0x1f,0xb1,0x79,0xea,0xa9,0x28,0x21,0x74,0xe9,0xbd,0xf7,0x35,0x3b,0x36,0x51,0xee,0x1d,0x57,0xac,0x5a,0x75,0x50,0xd3,0x76,0x3a,0x46,0xc2,0xfe,0xa3,0x7d,0x70,0x1}, {0xf7,0x35,0xc1,0xaf,0x98,0xa4,0xd8,0x42,0x78,0xed,0xec,0x20,0x9e,0x6b,0x67,0x79,0x41,0x83,0x63,0x15,0xea,0x3a,0xdb,0xa8,0xfa,0xc3,0x3b,0x4d,0x32,0x83,0x2c,0x83}, {0xa7,0x40,0x3b,0x1f,0x1c,0x27,0x47,0xf3,0x59,0x40,0xf0,0x34,0xb7,0x2d,0x76,0x9a,0xe7,0x3e,0x4e,0x6c,0xd2,0x21,0x4f,0xfd,0xb8,0xfd,0x8d,0x39,0xdc,0x57,0x59,0xef}, {0x8d,0x9b,0xc,0x49,0x2b,0x49,0xeb,0xda,0x5b,0xa2,0xd7,0x49,0x68,0xf3,0x70,0xd,0x7d,0x3b,0xae,0xd0,0x7a,0x8d,0x55,0x84,0xf5,0xa5,0xe9,0xf0,0xe4,0xf8,0x8e,0x65}, {0xa0,0xb8,0xa2,0xf4,0x36,0x10,0x3b,0x53,0xc,0xa8,0x7,0x9e,0x75,0x3e,0xec,0x5a,0x91,0x68,0x94,0x92,0x56,0xe8,0x88,0x4f,0x5b,0xb0,0x5c,0x55,0xf8,0xba,0xbc,0x4c}, {0xe3,0xbb,0x3b,0x99,0xf3,0x87,0x94,0x7b,0x75,0xda,0xf4,0xd6,0x72,0x6b,0x1c,0x5d,0x64,0xae,0xac,0x28,0xdc,0x34,0xb3,0x6d,0x6c,0x34,0xa5,0x50,0xb8,0x28,0xdb,0x71}, {0xf8,0x61,0xe2,0xf2,0x10,0x8d,0x51,0x2a,0xe3,0xdb,0x64,0x33,0x59,0xdd,0x75,0xfc,0x1c,0xac,0xbc,0xf1,0x43,0xce,0x3f,0xa2,0x67,0xbb,0xd1,0x3c,0x2,0xe8,0x43,0xb0}, {0x33,0xa,0x5b,0xca,0x88,0x29,0xa1,0x75,0x7f,0x34,0x19,0x4d,0xb4,0x16,0x53,0x5c,0x92,0x3b,0x94,0xc3,0xe,0x79,0x4d,0x1e,0x79,0x74,0x75,0xd7,0xb6,0xee,0xaf,0x3f}, {0xea,0xa8,0xd4,0xf7,0xbe,0x1a,0x39,0x21,0x5c,0xf4,0x7e,0x9,0x4c,0x23,0x27,0x51,0x26,0xa3,0x24,0x53,0xba,0x32,0x3c,0xd2,0x44,0xa3,0x17,0x4a,0x6d,0xa6,0xd5,0xad}, {0xb5,0x1d,0x3e,0xa6,0xaf,0xf2,0xc9,0x8,0x83,0x59,0x3d,0x98,0x91,0x6b,0x3c,0x56,0x4c,0xf8,0x7c,0xa1,0x72,0x86,0x60,0x4d,0x46,0xe2,0x3e,0xcc,0x8,0x6e,0xc7,0xf6}, {0x2f,0x98,0x33,0xb3,0xb1,0xbc,0x76,0x5e,0x2b,0xd6,0x66,0xa5,0xef,0xc4,0xe6,0x2a,0x6,0xf4,0xb6,0xe8,0xbe,0xc1,0xd4,0x36,0x74,0xee,0x82,0x15,0xbc,0xef,0x21,0x63}, {0xfd,0xc1,0x4e,0xd,0xf4,0x53,0xc9,0x69,0xa7,0x7d,0x5a,0xc4,0x6,0x58,0x58,0x26,0x7e,0xc1,0x14,0x16,0x6,0xe0,0xfa,0x16,0x7e,0x90,0xaf,0x3d,0x28,0x63,0x9d,0x3f}, {0xd2,0xc9,0xf2,0xe3,0x0,0x9b,0xd2,0xc,0x5f,0xaa,0xce,0x30,0xb7,0xd4,0xc,0x30,0x74,0x2a,0x51,0x16,0xf2,0xe0,0x32,0x98,0xd,0xeb,0x30,0xd8,0xe3,0xce,0xf8,0x9a}, {0x4b,0xc5,0x9e,0x7b,0xb5,0xf1,0x79,0x92,0xff,0x51,0xe6,0x6e,0x4,0x86,0x68,0xd3,0x9b,0x23,0x4d,0x57,0xe6,0x96,0x67,0x31,0xcc,0xe6,0xa6,0xf3,0x17,0xa,0x75,0x5}, {0xb1,0x76,0x81,0xd9,0x13,0x32,0x6c,0xce,0x3c,0x17,0x52,0x84,0xf8,0x5,0xa2,0x62,0xf4,0x2b,0xcb,0xb3,0x78,0x47,0x15,0x47,0xff,0x46,0x54,0x82,0x23,0x93,0x6a,0x48}, {0x38,0xdf,0x58,0x7,0x4e,0x5e,0x65,0x65,0xf2,0xfc,0x7c,0x89,0xfc,0x86,0x50,0x8e,0x31,0x70,0x2e,0x44,0xd0,0xb,0xca,0x86,0xf0,0x40,0x9,0xa2,0x30,0x78,0x47,0x4e}, {0x65,0xa0,0xee,0x39,0xd1,0xf7,0x38,0x83,0xf7,0x5e,0xe9,0x37,0xe4,0x2c,0x3a,0xbd,0x21,0x97,0xb2,0x26,0x1,0x13,0xf8,0x6f,0xa3,0x44,0xed,0xd1,0xef,0x9f,0xde,0xe7}, {0x8b,0xa0,0xdf,0x15,0x76,0x25,0x92,0xd9,0x3c,0x85,0xf7,0xf6,0x12,0xdc,0x42,0xbe,0xd8,0xa7,0xec,0x7c,0xab,0x27,0xb0,0x7e,0x53,0x8d,0x7d,0xda,0xaa,0x3e,0xa8,0xde}, {0xaa,0x25,0xce,0x93,0xbd,0x2,0x69,0xd8,0x5a,0xf6,0x43,0xfd,0x1a,0x73,0x8,0xf9,0xc0,0x5f,0xef,0xda,0x17,0x4a,0x19,0xa5,0x97,0x4d,0x66,0x33,0x4c,0xfd,0x21,0x6a}, {0x35,0xb4,0x98,0x31,0xdb,0x41,0x15,0x70,0xea,0x1e,0xf,0xbb,0xed,0xcd,0x54,0x9b,0x9a,0xd0,0x63,0xa1,0x51,0x97,0x40,0x72,0xf6,0x75,0x9d,0xbf,0x91,0x47,0x6f,0xe2}}; #define SWAP1(x) (x) = ((((x) & 0x5555555555555555ULL) << 1) | (((x) & 0xaaaaaaaaaaaaaaaaULL) >> 1)); #define SWAP2(x) (x) = ((((x) & 0x3333333333333333ULL) << 2) | (((x) & 0xccccccccccccccccULL) >> 2)); #define SWAP4(x) (x) = ((((x) & 0x0f0f0f0f0f0f0f0fULL) << 4) | (((x) & 0xf0f0f0f0f0f0f0f0ULL) >> 4)); #define SWAP8(x) (x) = ((((x) & 0x00ff00ff00ff00ffULL) << 8) | (((x) & 0xff00ff00ff00ff00ULL) >> 8)); #define SWAP16(x) (x) = ((((x) & 0x0000ffff0000ffffULL) << 16) | (((x) & 0xffff0000ffff0000ULL) >> 16)); #define SWAP32(x) (x) = (((x) << 32) | ((x) >> 32)); #define L(m0,m1,m2,m3,m4,m5,m6,m7) \ (m4) ^= (m1); \ (m5) ^= (m2); \ (m6) ^= (m0) ^ (m3); \ (m7) ^= (m0); \ (m0) ^= (m5); \ (m1) ^= (m6); \ (m2) ^= (m4) ^ (m7); \ (m3) ^= (m4); #define SS(m0,m1,m2,m3,m4,m5,m6,m7,cc0,cc1) \ m3 = ~(m3); \ m7 = ~(m7); \ m0 ^= ((~(m2)) & (cc0)); \ m4 ^= ((~(m6)) & (cc1)); \ temp0 = (cc0) ^ ((m0) & (m1));\ temp1 = (cc1) ^ ((m4) & (m5));\ m0 ^= ((m2) & (m3)); \ m4 ^= ((m6) & (m7)); \ m3 ^= ((~(m1)) & (m2)); \ m7 ^= ((~(m5)) & (m6)); \ m1 ^= ((m0) & (m2)); \ m5 ^= ((m4) & (m6)); \ m2 ^= ((m0) & (~(m3))); \ m6 ^= ((m4) & (~(m7))); \ m0 ^= ((m1) | (m3)); \ m4 ^= ((m5) | (m7)); \ m3 ^= ((m1) & (m2)); \ m7 ^= ((m5) & (m6)); \ m1 ^= (temp0 & (m0)); \ m5 ^= (temp1 & (m4)); \ m2 ^= temp0; \ m6 ^= temp1; static void F8(jh_ctx* state, const uint8_t* buffer) { uint64_t i; for(i = 0;i < 8;i++) state->x[i >> 1][i & 1] ^= ((uint64_t*)buffer)[i]; uint64_t roundnumber,temp0,temp1; for(roundnumber = 0;roundnumber < 42;roundnumber = roundnumber+7) { for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+0])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+0])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); SWAP1(state->x[1][i]);SWAP1(state->x[3][i]);SWAP1(state->x[5][i]);SWAP1(state->x[7][i]); } for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+1])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+1])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); SWAP2(state->x[1][i]);SWAP2(state->x[3][i]);SWAP2(state->x[5][i]);SWAP2(state->x[7][i]); } for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+2])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+2])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); SWAP4(state->x[1][i]);SWAP4(state->x[3][i]);SWAP4(state->x[5][i]);SWAP4(state->x[7][i]); } for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+3])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+3])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); SWAP8(state->x[1][i]);SWAP8(state->x[3][i]);SWAP8(state->x[5][i]);SWAP8(state->x[7][i]); } for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+4])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+4])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); SWAP16(state->x[1][i]);SWAP16(state->x[3][i]);SWAP16(state->x[5][i]);SWAP16(state->x[7][i]); } for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+5])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+5])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); SWAP32(state->x[1][i]);SWAP32(state->x[3][i]);SWAP32(state->x[5][i]);SWAP32(state->x[7][i]); } for(i = 0;i < 2;i++) { SS(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+6])[i],((uint64_t*)E8_bitslice_roundconstant[roundnumber+6])[i+2] ); L(state->x[0][i],state->x[2][i],state->x[4][i],state->x[6][i],state->x[1][i],state->x[3][i],state->x[5][i],state->x[7][i]); } for(i = 1;i < 8;i = i+2) { temp0 = state->x[i][0];state->x[i][0] = state->x[i][1];state->x[i][1] = temp0; } } state->x[4][0] ^= ((uint64_t*)buffer)[0]; state->x[4][1] ^= ((uint64_t*)buffer)[1]; state->x[5][0] ^= ((uint64_t*)buffer)[2]; state->x[5][1] ^= ((uint64_t*)buffer)[3]; state->x[6][0] ^= ((uint64_t*)buffer)[4]; state->x[6][1] ^= ((uint64_t*)buffer)[5]; state->x[7][0] ^= ((uint64_t*)buffer)[6]; state->x[7][1] ^= ((uint64_t*)buffer)[7]; } void jh_hash(const uint8_t* data, uint8_t* hashval) { jh_ctx state; memcpy(state.x,JH256_H0,128); F8(&state, data); F8(&state, data+64); F8(&state, data+128); uint8_t buf[64]; memcpy(buf, data+192,8); memset(buf+8, 0, 56); buf[8] = 128; F8(&state, buf); memset(buf,0,12); buf[62] = 6; buf[63] = 64; F8(&state, buf); memcpy(hashval,(uint8_t*)state.x+96,32); } /////////////////////////////////////////////////////////////////////////////////////////////// ///// skein_hash /////////////////////////////////////////////////////////////////////////////////////////////// #define RotL_64(x,N) (((x) << (N)) | ((x) >> (64-(N)))) typedef struct { uint64_t T[2]; uint64_t X[8]; } skein_ctx; enum { R_512_0_0=46,R_512_0_1=36,R_512_0_2=19,R_512_0_3=37, R_512_1_0=33,R_512_1_1=27,R_512_1_2=14,R_512_1_3=42, R_512_2_0=17,R_512_2_1=49,R_512_2_2=36,R_512_2_3=39, R_512_3_0=44,R_512_3_1= 9,R_512_3_2=54,R_512_3_3=56, R_512_4_0=39,R_512_4_1=30,R_512_4_2=34,R_512_4_3=24, R_512_5_0=13,R_512_5_1=50,R_512_5_2=10,R_512_5_3=17, R_512_6_0=25,R_512_6_1=29,R_512_6_2=39,R_512_6_3=43, R_512_7_0= 8,R_512_7_1=35,R_512_7_2=56,R_512_7_3=22, }; const uint64_t SKEIN_512_IV_256[] = { 0xCCD044A12FDB3E13, 0xE83590301A79A9EB, 0x55AEA0614F816E6F, 0x2A2767A4AE9B94DB, 0xEC06025E74DD7683, 0xE7A436CDC4746251, 0xC36FBAF9393AD185, 0x3EEDBA1833EDFC13 }; #define ks (kw+3) #define ts (kw) static void Skein_512_Process_Block(skein_ctx* ctx,const uint8_t* blkPtr,size_t blkCnt,size_t byteCntAdd) { uint64_t kw[8+4]; uint64_t X0,X1,X2,X3,X4,X5,X6,X7; uint64_t w [8]; ts[0] = ctx->T[0]; ts[1] = ctx->T[1]; do { ts[0] += byteCntAdd; ks[0] = ctx->X[0]; ks[1] = ctx->X[1]; ks[2] = ctx->X[2]; ks[3] = ctx->X[3]; ks[4] = ctx->X[4]; ks[5] = ctx->X[5]; ks[6] = ctx->X[6]; ks[7] = ctx->X[7]; ks[8] = ks[0] ^ ks[1] ^ ks[2] ^ ks[3] ^ ks[4] ^ ks[5] ^ ks[6] ^ ks[7] ^ 2004413935125273122ull; ts[2] = ts[0] ^ ts[1]; for(size_t n=0;n<64;n+=8) w[n/8] = (((uint64_t) blkPtr[n ]) ) + (((uint64_t) blkPtr[n+1]) << 8) + (((uint64_t) blkPtr[n+2]) << 16) + (((uint64_t) blkPtr[n+3]) << 24) + (((uint64_t) blkPtr[n+4]) << 32) + (((uint64_t) blkPtr[n+5]) << 40) + (((uint64_t) blkPtr[n+6]) << 48) + (((uint64_t) blkPtr[n+7]) << 56) ; ctx->T[0] = ts[0]; ctx->T[1] = ts[1]; X0 = w[0] + ks[0]; X1 = w[1] + ks[1]; X2 = w[2] + ks[2]; X3 = w[3] + ks[3]; X4 = w[4] + ks[4]; X5 = w[5] + ks[5] + ts[0]; X6 = w[6] + ks[6] + ts[1]; X7 = w[7] + ks[7]; blkPtr += 64; #define Round512(p0,p1,p2,p3,p4,p5,p6,p7,ROT,rNum) \ X##p0 += X##p1; X##p1 = RotL_64(X##p1,ROT##_0); X##p1 ^= X##p0; \ X##p2 += X##p3; X##p3 = RotL_64(X##p3,ROT##_1); X##p3 ^= X##p2; \ X##p4 += X##p5; X##p5 = RotL_64(X##p5,ROT##_2); X##p5 ^= X##p4; \ X##p6 += X##p7; X##p7 = RotL_64(X##p7,ROT##_3); X##p7 ^= X##p6; #define R512(p0,p1,p2,p3,p4,p5,p6,p7,ROT,rNum) \ Round512(p0,p1,p2,p3,p4,p5,p6,p7,ROT,rNum) #define I512(R) \ X0 += ks[((R)+1) % 9]; \ X1 += ks[((R)+2) % 9]; \ X2 += ks[((R)+3) % 9]; \ X3 += ks[((R)+4) % 9]; \ X4 += ks[((R)+5) % 9]; \ X5 += ks[((R)+6) % 9] + ts[((R)+1) % 3]; \ X6 += ks[((R)+7) % 9] + ts[((R)+2) % 3]; \ X7 += ks[((R)+8) % 9] + (R)+1; { #define R512_8_rounds(R) \ R512(0,1,2,3,4,5,6,7,R_512_0,8*(R)+ 1); \ R512(2,1,4,7,6,5,0,3,R_512_1,8*(R)+ 2); \ R512(4,1,6,3,0,5,2,7,R_512_2,8*(R)+ 3); \ R512(6,1,0,7,2,5,4,3,R_512_3,8*(R)+ 4); \ I512(2*(R)); \ R512(0,1,2,3,4,5,6,7,R_512_4,8*(R)+ 5); \ R512(2,1,4,7,6,5,0,3,R_512_5,8*(R)+ 6); \ R512(4,1,6,3,0,5,2,7,R_512_6,8*(R)+ 7); \ R512(6,1,0,7,2,5,4,3,R_512_7,8*(R)+ 8); \ I512(2*(R)+1); R512_8_rounds(0); R512_8_rounds(1); R512_8_rounds(2); R512_8_rounds(3); R512_8_rounds(4); R512_8_rounds(5); R512_8_rounds(6); R512_8_rounds(7); R512_8_rounds(8); } ctx->X[0] = X0 ^ w[0]; ctx->X[1] = X1 ^ w[1]; ctx->X[2] = X2 ^ w[2]; ctx->X[3] = X3 ^ w[3]; ctx->X[4] = X4 ^ w[4]; ctx->X[5] = X5 ^ w[5]; ctx->X[6] = X6 ^ w[6]; ctx->X[7] = X7 ^ w[7]; ts[1] &= ~4611686018427387904ull; } while(--blkCnt); ctx->T[0] = ts[0]; ctx->T[1] = ts[1]; } void skein_hash(const uint8_t* data,uint8_t* hashval) { skein_ctx state; uint8_t b[64]; memcpy(state.X,SKEIN_512_IV_256,sizeof(state.X)); state.T[0] = 0; state.T[1] = 8070450532247928832ull; Skein_512_Process_Block(&state,data,3,64); memcpy(b,data+192,8); memset(b+8,0,56); state.T[1] |= 9223372036854775808ull; Skein_512_Process_Block(&state,b,1,8); memset(b,0,8); state.T[0] = 0; state.T[1] = 18374686479671623680ull; Skein_512_Process_Block(&state,b,1,sizeof(uint64_t)); memcpy(hashval, state.X, 32); }
the_stack_data/19590.c
/************************************************************************* > File Name: LocalIPCServer.c > Author: Mr.Miaow > Mail: [email protected] > Created Time: 2019年04月11日 星期四 16时41分55秒 ************************************************************************/ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <arpa/inet.h> #include <sys/un.h> int main(int argc, char *argv[]) { int lfd = socket(AF_LOCAL, SOCK_STREAM, 0); if (lfd == -1) { perror("socket error"); exit(1); } // 如果套接字文件存在,删除套接字文件 unlink("server.sock"); // 绑定 struct sockaddr_un serv; serv.sun_family = AF_LOCAL; strcpy(serv.sun_path, "server.sock"); int ret = bind(lfd, (struct sockaddr*)&serv, sizeof(serv)); if (ret == -1) { perror("bind error"); exit(1); } ret = listen(lfd, 36); if (ret == -1) { perror("listen error"); exit(1); } struct sockaddr_un cli_addr; socklen_t cli_len = sizeof(cli_addr); int cfd = accept(lfd, (struct sockaddr*)&cli_addr, &cli_len); if (cfd == -1) { perror("accept error"); exit(1); } printf("client bind file: %s\n", cli_addr.sun_path); while (1) { char buf[1024] = {0}; int recvlen = recv(cfd, buf, sizeof(buf), 0); if (recvlen == -1) { perror("recv error"); exit(1); } else if (recvlen == 0) { printf("client disconnect ...\n"); close(cfd); break; } else { printf("recv buf: %s\n", buf); send(cfd, buf, recvlen, 0); } } close(cfd); close(lfd); return 0; }
the_stack_data/136767.c
// SPDX-License-Identifier: X11 // 2020-06-22 (Timed) // Lucky Substring #include <stdio.h> #include <stdlib.h> #include <string.h> #define LIMIT 50 int main(void) { char *s = malloc(LIMIT * sizeof(char)); scanf("%s", s); int a[2]; a[0] = 0; a[1] = 0; for(int i = 0; i < strlen(s); i++) { if (s[i] == '4') a[0]++; if (s[i] == '7') a[1]++; } if (a[0] == a[1] && a[0] == 0) printf("-1\n"); else a[0] >= a[1] ? printf("4\n") : printf("7\n"); free(s); }
the_stack_data/103265045.c
#include <stdio.h> main(){ int i=2; //Time always changes so this will make the seed random srand(time(NULL)); while (i>1){ printf("%d", 1+rand()%6); i++; } //The while parameter causes it to run nonstop. return 0; }
the_stack_data/731391.c
// Project method 3? //PROBLEM 3: Create an agent that plans effectively in partial order planning and in dynamic environment. //(Example: wear tie , after wearing shoes, or wear tie, then goes for wearing tie, given time and objects (shirt, shoes, socks) made to appear in order for specific time. // create an array where each pos indicates if a particular task/function /action has been performed or not. /* array creation array name: action[20] index pos,action 1. left sock on 2.right sock on 3.left shoe on 4.right shoes on 5.shirt is on 6.tie is on 7.watch 8.right shoelace 9.left shoelace array creation2 array name: action1[20] 1. gotoshop 2.inshop 3.flour 4.eggs 5.milk 6.bill 7.home 8.bake */ #include<stdio.h> #include<stdlib.h> int action[20]; int action1[20]; int i,t,k,j,n; void callrandom(); void wearshirt() { if(action[5]==0) { printf("\t wear shirt\n"); action[5]=1; } if(action[5]==1) { printf("\t wear tie\n"); action[6]=1; action[5]=2; // to make sure if condition is not repeated. } } void wearleftshoe() { if(action[1]==1&&action[3]==0) { printf("\t left shoes\n"); action[3]=1; } if(action[1]==0) { printf("\t left socks\n"); action[1]=1; } } void wearrightshoe() { if(action[2]==1&&action[4]==0) { printf("\t right shoes\n"); action[4]=1; } if(action[2]==0) { printf("\t right socks\n"); action[2]=1; } } void wearwatch() { if(action[7]==0) { printf("\t wear watch\n"); action[7]=1; } } void tieshoelace() { if(action[4]==1&&action[8]==0) { printf("\t wear rightshoelace\n"); action[8]=1; } if(action[3]==1&&action[9]==0) { printf("\t wear leftshoelace\n"); action[9]=1; } } void bakecake() { if(action1[7]==1) { printf("\t Bake cake.\n"); action1[8]=1; } } void gotoshop() { if(action1[1]==0) { printf("\t Go to shop.\n"); action1[1]=1; } } void inshop() { if(action1[1]==1) { printf("\t Gather materials.\n"); action1[2]=1; } } void paybill() { if(action1[3]==1&&action1[4]==1&&action1[5]==1) { printf("\t pay bill.\n"); action1[6]=1; } } void gatherflour() { if(action1[1]==1) { printf("\t Gather flour.\n"); action1[3]=1; } } void gathereggs() { if(action1[1]==1) { printf("\t Gather eggs.\n"); action1[4]=1; } } void gathermilk() { if(action1[1]==1) { printf("\t Gather milk.\n"); action1[5]=1; } } void gohome() { if(action1[6]==1) { printf("\t Go home.\n"); action1[7]=1; } } void choose(int k) { if(k==1) wearshirt(); else if(k==2) wearleftshoe(); else if(k==3) wearrightshoe(); else if(k==4) wearwatch(); else tieshoelace(); } void choose1(int k) { if(k==1) gotoshop(); else if(k==2) gathermilk(); else if(k==3) gathereggs(); else if(k==4) gatherflour(); else if(k==5) paybill(); else if(k==6) gohome(); else bakecake(); } void callrandom(int t) // random { int l=0; for(j=0;j<=10;j++) action[j]=0; while(l!=100) { int num = (rand() % 5) + 1; choose(num); l++; } printf("Hence the %d plan has been deliverd.\n \n ",t+1); } void callrandom1(int t) // random { int l=0; for(j=0;j<=10;j++) action1[j]=0; while(l!=100) { int num = (rand() % 7) + 1; choose1(num); l++; } printf("Hence the %d plan has been deliverd.\n \n ",t+1); } void main() { int t=0,i; int choice; printf(" \t \t \t FINAL PROJECT FOR ARTIFICIAL INTELLIGENCE AND ITS APPLICATIONS: \n \n "); printf("Choose which environment you want a plan in : \n"); printf("1.Getting ready in the morning \n "); printf("2.Baking a cake \n "); scanf("%d",&choice); if(choice==1) { printf("An agent that plans effectively in partial order planning and in a dynamic environment. \n \n"); printf("Enter the total number of plans you want: \n"); scanf("%d",&i); printf("You will now be delivered %d random plans : \n \n",i); for(t=0;t<i;t++) { printf("Plan number %d is: \n",t+1); callrandom(t); } } else if(choice==2) { printf("An agent that plans effectively in partial order planning and in a dynamic environment. \n \n"); printf("Enter the total number of plans you want: \n"); scanf("%d",&i); printf("You will now be delivered %d random plans : \n \n",i); for(t=0;t<i;t++) { printf("Plan number %d is: \n",t+1); callrandom1(t); } } else printf("Please enter a valid number \n"); } // bake printfs // bake reprinting //wear statement in plan1
the_stack_data/98575295.c
#include <pthread.h> //#include <unistd.h> struct foo { struct bar { int plop[22]; char biff; } poot[11]; }; static void *th(void *v) { struct foo *f = (struct foo *)v; f->poot[5].plop[11]++; return 0; } int main() { struct foo foo; pthread_t a, b; pthread_create(&a, NULL, th, &foo); sleep(1); /* force ordering */ pthread_create(&b, NULL, th, &foo); pthread_join(a, NULL); pthread_join(b, NULL); return 0; }
the_stack_data/556685.c
/* xdcpy.f -- translated by f2c (version 20061008) */ #include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <float.h> #include <assert.h> /* Subroutine */ int xdcpy_(int *n, long double *dx, int *incx, long double *dy, int *incy) { /* System generated locals */ int i__1; /* Local variables */ int i__, m, ix, iy, mp1; /* .. Scalar Arguments .. */ /* .. */ /* .. Array Arguments .. */ /* .. */ /* Purpose */ /* ======= */ /* copies a vector, x, to a vector, y. */ /* uses unrolled loops for increments equal to one. */ /* jack dongarra, linpack, 3/11/78. */ /* modified 12/3/93, array(1) declarations changed to array(*) */ /* .. Local Scalars .. */ /* .. */ /* .. Intrinsic Functions .. */ /* .. */ /* Parameter adjustments */ --dy; --dx; /* Function Body */ if (*n <= 0) { return 0; } if (*incx == 1 && *incy == 1) { goto L20; } /* code for unequal increments or equal increments */ /* not equal to 1 */ ix = 1; iy = 1; if (*incx < 0) { ix = (-(*n) + 1) * *incx + 1; } if (*incy < 0) { iy = (-(*n) + 1) * *incy + 1; } i__1 = *n; for (i__ = 1; i__ <= i__1; ++i__) { dy[iy] = dx[ix]; ix += *incx; iy += *incy; /* L10: */ } return 0; /* code for both increments equal to 1 */ /* clean-up loop */ L20: m = *n % 7; if (m == 0) { goto L40; } i__1 = m; for (i__ = 1; i__ <= i__1; ++i__) { dy[i__] = dx[i__]; /* L30: */ } if (*n < 7) { return 0; } L40: mp1 = m + 1; i__1 = *n; for (i__ = mp1; i__ <= i__1; i__ += 7) { dy[i__] = dx[i__]; dy[i__ + 1] = dx[i__ + 1]; dy[i__ + 2] = dx[i__ + 2]; dy[i__ + 3] = dx[i__ + 3]; dy[i__ + 4] = dx[i__ + 4]; dy[i__ + 5] = dx[i__ + 5]; dy[i__ + 6] = dx[i__ + 6]; /* L50: */ } return 0; } /* xdcpy_ */
the_stack_data/1066385.c
#include <stdio.h> #include <stdlib.h> #include <time.h> int comparator(const void* x1, const void* x2) { const int* v1 = (const int*)x1; const int* v2 = (const int*)x2; if (*v1 > *v2) { return 1; } else if (*v1 < *v2) { return -1; } else { return 0; } } int main() { int array[1000]; for (int i = 0; i < 1000; i++) { scanf("%d", &(array[i])); } qsort(array, 1000, sizeof(int), comparator); clock_t time1 = clock(); int value = 0; int* element = bsearch(&value, array, 1000, sizeof(int), comparator); clock_t time2 = clock(); if (element != NULL) { printf("exists\n"); } else { printf("doesn't exist\n"); } printf("%f\n", (time2 - time1) / CLOCKS_PER_SEC); time1 = clock(); element = NULL; for (int i = 0; i < 1000; i++) { if (array[i] == 0) { element = array + i; break; } } time2 = clock(); if (element != NULL) { printf("exists\n"); } else { printf("doesn't exist\n"); } printf("%f\n", (time2 - time1) / CLOCKS_PER_SEC); return 0; }
the_stack_data/14200176.c
extern void abort (void); typedef struct { long r[(19 + sizeof (long))/(sizeof (long))]; } realvaluetype; typedef void *tree; static realvaluetype real_value_from_int_cst (tree x, tree y) { realvaluetype r; int i; for (i = 0; i < sizeof(r.r)/sizeof(long); ++i) r.r[i] = -1; return r; } struct brfic_args { tree type; tree i; realvaluetype d; }; static void build_real_from_int_cst_1 (data) void * data; { struct brfic_args *args = (struct brfic_args *) data; args->d = real_value_from_int_cst (args->type, args->i); } int main() { struct brfic_args args; __builtin_memset (&args, 0, sizeof(args)); build_real_from_int_cst_1 (&args); if (args.d.r[0] == 0) abort (); return 0; }
the_stack_data/56894.c
/* copy_c_tests.c - a simple copy program. * * This is an adaptation of Listing 4-1 of The Linux Programming Interface book, * run with different buffer sizes and on different file systems. * * It is possible to overwrite the size of the buffer used to read the file by * defining BUF_SIZE as in: * * $ c99 -DBUF_SIZE 256 copy_c_tests.c * * To use the `O_SYNC` flag and do not use the kernel's buffers, define SYNC_WRITE * when compiling the file: * * $ c99 -DSYNC_WRITE copy_c_tests.c * * The default buffer size is 1024 bytes. * * This program was run in different environments to test the performance with * different buffer sizes and different filesystems. * * Results * ======= * * ## Varying the buffer size. * * The tests were performed on a Linux machine, copying a 20M PDF file, * using an ext4 filesystem: * * $ uname -a * Linux 3.2.0-4-amd64 #1 SMP Debian 3.2.57-3 x86_64 GNU/Linux * * BUFFER SIZE: 1B WITH THE O_SYNC FLAG * real 0m48.766s * user 0m2.016s Just too big to measure * sys 0m46.559s * * BUFFER SIZE: 32B * real 0m1.585s * user 0m0.052s Just too big to measure * sys 0m1.528s * * BUFFER SIZE: 128B * real 0m0.417s * user 0m0.016s Just too big to measure * sys 0m0.396s * * BUFFER SIZE: 1024B WITH THE O_SYNC FLAG * real 0m0.073s real 15m47.106s * user 0m0.000s user 0m0.056s * sys 0m0.072s sys 0m2.980s * * BUFFER SIZE: 4096B WITH THE O_SYNC FLAG * real 0m0.071s real 4m23.828s * user 0m0.000s user 0m0.004s * sys 0m0.048s sys 0m0.956s * * As we can see from the results above, the size of the buffers used do affect * the overall performance of the copy program. However, when a certain threshold * is reached, little is gained from larger buffers, since writes to the kernel * buffers are fast. * * When we add the O_SYNC flag, we completely skip the kernel cache and force that * every write system call actually saves the data to the disk. This has a **huge** * impact as can be seen in the results. For smaller buffer sizes, the time is just * too big to even consider (I left it copying overnight and it was not enough * for a whole copy). */ #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #ifndef BUF_SIZE # define BUF_SIZE 1024 #endif static void helpAndLeave(const char *progname, int status); static void pexit(const char *fCall); int main(int argc, char *argv[]) { int inputFd, outputFd, openFlags; mode_t filePerms; ssize_t numRead; char buf[BUF_SIZE]; if (argc != 3) { helpAndLeave(argv[0], EXIT_FAILURE); } /* open input and output files */ inputFd = open(argv[1], O_RDONLY); if (inputFd == -1) { pexit("open"); } openFlags = O_CREAT | O_WRONLY | O_TRUNC; #ifdef SYNC_WRITE openFlags |= O_SYNC; #endif filePerms = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; /* rw-rw-rw */ outputFd = open(argv[2], openFlags, filePerms); if (outputFd == -1) { pexit("open"); } /* transfer data until we encounter an end of input or an error */ while ((numRead = read(inputFd, buf, BUF_SIZE)) > 0) { if (write(outputFd, buf, numRead) != numRead) { pexit("write"); } } if (numRead == -1) { pexit("read"); } if (close(inputFd) == -1) { pexit("close"); } if (close(outputFd) == -1) { pexit("close"); } return EXIT_SUCCESS; } static void helpAndLeave(const char *progname, int status) { FILE *stream = stderr; if (status == EXIT_SUCCESS) { stream = stdout; } fprintf(stream, "%s <oldfile> <newfile>\n", progname); exit(status); } static void pexit(const char *fCall) { perror(fCall); exit(EXIT_FAILURE); }
the_stack_data/18618.c
/* * C Program to Input a String & Store their Ascii Values in an Integer Array & Print the Array */ #include <stdio.h> void main() { char string[10]; int n, count = 0; printf("Enter the no of characters present in an array \n "); scanf("%d", &n); printf(" Enter the string of %d characters \n", n); scanf("%10s", string); while (count < n) { printf(" %c = %d\n", string[count], string[count]); ++count; } }
the_stack_data/231392782.c
// // dishiliuzhang2.c // dishiliuzhang // // Created by mingyue on 15/11/27. // Copyright © 2015年 G. All rights reserved. // #include <stdio.h> #define PSQR(x) printf("The square of " #x " is %d.\n",((x)*(x))); int main(int argc, const char* argv[]){ int y = 5; PSQR(y); PSQR(2 + 4); return 0; }
the_stack_data/423901.c
/* * Copyright 2016 The Emscripten Authors. All rights reserved. * Emscripten is available under two separate licenses, the MIT license and the * University of Illinois/NCSA Open Source License. Both these licenses can be * found in the LICENSE file. */ #include <math.h> #include <stdio.h> void printCanonicalizedNan(char* name, float value) { if (!isnan(value)) { printf("%s: %f\n", name, value); } else { printf("%s: nan\n", name); } } int main(int argc, const char* argv[]) { float f1 = 1.0f; float f2 = 0.0f; float f_zero = 0.0f; float f3 = 0.0f / f2; float f4 = f2 / 0.0f; float f5 = f2 / f2; float f6 = f2 / f_zero; printCanonicalizedNan("f3", f3); printCanonicalizedNan("f4", f4); printCanonicalizedNan("f5", f5); printCanonicalizedNan("f6", f6); return 0; }
the_stack_data/105592.c
#include <stdio.h> #define branch(mask,i2,_v1) \ ({ \ unsigned char taken; \ unsigned long v1 = _v1; \ asm volatile( " tmll %[v]," #i2 "\n\t" \ " brc " #mask " ,1f\n\t" \ " mvi %[taken],0\n\t" \ " j 0f\n\t" \ "1: mvi %[taken],1\n\t" \ "0: bcr 0,0 /* nop */\n\t" \ : [taken] "=Q" (taken) \ : [v] "d"(v1) \ : "cc"); \ taken; \ }) void tmll_mask_0(void) { int wrong, ok; unsigned long v; printf("Test #1 mask == 0, value == ~0 --> cc == 0\n"); v = ~0ULL; wrong = ok = 0; if (branch(0, 0, v)) ++wrong; else ++ok; if (branch(1, 0, v)) ++wrong; else ++ok; if (branch(2, 0, v)) ++wrong; else ++ok; if (branch(3, 0, v)) ++wrong; else ++ok; if (branch(4, 0, v)) ++wrong; else ++ok; if (branch(5, 0, v)) ++wrong; else ++ok; if (branch(6, 0, v)) ++wrong; else ++ok; if (branch(7, 0, v)) ++wrong; else ++ok; if (branch(8, 0, v)) ++ok; else ++wrong; if (branch(9, 0, v)) ++ok; else ++wrong; if (branch(10, 0, v)) ++ok; else ++wrong; if (branch(11, 0, v)) ++ok; else ++wrong; if (branch(12, 0, v)) ++ok; else ++wrong; if (branch(13, 0, v)) ++ok; else ++wrong; if (branch(14, 0, v)) ++ok; else ++wrong; if (branch(15, 0, v)) ++ok; else ++wrong; if (wrong != 0 || ok != 16) printf("FAILED\n"); else printf("OK\n"); } void tmll_value_0(void) { int wrong, ok; unsigned long v; printf("Test #2 mask == 0xFFF, value == 0 --> cc == 0\n"); v = 0; wrong = ok = 0; if (branch(0, 0xFFFF, v)) ++wrong; else ++ok; if (branch(1, 0xFFFF, v)) ++wrong; else ++ok; if (branch(2, 0xFFFF, v)) ++wrong; else ++ok; if (branch(3, 0xFFFF, v)) ++wrong; else ++ok; if (branch(4, 0xFFFF, v)) ++wrong; else ++ok; if (branch(5, 0xFFFF, v)) ++wrong; else ++ok; if (branch(6, 0xFFFF, v)) ++wrong; else ++ok; if (branch(7, 0xFFFF, v)) ++wrong; else ++ok; if (branch(8, 0xFFFF, v)) ++ok; else ++wrong; if (branch(9, 0xFFFF, v)) ++ok; else ++wrong; if (branch(10, 0xFFFF, v)) ++ok; else ++wrong; if (branch(11, 0xFFFF, v)) ++ok; else ++wrong; if (branch(12, 0xFFFF, v)) ++ok; else ++wrong; if (branch(13, 0xFFFF, v)) ++ok; else ++wrong; if (branch(14, 0xFFFF, v)) ++ok; else ++wrong; if (branch(15, 0xFFFF, v)) ++ok; else ++wrong; if (wrong != 0 || ok != 16) printf("FAILED\n"); else printf("OK\n"); } void tmll_all_selected_bits_set_1(void) { int wrong, ok; unsigned long v; printf("Test #3 mask == 0xFFFF, value == 0xFFFF --> cc == 3\n"); v = 0xFFFF; wrong = ok = 0; if (branch(0, 0xFFFF, v)) ++wrong; else ++ok; if (branch(1, 0xFFFF, v)) ++ok; else ++wrong; if (branch(2, 0xFFFF, v)) ++wrong; else ++ok; if (branch(3, 0xFFFF, v)) ++ok; else ++wrong; if (branch(4, 0xFFFF, v)) ++wrong; else ++ok; if (branch(5, 0xFFFF, v)) ++ok; else ++wrong; if (branch(6, 0xFFFF, v)) ++wrong; else ++ok; if (branch(7, 0xFFFF, v)) ++ok; else ++wrong; if (branch(8, 0xFFFF, v)) ++wrong; else ++ok; if (branch(9, 0xFFFF, v)) ++ok; else ++wrong; if (branch(10, 0xFFFF, v)) ++wrong; else ++ok; if (branch(11, 0xFFFF, v)) ++ok; else ++wrong; if (branch(12, 0xFFFF, v)) ++wrong; else ++ok; if (branch(13, 0xFFFF, v)) ++ok; else ++wrong; if (branch(14, 0xFFFF, v)) ++wrong; else ++ok; if (branch(15, 0xFFFF, v)) ++ok; else ++wrong; if (wrong != 0 || ok != 16) printf("FAILED\n"); else printf("OK\n"); } void tmll_all_selected_bits_set_2(void) { int wrong, ok; unsigned long v; printf("Test #4 mask == 0x8000, value == 0x8000 --> cc == 3\n"); v = 0x8000; wrong = ok = 0; if (branch(0, 0x8000, v)) ++wrong; else ++ok; if (branch(1, 0x8000, v)) ++ok; else ++wrong; if (branch(2, 0x8000, v)) ++wrong; else ++ok; if (branch(3, 0x8000, v)) ++ok; else ++wrong; if (branch(4, 0x8000, v)) ++wrong; else ++ok; if (branch(5, 0x8000, v)) ++ok; else ++wrong; if (branch(6, 0x8000, v)) ++wrong; else ++ok; if (branch(7, 0x8000, v)) ++ok; else ++wrong; if (branch(8, 0x8000, v)) ++wrong; else ++ok; if (branch(9, 0x8000, v)) ++ok; else ++wrong; if (branch(10, 0x8000, v)) ++wrong; else ++ok; if (branch(11, 0x8000, v)) ++ok; else ++wrong; if (branch(12, 0x8000, v)) ++wrong; else ++ok; if (branch(13, 0x8000, v)) ++ok; else ++wrong; if (branch(14, 0x8000, v)) ++wrong; else ++ok; if (branch(15, 0x8000, v)) ++ok; else ++wrong; if (wrong != 0 || ok != 16) printf("FAILED\n"); else printf("OK\n"); } void tmll_some_selected_bits_set_msb_set(void) { int wrong, ok; unsigned long v; printf("Test #5 mask == 0xF000, value == 0x9000 --> cc == 2\n"); v = 0x9000; wrong = ok = 0; if (branch(0, 0xF000, v)) ++wrong; else ++ok; if (branch(1, 0xF000, v)) ++wrong; else ++ok; if (branch(2, 0xF000, v)) ++ok; else ++wrong; if (branch(3, 0xF000, v)) ++ok; else ++wrong; if (branch(4, 0xF000, v)) ++wrong; else ++ok; if (branch(5, 0xF000, v)) ++wrong; else ++ok; if (branch(6, 0xF000, v)) ++ok; else ++wrong; if (branch(7, 0xF000, v)) ++ok; else ++wrong; if (branch(8, 0xF000, v)) ++wrong; else ++ok; if (branch(9, 0xF000, v)) ++wrong; else ++ok; if (branch(10, 0xF000, v)) ++ok; else ++wrong; if (branch(11, 0xF000, v)) ++ok; else ++wrong; if (branch(12, 0xF000, v)) ++wrong; else ++ok; if (branch(13, 0xF000, v)) ++wrong; else ++ok; if (branch(14, 0xF000, v)) ++ok; else ++wrong; if (branch(15, 0xF000, v)) ++ok; else ++wrong; if (wrong != 0 || ok != 16) printf("FAILED\n"); else printf("OK\n"); } void tmll_some_selected_bits_set_msb_not_set(void) { int wrong, ok; unsigned long v; printf("Test #6 mask == 0xF000, value == 0x3000 --> cc == 1\n"); v = 0x3000; wrong = ok = 0; if (branch(0, 0xF000, v)) ++wrong; else ++ok; if (branch(1, 0xF000, v)) ++wrong; else ++ok; if (branch(2, 0xF000, v)) ++wrong; else ++ok; if (branch(3, 0xF000, v)) ++wrong; else ++ok; if (branch(4, 0xF000, v)) ++ok; else ++wrong; if (branch(5, 0xF000, v)) ++ok; else ++wrong; if (branch(6, 0xF000, v)) ++ok; else ++wrong; if (branch(7, 0xF000, v)) ++ok; else ++wrong; if (branch(8, 0xF000, v)) ++wrong; else ++ok; if (branch(9, 0xF000, v)) ++wrong; else ++ok; if (branch(10, 0xF000, v)) ++wrong; else ++ok; if (branch(11, 0xF000, v)) ++wrong; else ++ok; if (branch(12, 0xF000, v)) ++ok; else ++wrong; if (branch(13, 0xF000, v)) ++ok; else ++wrong; if (branch(14, 0xF000, v)) ++ok; else ++wrong; if (branch(15, 0xF000, v)) ++ok; else ++wrong; if (wrong != 0 || ok != 16) printf("FAILED\n"); else printf("OK\n"); } int main() { tmll_mask_0(); tmll_value_0(); tmll_all_selected_bits_set_1(); tmll_all_selected_bits_set_2(); tmll_some_selected_bits_set_msb_set(); tmll_some_selected_bits_set_msb_not_set(); return 0; }
the_stack_data/725622.c
/* f2c.h -- Standard Fortran to C header file */ /** barf [ba:rf] 2. "He suggested using FORTRAN, and everybody barfed." - From The Shogakukan DICTIONARY OF NEW ENGLISH (Second edition) */ #ifndef F2C_INCLUDE #define F2C_INCLUDE #include <math.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <complex.h> #ifdef complex #undef complex #endif #ifdef I #undef I #endif typedef int integer; typedef unsigned int uinteger; typedef char *address; typedef short int shortint; typedef float real; typedef double doublereal; typedef struct { real r, i; } complex; typedef struct { doublereal r, i; } doublecomplex; static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;} static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;} static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;} static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;} #define pCf(z) (*_pCf(z)) #define pCd(z) (*_pCd(z)) typedef int logical; typedef short int shortlogical; typedef char logical1; typedef char integer1; #define TRUE_ (1) #define FALSE_ (0) /* Extern is for use with -E */ #ifndef Extern #define Extern extern #endif /* I/O stuff */ typedef int flag; typedef int ftnlen; typedef int ftnint; /*external read, write*/ typedef struct { flag cierr; ftnint ciunit; flag ciend; char *cifmt; ftnint cirec; } cilist; /*internal read, write*/ typedef struct { flag icierr; char *iciunit; flag iciend; char *icifmt; ftnint icirlen; ftnint icirnum; } icilist; /*open*/ typedef struct { flag oerr; ftnint ounit; char *ofnm; ftnlen ofnmlen; char *osta; char *oacc; char *ofm; ftnint orl; char *oblnk; } olist; /*close*/ typedef struct { flag cerr; ftnint cunit; char *csta; } cllist; /*rewind, backspace, endfile*/ typedef struct { flag aerr; ftnint aunit; } alist; /* inquire */ typedef struct { flag inerr; ftnint inunit; char *infile; ftnlen infilen; ftnint *inex; /*parameters in standard's order*/ ftnint *inopen; ftnint *innum; ftnint *innamed; char *inname; ftnlen innamlen; char *inacc; ftnlen inacclen; char *inseq; ftnlen inseqlen; char *indir; ftnlen indirlen; char *infmt; ftnlen infmtlen; char *inform; ftnint informlen; char *inunf; ftnlen inunflen; ftnint *inrecl; ftnint *innrec; char *inblank; ftnlen inblanklen; } inlist; #define VOID void union Multitype { /* for multiple entry points */ integer1 g; shortint h; integer i; /* longint j; */ real r; doublereal d; complex c; doublecomplex z; }; typedef union Multitype Multitype; struct Vardesc { /* for Namelist */ char *name; char *addr; ftnlen *dims; int type; }; typedef struct Vardesc Vardesc; struct Namelist { char *name; Vardesc **vars; int nvars; }; typedef struct Namelist Namelist; #define abs(x) ((x) >= 0 ? (x) : -(x)) #define dabs(x) (fabs(x)) #define f2cmin(a,b) ((a) <= (b) ? (a) : (b)) #define f2cmax(a,b) ((a) >= (b) ? (a) : (b)) #define dmin(a,b) (f2cmin(a,b)) #define dmax(a,b) (f2cmax(a,b)) #define bit_test(a,b) ((a) >> (b) & 1) #define bit_clear(a,b) ((a) & ~((uinteger)1 << (b))) #define bit_set(a,b) ((a) | ((uinteger)1 << (b))) #define abort_() { sig_die("Fortran abort routine called", 1); } #define c_abs(z) (cabsf(Cf(z))) #define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); } #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);} #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);} #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));} #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));} #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));} //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));} #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));} #define d_abs(x) (fabs(*(x))) #define d_acos(x) (acos(*(x))) #define d_asin(x) (asin(*(x))) #define d_atan(x) (atan(*(x))) #define d_atn2(x, y) (atan2(*(x),*(y))) #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); } #define r_cnjg(R, Z) { pCf(R) = conj(Cf(Z)); } #define d_cos(x) (cos(*(x))) #define d_cosh(x) (cosh(*(x))) #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 ) #define d_exp(x) (exp(*(x))) #define d_imag(z) (cimag(Cd(z))) #define r_imag(z) (cimag(Cf(z))) #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x))) #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x))) #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) ) #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) ) #define d_log(x) (log(*(x))) #define d_mod(x, y) (fmod(*(x), *(y))) #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x))) #define d_nint(x) u_nint(*(x)) #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a))) #define d_sign(a,b) u_sign(*(a),*(b)) #define r_sign(a,b) u_sign(*(a),*(b)) #define d_sin(x) (sin(*(x))) #define d_sinh(x) (sinh(*(x))) #define d_sqrt(x) (sqrt(*(x))) #define d_tan(x) (tan(*(x))) #define d_tanh(x) (tanh(*(x))) #define i_abs(x) abs(*(x)) #define i_dnnt(x) ((integer)u_nint(*(x))) #define i_len(s, n) (n) #define i_nint(x) ((integer)u_nint(*(x))) #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b))) #define pow_dd(ap, bp) ( pow(*(ap), *(bp))) #define pow_si(B,E) spow_ui(*(B),*(E)) #define pow_ri(B,E) spow_ui(*(B),*(E)) #define pow_di(B,E) dpow_ui(*(B),*(E)) #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));} #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));} #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));} #define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; } #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d)))) #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; } #define sig_die(s, kill) { exit(1); } #define s_stop(s, n) {exit(0);} static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n"; #define z_abs(z) (cabs(Cd(z))) #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));} #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));} #define myexit_() break; #define mycycle() continue; #define myceiling(w) {ceil(w)} #define myhuge(w) {HUGE_VAL} //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);} #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)} /* procedure parameter types for -A and -C++ */ #define F2C_proc_par_types 1 #ifdef __cplusplus typedef logical (*L_fp)(...); #else typedef logical (*L_fp)(); #endif static float spow_ui(float x, integer n) { float pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static double dpow_ui(double x, integer n) { double pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static _Complex float cpow_ui(_Complex float x, integer n) { _Complex float pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static _Complex double zpow_ui(_Complex double x, integer n) { _Complex double pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static integer pow_ii(integer x, integer n) { integer pow; unsigned long int u; if (n <= 0) { if (n == 0 || x == 1) pow = 1; else if (x != -1) pow = x == 0 ? 1/x : 0; else n = -n; } if ((n > 0) || !(n == 0 || x == 1 || x != -1)) { u = n; for(pow = 1; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static integer dmaxloc_(double *w, integer s, integer e, integer *n) { double m; integer i, mi; for(m=w[s-1], mi=s, i=s+1; i<=e; i++) if (w[i-1]>m) mi=i ,m=w[i-1]; return mi-s+1; } static integer smaxloc_(float *w, integer s, integer e, integer *n) { float m; integer i, mi; for(m=w[s-1], mi=s, i=s+1; i<=e; i++) if (w[i-1]>m) mi=i ,m=w[i-1]; return mi-s+1; } static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _Complex float zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conjf(Cf(&x[i])) * Cf(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]); } } pCf(z) = zdotc; } static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _Complex double zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conj(Cd(&x[i])) * Cd(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]); } } pCd(z) = zdotc; } static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _Complex float zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cf(&x[i]) * Cf(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]); } } pCf(z) = zdotc; } static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _Complex double zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cd(&x[i]) * Cd(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]); } } pCd(z) = zdotc; } #endif /* -- translated by f2c (version 20000121). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ /* > \brief \b ZTRTTF copies a triangular matrix from the standard full format (TR) to the rectangular full pa cked format (TF). */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download ZTRTTF + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ztrttf. f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ztrttf. f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ztrttf. f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE ZTRTTF( TRANSR, UPLO, N, A, LDA, ARF, INFO ) */ /* CHARACTER TRANSR, UPLO */ /* INTEGER INFO, N, LDA */ /* COMPLEX*16 A( 0: LDA-1, 0: * ), ARF( 0: * ) */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > ZTRTTF copies a triangular matrix A from standard full format (TR) */ /* > to rectangular full packed format (TF) . */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] TRANSR */ /* > \verbatim */ /* > TRANSR is CHARACTER*1 */ /* > = 'N': ARF in Normal mode is wanted; */ /* > = 'C': ARF in Conjugate Transpose mode is wanted; */ /* > \endverbatim */ /* > */ /* > \param[in] UPLO */ /* > \verbatim */ /* > UPLO is CHARACTER*1 */ /* > = 'U': A is upper triangular; */ /* > = 'L': A is lower triangular. */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER */ /* > The order of the matrix A. N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] A */ /* > \verbatim */ /* > A is COMPLEX*16 array, dimension ( LDA, N ) */ /* > On entry, the triangular matrix A. If UPLO = 'U', the */ /* > leading N-by-N upper triangular part of the array A contains */ /* > the upper triangular matrix, and the strictly lower */ /* > triangular part of A is not referenced. If UPLO = 'L', the */ /* > leading N-by-N lower triangular part of the array A contains */ /* > the lower triangular matrix, and the strictly upper */ /* > triangular part of A is not referenced. */ /* > \endverbatim */ /* > */ /* > \param[in] LDA */ /* > \verbatim */ /* > LDA is INTEGER */ /* > The leading dimension of the matrix A. LDA >= f2cmax(1,N). */ /* > \endverbatim */ /* > */ /* > \param[out] ARF */ /* > \verbatim */ /* > ARF is COMPLEX*16 array, dimension ( N*(N+1)/2 ), */ /* > On exit, the upper or lower triangular matrix A stored in */ /* > RFP format. For a further discussion see Notes below. */ /* > \endverbatim */ /* > */ /* > \param[out] INFO */ /* > \verbatim */ /* > INFO is INTEGER */ /* > = 0: successful exit */ /* > < 0: if INFO = -i, the i-th argument had an illegal value */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date December 2016 */ /* > \ingroup complex16OTHERcomputational */ /* > \par Further Details: */ /* ===================== */ /* > */ /* > \verbatim */ /* > */ /* > We first consider Standard Packed Format when N is even. */ /* > We give an example where N = 6. */ /* > */ /* > AP is Upper AP is Lower */ /* > */ /* > 00 01 02 03 04 05 00 */ /* > 11 12 13 14 15 10 11 */ /* > 22 23 24 25 20 21 22 */ /* > 33 34 35 30 31 32 33 */ /* > 44 45 40 41 42 43 44 */ /* > 55 50 51 52 53 54 55 */ /* > */ /* > */ /* > Let TRANSR = 'N'. RFP holds AP as follows: */ /* > For UPLO = 'U' the upper trapezoid A(0:5,0:2) consists of the last */ /* > three columns of AP upper. The lower triangle A(4:6,0:2) consists of */ /* > conjugate-transpose of the first three columns of AP upper. */ /* > For UPLO = 'L' the lower trapezoid A(1:6,0:2) consists of the first */ /* > three columns of AP lower. The upper triangle A(0:2,0:2) consists of */ /* > conjugate-transpose of the last three columns of AP lower. */ /* > To denote conjugate we place -- above the element. This covers the */ /* > case N even and TRANSR = 'N'. */ /* > */ /* > RFP A RFP A */ /* > */ /* > -- -- -- */ /* > 03 04 05 33 43 53 */ /* > -- -- */ /* > 13 14 15 00 44 54 */ /* > -- */ /* > 23 24 25 10 11 55 */ /* > */ /* > 33 34 35 20 21 22 */ /* > -- */ /* > 00 44 45 30 31 32 */ /* > -- -- */ /* > 01 11 55 40 41 42 */ /* > -- -- -- */ /* > 02 12 22 50 51 52 */ /* > */ /* > Now let TRANSR = 'C'. RFP A in both UPLO cases is just the conjugate- */ /* > transpose of RFP A above. One therefore gets: */ /* > */ /* > */ /* > RFP A RFP A */ /* > */ /* > -- -- -- -- -- -- -- -- -- -- */ /* > 03 13 23 33 00 01 02 33 00 10 20 30 40 50 */ /* > -- -- -- -- -- -- -- -- -- -- */ /* > 04 14 24 34 44 11 12 43 44 11 21 31 41 51 */ /* > -- -- -- -- -- -- -- -- -- -- */ /* > 05 15 25 35 45 55 22 53 54 55 22 32 42 52 */ /* > */ /* > */ /* > We next consider Standard Packed Format when N is odd. */ /* > We give an example where N = 5. */ /* > */ /* > AP is Upper AP is Lower */ /* > */ /* > 00 01 02 03 04 00 */ /* > 11 12 13 14 10 11 */ /* > 22 23 24 20 21 22 */ /* > 33 34 30 31 32 33 */ /* > 44 40 41 42 43 44 */ /* > */ /* > */ /* > Let TRANSR = 'N'. RFP holds AP as follows: */ /* > For UPLO = 'U' the upper trapezoid A(0:4,0:2) consists of the last */ /* > three columns of AP upper. The lower triangle A(3:4,0:1) consists of */ /* > conjugate-transpose of the first two columns of AP upper. */ /* > For UPLO = 'L' the lower trapezoid A(0:4,0:2) consists of the first */ /* > three columns of AP lower. The upper triangle A(0:1,1:2) consists of */ /* > conjugate-transpose of the last two columns of AP lower. */ /* > To denote conjugate we place -- above the element. This covers the */ /* > case N odd and TRANSR = 'N'. */ /* > */ /* > RFP A RFP A */ /* > */ /* > -- -- */ /* > 02 03 04 00 33 43 */ /* > -- */ /* > 12 13 14 10 11 44 */ /* > */ /* > 22 23 24 20 21 22 */ /* > -- */ /* > 00 33 34 30 31 32 */ /* > -- -- */ /* > 01 11 44 40 41 42 */ /* > */ /* > Now let TRANSR = 'C'. RFP A in both UPLO cases is just the conjugate- */ /* > transpose of RFP A above. One therefore gets: */ /* > */ /* > */ /* > RFP A RFP A */ /* > */ /* > -- -- -- -- -- -- -- -- -- */ /* > 02 12 22 00 01 00 10 20 30 40 50 */ /* > -- -- -- -- -- -- -- -- -- */ /* > 03 13 23 33 11 33 11 21 31 41 51 */ /* > -- -- -- -- -- -- -- -- -- */ /* > 04 14 24 34 44 43 44 22 32 42 52 */ /* > \endverbatim */ /* > */ /* ===================================================================== */ /* Subroutine */ int ztrttf_(char *transr, char *uplo, integer *n, doublecomplex *a, integer *lda, doublecomplex *arf, integer *info) { /* System generated locals */ integer a_dim1, a_offset, i__1, i__2, i__3, i__4; doublecomplex z__1; /* Local variables */ integer np1x2, i__, j, k, l; logical normaltransr; extern logical lsame_(char *, char *); logical lower; integer n1, n2, ij, nt; extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen); logical nisodd; integer nx2; /* -- LAPACK computational routine (version 3.7.0) -- */ /* -- LAPACK is a software package provided by Univ. of Tennessee, -- */ /* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */ /* December 2016 */ /* ===================================================================== */ /* Test the input parameters. */ /* Parameter adjustments */ a_dim1 = *lda - 1 - 0 + 1; a_offset = 0 + a_dim1 * 0; a -= a_offset; /* Function Body */ *info = 0; normaltransr = lsame_(transr, "N"); lower = lsame_(uplo, "L"); if (! normaltransr && ! lsame_(transr, "C")) { *info = -1; } else if (! lower && ! lsame_(uplo, "U")) { *info = -2; } else if (*n < 0) { *info = -3; } else if (*lda < f2cmax(1,*n)) { *info = -5; } if (*info != 0) { i__1 = -(*info); xerbla_("ZTRTTF", &i__1, (ftnlen)6); return 0; } /* Quick return if possible */ if (*n <= 1) { if (*n == 1) { if (normaltransr) { arf[0].r = a[0].r, arf[0].i = a[0].i; } else { d_cnjg(&z__1, a); arf[0].r = z__1.r, arf[0].i = z__1.i; } } return 0; } /* Size of array ARF(1:2,0:nt-1) */ nt = *n * (*n + 1) / 2; /* set N1 and N2 depending on LOWER: for N even N1=N2=K */ if (lower) { n2 = *n / 2; n1 = *n - n2; } else { n1 = *n / 2; n2 = *n - n1; } /* If N is odd, set NISODD = .TRUE., LDA=N+1 and A is (N+1)--by--K2. */ /* If N is even, set K = N/2 and NISODD = .FALSE., LDA=N and A is */ /* N--by--(N+1)/2. */ if (*n % 2 == 0) { k = *n / 2; nisodd = FALSE_; if (! lower) { np1x2 = *n + *n + 2; } } else { nisodd = TRUE_; if (! lower) { nx2 = *n + *n; } } if (nisodd) { /* N is odd */ if (normaltransr) { /* N is odd and TRANSR = 'N' */ if (lower) { /* SRPA for LOWER, NORMAL and N is odd ( a(0:n-1,0:n1-1) ) */ /* T1 -> a(0,0), T2 -> a(0,1), S -> a(n1,0) */ /* T1 -> a(0), T2 -> a(n), S -> a(n1); lda=n */ ij = 0; i__1 = n2; for (j = 0; j <= i__1; ++j) { i__2 = n2 + j; for (i__ = n1; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[n2 + j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } i__2 = *n - 1; for (i__ = j; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + j * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } } } else { /* SRPA for UPPER, NORMAL and N is odd ( a(0:n-1,0:n2-1) */ /* T1 -> a(n1+1,0), T2 -> a(n1,0), S -> a(0,0) */ /* T1 -> a(n2), T2 -> a(n1), S -> a(0); lda=n */ ij = nt - *n; i__1 = n1; for (j = *n - 1; j >= i__1; --j) { i__2 = j; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + j * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } i__2 = n1 - 1; for (l = j - n1; l <= i__2; ++l) { i__3 = ij; d_cnjg(&z__1, &a[j - n1 + l * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } ij -= nx2; } } } else { /* N is odd and TRANSR = 'C' */ if (lower) { /* SRPA for LOWER, TRANSPOSE and N is odd */ /* T1 -> A(0,0) , T2 -> A(1,0) , S -> A(0,n1) */ /* T1 -> A(0+0) , T2 -> A(1+0) , S -> A(0+n1*n1); lda=n1 */ ij = 0; i__1 = n2 - 1; for (j = 0; j <= i__1; ++j) { i__2 = j; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } i__2 = *n - 1; for (i__ = n1 + j; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + (n1 + j) * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } } i__1 = *n - 1; for (j = n2; j <= i__1; ++j) { i__2 = n1 - 1; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } } } else { /* SRPA for UPPER, TRANSPOSE and N is odd */ /* T1 -> A(0,n1+1), T2 -> A(0,n1), S -> A(0,0) */ /* T1 -> A(n2*n2), T2 -> A(n1*n2), S -> A(0); lda=n2 */ ij = 0; i__1 = n1; for (j = 0; j <= i__1; ++j) { i__2 = *n - 1; for (i__ = n1; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } } i__1 = n1 - 1; for (j = 0; j <= i__1; ++j) { i__2 = j; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + j * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } i__2 = *n - 1; for (l = n2 + j; l <= i__2; ++l) { i__3 = ij; d_cnjg(&z__1, &a[n2 + j + l * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } } } } } else { /* N is even */ if (normaltransr) { /* N is even and TRANSR = 'N' */ if (lower) { /* SRPA for LOWER, NORMAL, and N is even ( a(0:n,0:k-1) ) */ /* T1 -> a(1,0), T2 -> a(0,0), S -> a(k+1,0) */ /* T1 -> a(1), T2 -> a(0), S -> a(k+1); lda=n+1 */ ij = 0; i__1 = k - 1; for (j = 0; j <= i__1; ++j) { i__2 = k + j; for (i__ = k; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[k + j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } i__2 = *n - 1; for (i__ = j; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + j * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } } } else { /* SRPA for UPPER, NORMAL, and N is even ( a(0:n,0:k-1) ) */ /* T1 -> a(k+1,0) , T2 -> a(k,0), S -> a(0,0) */ /* T1 -> a(k+1), T2 -> a(k), S -> a(0); lda=n+1 */ ij = nt - *n - 1; i__1 = k; for (j = *n - 1; j >= i__1; --j) { i__2 = j; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + j * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } i__2 = k - 1; for (l = j - k; l <= i__2; ++l) { i__3 = ij; d_cnjg(&z__1, &a[j - k + l * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } ij -= np1x2; } } } else { /* N is even and TRANSR = 'C' */ if (lower) { /* SRPA for LOWER, TRANSPOSE and N is even (see paper, A=B) */ /* T1 -> A(0,1) , T2 -> A(0,0) , S -> A(0,k+1) : */ /* T1 -> A(0+k) , T2 -> A(0+0) , S -> A(0+k*(k+1)); lda=k */ ij = 0; j = k; i__1 = *n - 1; for (i__ = k; i__ <= i__1; ++i__) { i__2 = ij; i__3 = i__ + j * a_dim1; arf[i__2].r = a[i__3].r, arf[i__2].i = a[i__3].i; ++ij; } i__1 = k - 2; for (j = 0; j <= i__1; ++j) { i__2 = j; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } i__2 = *n - 1; for (i__ = k + 1 + j; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + (k + 1 + j) * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } } i__1 = *n - 1; for (j = k - 1; j <= i__1; ++j) { i__2 = k - 1; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } } } else { /* SRPA for UPPER, TRANSPOSE and N is even (see paper, A=B) */ /* T1 -> A(0,k+1) , T2 -> A(0,k) , S -> A(0,0) */ /* T1 -> A(0+k*(k+1)) , T2 -> A(0+k*k) , S -> A(0+0)); lda=k */ ij = 0; i__1 = k; for (j = 0; j <= i__1; ++j) { i__2 = *n - 1; for (i__ = k; i__ <= i__2; ++i__) { i__3 = ij; d_cnjg(&z__1, &a[j + i__ * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } } i__1 = k - 2; for (j = 0; j <= i__1; ++j) { i__2 = j; for (i__ = 0; i__ <= i__2; ++i__) { i__3 = ij; i__4 = i__ + j * a_dim1; arf[i__3].r = a[i__4].r, arf[i__3].i = a[i__4].i; ++ij; } i__2 = *n - 1; for (l = k + 1 + j; l <= i__2; ++l) { i__3 = ij; d_cnjg(&z__1, &a[k + 1 + j + l * a_dim1]); arf[i__3].r = z__1.r, arf[i__3].i = z__1.i; ++ij; } } /* Note that here J = K-1 */ i__1 = j; for (i__ = 0; i__ <= i__1; ++i__) { i__2 = ij; i__3 = i__ + j * a_dim1; arf[i__2].r = a[i__3].r, arf[i__2].i = a[i__3].i; ++ij; } } } } return 0; /* End of ZTRTTF */ } /* ztrttf_ */
the_stack_data/1055170.c
/* Name - Nikhil Ranjan Nayak Regd No - 1641012040 Desc - Barcode Scanner. */ #include <stdio.h> #define MAX 12 int sum_odd(int[]); int sum_even(int[]); void main() { int i, sum, check_digit; int codes[] = {0, 1, 1, 1, 1, 0, 8, 5, 6, 8, 0, 7}; //{0, 2, 4, 0, 0, 0, 1, 6, 2, 8, 6, 0}; //{0, 1, 1, 1, 1, 0, 8, 5, 6, 8, 0, 7}; //{0, 7, 9, 4, 0, 0, 8, 0, 4, 5, 0, 1}; //{0, 5, 1, 0, 0, 0, 1, 3, 8, 1, 0, 1}; /* printf("\nEnter the 12 digit barcode - "); for(i = 1; i < MAX; i+=2) { scanf("%d ", &codes[i]); } */ printf("\nStep 1 - "); sum = sum_odd(codes); printf("\nResult - %d", sum); printf("\nStep 2 - "); sum = (sum_odd(codes) * 3) + sum_even(codes); printf("\nResult - %d", sum); if((sum % 10) == 0) check_digit = 0; else check_digit = 10 - (sum % 10); printf("\n"); for(i = 0; i < MAX; i++) { printf("%d ", codes[i]); } if(codes[MAX - 1] == check_digit) printf("\nvalidated.\n"); else printf("\nerror in barcode.\n"); } int sum_odd(int A[]) { int i, sum = 0; printf("("); for(i = 0; i < MAX; i+=2) { sum += A[i]; printf("%d ", A[i]); } printf(") * 3"); return sum; } int sum_even(int A[]) { int i, sum = 0; printf(" + ("); for(i = 1; i < MAX - 1; i+=2) { sum += A[i]; printf("%d ", A[i]); } printf(")"); return sum; }
the_stack_data/90764442.c
#include <stdio.h> void scilab_rt_contour_d2d2i2d2d0d0s0d2i2i0_(int in00, int in01, double matrixin0[in00][in01], int in10, int in11, double matrixin1[in10][in11], int in20, int in21, int matrixin2[in20][in21], int in30, int in31, double matrixin3[in30][in31], double scalarin0, double scalarin1, char* scalarin2, int in40, int in41, double matrixin4[in40][in41], int in50, int in51, int matrixin5[in50][in51], int scalarin3) { int i; int j; double val0 = 0; double val1 = 0; int val2 = 0; double val3 = 0; double val4 = 0; int val5 = 0; for (i = 0; i < in00; ++i) { for (j = 0; j < in01; ++j) { val0 += matrixin0[i][j]; } } printf("%f", val0); for (i = 0; i < in10; ++i) { for (j = 0; j < in11; ++j) { val1 += matrixin1[i][j]; } } printf("%f", val1); for (i = 0; i < in20; ++i) { for (j = 0; j < in21; ++j) { val2 += matrixin2[i][j]; } } printf("%d", val2); for (i = 0; i < in30; ++i) { for (j = 0; j < in31; ++j) { val3 += matrixin3[i][j]; } } printf("%f", val3); printf("%f", scalarin0); printf("%f", scalarin1); printf("%s", scalarin2); for (i = 0; i < in40; ++i) { for (j = 0; j < in41; ++j) { val4 += matrixin4[i][j]; } } printf("%f", val4); for (i = 0; i < in50; ++i) { for (j = 0; j < in51; ++j) { val5 += matrixin5[i][j]; } } printf("%d", val5); printf("%d", scalarin3); }
the_stack_data/48574741.c
// RUN: rm -rf %t* // RUN: 3c -base-dir=%S -alltypes -addcr %s -- | FileCheck -match-full-lines -check-prefixes="CHECK_ALL","CHECK" %s // RUN: 3c -base-dir=%S -addcr %s -- | FileCheck -match-full-lines -check-prefixes="CHECK_NOALL","CHECK" %s // RUN: 3c -base-dir=%S -addcr %s -- | %clang -c -fcheckedc-extension -x c -o /dev/null - // RUN: 3c -base-dir=%S -alltypes -output-dir=%t.checked %s -- // RUN: 3c -base-dir=%t.checked -alltypes %t.checked/fptrsafeprotocaller.c -- | diff %t.checked/fptrsafeprotocaller.c - /******************************************************************************/ /*This file tests three functions: two callers bar and foo, and a callee sus*/ /*In particular, this file tests: converting the callee into a function pointer and then using that pointer for computations*/ /*For robustness, this test is identical to fptrsafecaller.c except in that a prototype for sus is available, and is called by foo and bar, while the definition for sus appears below them*/ /*In this test, foo and sus will treat their return values safely, but bar will not, through invalid pointer arithmetic, an unsafe cast, etc.*/ /******************************************************************************/ #include <stddef.h> #include <stdlib.h> #include <stdio.h> #include <string.h> struct general { int data; struct general *next; //CHECK: _Ptr<struct general> next; }; struct warr { int data1[5]; //CHECK_NOALL: int data1[5]; //CHECK_ALL: int data1 _Checked[5]; char *name; //CHECK: _Ptr<char> name; }; struct fptrarr { int *values; //CHECK: _Ptr<int> values; char *name; //CHECK: _Ptr<char> name; int (*mapper)(int); //CHECK: _Ptr<int (int)> mapper; }; struct fptr { int *value; //CHECK: _Ptr<int> value; int (*func)(int); //CHECK: _Ptr<int (int)> func; }; struct arrfptr { int args[5]; //CHECK_NOALL: int args[5]; //CHECK_ALL: int args _Checked[5]; int (*funcs[5])(int); //CHECK_NOALL: int (*funcs[5])(int); //CHECK_ALL: _Ptr<int (int)> funcs _Checked[5]; }; int add1(int x) { //CHECK: int add1(int x) _Checked { return x + 1; } int sub1(int x) { //CHECK: int sub1(int x) _Checked { return x - 1; } int fact(int n) { //CHECK: int fact(int n) _Checked { if (n == 0) { return 1; } return n * fact(n - 1); } int fib(int n) { //CHECK: int fib(int n) _Checked { if (n == 0) { return 0; } if (n == 1) { return 1; } return fib(n - 1) + fib(n - 2); } int zerohuh(int n) { //CHECK: int zerohuh(int n) _Checked { return !n; } int *mul2(int *x) { //CHECK: _Ptr<int> mul2(_Ptr<int> x) _Checked { *x *= 2; return x; } int *sus(struct general *, struct general *); //CHECK_NOALL: int *sus(struct general *x : itype(_Ptr<struct general>), _Ptr<struct general> y) : itype(_Ptr<int>); //CHECK_ALL: _Array_ptr<int> sus(struct general *x : itype(_Ptr<struct general>), _Ptr<struct general> y); int *foo() { //CHECK_NOALL: _Ptr<int> foo(void) { //CHECK_ALL: _Array_ptr<int> foo(void) { struct general *x = malloc(sizeof(struct general)); //CHECK: _Ptr<struct general> x = malloc<struct general>(sizeof(struct general)); struct general *y = malloc(sizeof(struct general)); //CHECK: _Ptr<struct general> y = malloc<struct general>(sizeof(struct general)); struct general *curr = y; //CHECK: _Ptr<struct general> curr = y; int i; for (i = 1; i < 5; i++, curr = curr->next) { curr->data = i; curr->next = malloc(sizeof(struct general)); curr->next->data = i + 1; } int *(*sus_ptr)(struct general *, struct general *) = sus; //CHECK_NOALL: _Ptr<int *(struct general * : itype(_Ptr<struct general>), _Ptr<struct general>) : itype(_Ptr<int>)> sus_ptr = sus; //CHECK_ALL: _Ptr<_Array_ptr<int> (struct general * : itype(_Ptr<struct general>), _Ptr<struct general>)> sus_ptr = sus; int *z = sus_ptr(x, y); //CHECK_NOALL: _Ptr<int> z = sus_ptr(x, y); //CHECK_ALL: _Array_ptr<int> z = sus_ptr(x, y); return z; } int *bar() { //CHECK_NOALL: int *bar(void) : itype(_Ptr<int>) { //CHECK_ALL: _Array_ptr<int> bar(void) { struct general *x = malloc(sizeof(struct general)); //CHECK: _Ptr<struct general> x = malloc<struct general>(sizeof(struct general)); struct general *y = malloc(sizeof(struct general)); //CHECK: _Ptr<struct general> y = malloc<struct general>(sizeof(struct general)); struct general *curr = y; //CHECK: _Ptr<struct general> curr = y; int i; for (i = 1; i < 5; i++, curr = curr->next) { curr->data = i; curr->next = malloc(sizeof(struct general)); curr->next->data = i + 1; } int *(*sus_ptr)(struct general *, struct general *) = sus; //CHECK_NOALL: _Ptr<int *(struct general * : itype(_Ptr<struct general>), _Ptr<struct general>) : itype(_Ptr<int>)> sus_ptr = sus; //CHECK_ALL: _Ptr<_Array_ptr<int> (struct general * : itype(_Ptr<struct general>), _Ptr<struct general>)> sus_ptr = sus; int *z = sus_ptr(x, y); //CHECK_NOALL: int *z = sus_ptr(x, y); //CHECK_ALL: _Array_ptr<int> z = sus_ptr(x, y); z += 2; return z; } int *sus(struct general *x, struct general *y) { //CHECK_NOALL: int *sus(struct general *x : itype(_Ptr<struct general>), _Ptr<struct general> y) : itype(_Ptr<int>) { //CHECK_ALL: _Array_ptr<int> sus(struct general *x : itype(_Ptr<struct general>), _Ptr<struct general> y) { x = (struct general *)5; //CHECK: x = (struct general *)5; int *z = calloc(5, sizeof(int)); //CHECK_NOALL: int *z = calloc<int>(5, sizeof(int)); //CHECK_ALL: _Array_ptr<int> z : count(5) = calloc<int>(5, sizeof(int)); struct general *p = y; //CHECK: _Ptr<struct general> p = y; int i; for (i = 0; i < 5; p = p->next, i++) { //CHECK_NOALL: for (i = 0; i < 5; p = p->next, i++) { //CHECK_ALL: for (i = 0; i < 5; p = p->next, i++) _Checked { z[i] = p->data; } return z; }
the_stack_data/159514682.c
/* Test Package: Codegen Author: Pikachu Time: 2020-02-03 Input: === input === 3 njfngnrurunrgunrunvurn jfvnjfdnvjdbfvsbdubruvbubvkdb ksdnvidnviudbvibd === end === Output: === output === n20n j27b k15d === end === ExitCode: 0 InstLimit: -1 Origin Package: Codeforces 71A #53307259 */ #include<stdio.h> #include<string.h> int main(){ int t,l; char s[100]; scanf("%d",&t); while(t--){ scanf("%s",s); l = strlen(s); if(l > 10) printf("%c%d%c\n",s[0],l-2,s[l-1]); else printf("%s\n",s); } }
the_stack_data/1184249.c
#include<stdio.h> #define MS 100 #define visited 1 #define unvisited 0 int state[MS]; int adj[MS][MS]; int stack[MS]; int top=-1; int i,j; void push(int vertex) { stack[++top]=vertex; } int pop() { int vertex=stack[top--]; return vertex; } int isempty() { if(top==-1) return 1; return 0; } int peek() { return stack[top]; } void creategraph(int v) { printf("input adj matrix : \n"); for(i=0;i<v;i++) { for(j=0;j<v;j++) { scanf("%d",&adj[i][j]); } } printf("inputed adj matrix : \n"); for(i=0;i<v;i++) { for(j=0;j<v;j++) { printf("%d ",adj[i][j]); } printf("\n"); } } void DFS_traversal(int v) { int start; for(i=0;i<v;i++) { state[i]=unvisited; } printf("enter the start point : "); scanf("%d",&start); DFS(v,start); } void DFS(int v,int start) { int top_vert; printf("DFS traversal : "); printf("%d ",start); state[start]=visited; push(start); while(!isempty()) { top_vert=peek(); for(i=0;i<v;i++) { if(adj[top_vert][i]==1 && state[i]!=visited) { push(i); printf("%d ",i); state[i]=visited; break; } } if(i==v) { pop(); } } } int main() { int n; printf("Enter how many vertices : "); scanf("%d",&n); creategraph(n); DFS_traversal(n); } /* 0 1 0 1 0 1 0 1 1 0 0 1 0 0 1 1 1 0 0 1 0 0 1 1 0 */
the_stack_data/314800.c
#include <stdlib.h> #include <stdio.h> int main() { int* A = malloc(sizeof(int)); A[0] = 0; /* ok - A[0] is like *A */ A[1] = 1; /* error - not allocated */ A[317] = 29; /* error - not allocated */ A[-1] = 32; /* error - not allocated(!) */ printf("A[-1] = %d\n", A[-1]); return 0; }
the_stack_data/35629.c
/* * lifted from: * https://github.com/torvalds/linux/blob/master/lib/string.c * * was easier than linking in `libc` appropriately * */ #include <string.h> size_t strspn(const char *s, const char *accept) { const char *p; const char *a; size_t count = 0; for (p = s; *p != '\0'; ++p) { for (a = accept; *a != '\0'; ++a) { if (*p == *a) break; } if (*a == '\0') return count; ++count; } return count; } size_t strcspn(const char *s, const char *reject) { const char *p; const char *r; size_t count = 0; for (p = s; *p != '\0'; ++p) { for (r = reject; *r != '\0'; ++r) { if (*p == *r) return count; } ++count; } return count; } size_t strlen(const char *s) { const char *sc; for (sc = s; *sc != '\0'; ++sc) /* nothing */; return sc - s; } char *strchr(const char *s, int c) { for (; *s != (char)c; ++s) if (*s == '\0') return NULL; return (char *)s; }
the_stack_data/275237.c
/* coeff.c ======= */ /* LICENSE AND DISCLAIMER Copyright (c) 2012 The Johns Hopkins University/Applied Physics Laboratory This file is part of the Radar Software Toolkit (RST). RST 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 3 of the License, or any later version. RST 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 RST. If not, see <http://www.gnu.org/licenses/>. */ struct { double coef[121][3][5][2]; } sph_harm_model= { { { { {2.61587290e-02,-2.10933560e-02},{-3.03028400e-02,1.74480090e-02}, {3.01418140e-02,-1.04081550e-02},{-2.05068130e-02,3.37942510e-03}, {6.47421370e-03,-3.11898110e-04} }, { {1.20145980e-02,1.54252700e-02},{-2.89349990e-03,-1.90267380e-02}, {-1.30951220e-02,1.92100320e-02},{2.03915920e-02,-1.33685480e-02}, {-9.65676480e-03,4.18601870e-03} }, { {-3.11359530e-02,3.31041060e-02},{4.08763990e-02,-3.16635690e-02}, {-4.44255880e-02,3.11485060e-02},{4.35159650e-02,-1.91958540e-02}, {-2.17278040e-02,5.27224450e-03} } }, { { {-9.20593710e-01,9.41543680e-01},{-3.11564340e-02,7.68618760e-03}, {4.00678200e-02,-1.74073770e-03},{-2.45803400e-02,-3.76840140e-03}, {3.52028830e-03,2.38328080e-03} }, { {3.02782070e-01,3.12726520e-01},{2.02946170e-02,-7.02938940e-03}, {-2.37020460e-02,1.09822160e-02},{1.35848920e-02,-9.64830420e-03}, {-2.15682320e-03,3.42663860e-03} }, { {-1.54665530e-01,6.54458440e-02},{-2.31586110e-02,-7.83543970e-02}, {1.75169200e-02,9.03349940e-02},{-3.54617960e-03,-6.24120670e-02}, {-1.75043920e-03,1.88583210e-02} } }, { { {-1.79890770e-01,5.32259200e-02},{8.45014100e-03,1.12287700e-03}, {-1.88209350e-02,2.84558680e-03},{1.96978440e-02,-4.98914960e-03}, {-7.61432780e-03,2.27407820e-03} }, { {2.39218810e-03,-1.68500960e-01},{-7.92317830e-04,-1.74296240e-03}, {-8.05810590e-03,2.72027490e-03},{1.62362320e-02,-2.05551660e-03}, {-9.84933740e-03,6.00477830e-04} }, { {9.88910250e-01,9.69381190e-01},{-1.59314130e-02,4.17224620e-02}, {2.64572590e-02,-7.02864780e-02},{-1.30138060e-02,6.35918610e-02}, {-3.46546710e-03,-2.28073640e-02} } }, { { {-3.13778020e-01,-2.98387140e-01},{1.10904800e-02,-1.78679550e-02}, {-1.23751930e-02,2.34589560e-02},{9.84292100e-03,-1.82436530e-02}, {-4.31105530e-03,6.02117530e-03} }, { {-9.49896230e-01,9.52999270e-01},{-1.80641410e-02,-3.04492560e-02}, {4.73133090e-02,3.93163700e-02},{-4.66858300e-02,-3.09509690e-02}, {1.51024750e-02,1.04622190e-02} }, { {2.25745810e-02,1.41619600e-01},{-1.44302330e-01,4.48344440e-02}, {1.86990330e-01,-5.51427460e-02},{-1.67216130e-01,4.03074140e-02}, {6.73516310e-02,-1.26812730e-02} } }, { { {-1.57818510e-03,-7.76555360e-04},{4.01084210e-03,1.29739200e-04}, {-7.64281110e-03,8.31725610e-04},{7.64985930e-03,-9.24423690e-04}, {-2.91352210e-03,3.45450170e-04} }, { {3.16523640e-03,3.36441480e-03},{-3.45902110e-03,-2.52495860e-03}, {1.88465500e-03,2.12133040e-03},{3.87680240e-04,-1.13681790e-03}, {-6.21515190e-04,2.83599940e-04} }, { {-4.19975340e-04,-1.49239360e-02},{-3.80812540e-03,9.40145570e-03}, {1.37769100e-02,-3.88571760e-03},{-1.65303260e-02,-1.46867630e-03}, {6.64999370e-03,1.41827010e-03} } }, { { {7.40667390e-03,-3.68361640e-02},{-6.54216140e-03,3.75805450e-02}, {4.96869140e-03,-3.04884120e-02},{-2.60889080e-03,1.60641860e-02}, {6.26016570e-04,-3.86774810e-03} }, { {-8.16403920e-03,2.53265570e-03},{1.13258940e-02,-5.83876630e-03}, {-1.27034200e-02,7.86335300e-03},{8.93915240e-03,-5.86095390e-03}, {-2.73004190e-03,1.81215650e-03} }, { {2.23546360e-02,1.57435060e-03},{-2.84831280e-02,2.70867990e-02}, {2.68582220e-02,-5.91127460e-02},{-1.37238230e-02,5.68044640e-02}, {2.44798960e-03,-2.06750790e-02} } }, { { {5.35809080e-02,-4.14642580e-02},{-6.32517910e-02,5.18810920e-02}, {7.08450890e-02,-5.52799290e-02},{-5.73289960e-02,4.04664850e-02}, {2.11087290e-02,-1.30998270e-02} }, { {2.99681280e-02,3.93719880e-02},{-5.63497240e-02,-3.99229900e-02}, {8.11403280e-02,3.69219250e-02},{-6.27505900e-02,-2.39664660e-02}, {1.70397480e-02,7.18452520e-03} }, { {5.51736610e-02,-3.13607650e-02},{-7.85626700e-02,2.11670320e-02}, {7.56538640e-02,-1.83662350e-02},{-3.30997390e-02,5.81616740e-03}, {-3.84112860e-03,2.35250570e-04} } }, { { {-1.15342760e-02,8.35821660e-03},{7.94818910e-03,-7.26342800e-03}, {4.73984200e-04,3.38653800e-03},{-5.19421890e-03,3.68757950e-04}, {2.38340970e-03,-7.39277320e-04} }, { {-4.09566430e-02,2.02335580e-02},{4.66467820e-02,-2.15919860e-02}, {-4.23400050e-02,2.01439880e-02},{2.42149940e-02,-1.32391670e-02}, {-5.52545160e-03,4.01772040e-03} }, { {1.35092040e-02,-1.71718400e-02},{-1.66233360e-03,1.56757850e-02}, {-2.23304240e-02,-8.97739360e-03},{2.38009390e-02,1.78207350e-03}, {-4.95737620e-03,4.24865570e-04} } }, { { {7.01244760e-04,-1.39754010e-03},{2.46833850e-03,3.22747290e-03}, {-6.44805210e-03,-4.93366150e-03},{6.66157670e-03,4.20590540e-03}, {-2.51297380e-03,-1.43824820e-03} }, { {-3.64823620e-03,1.14251150e-03},{1.21427480e-02,-3.48705170e-04}, {-2.34557390e-02,-5.53409900e-04},{2.32065400e-02,9.72798100e-04}, {-8.85956710e-03,-4.37058960e-04} }, { {-2.68378350e-02,-2.22233100e-02},{2.25024450e-02,1.25946740e-02}, {-1.49836180e-02,-5.16672650e-03},{1.36226960e-02,-1.11531270e-03}, {-7.45904750e-03,1.33011200e-03} } }, { { {3.98259610e-05,-7.91684990e-05},{-1.76038970e-04,5.34617810e-04}, {3.75478630e-04,-1.20794640e-03},{-3.88665690e-04,1.23908630e-03}, {1.50257320e-04,-4.71837870e-04} }, { {-4.05015300e-04,-3.58661180e-04},{7.55018240e-04,4.67375240e-04}, {-7.89725700e-04,-6.08858620e-04},{4.23399850e-04,4.64642700e-04}, {-8.10565760e-05,-1.50839210e-04} }, { {1.20135930e-03,-6.88630150e-04},{-6.46786490e-04,6.55464750e-04}, {-1.68133640e-03,-1.00298600e-03},{2.56108340e-03,9.08789140e-04}, {-1.01217160e-03,-3.33423030e-04} } }, { { {4.40692400e-04,4.56517370e-03},{-1.00279530e-03,-8.51324390e-03}, {1.37701370e-03,1.00708300e-02},{-1.15366350e-03,-7.07408540e-03}, {4.20696910e-04,2.15346920e-03} }, { {2.21781340e-03,6.45717680e-05},{-4.58848310e-03,-3.08298950e-05}, {5.57816840e-03,-9.09471690e-05},{-3.87626830e-03,6.94936500e-05}, {1.14723320e-03,-1.04760320e-05} }, { {-1.64861660e-03,-2.23219480e-03},{4.64076660e-03,2.88451310e-03}, {-5.38945400e-03,-1.73867800e-03},{2.38858580e-03,2.92120240e-04}, {-1.16836100e-04,1.04133510e-04} } }, { { {1.01729450e-02,-2.05241820e-03},{-2.13643390e-02,7.35628770e-03}, {2.86525350e-02,-1.15120400e-02},{-2.28149180e-02,1.02643320e-02}, {7.65049800e-03,-3.68794270e-03} }, { {-1.15721340e-03,7.63370990e-03},{2.10481650e-03,-1.20629500e-02}, {-2.37802870e-03,1.46718370e-02},{1.75064980e-03,-1.07527740e-02}, {-5.94354210e-04,3.40594860e-03} }, { {-2.25749980e-03,-1.58508120e-02},{1.85545500e-03,2.44525020e-03}, {7.16115580e-04,4.20839630e-03},{-1.89542160e-03,-8.17258050e-03}, {7.82789810e-04,3.78581020e-03} } }, { { {-1.39062440e-02,4.61147580e-02},{2.45294550e-02,-8.52015010e-02}, {-2.29463370e-02,1.00080010e-01},{9.69170280e-03,-7.00603930e-02}, {-2.93652460e-04,2.13047110e-02} }, { {-4.31865030e-02,-1.25824540e-02},{8.76780030e-02,2.79080370e-02}, {-1.18532030e-01,-3.87382190e-02},{1.05392090e-01,3.08270520e-02}, {-4.28335450e-02,-1.02142910e-02} }, { {-1.02231730e-02,8.21365590e-03},{5.11947400e-02,-3.79220000e-02}, {-1.43245940e-01,7.36923470e-02},{1.92792910e-01,-6.98819030e-02}, {-9.79530110e-02,2.54405650e-02} } }, { { {-3.10952770e-03,3.45250370e-03},{8.76783960e-03,-7.52770240e-03}, {-1.51045970e-02,9.62338810e-03},{1.47052460e-02,-7.50197730e-03}, {-5.83374270e-03,2.50041490e-03} }, { {-1.46871170e-03,5.93485070e-03},{7.83951100e-03,-1.67521530e-02}, {-1.51851380e-02,2.37984890e-02},{1.20350400e-02,-1.97115180e-02}, {-2.53427990e-03,6.75459940e-03} }, { {-2.09090860e-02,1.12789410e-02},{4.09088460e-02,-7.52629340e-03}, {-5.93102730e-02,8.38363010e-03},{4.95746980e-02,-5.41512530e-03}, {-1.44298700e-02,1.52782790e-03} } }, { { {2.77953890e-03,2.81931180e-03},{-5.66170140e-03,-4.72157430e-03}, {7.29280930e-03,4.98251440e-03},{-5.73614420e-03,-3.13945350e-03}, {1.95995280e-03,8.75668500e-04} }, { {4.05830020e-03,-1.05682840e-03},{-8.21185630e-03,2.71110940e-03}, {1.05038170e-02,-3.87081360e-03},{-8.07997930e-03,3.10764390e-03}, {2.60879230e-03,-1.03213580e-03} }, { {-2.46138120e-03,-5.22542540e-04},{1.64391680e-03,-1.67567600e-03}, {3.70210970e-03,5.53636380e-03},{-5.79383730e-03,-6.09067230e-03}, {2.07361670e-03,2.35573240e-03} } }, { { {4.01691970e-05,3.11237850e-05},{-2.08683120e-04,-1.88572370e-04}, {4.35062090e-04,3.41704640e-04},{-4.33129510e-04,-3.39748700e-04}, {1.62366270e-04,1.29504050e-04} }, { {6.64593600e-04,-5.45667010e-04},{-2.19998560e-03,5.67709230e-04}, {4.00144910e-03,-4.98382760e-04},{-3.80106200e-03,2.33938510e-04}, {1.41302920e-03,-4.37879180e-05} }, { {2.75744280e-03,2.81538070e-03},{-5.90008840e-03,-3.10989130e-03}, {9.62751590e-03,3.39653900e-03},{-9.77484600e-03,-2.20947160e-03}, {4.01149860e-03,6.36815950e-04} } }, { { {5.25914280e-06,-3.25241300e-05},{-3.18002310e-05,8.35736060e-05}, {7.27927500e-05,-1.18285450e-04},{-7.66147160e-05,9.48501810e-05}, {2.95720580e-05,-3.17664300e-05} }, { {-1.45345440e-05,-9.57387870e-07},{4.37235790e-05,-4.69767420e-06}, {-8.22583980e-05,2.12375230e-05},{8.00571990e-05,-2.36876370e-05}, {-3.05259890e-05,8.87088390e-06} }, { {-1.77087930e-04,1.18863860e-04},{3.20885510e-04,-9.35501470e-05}, {-3.60482830e-04,3.47494370e-05},{2.94466400e-04,3.31490700e-05}, {-1.18599440e-04,-2.40983920e-05} } }, { { {1.22477600e-04,-2.89288930e-04},{-1.42689120e-04,7.92089420e-04}, {1.50660240e-04,-1.34432260e-03},{-9.06205380e-05,1.22568800e-03}, {1.95086710e-05,-4.40603850e-04} }, { {-2.17201480e-04,-3.47286620e-04},{5.78164700e-04,8.04836920e-04}, {-7.76131920e-04,-1.15544890e-03},{5.61120980e-04,9.40725050e-04}, {-1.69221930e-04,-3.15582620e-04} }, { {8.98175610e-05,1.59646520e-05},{-1.55765390e-04,-2.23446010e-05}, {-2.13617410e-04,-7.31503030e-05},{6.13581510e-04,1.58510240e-04}, {-3.35145410e-04,-8.05876160e-05} } }, { { {-4.85813430e-04,-1.23372900e-03},{3.04107520e-04,1.98412350e-03}, {-1.55264290e-04,-2.80756730e-03},{8.54524090e-05,2.34801080e-03}, {-3.30892580e-05,-8.07800550e-04} }, { {-6.88958260e-04,2.32461560e-04},{9.42128150e-04,-1.09602670e-03}, {-1.22944080e-03,1.74564680e-03},{1.01389100e-03,-1.57334320e-03}, {-3.46406430e-04,5.65445130e-04} }, { {-1.55101940e-04,4.57698310e-04},{1.63021220e-03,1.25100200e-03}, {-3.60608680e-03,-2.09539040e-03},{3.35644860e-03,2.06790780e-03}, {-1.12673770e-03,-7.88316130e-04} } }, { { {1.43044960e-03,7.58439630e-03},{-8.55188270e-03,-1.40894230e-02}, {1.64097880e-02,1.77166480e-02},{-1.56587640e-02,-1.25513210e-02}, {5.80888060e-03,3.81630860e-03} }, { {-4.84025130e-05,-1.71515740e-03},{4.00985810e-03,3.69119400e-03}, {-9.83741620e-03,-4.45974520e-03},{1.06840000e-02,2.85707670e-03}, {-4.23755690e-03,-7.50804760e-04} }, { {-1.06658110e-03,3.70597330e-03},{1.02031320e-03,-1.05531100e-02}, {5.50683890e-03,1.56161330e-02},{-1.17523070e-02,-1.19516060e-02}, {6.25745820e-03,3.67051820e-03} } }, { { {-7.93186800e-03,-1.65716360e-02},{1.23128200e-02,4.75186730e-02}, {-1.63695260e-02,-8.05682950e-02},{1.09971610e-02,7.29820410e-02}, {-2.07131490e-03,-2.61268040e-02} }, { {9.40269330e-03,-8.11398840e-03},{-2.80940430e-02,1.47750330e-02}, {4.20619240e-02,-2.47498910e-02},{-2.55563750e-02,2.15035950e-02}, {1.79694100e-03,-7.50425740e-03} }, { {-3.30386880e-03,6.70214910e-03},{2.14569480e-03,3.55966590e-02}, {-3.94251390e-02,-6.35530620e-02},{1.07578850e-01,6.23719540e-02}, {-7.54828710e-02,-2.36320090e-02} } }, { { {1.01289890e-03,-3.62296730e-03},{-1.43924530e-03,8.06844790e-03}, {-1.16334070e-04,-1.10551620e-02},{1.94086920e-03,8.40441940e-03}, {-1.29960500e-03,-2.67772360e-03} }, { {4.10234480e-03,1.69420530e-03},{-8.09182220e-03,-8.55884650e-03}, {1.34161550e-02,1.55317190e-02},{-1.68384500e-02,-1.41807480e-02}, {9.13454460e-03,5.04808800e-03} }, { {-3.95345850e-04,-8.97582950e-04},{-9.57166220e-03,2.83307790e-03}, {3.98706360e-02,-6.90931200e-03},{-6.02261730e-02,7.69468620e-03}, {3.20654250e-02,-3.08228900e-03} } }, { { {-3.45299380e-05,-1.20780300e-03},{8.90305590e-04,3.02337670e-03}, {-2.16813990e-03,-4.90450550e-03},{2.25570200e-03,4.35367050e-03}, {-8.42805070e-04,-1.54622370e-03} }, { {-1.14267620e-03,-2.69699800e-04},{2.48446240e-03,-4.01162980e-04}, {-4.16978890e-03,1.20815710e-03},{4.07904120e-03,-1.30790390e-03}, {-1.65541030e-03,5.06916940e-04} }, { {-4.32007810e-05,-4.36432440e-05},{1.58194000e-03,3.08853120e-03}, {-1.68795180e-03,-4.67175490e-03},{3.10268100e-05,4.22889780e-03}, {2.57441080e-04,-1.53452340e-03} } }, { { {-2.41636010e-04,-2.12577920e-04},{7.39804120e-04,6.76683640e-04}, {-1.28554430e-03,-1.01624110e-03},{1.21472860e-03,8.12282100e-04}, {-4.55786030e-04,-2.66610080e-04} }, { {1.41508730e-04,8.98595210e-05},{-3.41279070e-04,-4.34865720e-04}, {5.90222700e-04,7.81836680e-04},{-5.08002430e-04,-6.93317520e-04}, {1.69671820e-04,2.41113410e-04} }, { {-1.76855220e-06,-4.33640990e-05},{2.65094000e-04,9.33594330e-05}, {-7.33689050e-04,-7.62403820e-05},{7.46964870e-04,-1.16176570e-05}, {-2.53787720e-04,2.78924850e-05} } }, { { {1.24544720e-05,-1.87979460e-06},{-1.71523990e-05,4.36918850e-06}, {2.18425710e-05,-1.40770910e-05},{-1.72217710e-05,1.98143380e-05}, {5.18277430e-06,-9.08034940e-06} }, { {-5.17787690e-05,5.76186840e-05},{1.46587560e-04,-6.59926670e-05}, {-2.21494780e-04,1.02409150e-04},{1.83381080e-04,-8.56970880e-05}, {-6.31951860e-05,2.91557400e-05} }, { {-5.65069570e-05,-1.70707450e-04},{1.21743690e-04,3.12881320e-04}, {-3.30234160e-04,-4.69596730e-04},{5.08823420e-04,3.76848790e-04}, {-2.61025000e-04,-1.22426120e-04} } }, { { {6.11063200e-07,2.58718590e-06},{4.32502450e-07,-8.48913030e-06}, {-5.62562610e-06,1.47046710e-05},{8.45764790e-06,-1.30727130e-05}, {-3.84463540e-06,4.58250250e-06} }, { {2.22419030e-06,1.46017460e-06},{-5.62021370e-06,-2.48784680e-07}, {5.45486470e-06,-2.82624590e-07},{-1.67958880e-06,6.54667070e-07}, {-1.77352530e-07,-3.10217120e-07} }, { {-3.55708960e-06,3.54773820e-07},{2.30586770e-05,-3.25641050e-06}, {-3.75446800e-05,8.96599290e-06},{2.23585500e-05,-9.75973270e-06}, {-3.33860850e-06,3.75009980e-06} } }, { { {-9.90059900e-06,1.38780600e-05},{1.96533700e-05,-4.55019580e-05}, {-1.90588290e-05,8.01405570e-05},{5.97802610e-06,-7.52133220e-05}, {1.10347310e-06,2.75494900e-05} }, { {-1.19378490e-05,5.84762470e-06},{5.52259030e-05,-1.63621480e-05}, {-1.23123510e-04,2.25589800e-05},{1.28324320e-04,-1.63375770e-05}, {-4.93312180e-05,4.86778130e-06} }, { {-7.86266520e-06,3.66372700e-06},{1.33433150e-05,-4.81028410e-06}, {2.04529260e-05,7.34189820e-06},{-5.49415230e-05,-8.64470100e-06}, {2.94475790e-05,3.90172980e-06} } }, { { {2.33794700e-05,-4.00641050e-05},{-4.21308050e-05,1.47298490e-04}, {7.76171190e-05,-2.72589680e-04},{-8.21105650e-05,2.56925090e-04}, {3.26220310e-05,-9.38516980e-05} }, { {4.44705710e-06,-3.03580440e-05},{-1.11479540e-05,1.09258650e-04}, {5.28097250e-05,-1.47984710e-04},{-7.54590890e-05,1.19257010e-04}, {3.35282060e-05,-4.04559110e-05} }, { {3.94080630e-05,3.43873330e-05},{-3.11840260e-04,5.90282780e-05}, {5.82505960e-04,-7.71774740e-05},{-4.45729570e-04,6.02989790e-05}, {1.18051810e-04,-1.97381650e-05} } }, { { {3.09060410e-04,-2.49844140e-04},{-8.65888620e-04,4.11687360e-04}, {1.40979140e-03,-5.93709660e-04},{-1.19425460e-03,4.43345040e-04}, {3.94876520e-04,-1.38290100e-04} }, { {-1.39347640e-04,-2.21470120e-04},{-1.89145500e-04,6.88164260e-04}, {1.13831610e-03,-1.16568560e-03},{-1.52153260e-03,1.09436380e-03}, {6.53236480e-04,-4.05275640e-04} }, { {4.12114760e-04,-8.18455040e-05},{-8.53478370e-04,2.80109200e-04}, {-8.30702590e-05,-4.04934750e-04},{1.50487680e-03,2.89495330e-04}, {-9.56178280e-04,-8.00325830e-05} } }, { { {1.69323940e-04,-3.48388540e-03},{-5.63777690e-04,1.16436880e-02}, {2.37889840e-04,-2.29370210e-02},{2.74711120e-04,2.22594930e-02}, {-2.09698220e-04,-8.25029470e-03} }, { {9.10727270e-05,5.38127830e-04},{-1.58537880e-03,-3.73538250e-03}, {3.80452580e-03,5.76287300e-03},{-3.92009020e-03,-4.96854030e-03}, {1.48710100e-03,1.73500750e-03} }, { {3.80361360e-04,-3.44346330e-04},{1.75120780e-03,1.82636310e-02}, {-3.51048500e-03,-2.48804040e-02},{2.13469170e-03,1.98843490e-02}, {-3.11932120e-04,-6.65075520e-03} } }, { { {5.26794770e-03,-7.01143380e-03},{-1.39061420e-02,9.46486440e-03}, {2.46033820e-02,-1.19292880e-02},{-2.67526200e-02,8.08882700e-03}, {1.22030460e-02,-2.34929810e-03} }, { {6.56428130e-03,2.85283000e-03},{-1.52228060e-02,-7.88822440e-03}, {2.16841340e-02,1.42402640e-02},{-1.34616370e-02,-1.27399880e-02}, {5.21748130e-04,4.48055400e-03} }, { {-5.68186770e-03,2.10753840e-04},{-1.99946880e-02,1.71809380e-03}, {5.59474530e-02,-4.41070190e-03},{-2.62072570e-02,2.73482250e-03}, {-1.38913030e-02,-4.55610390e-04} } }, { { {1.62588970e-03,6.19853460e-04},{-3.82055180e-03,-1.36128410e-03}, {4.68071050e-03,2.34484430e-03},{-2.69869830e-03,-2.01076750e-03}, {3.48370780e-04,6.78098600e-04} }, { {-3.53761760e-04,8.06508480e-04},{3.26800700e-03,-1.82498700e-03}, {-5.95577990e-03,5.31324190e-03},{1.31912310e-03,-5.96851940e-03}, {2.42434590e-03,2.37693050e-03} }, { {-1.39215760e-05,1.67468870e-04},{-2.61427030e-03,-1.05387760e-02}, {2.68715380e-02,1.42264460e-02},{-5.38508100e-02,-1.12973880e-02}, {3.26023970e-02,3.76713400e-03} } }, { { {-2.05632240e-06,-1.18746970e-04},{-2.73716840e-04,1.49370350e-04}, {7.47677520e-04,-3.16725940e-04},{-8.17502100e-04,3.23661270e-04}, {3.27992780e-04,-1.25797220e-04} }, { {-9.94988860e-05,3.97731480e-04},{3.10192190e-04,-9.98881350e-04}, {-1.01598850e-03,1.31120280e-03},{1.73837430e-03,-9.71220750e-04}, {-1.01319300e-03,3.03318850e-04} }, { {2.50933950e-04,-9.38806390e-05},{8.02779210e-04,4.69712450e-04}, {-3.89984600e-03,-7.80692960e-04},{5.80299850e-03,5.95350840e-04}, {-3.02265120e-03,-1.74578860e-04} } }, { { {3.23736110e-05,1.14889160e-04},{-1.42772360e-04,-3.13780440e-04}, {3.11079310e-04,5.28067210e-04},{-3.16675830e-04,-4.74461090e-04}, {1.18665550e-04,1.69066190e-04} }, { {1.40769440e-05,-3.64333430e-05},{-7.24719800e-05,2.07796470e-04}, {1.81368740e-04,-3.72773400e-04},{-2.01118100e-04,3.51685730e-04}, {8.43450320e-05,-1.29309680e-04} }, { {-3.94262500e-05,-4.17052620e-05},{1.73605890e-04,-3.16795230e-04}, {-6.59468620e-04,4.47390630e-04},{8.76325650e-04,-3.64167110e-04}, {-3.70954990e-04,1.22389480e-04} } }, { { {4.40243030e-06,2.97699180e-06},{-1.08299030e-05,-1.26092090e-05}, {2.27143560e-05,2.24843050e-05},{-2.69031990e-05,-1.98035590e-05}, {1.17725960e-05,6.89484310e-06} }, { {-1.33302370e-05,6.68942520e-06},{3.77113270e-05,-5.37332750e-06}, {-5.27314400e-05,-1.28277660e-05},{3.45400380e-05,2.24583680e-05}, {-8.30440860e-06,-1.01207410e-05} }, { {-3.49514950e-06,-7.24538620e-07},{-2.86011820e-05,1.85264450e-05}, {7.54863940e-05,-5.10676570e-05},{-7.05471690e-05,5.71774510e-05}, {2.23692180e-05,-2.28962590e-05} } }, { { {-1.33210360e-06,4.84377210e-07},{3.76566910e-06,-3.32856950e-06}, {-5.99492800e-06,4.82688650e-06},{5.01409140e-06,-3.73225160e-06}, {-1.64180010e-06,1.17691160e-06} }, { {1.05719000e-06,-3.79293750e-06},{-5.73814750e-07,9.63171080e-06}, {-3.58386680e-06,-1.94001370e-05},{5.39429670e-06,1.89457100e-05}, {-2.11550970e-06,-7.04335600e-06} }, { {-8.55044480e-07,1.71649350e-06},{2.66111300e-06,-1.22244660e-05}, {4.36649680e-06,2.40072950e-05},{-1.33933820e-05,-2.26608400e-05}, {7.77743140e-06,8.16337330e-06} } }, { { {2.43610090e-09,-1.42699190e-07},{-2.24568350e-07,4.71463140e-07}, {7.61313610e-07,-1.00952450e-06},{-9.03885460e-07,1.00987680e-06}, {3.65574080e-07,-3.77796410e-07} }, { {-1.40116240e-07,-2.19328090e-07},{2.99233310e-07,4.55198610e-07}, {1.86179080e-08,-9.11225370e-07},{-4.41675050e-07,8.88292930e-07}, {2.60907250e-07,-3.30532700e-07} }, { {3.71166610e-07,3.48330830e-07},{-2.08332270e-06,-1.24378340e-06}, {4.19575860e-06,2.65780560e-06},{-3.88123300e-06,-2.76170940e-06}, {1.31202300e-06,1.08037960e-06} } }, { { {-6.12488430e-08,-1.22039520e-06},{1.09896000e-06,4.76351660e-06}, {-3.95274780e-06,-8.96465660e-06},{5.36325820e-06,8.65380180e-06}, {-2.43706190e-06,-3.23602080e-06} }, { {1.17455920e-06,-1.98827720e-07},{-5.90890830e-06,1.80291120e-06}, {1.31188500e-05,-5.08159330e-06},{-1.35070880e-05,5.93193260e-06}, {5.14265540e-06,-2.45752330e-06} }, { {2.06075330e-07,-3.01907240e-07},{1.40519460e-06,8.62783470e-07}, {-5.54279650e-06,-1.09746280e-06},{7.16266310e-06,6.68096310e-07}, {-3.15971330e-06,-1.57035680e-07} } }, { { {2.23528560e-06,-1.43866290e-06},{-5.26954980e-06,5.68853560e-06}, {4.92045530e-06,-1.13365680e-05},{-2.22534860e-06,1.15770950e-05}, {4.15497270e-07,-4.52706720e-06} }, { {2.64916690e-07,-2.14973360e-06},{8.76466210e-07,7.78637920e-06}, {-8.32314430e-06,-1.53451890e-05},{1.27971440e-05,1.48332510e-05}, {-5.82196040e-06,-5.46540570e-06} }, { {-2.88958840e-06,1.91301210e-06},{2.43506350e-05,-2.42809400e-05}, {-3.52023880e-05,3.67226310e-05},{1.64862850e-05,-2.97721690e-05}, {-2.33051790e-07,9.78091100e-06} } }, { { {1.51238400e-06,1.01689710e-05},{1.72701610e-05,-4.49438760e-05}, {-3.96688950e-05,7.11664160e-05},{3.12537570e-05,-5.46608020e-05}, {-7.92140460e-06,1.60584500e-05} }, { {-2.52201850e-06,4.82971920e-06},{6.35977970e-05,-1.40890590e-06}, {-1.87448920e-04,-4.12965850e-05},{2.17676420e-04,6.52418650e-05}, {-8.83267300e-05,-2.98163970e-05} }, { {-2.86929440e-05,1.84333170e-05},{1.11010170e-05,-8.04916810e-05}, {1.34859830e-04,1.81143460e-04},{-2.44481950e-04,-1.97050130e-04}, {1.20985510e-04,7.88626670e-05} } }, { { {-9.34245330e-05,2.75375640e-05},{5.96217090e-05,4.35987440e-05}, {2.08812220e-04,1.22287710e-06},{-3.83095520e-04,-1.52457630e-05}, {1.80794240e-04,2.88249600e-06} }, { {-6.58110350e-05,7.82477550e-05},{1.82255340e-04,-1.15247230e-04}, {-3.32116840e-04,3.96352620e-04},{3.01168720e-04,-4.62710080e-04}, {-1.07696060e-04,1.86694720e-04} }, { {5.92609010e-05,1.85446030e-04},{-5.96656810e-04,-1.06285390e-03}, {8.17088340e-04,1.08736600e-03},{-2.81708390e-04,-6.62718480e-04}, {-6.96667710e-05,1.76303740e-04} } }, { { {4.97214430e-04,2.01428880e-03},{-3.04878200e-03,-9.88833520e-03}, {6.87169510e-03,2.05063110e-02},{-7.03760900e-03,-2.07176190e-02}, {2.66018790e-03,7.89510190e-03} }, { {1.79913240e-04,-5.99051640e-05},{-4.32007730e-04,1.10079860e-04}, {1.22813280e-03,-6.69493960e-04},{-1.47317420e-03,9.95204150e-04}, {6.20998550e-04,-4.55433050e-04} }, { {7.31919630e-05,2.00840030e-03},{1.27699540e-03,-7.74215780e-03}, {-7.40960490e-03,1.56418300e-02},{1.16413580e-02,-1.59475240e-02}, {-5.70102550e-03,6.14313720e-03} } }, { { {-2.30090000e-04,4.62162340e-03},{-4.64207740e-04,-2.97312650e-03}, {-1.64885290e-03,6.73420600e-03},{-3.35035120e-05,-6.27917260e-03}, {1.81481430e-03,2.09865840e-03} }, { {3.12598760e-03,-5.24832420e-03},{-7.06259940e-03,2.10243800e-02}, {5.19374620e-03,-3.71082320e-02},{2.12386230e-03,3.47032920e-02}, {-4.26053000e-03,-1.27102810e-02} }, { {-6.68569000e-03,5.68614820e-03},{1.65453950e-02,-5.34052600e-02}, {-1.44575590e-02,6.37225110e-02},{2.25236060e-02,-4.40687950e-02}, {-2.22468920e-02,1.30092590e-02} } }, { { {4.51525170e-05,-3.98362280e-04},{-8.69706210e-04,2.32180610e-03}, {1.85199080e-03,-4.92633570e-03},{-7.80176480e-04,5.06991040e-03}, {-3.61851040e-04,-1.95676910e-03} }, { {1.01147600e-03,1.31716030e-04},{-4.39563590e-03,-1.89692670e-03}, {1.01539080e-02,3.66441000e-03},{-1.29557210e-02,-3.59815490e-03}, {6.95981550e-03,1.35302490e-03} }, { {1.97331090e-03,-2.27821680e-04},{1.17198790e-04,1.00198720e-04}, {-2.28939110e-04,5.56152820e-04},{-1.21660310e-02,-9.57591180e-04}, {1.31687310e-02,4.54557310e-04} } }, { { {-1.11099670e-04,1.53852230e-07},{4.27508690e-04,1.47247500e-04}, {-7.81129110e-04,-2.29936130e-04},{7.15368690e-04,2.08594340e-04}, {-2.42828450e-04,-7.92964310e-05} }, { {-1.80731210e-04,-1.61129940e-04},{5.06201630e-04,2.13458550e-04}, {-1.07080750e-03,-1.74080820e-04},{1.55731260e-03,8.22012610e-05}, {-8.92093790e-04,-1.28570830e-05} }, { {1.29296420e-04,1.04511320e-04},{2.67317750e-04,-9.27988010e-04}, {-3.20613950e-03,6.37341300e-04},{6.11941580e-03,-2.11779080e-04}, {-3.53433510e-03,1.43425020e-05} } }, { { {1.71570050e-06,-1.35839110e-05},{1.26848680e-05,1.14218570e-04}, {-4.00557590e-05,-2.46927040e-04},{4.19946280e-05,2.54131210e-04}, {-1.54310480e-05,-9.76907890e-05} }, { {2.59729030e-08,-1.64936210e-07},{-2.52813950e-06,-4.04673550e-05}, {6.66260390e-05,1.02165990e-04},{-1.47143110e-04,-1.17820370e-04}, {8.80840410e-05,4.88433680e-05} }, { {-4.29586860e-05,-3.64422990e-05},{6.54838100e-05,1.36027870e-04}, {-4.35981650e-05,-2.73183330e-04},{-5.77974850e-05,2.75485730e-04}, {7.56455840e-05,-1.05283230e-04} } }, { { {-1.36415030e-07,-1.84810430e-06},{3.50720890e-06,7.36493180e-06}, {-9.00328640e-06,-1.50555350e-05},{8.99706450e-06,1.51525340e-05}, {-3.12199080e-06,-5.76248930e-06} }, { {7.44214760e-06,-2.77396870e-06},{-2.36802780e-05,-3.43911460e-06}, {4.16717490e-05,6.10660010e-06},{-4.02491100e-05,-5.91146910e-06}, {1.52721710e-05,2.23261260e-06} }, { {-6.43474830e-07,-2.15205930e-06},{-7.11285170e-06,2.78990110e-05}, {4.13572680e-05,-4.67070090e-05},{-6.11681810e-05,4.19483700e-05}, {2.76727400e-05,-1.49885430e-05} } }, { { {-1.97874690e-07,-1.47061620e-06},{1.98116160e-07,6.42703300e-06}, {1.41368500e-07,-1.32995960e-05},{-3.77603000e-07,1.35005030e-05}, {1.77996100e-07,-5.18985340e-06} }, { {8.10665770e-07,-5.36216350e-07},{-2.87293230e-06,1.28429060e-06}, {4.24328300e-06,-8.83392930e-07},{-2.80615200e-06,-1.32884520e-07}, {6.62387740e-07,2.85132470e-07} }, { {9.07627810e-07,-9.67289330e-07},{-2.26189920e-06,3.39328510e-06}, {5.14348930e-06,-6.52078180e-06},{-6.00255080e-06,6.54917010e-06}, {2.50083830e-06,-2.52875330e-06} } }, { { {2.29092010e-08,-1.79849500e-09},{1.08420900e-07,1.80067920e-07}, {-5.86905140e-07,-2.66293440e-07},{8.46393110e-07,1.97441290e-07}, {-3.85374250e-07,-5.77219290e-08} }, { {3.26080610e-08,1.10061390e-07},{-4.08829040e-07,-4.28532550e-07}, {1.17450920e-06,9.51958720e-07},{-1.29250910e-06,-9.78458410e-07}, {4.86953430e-07,3.73611070e-07} }, { {3.18102180e-07,-3.55652150e-07},{-1.95529860e-06,1.19474160e-06}, {5.74844160e-06,-2.53589460e-06},{-7.05971180e-06,2.61516690e-06}, {2.98112760e-06,-1.01780220e-06} } }, { { {-8.76008190e-10,1.23677230e-08},{1.45402410e-08,-4.34562080e-08}, {-3.67941940e-08,1.02196560e-07},{3.42759940e-08,-1.09607670e-07}, {-1.08107120e-08,4.31431630e-08} }, { {-2.56667360e-09,7.80510940e-09},{3.65203720e-08,-2.91249600e-08}, {-1.27357030e-07,6.84497120e-08},{1.63198540e-07,-7.39170480e-08}, {-7.00563070e-08,2.92452190e-08} }, { {-3.59794630e-09,7.04677060e-09},{5.02128010e-08,1.13952110e-08}, {-1.73330840e-07,-1.33254340e-08},{2.00179750e-07,7.01990640e-09}, {-7.27487170e-08,-1.30450250e-09} } }, { { {7.49969050e-09,1.64359630e-08},{-5.57102060e-08,-8.07194200e-08}, {1.79046940e-07,1.97127720e-07},{-2.30418600e-07,-2.16956040e-07}, {1.00688690e-07,8.66083550e-08} }, { {-1.06306530e-08,1.14270320e-08},{8.67058260e-08,-8.53545300e-08}, {-1.83660730e-07,2.24543510e-07},{1.48983380e-07,-2.53806260e-07}, {-3.97358430e-08,1.02478320e-07} }, { {-7.96610900e-08,-5.44671810e-09},{2.42885690e-07,9.04011210e-09}, {-4.91288980e-07,1.34935720e-09},{5.49103110e-07,-1.56849970e-08}, {-2.34335140e-07,9.95334420e-09} } }, { { {-1.50476430e-07,2.05694700e-07},{3.81435030e-07,-1.04401480e-06}, {-5.48188340e-07,2.21049300e-06},{5.03215120e-07,-2.22689550e-06}, {-1.99000680e-07,8.44521320e-07} }, { {-1.48937410e-07,-6.25250780e-08},{3.55535760e-07,-9.63255850e-08}, {-1.42119140e-07,2.01437690e-07},{-2.26979740e-07,-2.23205620e-07}, {1.59333550e-07,9.15659250e-08} }, { {2.86022970e-07,-8.20240130e-08},{-1.25134030e-06,4.34709060e-08}, {4.51890990e-07,3.15569290e-07},{1.55508170e-06,-5.71451510e-07}, {-1.16080080e-06,2.73123460e-07} } }, { { {5.92279090e-07,-9.70284500e-07},{-1.78952780e-06,6.47804880e-06}, {8.64100730e-07,-1.18179390e-05},{1.77160180e-06,1.06853540e-05}, {-1.44631550e-06,-3.74382090e-06} }, { {7.27486760e-07,5.48700870e-07},{-4.37316350e-06,-2.63776110e-06}, {9.52653290e-06,6.13323530e-06},{-9.02022420e-06,-6.58663010e-06}, {3.13002380e-06,2.58337310e-06} }, { {1.51138630e-06,-2.69363170e-06},{-1.33913210e-06,9.38985110e-06}, {-3.82424240e-06,-1.70160810e-05},{7.77600010e-06,1.58488300e-05}, {-3.95025830e-06,-5.75279860e-06} } }, { { {6.16145990e-06,-5.59507430e-06},{-1.12285300e-05,1.71566690e-05}, {6.24518990e-06,-2.93364620e-05},{8.79502120e-07,2.77310930e-05}, {-1.33265560e-06,-1.04017940e-05} }, { {3.06822670e-07,-1.23670890e-05},{6.45074990e-06,2.79385080e-05}, {-3.34000070e-05,-6.02163650e-05},{4.79736910e-05,6.16773690e-05}, {-2.15585070e-05,-2.35125070e-05} }, { {-7.80307360e-06,-1.01510540e-05},{3.27741680e-05,-2.17092210e-05}, {2.04469210e-05,3.39402060e-05},{-1.06889490e-04,-3.07005300e-05}, {6.59786180e-05,1.09932990e-05} } }, { { {-6.05352030e-05,-7.90710670e-05},{2.79997720e-04,5.48215020e-04}, {-5.28305100e-04,-1.06273980e-03},{4.62417110e-04,1.03639110e-03}, {-1.52674910e-04,-3.87075630e-04} }, { {-2.96121630e-05,3.94765260e-05},{2.08032960e-04,-2.30410860e-04}, {-4.99789640e-04,4.20301740e-04},{5.25493010e-04,-3.92440330e-04}, {-2.01980830e-04,1.42464850e-04} }, { {-2.93054040e-05,-1.61613440e-04},{-1.68656170e-04,6.17271520e-04}, {1.01427270e-03,-1.17860490e-03},{-1.55863770e-03,1.12725970e-03}, {7.44523600e-04,-4.15732150e-04} } }, { { {-2.60518700e-05,-3.76078980e-04},{-7.62897560e-04,3.35602220e-03}, {2.46047090e-03,-6.34559250e-03},{-2.92746570e-03,6.15229420e-03}, {1.19700490e-03,-2.31444380e-03} }, { {-9.58797570e-05,-2.76374070e-04},{1.69897790e-04,1.29715360e-03}, {3.03211410e-04,-9.87416090e-04},{-8.42273710e-04,3.36005470e-04}, {4.62947740e-04,-1.79752650e-05} }, { {7.35128750e-05,1.52772230e-04},{-1.32310040e-03,-9.45902450e-03}, {3.43141840e-04,8.79914020e-03},{2.12099070e-03,-4.23568010e-03}, {-1.52465930e-03,7.66629270e-04} } }, { { {2.83166700e-04,-4.31019100e-03},{-2.48287090e-03,2.45642580e-02}, {6.09914070e-03,-4.55183650e-02},{-7.58310550e-03,4.37342660e-02}, {4.12706890e-03,-1.62707560e-02} }, { {1.22841780e-03,1.68004450e-03},{-2.91676560e-03,-6.57350340e-03}, {-4.33928550e-03,1.16374980e-02},{1.53948920e-02,-1.08554850e-02}, {-9.94332700e-03,3.95403110e-03} }, { {1.48476240e-03,-8.20144420e-03},{1.31528410e-02,2.52895030e-02}, {-5.55757430e-02,-4.99911810e-02},{8.71630440e-02,4.91516340e-02}, {-4.90450020e-02,-1.83518090e-02} } }, { { {-2.60696820e-04,1.14409810e-04},{7.95017100e-05,-1.22023610e-03}, {6.14969540e-04,2.06507350e-03},{-2.07357930e-04,-1.77202940e-03}, {-3.99348120e-04,6.03280950e-04} }, { {-1.64580540e-04,6.08782150e-05},{-1.62118140e-03,-2.35028040e-03}, {7.17219480e-03,4.40892420e-03},{-1.14722450e-02,-4.27307310e-03}, {6.60351540e-03,1.60324990e-03} }, { {7.74063480e-04,-2.60831130e-04},{1.30022830e-04,6.70093390e-03}, {-3.50487880e-03,-8.00368800e-03},{-4.77819380e-03,5.56044190e-03}, {8.99753090e-03,-1.66258930e-03} } }, { { {1.36638820e-05,-6.39131270e-05},{-1.09107610e-04,4.73277650e-04}, {3.89180030e-04,-9.43457500e-04},{-5.80449330e-04,9.38574000e-04}, {2.95712750e-04,-3.55310190e-04} }, { {-6.53058600e-05,7.50816130e-05},{2.11203070e-04,-2.74902020e-04}, {-3.53700110e-04,6.57748590e-04},{5.39743780e-04,-7.06930140e-04}, {-3.91832380e-04,2.76872110e-04} }, { {-6.27866220e-05,-1.67898420e-04},{-2.70356670e-04,6.77337840e-04}, {1.99148080e-04,-1.33471690e-03},{1.06383930e-03,1.31472110e-03}, {-1.17920050e-03,-4.93468100e-04} } }, { { {6.92463920e-06,1.42571950e-05},{-2.66086620e-05,-7.12759730e-05}, {5.89931760e-05,1.37628230e-04},{-6.49777920e-05,-1.32395050e-04}, {2.58434030e-05,4.90252050e-05} }, { {4.58458250e-06,-6.53588470e-06},{9.46744610e-06,2.42272460e-05}, {-2.67206020e-05,-8.11098640e-05},{-4.16008830e-06,9.57331110e-05}, {2.19668730e-05,-3.90286300e-05} }, { {-5.66306980e-06,-7.51917830e-06},{-5.36999230e-05,1.28369270e-04}, {3.14068010e-04,-1.42949130e-04},{-4.97697720e-04,8.92617380e-05}, {2.60174380e-04,-2.37978070e-05} } }, { { {1.83953600e-07,4.79834760e-07},{-3.56368800e-07,-2.54780900e-06}, {-2.36189850e-07,6.04379160e-06},{9.88566340e-07,-6.53907020e-06}, {-5.57172530e-07,2.58527070e-06} }, { {5.77580760e-07,-5.14831180e-07},{5.12128720e-07,4.93409740e-06}, {-8.64584460e-06,-1.03767320e-05},{1.53672160e-05,1.08082860e-05}, {-8.00152420e-06,-4.23370300e-06} }, { {3.56241730e-07,1.00860180e-06},{1.72471110e-06,-5.84573270e-06}, {-1.77568510e-06,1.39340740e-05},{2.90521140e-06,-1.48764960e-05}, {-2.87016410e-06,5.82298620e-06} } }, { { {-6.24558930e-08,2.14164950e-07},{3.79205570e-07,-8.45235760e-07}, {-1.05140210e-06,1.86769020e-06},{1.28252440e-06,-1.93231620e-06}, {-5.54289340e-07,7.43684570e-07} }, { {-1.21188490e-07,-1.04497910e-08},{1.42343640e-07,7.29997200e-07}, {-1.64485730e-07,-1.65979850e-06},{3.59950900e-07,1.76484990e-06}, {-2.30391000e-07,-6.92357620e-07} }, { {-1.23040960e-07,2.36260450e-07},{9.88608700e-07,-7.95781040e-07}, {-2.79350130e-06,1.89461730e-06},{2.99647520e-06,-2.05125690e-06}, {-1.10489210e-06,8.11049790e-07} } }, { { {-4.17323270e-09,2.97595160e-08},{2.43097520e-08,-1.39985080e-07}, {-9.21350990e-08,2.88967360e-07},{1.26736020e-07,-2.88609880e-07}, {-5.53352770e-08,1.09177480e-07} }, { {1.66635790e-08,-1.90898190e-08},{-1.35591160e-07,1.07937230e-07}, {4.16830940e-07,-2.61368810e-07},{-5.29185900e-07,2.84992120e-07}, {2.30962440e-07,-1.13049720e-07} }, { {-1.05852410e-08,8.73847960e-08},{4.82393140e-08,-3.64001090e-07}, {-8.84843850e-08,7.11122070e-07},{1.39947700e-09,-6.83029240e-07}, {5.05860820e-08,2.51523740e-07} } }, { { {-3.00612090e-10,3.31043320e-09},{-1.14420570e-08,-2.23546010e-08}, {5.08153570e-08,5.53559910e-08},{-7.15824570e-08,-6.13521000e-08}, {3.26530440e-08,2.45618280e-08} }, { {-1.74069350e-09,6.92695500e-10},{1.51596710e-08,3.83232300e-09}, {-3.16651390e-08,-1.78281760e-08},{2.33909800e-08,2.49189810e-08}, {-4.45145670e-09,-1.11675690e-08} }, { {1.94933100e-08,1.20084240e-08},{-3.55199600e-08,-3.39551050e-08}, {-7.73415250e-08,7.96326000e-08},{1.83742740e-07,-8.48278160e-08}, {-9.19094440e-08,3.31722700e-08} } }, { { {1.42813010e-10,-3.97020360e-10},{-3.80624480e-10,1.49093690e-09}, {-4.62202130e-10,-3.70268730e-09},{1.82122950e-09,4.04722970e-09}, {-1.12701850e-09,-1.60041400e-09} }, { {3.63999750e-10,-1.33206360e-10},{-2.72598810e-09,4.74082020e-10}, {7.76350060e-09,-1.16093420e-09},{-9.15736410e-09,1.27257770e-09}, {3.77375310e-09,-5.05810900e-10} }, { {-6.62924530e-10,-4.66880850e-10},{-1.36487570e-09,2.10888460e-10}, {1.68792800e-08,-8.37339280e-10},{-3.00511730e-08,1.09071770e-09}, {1.49656150e-08,-4.69220210e-10} } }, { { {-1.59070560e-09,-1.68718910e-09},{9.29858020e-09,9.54036860e-09}, {-2.14912570e-08,-2.33438290e-08},{2.19526810e-08,2.59312660e-08}, {-8.14614910e-09,-1.04643970e-08} }, { {3.78976760e-11,6.21029600e-10},{-7.11105230e-10,-2.82999820e-09}, {-5.14741160e-10,5.71321190e-09},{3.69236870e-09,-5.64388540e-09}, {-2.65462740e-09,2.13292920e-09} }, { {3.92032430e-09,1.09474040e-09},{-1.23959980e-08,-3.65636290e-09}, {3.03897860e-08,4.72543130e-09},{-4.06642470e-08,-2.52348070e-09}, {1.98568160e-08,3.66323860e-10} } }, { { {5.54232920e-09,-2.24476420e-09},{-2.32330370e-08,2.61228070e-08}, {6.14707970e-08,-5.86384070e-08},{-7.62610370e-08,6.00796150e-08}, {3.29793270e-08,-2.26524310e-08} }, { {8.23366190e-09,9.96199780e-10},{-1.19432550e-08,3.10410770e-08}, {-1.33373330e-08,-7.04357030e-08},{3.24196680e-08,7.57296790e-08}, {-1.51690660e-08,-3.00464370e-08} }, { {-1.68147290e-08,1.30668070e-08},{5.08379430e-08,-8.99057770e-08}, {-2.62439200e-08,1.96964440e-07},{-1.87426170e-08,-2.05804780e-07}, {1.75223530e-08,8.04986470e-08} } }, { { {4.87403640e-10,-1.32010570e-08},{-1.25766750e-07,3.97244790e-08}, {5.73871210e-07,-1.92312870e-07},{-8.29582650e-07,2.52343660e-07}, {3.83394590e-07,-1.08108290e-07} }, { {-4.58960930e-08,2.66844460e-08},{2.02417650e-07,-8.74098850e-08}, {-2.80268640e-07,2.70260620e-07},{1.29676810e-07,-3.47514460e-07}, {-1.00802290e-09,1.52795620e-07} }, { {-9.05776470e-09,1.04834380e-07},{-1.49739060e-07,-3.73780100e-07}, {1.41069780e-07,6.19920380e-07},{4.73987400e-08,-5.12511780e-07}, {-5.02617850e-08,1.67393900e-07} } }, { { {-2.70971710e-08,1.11555570e-06},{-9.25214260e-07,-4.90737370e-06}, {2.68065690e-06,9.83735610e-06},{-2.85108680e-06,-9.70090700e-06}, {1.06550620e-06,3.64271060e-06} }, { {1.31372330e-08,-2.34194750e-07},{-1.58382030e-06,2.33875560e-06}, {6.00599110e-06,-5.96249710e-06},{-7.70809850e-06,6.52298260e-06}, {3.28981730e-06,-2.57228380e-06} }, { {6.36872040e-07,8.54081580e-07},{-2.32939340e-06,-1.36796970e-06}, {-3.79885260e-06,7.27831370e-06},{1.07562130e-05,-9.44931570e-06}, {-5.88213240e-06,3.99031360e-06} } }, { { {2.13265640e-06,1.55298810e-06},{-3.05531780e-06,-4.00830980e-06}, {-8.47968470e-06,1.16445880e-05},{2.03820010e-05,-1.34985820e-05}, {-1.08707960e-05,5.57682620e-06} }, { {2.61024140e-06,3.55750600e-06},{-1.35579930e-05,-1.28756360e-05}, {2.62433380e-05,3.32796190e-05},{-2.28844720e-05,-3.61077400e-05}, {7.43929070e-06,1.41011190e-05} }, { {7.54068830e-07,-4.04783630e-06},{3.06559870e-05,1.73673800e-05}, {-9.73229160e-05,-3.52577590e-05},{1.19523010e-04,3.55567490e-05}, {-5.15751460e-05,-1.35047530e-05} } }, { { {-9.81693840e-07,8.47982290e-05},{5.73563470e-05,-5.19552290e-04}, {-2.11140520e-04,1.03098460e-03},{2.55577900e-04,-1.00078640e-03}, {-1.03098500e-04,3.71070770e-04} }, { {-5.84756620e-06,-8.41910600e-06},{4.64387710e-05,-2.86604800e-05}, {-2.21707820e-04,-2.87771290e-05},{3.05595460e-04,5.26208870e-05}, {-1.36195930e-04,-2.22814360e-05} }, { {-3.15485470e-05,1.19657860e-05},{1.79742370e-04,2.05428280e-05}, {8.31913440e-05,5.79917290e-04},{-5.28305940e-04,-8.34788070e-04}, {3.35481750e-04,3.62175230e-04} } }, { { {-1.12978660e-04,-1.71311630e-04},{4.58677850e-04,1.48781690e-03}, {-5.89517180e-04,-9.87216550e-04},{3.25881110e-04,1.05823430e-04}, {-4.35564530e-05,1.21548490e-04} }, { {-9.38103140e-05,3.75397520e-04},{8.69237450e-04,-1.57437330e-03}, {-2.03236860e-03,3.30230180e-03},{2.11192050e-03,-3.31518120e-03}, {-8.17190670e-04,1.25280180e-03} }, { {-4.87816920e-05,-1.14871920e-03},{-7.31308680e-04,4.29421720e-03}, {3.94119560e-03,-7.83298710e-03},{-6.19764900e-03,7.10124530e-03}, {3.07157430e-03,-2.49727230e-03} } }, { { {-6.66274000e-04,4.57045070e-03},{-2.80311020e-03,-2.59053270e-02}, {9.61622830e-03,5.19645450e-02},{-1.29605670e-02,-5.17754350e-02}, {6.53567060e-03,1.95151150e-02} }, { {-6.05652880e-04,-3.66111070e-04},{-4.42113110e-03,-3.05443430e-04}, {1.36357740e-02,-5.82384930e-03},{-1.33261310e-02,8.17306880e-03}, {4.62142970e-03,-3.40837930e-03} }, { {1.93950360e-03,1.97457120e-03},{1.30260030e-02,8.25262530e-03}, {-6.71008190e-02,2.78099720e-02},{9.91845220e-02,-4.78174770e-02}, {-4.93984990e-02,2.19279790e-02} } }, { { {1.89298410e-05,1.34197630e-04},{1.42934690e-04,-8.33995870e-04}, {-8.10871580e-05,9.90478900e-04},{3.87152940e-04,-6.45382830e-04}, {-5.03048520e-04,1.75053740e-04} }, { {-3.14424520e-04,-4.83211260e-05},{4.45099360e-04,1.93523010e-04}, {3.56449590e-03,3.56418330e-05},{-9.19061450e-03,-3.36435770e-04}, {6.10011850e-03,2.02520510e-04} }, { {-1.09735510e-04,5.36853570e-04},{-3.83173970e-03,-2.08218650e-03}, {1.65765860e-02,3.89788590e-03},{-3.16324440e-02,-3.59456430e-03}, {2.03934370e-02,1.28770070e-03} } }, { { {7.47378330e-06,8.05428020e-05},{4.01672030e-05,-4.80839610e-04}, {-1.03705670e-04,1.04110240e-03},{2.95235570e-05,-1.08264910e-03}, {3.68122080e-05,4.20550630e-04} }, { {2.27880110e-05,-8.12944730e-07},{8.09989160e-05,1.33414030e-04}, {-4.42943470e-04,-3.77931160e-04},{8.12754030e-04,4.22353460e-04}, {-5.25758320e-04,-1.67786420e-04} }, { {-4.42384800e-05,6.39398560e-05},{-1.50554020e-04,-1.10671240e-04}, {5.30781150e-04,9.15062520e-04},{2.35127140e-04,-1.14563510e-03}, {-7.27007200e-04,4.69074680e-04} } }, { { {-6.95666410e-07,2.09756650e-06},{6.02637960e-06,-1.69529560e-05}, {-2.26301720e-05,2.51484130e-05},{3.37046100e-05,-2.08054190e-05}, {-1.70566930e-05,6.85591180e-06} }, { {4.74785870e-06,-2.57644220e-06},{-1.41750900e-05,1.19833460e-05}, {1.74355830e-05,-1.57390890e-05},{-2.48918940e-05,1.30254740e-05}, {2.03160970e-05,-4.53381060e-06} }, { {1.03898230e-06,1.40637300e-05},{9.72154280e-06,-5.41195230e-05}, {3.19338230e-05,1.01483930e-04},{-1.06990530e-04,-9.37708140e-05}, {8.15628130e-05,3.33039000e-05} } }, { { {-1.15871130e-07,-2.53106530e-07},{9.06448270e-07,1.26734990e-06}, {-2.87839230e-06,-2.40847200e-06},{3.67782130e-06,2.11021560e-06}, {-1.57988380e-06,-7.04292130e-07} }, { {-1.10330890e-07,3.56574610e-07},{-1.37789950e-06,8.04261110e-07}, {2.88998830e-06,-2.96225610e-08},{-7.87999690e-07,-7.21251290e-07}, {-8.93071520e-07,4.04687190e-07} }, { {3.03708050e-07,6.68332660e-07},{2.69018570e-06,-6.05383290e-06}, {-1.35879090e-05,8.29229150e-06},{2.10275660e-05,-5.89033870e-06}, {-1.10104280e-05,1.66769440e-06} } }, { { {-1.36538010e-08,-2.62598640e-08},{8.06685510e-08,1.28117840e-07}, {-2.63909930e-07,-3.19640030e-07},{3.47435030e-07,3.37257320e-07}, {-1.52529180e-07,-1.28410280e-07} }, { {-3.17599430e-08,-3.99216070e-08},{-4.37991740e-08,6.12994920e-08}, {4.63984430e-07,-1.42485770e-07},{-7.73056100e-07,1.64894070e-07}, {3.89699060e-07,-7.02590540e-08} }, { {2.38878330e-08,7.42478200e-08},{-5.18106450e-08,-2.13402640e-07}, {-2.33764560e-07,2.73913620e-07},{1.50515300e-07,-1.89077950e-07}, {8.55743590e-08,5.45552690e-08} } }, { { {9.67119350e-11,-1.37162700e-08},{-1.33421240e-08,5.75424870e-08}, {5.52853550e-08,-1.30807130e-07},{-7.72105520e-08,1.35692530e-07}, {3.52297730e-08,-5.20030550e-08} }, { {-4.32629920e-09,4.60618440e-09},{4.14737100e-08,-4.46243130e-08}, {-9.17112150e-08,1.10748200e-07},{7.71106090e-08,-1.20808920e-07}, {-2.18846410e-08,4.77149720e-08} }, { {4.82077800e-09,-9.48701740e-09},{-1.03997640e-08,8.91850050e-08}, {-8.28188420e-08,-2.08572880e-07},{1.74153240e-07,2.25131230e-07}, {-8.77411230e-08,-8.94819380e-08} } }, { { {2.59974390e-10,-1.24279150e-09},{-4.03572610e-09,7.01377550e-09}, {1.62917290e-08,-1.66157200e-08},{-2.23912000e-08,1.82344370e-08}, {9.93580220e-09,-7.32415810e-09} }, { {-1.43614490e-09,-3.06883700e-10},{7.85950600e-09,1.91068970e-09}, {-1.91262230e-08,-3.55595330e-09},{2.23079590e-08,3.63585780e-09}, {-9.54040930e-09,-1.48606490e-09} }, { {-1.64876250e-09,-2.68225220e-09},{1.16911380e-08,1.34094300e-08}, {-3.22277520e-08,-2.81939380e-08},{4.06352590e-08,2.75976450e-08}, {-1.85744580e-08,-1.01355840e-08} } }, { { {-1.97045540e-10,-1.12838650e-10},{1.58171940e-09,1.12060560e-09}, {-4.42160910e-09,-2.59055430e-09},{5.22217970e-09,2.72841900e-09}, {-2.19482570e-09,-1.05845990e-09} }, { {1.74241840e-10,-1.29936340e-11},{-6.98925290e-10,-2.22081800e-10}, {1.00996390e-09,1.01186590e-09},{-4.20525870e-10,-1.43722820e-09}, {-8.09216070e-11,6.53226350e-10} }, { {-4.42409080e-10,-7.76917610e-10},{-3.53095270e-09,1.31966500e-09}, {1.77471170e-08,-3.53477700e-09},{-2.15800870e-08,3.99500090e-09}, {7.87991440e-09,-1.60309410e-09} } }, { { {-1.10829930e-12,2.00714060e-11},{-4.06828230e-11,-5.26786420e-11}, {1.95419050e-10,1.44965310e-10},{-2.89538440e-10,-1.69266140e-10}, {1.36025460e-10,6.97155940e-11} }, { {-1.46565370e-11,3.73274970e-12},{7.80269170e-11,-1.57715980e-11}, {-1.70515820e-10,4.16251540e-11},{1.61950630e-10,-4.85106860e-11}, {-5.54435510e-11,2.02173960e-11} }, { {3.50036340e-11,-6.76597390e-12},{3.06638400e-10,-6.79855280e-13}, {-1.77514030e-09,3.21339190e-11},{2.65863860e-09,-5.66575780e-11}, {-1.21395660e-09,2.77465170e-11} } }, { { {3.74734900e-11,6.45034850e-11},{-1.25288050e-10,-3.88464400e-10}, {1.50934530e-11,9.79650510e-10},{2.42959610e-10,-1.08440750e-09}, {-1.70560580e-10,4.32314310e-10} }, { {1.08229510e-11,-4.06447460e-12},{6.00060920e-11,-7.96725680e-12}, {-2.74271840e-10,-3.79455280e-13},{3.02635790e-10,1.97055950e-11}, {-9.35324660e-11,-1.34830500e-11} }, { {-1.71097820e-10,-7.78196270e-11},{2.31263000e-10,4.53462090e-10}, {3.16010610e-10,-1.11596100e-09},{-8.06214670e-10,1.22916650e-09}, {3.71048580e-10,-4.89992810e-10} } }, { { {-2.24056590e-10,1.94935620e-10},{1.71146150e-09,-2.34972770e-09}, {-5.68144810e-09,5.74380340e-09},{7.42606030e-09,-6.37715790e-09}, {-3.26054500e-09,2.56748110e-09} }, { {7.02933080e-11,3.19882070e-10},{-1.72767190e-09,-2.82128220e-09}, {5.63749290e-09,7.21370530e-09},{-6.55576910e-09,-8.13959250e-09}, {2.56774720e-09,3.29761150e-09} }, { {6.33164400e-10,-1.07798530e-09},{-1.18376360e-09,2.27708500e-09}, {2.37036330e-09,-4.84242960e-09},{-3.25215850e-09,4.88470440e-09}, {1.49802680e-09,-1.85308210e-09} } }, { { {-5.31993170e-10,-1.45954400e-09},{8.19993270e-09,3.04214330e-09}, {-2.93374820e-08,-2.82837680e-09},{3.76096890e-08,2.77401330e-10}, {-1.61339480e-08,5.32098520e-10} }, { {2.01866620e-09,2.17032560e-10},{-6.02670980e-09,-2.49339860e-09}, {-4.32231940e-09,7.71919510e-09},{2.11834320e-08,-9.36379620e-09}, {-1.31299960e-08,3.92433860e-09} }, { {1.66867490e-09,-1.84999190e-09},{-3.12416270e-09,1.24282750e-08}, {3.50302150e-08,-3.31369740e-08},{-6.27896280e-08,3.82015770e-08}, {3.13320750e-08,-1.56776000e-08} } }, { { {1.15047030e-08,-3.64751520e-08},{-4.01050800e-08,1.67532060e-07}, {1.35573100e-07,-3.24894930e-07},{-2.02655370e-07,3.10422550e-07}, {9.82541210e-08,-1.13748640e-07} }, { {-6.29198510e-10,1.77893430e-08},{8.82489670e-08,-5.33427310e-08}, {-3.05764360e-07,1.70708250e-07},{3.62881060e-07,-2.03277630e-07}, {-1.45487260e-07,8.33492160e-08} }, { {-5.17236260e-08,-2.55412970e-08},{1.49293060e-07,1.69968470e-07}, {1.70504630e-07,-4.06863340e-07},{-5.34618380e-07,4.29855200e-07}, {2.97550500e-07,-1.65007100e-07} } }, { { {-2.68982130e-08,-4.54128820e-07},{-5.36680630e-07,1.59143610e-06}, {2.83271060e-06,-4.37453230e-06},{-4.14953840e-06,4.99455330e-06}, {1.90707270e-06,-2.02427230e-06} }, { {-1.46777730e-07,-2.94006110e-08},{6.63367490e-07,-3.87205910e-08}, {-5.30347820e-07,3.83559850e-07},{-3.23853940e-07,-6.31689800e-07}, {3.66626840e-07,3.05664620e-07} }, { {3.52657120e-08,3.33528970e-07},{-1.17012180e-06,-8.15402650e-07}, {2.41517550e-06,6.09011190e-07},{-2.05630850e-06,9.11855910e-08}, {7.17085400e-07,-2.04892760e-07} } }, { { {-4.38363280e-07,1.16744110e-07},{-2.66654160e-06,4.19214470e-06}, {9.42120750e-06,-1.44433150e-05},{-1.01022850e-05,1.73462090e-05}, {3.65458510e-06,-7.14545110e-06} }, { {-2.10091160e-07,-5.84444170e-07},{-4.95402670e-06,1.26812390e-05}, {2.05011340e-05,-2.83567580e-05},{-2.71624230e-05,3.03001920e-05}, {1.18736480e-05,-1.19780900e-05} }, { {2.16214800e-06,4.18442610e-06},{-6.86037480e-06,4.89348370e-06}, {-1.99700570e-05,-5.91191930e-06},{5.10062310e-05,4.47806530e-06}, {-2.82609990e-05,-1.41015550e-06} } }, { { {6.64148710e-06,-1.36422120e-05},{2.02389330e-06,7.01620020e-07}, {-8.75775980e-05,-1.80746330e-04},{1.53676890e-04,2.72965280e-04}, {-7.57343410e-05,-1.21673180e-04} }, { {7.97011610e-06,9.83152310e-06},{-1.83692360e-05,-1.40992740e-05}, {-2.54401510e-05,9.21415830e-05},{7.97135960e-05,-1.28195290e-04}, {-4.39577790e-05,5.61102580e-05} }, { {-4.65766270e-06,3.41958930e-05},{1.02676940e-04,-1.04963070e-04}, {-3.86131980e-04,1.42496290e-04},{5.27716080e-04,-8.91938940e-05}, {-2.42652760e-04,2.08905360e-05} } }, { { {4.82940320e-05,6.27819820e-04},{-2.91793940e-04,-3.79600680e-03}, {7.06935970e-04,7.46724240e-03},{-8.41995950e-04,-7.36156580e-03}, {3.67208320e-04,2.76761870e-03} }, { {2.94196980e-05,-1.34891480e-04},{1.03693480e-04,4.08015870e-04}, {-6.34004980e-04,-1.84436800e-03},{9.34807070e-04,2.24058640e-03}, {-4.31387800e-04,-9.13869290e-04} }, { {1.45177610e-04,6.69215820e-04},{-1.41654720e-04,2.11726170e-03}, {2.41528490e-03,2.35738390e-03},{-4.47349980e-03,-5.20293920e-03}, {2.30257290e-03,2.48318420e-03} } }, { { {8.18768860e-04,-8.30979010e-05},{-5.88344950e-03,-3.38232310e-03}, {2.02250680e-02,-6.03227070e-03},{-2.71045980e-02,1.21310640e-02}, {1.26402510e-02,-5.73732110e-03} }, { {-1.42183730e-03,-1.00358120e-03},{1.72061100e-03,7.54425160e-03}, {8.76468910e-03,-1.39244070e-02},{-2.04137040e-02,1.31795390e-02}, {1.23039860e-02,-4.83900790e-03} }, { {-2.56906300e-03,8.30794570e-04},{-1.65175220e-03,-9.27181000e-03}, {-8.94464430e-04,1.34050020e-02},{2.13408400e-03,-8.71657390e-03}, {-7.25563460e-04,1.97430680e-03} } }, { { {-3.49593830e-05,-2.78962190e-04},{4.18434220e-04,1.68060640e-03}, {-1.31654510e-03,-3.23010340e-03},{2.04646410e-03,3.07731490e-03}, {-1.22216300e-03,-1.12635780e-03} }, { {7.29932020e-05,9.13646350e-05},{4.73055980e-04,6.11335560e-05}, {4.23401010e-04,8.81986930e-04},{-3.91970750e-03,-1.33940890e-03}, {3.39810860e-03,5.95776740e-04} }, { {-1.47360310e-04,-1.18357970e-04},{-3.38523280e-03,-2.84335710e-03}, {1.84886250e-02,2.31563530e-03},{-3.25235600e-02,-8.15106310e-04}, {1.93703890e-02,3.41454100e-05} } }, { { {-3.32019090e-06,-2.38945970e-05},{2.80250080e-05,4.48589150e-05}, {-1.00176640e-04,-2.22624390e-04},{9.05893970e-05,2.86317070e-04}, {-9.79034890e-06,-1.21209210e-04} }, { {2.24432740e-05,-1.96790740e-05},{3.04349450e-05,-2.27748790e-05}, {-4.88730710e-04,1.04489980e-04},{1.03083930e-03,-1.44617450e-04}, {-6.52244100e-04,6.42304250e-05} }, { {-8.89308210e-06,2.10649050e-05},{1.85222710e-04,-5.29409470e-05}, {-9.11602540e-04,2.09626600e-05},{2.19003600e-03,3.97748640e-05}, {-1.59546960e-03,-3.07378100e-05} } }, { { {-1.75327220e-07,-5.82825070e-06},{1.14733050e-06,2.99428740e-05}, {-8.67428030e-06,-5.89595750e-05},{1.73891140e-05,5.75578920e-05}, {-1.02823160e-05,-2.14829060e-05} }, { {-4.41227610e-07,1.74712140e-06},{-6.46654430e-06,-6.00885430e-06}, {2.41772770e-05,2.31733140e-05},{-4.33596730e-05,-2.77654400e-05}, {2.93813150e-05,1.12992740e-05} }, { {1.44862800e-06,-5.09531360e-06},{1.22584930e-05,-8.92389930e-06}, {-2.53537940e-05,-2.68044110e-05},{-3.61651670e-05,4.51399910e-05}, {5.66343110e-05,-2.01437560e-05} } }, { { {-6.91658580e-09,3.78432150e-08},{-5.35881780e-08,-4.66784200e-07}, {2.63591560e-07,1.45744340e-06},{-4.75793510e-07,-1.78083990e-06}, {2.83945310e-07,7.46479180e-07} }, { {-1.32507580e-07,-1.62628530e-07},{-1.32661210e-07,1.65967330e-07}, {1.15567070e-06,-1.08208720e-06},{-7.89839280e-07,1.47685490e-06}, {-2.65281450e-07,-6.43119580e-07} }, { {2.28462410e-07,-1.78759260e-07},{5.16770700e-07,8.13326990e-07}, {-5.79458310e-06,-1.79815870e-06},{1.00180980e-05,1.80953730e-06}, {-5.71913570e-06,-6.79863520e-07} } }, { { {1.27267840e-08,-1.56524350e-08},{-9.37677150e-08,1.66235710e-08}, {2.83299280e-07,1.25158270e-08},{-3.48820390e-07,-4.65582410e-08}, {1.48341910e-07,2.62182370e-08} }, { {5.41061750e-09,1.70254910e-08},{5.15640820e-09,-1.60560280e-07}, {1.01089190e-07,2.90601570e-07},{-2.71477940e-07,-2.61973040e-07}, {1.71133020e-07,9.21612600e-08} }, { {1.44017910e-08,-7.45714480e-08},{-1.00701140e-07,2.59418300e-07}, {2.88082330e-07,-5.12861660e-07},{-3.88009420e-07,4.82514050e-07}, {2.17497440e-07,-1.72785580e-07} } }, { { {-5.14030040e-10,4.04876350e-09},{-2.27136170e-09,-2.22198680e-08}, {1.80144930e-08,5.46629170e-08},{-2.80465070e-08,-5.97165100e-08}, {1.29156500e-08,2.36338450e-08} }, { {-1.05097490e-09,-9.20966090e-10},{1.01374220e-08,9.38465660e-09}, {-2.89625740e-08,-2.77630480e-08},{3.41405390e-08,3.30102310e-08}, {-1.45170030e-08,-1.36429720e-08} }, { {-3.63476870e-10,-2.07202880e-09},{-8.10901080e-09,5.23512040e-10}, {4.33680580e-09,1.49011820e-08},{4.13258450e-08,-2.56043640e-08}, {-3.81072830e-08,1.22256760e-08} } }, { { {-7.57905560e-11,4.48440130e-10},{7.81156720e-10,-2.79138570e-09}, {-2.18712930e-09,7.38136000e-09},{2.54314270e-09,-8.45345270e-09}, {-1.06997900e-09,3.44708650e-09} }, { {2.04842830e-10,3.62833600e-11},{-1.38900180e-09,3.50652980e-10}, {2.17860590e-09,-1.53833240e-09},{-7.27142260e-10,2.04750830e-09}, {-2.96037850e-10,-8.91603510e-10} }, { {-4.66863140e-10,1.13670630e-10},{4.19851400e-10,-2.87163940e-09}, {7.94538680e-09,7.35404100e-09},{-1.57378770e-08,-8.23304570e-09}, {7.98924310e-09,3.30933590e-09} } }, { { {-3.72544230e-11,6.49794340e-11},{4.71811560e-10,-2.79104350e-10}, {-1.65056130e-09,6.12174810e-10},{2.13415560e-09,-6.22609170e-10}, {-9.20377250e-10,2.35896000e-10} }, { {2.95205770e-11,-2.48419330e-11},{-1.79804430e-11,1.50143020e-10}, {-1.27515230e-10,-4.33820390e-10},{1.31448000e-10,5.19625530e-10}, {-1.66530010e-11,-2.17037990e-10} }, { {8.36457650e-11,1.27354840e-10},{-8.70110510e-10,-8.20178890e-10}, {2.85510500e-09,2.12695370e-09},{-3.55015230e-09,-2.42113720e-09}, {1.52657860e-09,9.86845820e-10} } }, { { {1.03515040e-11,5.74772770e-12},{-6.02609340e-11,-5.61080390e-11}, {1.32360630e-10,1.45711860e-10},{-1.32708860e-10,-1.63751380e-10}, {5.07309730e-11,6.58934060e-11} }, { {-2.62936800e-12,5.16069170e-12},{-7.82479010e-12,-1.74260560e-11}, {4.13018230e-11,4.15148160e-11},{-6.33319620e-11,-4.55576800e-11}, {3.32486730e-11,1.82967740e-11} }, { {-2.10140440e-11,4.21461100e-11},{2.95728440e-10,-6.69448460e-11}, {-7.79196520e-10,1.70516430e-10},{5.47002280e-10,-1.87865040e-10}, {-4.49940030e-11,7.43510270e-11} } }, { { {-1.99488790e-13,-7.79522960e-13},{2.62842850e-12,1.88092980e-12}, {-8.13703750e-12,-5.10895190e-12},{9.76074530e-12,5.96362910e-12}, {-4.06134980e-12,-2.45874290e-12} }, { {4.86629990e-13,-2.38093640e-13},{-1.61348060e-12,9.44235890e-13}, {1.41495320e-12,-3.02806910e-12},{7.92733810e-13,3.82466510e-12}, {-1.06694590e-12,-1.64936700e-12} }, { {-1.50960060e-12,1.25879330e-12},{-1.63568540e-11,-2.64571700e-12}, {8.97908410e-11,7.94855500e-12},{-1.31237880e-10,-9.82200920e-12}, {5.84313360e-11,4.19919350e-12} } }, { { {-9.64120130e-13,-1.06234090e-12},{-8.02141130e-12,1.00555080e-11}, {4.77659770e-11,-2.88324990e-11},{-7.22769120e-11,3.42846780e-11}, {3.34668140e-11,-1.42524620e-11} }, { {-1.53921190e-12,-1.41037590e-12},{2.48087100e-12,1.23985730e-11}, {8.14001750e-12,-3.62396790e-11},{-1.76818860e-11,4.40619800e-11}, {8.27092910e-12,-1.86366660e-11} }, { {8.27826780e-12,1.95811420e-12},{1.93219130e-11,-8.06774180e-12}, {-1.75676760e-10,1.37984970e-11},{2.92639740e-10,-1.09395690e-11}, {-1.43026770e-10,3.30940940e-12} } }, { { {1.00860450e-11,-8.57715920e-12},{-8.31431520e-11,1.01487400e-10}, {2.58145530e-10,-2.67497700e-10},{-3.24068560e-10,3.05674970e-10}, {1.39947530e-10,-1.24417250e-10} }, { {-7.13453310e-12,-1.48101080e-12},{1.00165410e-10,3.07214920e-11}, {-3.11457350e-10,-8.03725970e-11},{3.59717010e-10,8.94944540e-11}, {-1.40784680e-10,-3.56164590e-11} }, { {-2.59435080e-11,2.94063590e-11},{4.72337810e-11,-4.19705030e-11}, {-2.41224260e-10,1.00198310e-10},{5.51199230e-10,-1.09615820e-10}, {-3.24404890e-10,4.38367320e-11} } }, { { {7.09672180e-11,1.30225210e-10},{-4.27005460e-10,-6.26824490e-10}, {8.58107640e-10,1.37200710e-09},{-6.62727840e-10,-1.41117110e-09}, {1.61178930e-10,5.39890150e-10} }, { {-6.33681450e-11,-9.15381080e-11},{1.18203700e-10,6.99974380e-10}, {4.07851630e-10,-1.99867380e-09},{-9.86855350e-10,2.39953750e-09}, {5.48358930e-10,-1.00779230e-09} }, { {-7.40867670e-11,1.24258110e-10},{1.62683300e-10,-8.64978030e-10}, {-2.15361360e-09,2.36770400e-09},{4.12244860e-09,-2.75437020e-09}, {-2.22629680e-09,1.13401480e-09} } }, { { {-6.24143490e-10,1.05575510e-09},{4.68113160e-09,-7.05356910e-09}, {-1.58782770e-08,1.53040040e-08},{2.05558090e-08,-1.55783610e-08}, {-8.85696720e-09,5.91407800e-09} }, { {1.25022530e-10,4.64867830e-10},{-4.51559790e-09,-6.12964840e-09}, {1.30027860e-08,1.15102140e-08},{-1.35987130e-08,-1.07964360e-08}, {4.95438130e-09,3.92194160e-09} }, { {3.15059550e-09,-2.10846420e-09},{-5.96098570e-09,1.30352400e-08}, {4.23027510e-10,-2.76381760e-08},{5.06182030e-10,2.90111810e-08}, {7.39834330e-10,-1.15041500e-08} } }, { { {-3.28857830e-09,1.73025590e-08},{4.52579510e-08,-6.91839810e-08}, {-1.57918880e-07,1.83816120e-07},{1.98777690e-07,-2.09557340e-07}, {-8.42280260e-08,8.53586450e-08} }, { {1.08702890e-08,-3.24523590e-09},{-4.25162310e-08,1.12363480e-08}, {3.14829740e-08,-5.15762910e-08},{2.02458830e-08,6.53341800e-08}, {-2.25152940e-08,-2.66028600e-08} }, { {-1.42908770e-08,5.07230640e-10},{4.83642430e-08,-2.54479690e-08}, {1.01035240e-07,8.86425170e-08},{-2.58808490e-07,-1.12053140e-07}, {1.31704860e-07,4.78099550e-08} } }, { { {9.34677010e-09,-6.10289110e-08},{1.80920390e-08,-5.59960350e-08}, {1.61724030e-07,8.23079680e-07},{-4.17815660e-07,-1.23638880e-06}, {2.40189440e-07,5.58877170e-07} }, { {-4.79321550e-10,5.40247070e-08},{3.16887930e-07,-3.66387280e-07}, {-9.32087740e-07,6.48202500e-07},{1.00871100e-06,-5.02178600e-07}, {-3.86624520e-07,1.43554450e-07} }, { {-1.29174810e-07,-3.97540830e-07},{5.39523390e-07,9.74517090e-07}, {1.06737390e-06,-2.93990690e-06},{-2.47725830e-06,3.22455580e-06}, {1.23526330e-06,-1.23735210e-06} } }, { { {2.87772790e-07,-1.88194380e-06},{-4.28451640e-06,8.24630010e-06}, {1.63164290e-05,-2.02286690e-05},{-2.14166740e-05,2.14270010e-05}, {9.29434950e-06,-8.24869590e-06} }, { {-5.42469860e-07,-7.73348680e-07},{2.46916590e-06,-4.94740330e-07}, {9.76920250e-08,2.06281360e-06},{-4.68175070e-06,-3.59176360e-06}, {3.01719490e-06,1.81795550e-06} }, { {-6.79192170e-09,-1.01627620e-06},{-7.85723000e-06,6.52787410e-06}, {1.39113210e-05,-1.88495600e-05},{-1.16191640e-05,2.25622760e-05}, {4.35108650e-06,-9.45300600e-06} } }, { { {-1.83147100e-06,-1.99689880e-05},{-2.49375140e-05,1.38188410e-04}, {6.84340600e-05,-2.09395650e-04},{-6.44198160e-05,1.64433640e-04}, {2.13454970e-05,-5.17318800e-05} }, { {-4.11197380e-06,6.40362530e-06},{-2.83535240e-05,-6.17282340e-06}, {9.60486860e-05,4.78426430e-05},{-1.23316280e-04,-5.56182700e-05}, {5.58663880e-05,2.14244860e-05} }, { {5.01193500e-06,-2.76521040e-05},{-3.05925160e-05,7.92580280e-05}, {-1.99822000e-04,-4.13308990e-04},{4.54837200e-04,5.02865100e-04}, {-2.50634710e-04,-2.03735670e-04} } }, { { {6.39699090e-06,-1.85717340e-04},{2.09106420e-04,1.45100020e-03}, {-7.11074220e-04,-5.16452120e-03},{9.30354190e-04,6.19699800e-03}, {-4.18814320e-04,-2.56685480e-03} }, { {5.08554610e-05,-3.44007740e-05},{-1.84938360e-04,-2.82009920e-04}, {1.66637300e-04,1.09226590e-03},{-2.27752600e-05,-1.42469980e-03}, {-2.93596000e-05,6.20244350e-04} }, { {-8.79308920e-06,-8.96441510e-05},{4.77314120e-04,8.36193940e-04}, {-1.88289450e-03,-3.12169700e-03},{2.67278600e-03,4.13116930e-03}, {-1.26815970e-03,-1.80403280e-03} } }, { { {-7.47412350e-04,-1.18476560e-03},{2.52172330e-03,1.06225060e-02}, {-5.18780470e-03,-1.58772350e-02},{4.88786760e-03,1.14059980e-02}, {-1.42986550e-03,-3.27843030e-03} }, { {-6.95483760e-05,3.88953820e-04},{2.84286100e-03,-2.16833220e-03}, {1.26945180e-04,8.57411250e-03},{-1.16615040e-02,-9.86896620e-03}, {1.04016960e-02,3.99102970e-03} }, { {-3.39597740e-05,-2.98838250e-03},{-1.45719100e-02,-2.37079810e-03}, {4.53525350e-02,-2.19824450e-02},{-5.47860350e-02,3.29865880e-02}, {2.50180500e-02,-1.43349670e-02} } }, { { {-2.91796460e-05,3.47064490e-05},{5.90056470e-04,-3.63748430e-04}, {-2.21024540e-03,1.60024360e-03},{3.42595470e-03,-2.03428990e-03}, {-1.86698950e-03,8.64308650e-04} }, { {1.78935790e-04,-5.89755720e-05},{3.49899380e-05,-4.98620170e-04}, {-3.35899950e-04,9.53420340e-04},{-9.10263450e-04,-8.27423040e-04}, {1.33168830e-03,2.90297660e-04} }, { {-1.07112000e-04,-2.26421430e-05},{-3.93364400e-04,-6.32377680e-05}, {6.60220980e-03,4.34001930e-04},{-1.49006650e-02,-6.03096960e-04}, {1.02923910e-02,2.65232310e-04} } }, { { {3.38991740e-06,-1.18301970e-05},{-2.56688210e-05,7.62962680e-05}, {5.10674650e-05,-9.39375490e-05},{-8.55027250e-05,5.38646030e-05}, {6.19274870e-05,-1.07983490e-05} }, { {5.16161230e-07,8.87413040e-06},{-1.91527600e-05,-9.12326840e-05}, {-1.74759480e-04,2.33672070e-04},{5.64053450e-04,-2.44041310e-04}, {-4.24340750e-04,9.25831000e-05} }, { {7.14940240e-07,-4.07681980e-05},{2.52190780e-04,8.78541520e-05}, {-1.41431190e-03,-4.47239240e-04},{2.72606740e-03,5.24240960e-04}, {-1.73406900e-03,-2.07526230e-04} } }, { { {1.34349790e-07,2.86256240e-06},{-1.67020800e-06,-1.32961170e-05}, {3.95785280e-06,4.09992960e-05},{-2.00264000e-06,-4.88295440e-05}, {-7.97446040e-07,2.01557950e-05} }, { {-1.10168690e-06,-4.32124390e-07},{-4.74697180e-06,1.17609570e-06}, {3.48400930e-05,-9.04316470e-06},{-6.79405930e-05,1.29312140e-05}, {4.23038100e-05,-5.77611080e-06} }, { {1.08745180e-06,7.45669270e-07},{-4.14214190e-06,-7.60897600e-06}, {3.56005090e-05,2.47871650e-05},{-1.21602380e-04,-3.15256350e-05}, {9.70487690e-05,1.36089640e-05} } }, { { {1.92785950e-08,9.50231470e-08},{-2.03481390e-07,-4.76438570e-07}, {9.03340190e-07,9.83227120e-07},{-1.40487740e-06,-9.75055150e-07}, {7.14299530e-07,3.66927690e-07} }, { {-5.42056280e-09,1.45276720e-08},{2.12743580e-07,-8.08843360e-07}, {-4.40646880e-07,1.38775100e-06},{1.06455670e-06,-1.25527730e-06}, {-9.75562670e-07,4.47698070e-07} }, { {-1.74341460e-09,-1.12201190e-07},{-6.63653570e-07,1.43914650e-06}, {2.40020260e-07,-1.70346880e-06},{3.22337630e-06,9.30306730e-07}, {-3.32575140e-06,-1.70274280e-07} } }, { { {7.60350620e-11,2.02921980e-08},{-1.28732070e-08,-9.89280550e-08}, {6.72372850e-08,2.35334710e-07},{-9.43211230e-08,-2.54896770e-07}, {4.00699820e-08,1.01143230e-07} }, { {-3.46615860e-09,-2.93391320e-09},{5.87991270e-08,6.02816870e-08}, {-1.60038450e-07,-1.35134370e-07},{1.46155740e-07,1.42362900e-07}, {-3.39923780e-08,-5.57480650e-08} }, { {-1.53647790e-08,7.99185470e-09},{-3.83447050e-08,-5.61203150e-08}, {2.92214880e-07,1.68522670e-07},{-3.76976880e-07,-2.03113920e-07}, {1.71902150e-07,8.50359290e-08} } }, { { {-3.99379840e-10,-2.13078270e-10},{2.30393130e-09,5.25750900e-09}, {-5.15541420e-09,-1.56460370e-08},{4.79585320e-09,1.89206860e-08}, {-1.62792350e-09,-7.93548330e-09} }, { {1.28760750e-10,-4.88681650e-10},{2.02417430e-10,3.68859390e-09}, {-8.12131410e-09,-6.12998070e-09},{1.68193660e-08,4.68891260e-09}, {-9.43896580e-09,-1.37416790e-09} }, { {-8.55691310e-10,2.49037130e-09},{-1.10224740e-09,-1.54651070e-08}, {1.92392090e-08,3.15470200e-08},{-2.62310290e-08,-3.19491970e-08}, {8.25960040e-09,1.23569060e-08} } }, { { {-1.00168080e-11,-6.82976370e-11},{3.93207550e-10,4.52180120e-10}, {-1.76161830e-09,-1.29853820e-09},{2.46171020e-09,1.53597320e-09}, {-1.09456210e-09,-6.35843980e-10} }, { {1.27760470e-10,1.26796730e-11},{-6.09144800e-10,-3.35853520e-10}, {9.72191120e-10,1.04466610e-09},{-6.95891100e-10,-1.33150670e-09}, {2.04264970e-10,5.79702170e-10} }, { {1.52149360e-11,5.16454910e-11},{4.10679040e-12,-8.88618100e-11}, {1.58113110e-09,-1.59123860e-10},{-4.41716030e-09,3.97092710e-10}, {2.85852760e-09,-2.05497340e-10} } }, { { {2.84229780e-12,-2.39168850e-11},{1.49869520e-11,1.16537410e-10}, {-1.18186580e-10,-2.90709950e-10},{1.92330800e-10,3.22525860e-10}, {-9.21055290e-11,-1.29185180e-10} }, { {-5.97522290e-12,-8.50861500e-13},{2.57086300e-11,-1.69587390e-11}, {4.38317050e-12,7.96716190e-11},{-8.75665350e-11,-1.14116890e-10}, {6.41952610e-11,5.21977490e-11} }, { {1.74170710e-11,1.87527680e-11},{5.18609680e-11,8.05891970e-11}, {-5.59291100e-10,-2.46084960e-10},{8.64494480e-10,3.01728190e-10}, {-3.83030250e-10,-1.27527780e-10} } }, { { {8.71829680e-13,-2.73883950e-12},{-7.89769020e-12,1.63503090e-11}, {2.02599400e-11,-4.72702040e-11},{-1.89420770e-11,5.72314930e-11}, {5.71103670e-12,-2.41775030e-11} }, { {-7.88731210e-13,1.56360030e-12},{-5.94713710e-12,-8.56195900e-12}, {2.65890630e-11,2.25892170e-11},{-2.99856480e-11,-2.56774260e-11}, {1.01349740e-11,1.03957590e-11} }, { {-3.48843070e-12,-3.92060200e-12},{3.52304140e-11,2.75029980e-11}, {-9.60636810e-11,-7.42439960e-11},{1.05794280e-10,8.58707390e-11}, {-4.29530120e-11,-3.52063970e-11} } }, { { {-4.22399070e-13,-2.57785600e-13},{6.35778320e-13,1.26953440e-12}, {2.56777790e-12,-3.24554260e-12},{-5.93868270e-12,3.61780010e-12}, {3.14167910e-12,-1.44830350e-12} }, { {-2.63321890e-13,2.74825440e-14},{2.65738630e-12,2.01991720e-13}, {-7.29379750e-12,-2.29258780e-13},{8.53865070e-12,7.54029500e-14}, {-3.65594080e-12,1.07244910e-14} }, { {2.00526430e-12,-9.60877910e-13},{-6.93929260e-12,2.43978020e-12}, {-1.34729110e-12,-7.16954590e-12},{2.96544600e-11,8.67087520e-12}, {-2.31799680e-11,-3.64518320e-12} } } } };
the_stack_data/492387.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define input_file "poly.txt" #define out_file "results.txt" typedef struct poly { char variable; int power; int coef; int newline; } poly; void sort(poly *first, int start_index, int end_index) { poly tempo = {0}; for (int l = start_index; l < end_index; l++) { for (int j = l + 1; j < end_index; j++) { if (first[j].power > first[l].power) { tempo = first[j]; first[j] = first[l]; first[l] = tempo; } } } for (int j = start_index; j < end_index; j++) { if (first[j].newline == 1) first[j].newline = 0; } first[end_index - 1].newline = 1; } int calculate_derivative_to_str(char *temp, poly *first, int number) { int i = 0; int start_index; int end_index = 0; for (i = 0; i <= number; i++) { first[i].coef = first[i].coef * first[i].power; first[i].power--; } i = 0; while (end_index <= number) { start_index = end_index; end_index++; for (end_index; first[end_index].newline != 1; end_index++) ; end_index++; sort(first, start_index, end_index); } i = 0; if (first[0].power == 0) first[0].variable = ' '; if (first[0].power == 1) { if (first[0].coef) i += sprintf(temp + i, "%d%c", first[0].coef, first[0].variable); } else { if (first[0].coef) i += sprintf(temp + i, "%d%c^%d", first[0].coef, first[0].variable, first[0].power); } if (first[0].newline) i += sprintf(temp + i, "\n"); for (int k = 1; k <= number; k++) { if (first[k].coef == 0) { } else if (first[k].power == 0) { if (first[k - 1].newline || first[k - 1].coef == 0) i += sprintf(temp + i, "%d", first[k].coef); else i += sprintf(temp + i, "+%d", first[k].coef); } else if (first[k].power == 1) { if (first[k - 1].newline || first[k - 1].coef == 0) i += sprintf(temp + i, "%d%c", first[k].coef, first[k].variable); else i += sprintf(temp + i, "+%d%c", first[k].coef, first[k].variable); } else { if (first[k - 1].newline || first[k - 1].coef == 0) i += sprintf(temp + i, "%d%c^%d", first[k].coef, first[k].variable, first[k].power); else i += sprintf(temp + i, "+%d%c^%d", first[k].coef, first[k].variable, first[k].power); } if (first[k].newline) { i += sprintf(temp + i, "\n"); } } return i; } int main() { FILE *fp; char temp[1000]; char *str = NULL; char var; poly *terms = NULL; int file_size = 0, i = 0, number_of_terms = 0; int p = 0, k = 0, term_count = 0; fp = fopen(input_file, "rb"); if (!fp) { printf("No file"); return 1; } fseek(fp, 0L, SEEK_END); file_size = ftell(fp); fseek(fp, 0L, SEEK_SET); str = malloc(sizeof(*str) * (2 * file_size + 1)); fread(str, file_size, 1, fp); fclose(fp); str[file_size] = '\0'; while (str[i] != '\0') { if (str[i] > 'a' && str[i] < 'z' && str[i] != '\0') var = str[i]; if (str[i] == '+' || str[i] == '-' || str[i] == '\n' || str[i] == '\0') { number_of_terms++; } i++; } number_of_terms++; i = 0; terms = calloc(number_of_terms + 1, sizeof(*terms)); while (str[i]) { if (str[i] == var) { terms[term_count].variable = var; p = i; k = 0; while (str[p] != ' ' && p > 0 && str[p] != '\n' && str[p] != '\r' && str[p] != '\0') p--; while (p < i) { temp[k] = str[p]; p++; k++; } temp[k] = '\0'; terms[term_count].coef = atoi(temp); for (p = i + 2; str[p] != ' ' && str[p] != var && str[p] != '\r' && str[p] != '\n' && str[p] != '\0'; p++) ; for (int j = i + 2; j <= p; j++) temp[j - i - 2] = str[j]; temp[p - i - 2] = '\0'; if (temp[0] && temp[0] != var && temp[0] != '+' && temp[0] != '-' && temp[0] != '\0') terms[term_count].power = atoi(temp); else terms[term_count].power = 1; } if (str[i] == '\n' || str[i] == '\0') { terms[term_count].newline = 1; term_count++; } else if (str[i] == var) { terms[term_count].newline = 0; term_count++; } k = 0; i++; } terms[term_count - 1].newline = 1; file_size = calculate_derivative_to_str(str, terms, number_of_terms); free(terms); FILE *fp1 = fopen(out_file, "wb"); fwrite(str, sizeof(char), strlen(str) , fp1); return 0; }
the_stack_data/97012837.c
#include <stdio.h> int main(void){ int tot=100; for(int i=0;i<3;i++) { int x,y; scanf("%d%d",&x,&y); tot-=x*y; } printf("%d\n",tot); return 0; }
the_stack_data/98338.c
#include <stdio.h> int main() { double M[12][12], soma = 0; int i = 0, j = 0, contador = 0; char O; // S de soma ou M de Média scanf("%c", &O); // S for (i = 0; i < 12; i++) { for (j = 0; j < 12; j++) { scanf("%lf", &M[i][j]); } } // enche a matriz i = 0; j = 11; for (i = 0; i < 12; i++) { if (i == 7 && j == 7) { break; } if (i == j) { j--; i = 11 - j; } if (i + j == 11) { i++; } soma = soma + M[i][j]; contador++; } // faz a soma if (O == 'S') { printf("%.1lf\n", soma); } if (O == 'M') { printf("%.1lf\n", soma / contador); } return 0; }
the_stack_data/243892784.c
/* * p04.c */ /* * usage: * * ./a.out Ax Ay Az Bx By Bz * * Intented behavior: * It should print the angle between vector A and B, where * A is (Ax, Ay, Az) * B is (Bx, By, Bz), using the formula you should have learned * in high schools. * A * B (dot product) * cos(theta) = --------- * |A| |B| */ #include <math.h> #include <stdlib.h> #include <stdio.h> typedef struct vect3 { double x; double y; double z; } vect3; /* dot product (naiseki) */ double dot(vect3 * A, vect3 * B) { return A->x * B->x + A->y * B->y + A->z * B->z; } double angle(vect3 * A, vect3 * B) { return acos(dot(A, B) / sqrt(dot(A, A) * dot(B, B))); } vect3 * mk_point(double x, double y, double z) { vect3 *p = (vect3*)malloc(sizeof(vect3)); p->x = x; p->y = y; p->z = z; return p; } int main(int argc, char ** argv) { vect3 * A = mk_point(atof(argv[1]), atof(argv[2]), atof(argv[3])); vect3 * B = mk_point(atof(argv[4]), atof(argv[5]), atof(argv[6])); double a = angle(A, B); printf("%f\n", a); return 0; }
the_stack_data/140764978.c
/************************ -Exaamble Suduko 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 6 8 9 1 2 3 4 5 6 2 1 4 3 6 5 8 9 7 3 6 5 8 9 7 2 1 4 8 9 7 2 1 4 3 6 5 5 3 1 6 4 2 9 7 8 6 4 2 9 7 8 5 3 1 9 7 8 5 3 1 6 4 2 - Sudoku Array Numbers Map 0 1 2 3 4 5 6 7 8 -------------------- 0| 1 2 3 4 5 6 7 8 9 1| 4 5 6 7 8 9 1 2 3 2| 6 8 9 1 2 3 4 5 6 3| 2 1 4 3 6 5 8 9 7 4| 3 6 5 8 9 7 2 1 4 5| 8 9 7 2 1 4 3 6 5 6| 5 3 1 6 4 2 9 7 8 7| 6 4 2 9 7 8 5 3 1 8| 9 7 8 5 3 1 6 4 2 - SubGrids Array Row Number Map +---+---+---+ | 0 | 1 | 2 | +---+---+---+ | 3 | 4 | 5 | +---+---+---+ | 6 | 7 | 8 | +---+---+---+ */ #include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <semaphore.h> #define SUDOKU_SIZE 9 #define THREADS_NUMBER 11 #define ANSI_COLOR_RED "\x1b[31m" #define ANSI_COLOR_RESET "\x1b[0m" #define ANSI_COLOR_BLUE "\x1b[34m" #define ANSI_COLOR_GREEN "\x1b[32m" sem_t s1,s2; struct subGridData{ int value; int oldRowNum; int oldColumnNum; }; struct sudokuData{ int rows[SUDOKU_SIZE][SUDOKU_SIZE]; int columns[SUDOKU_SIZE][SUDOKU_SIZE]; struct subGridData subGrids[SUDOKU_SIZE][SUDOKU_SIZE]; }; struct sudokuData sudokuInstance; struct dublicatePoints { int row; int column; }; struct dublicatePoints dublicateInstance[SUDOKU_SIZE*SUDOKU_SIZE]; int dublicateNum = 0; void storeSudokuData(int input[SUDOKU_SIZE][SUDOKU_SIZE]){ //Store rows for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ sudokuInstance.rows[row][column] = input[row][column]; } } //Store Columns for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ sudokuInstance.columns[column][row] = input[row][column]; } } //Store Sub-Grids int colNum[SUDOKU_SIZE]={},blockNumber=0; for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ blockNumber = (row/3)*3 + (column/3); sudokuInstance.subGrids[blockNumber][colNum[blockNumber]].value = input[row][column]; sudokuInstance.subGrids[blockNumber][colNum[blockNumber]].oldRowNum = row; sudokuInstance.subGrids[blockNumber][colNum[blockNumber]].oldColumnNum = column; colNum[blockNumber]++; } } } void printSudokuData(){ //Print Rows printf("Rows Stored :\n"); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ printf("%d, ",sudokuInstance.rows[row][column]); } printf ("\n"); } //Print Columns printf("Columns Stored :\n"); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ printf("%d, ",sudokuInstance.columns[row][column]); } printf ("\n"); } //Print Sub-Grids printf("Sub-Grids Stored :\n"); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ printf("%d, ",sudokuInstance.subGrids[row][column].value); } printf ("\n"); } } int matchedInDub (int row, int column){ for (int i = 0 ; i < dublicateNum;i++){ if(row == dublicateInstance[i].row && column == dublicateInstance[i].column ) return 1; } return 0; } void *th_checkRows(){ for (int row = 0; row < SUDOKU_SIZE ; row++){ for (int itemInRow = 0 ; itemInRow < SUDOKU_SIZE ; itemInRow++){ for (int itemInCol = 0 ; itemInCol < SUDOKU_SIZE ; itemInCol++){ if(sudokuInstance.rows[row][itemInRow] == sudokuInstance.rows[row][itemInCol] && itemInRow != itemInCol){ while(1){ if(sem_wait(&s1) == -1){ perror("sem_wait");exit(EXIT_FAILURE); } dublicateInstance[dublicateNum].row = row; dublicateInstance[dublicateNum].column = itemInRow; dublicateNum++; if(sem_post(&s1) == -1){ perror("sem_post");exit(EXIT_FAILURE); } break; } } } } } pthread_exit(NULL); } void *th_checkColumns(){ for (int row = 0; row < SUDOKU_SIZE ; row++){ for (int itemInRow = 0 ; itemInRow < SUDOKU_SIZE ; itemInRow++){ for (int itemInCol = 0 ; itemInCol < SUDOKU_SIZE ; itemInCol++){ if(sudokuInstance.columns[row][itemInRow] == sudokuInstance.columns[row][itemInCol] && itemInRow != itemInCol){ while(1){ if(sem_wait(&s1) == -1){ perror("sem_wait");exit(EXIT_FAILURE); } dublicateInstance[dublicateNum].column = row; dublicateInstance[dublicateNum].row = itemInRow; dublicateNum++; if(sem_post(&s1) == -1){ perror("sem_post");exit(EXIT_FAILURE); } break; } } } } } pthread_exit(NULL); } void *th_checkSubGrids(){ for (int row = 0; row < SUDOKU_SIZE ; row++){ for (int itemInRow = 0 ; itemInRow < SUDOKU_SIZE ; itemInRow++){ for (int itemInCol = 0 ; itemInCol < SUDOKU_SIZE ; itemInCol++){ if(sudokuInstance.subGrids[row][itemInRow].value == sudokuInstance.subGrids[row][itemInCol].value && itemInRow != itemInCol){ while(1){ if(sem_wait(&s1) == -1){ perror("sem_wait");exit(EXIT_FAILURE); } dublicateInstance[dublicateNum].row = sudokuInstance.subGrids[row][itemInRow].oldRowNum; dublicateInstance[dublicateNum].column = sudokuInstance.subGrids[row][itemInRow].oldColumnNum; dublicateNum++; if(sem_post(&s1) == -1){ perror("sem_post");exit(EXIT_FAILURE); } break; } } } } } pthread_exit(NULL); } /* solChecker is a function which checks the number sent from startSolve. solChecker checks whether the number is dublicated in: 1-current row. 2- current column 3- current subgrid. blockNumber is a 'magical' calculation using mod function to figure out the cell location in the subgrids. (check SubGrids Array Row Number Map at line#29) If the number is found in any of those searches, it returns 0 and passes to the next search. If all searches return 0's, The function returns 0 to startSolve. */ int solChecker(int number, int row, int column) { int i=0, blockNumber; for (i=0; i<9; i++) { if (sudokuInstance.rows[i][column] == number) return 0; if (sudokuInstance.rows[row][i] == number) return 0; } blockNumber = (row/3)*3 + (column/3); for(i=0; i<9; i++) { if(sudokuInstance.subGrids[blockNumber][i].value == number) { return 0; break; } } return 1; } /* startSolve is a function which basically finds all the empty cells, then starts replacing them with numbers (starting with 1) Afterward, startSolve passes the possible solution to solChecker if solChecker returns 1, that means the number sent to solChecker is a possible correct result and is placed in the Sudoku. if solChecker returns 0, that means the number sent to solChecker is invalid, the number is incremented and another attempt is made. returns 1 if the solving process is a success. returns 0 if the solving process is a failure. */ int startSolve(int row, int column) { int nextNumber = 1; if (row == 9) { return 1; } if (sudokuInstance.rows[row][column]) //Checks whether the cell is empty. { if (column == 8) { if (startSolve(row+1, 0)) return 1; } else { if (startSolve(row, column+1)) return 1; } return 0; } for (; nextNumber<10; nextNumber++) { if(solChecker(nextNumber, row, column)) { sudokuInstance.rows[row][column] = nextNumber; //sudokuInstance.rows[row][column] = nextNumber; if (column == 8) { if (startSolve(row+1, 0)) return 1; } else { if (startSolve(row, column+1)) return 1; } sudokuInstance.rows[row][column] = 0; } } return 0; } void printSudoku() { for (int row=0; row < SUDOKU_SIZE ; row++) { for (int column=0; column < SUDOKU_SIZE ; column++) { printf("%d ",sudokuInstance.rows[row][column]); } printf ("\n"); } } int main (){ int inputData[SUDOKU_SIZE][SUDOKU_SIZE]; int option; if(sem_init(&s1, 0, 1) == -1){ perror("semaphore_init");exit(EXIT_FAILURE); } while(1) { printf("\n\n"); printf("1- Enter a Sudoku for the Checker\n"); printf("2- Enter a Sudoku for the Solver\n"); printf("3- Exit\n"); printf("Chooes an option from above:"); scanf("%d", &option); if(option == 1) { //Store InputDataSudoku printf("Enter Sudoku Data , %d numbers in each row\n",SUDOKU_SIZE); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ scanf("%d",&inputData[row][column]); } } //store structured sudoku storeSudokuData(inputData); // Print the Sudoku and all the generated data. printSudokuData(); //Checking Sudoku using threads pthread_t tid[THREADS_NUMBER]; if(pthread_create(&tid[0], NULL, th_checkRows, NULL) != 0){ perror("pthread_create"), exit(1); } if(pthread_create(&tid[1], NULL, th_checkColumns, NULL) != 0){ perror("pthread_create"), exit(1); } if(pthread_create(&tid[2], NULL, th_checkSubGrids, NULL) != 0){ perror("pthread_create"), exit(1); } if(pthread_join(tid[0], NULL) != 0){ perror("pthread_join"), exit(1); } if(pthread_join(tid[1], NULL) != 0){ perror("pthread_join"), exit(1); } if(pthread_join(tid[2], NULL) != 0){ perror("pthread_join"), exit(1); } if(dublicateNum!=0){ printf("Invalid Sudoku, Dublicates Found :\n"); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ if(matchedInDub(row,column)){ printf(ANSI_COLOR_RED"%d"ANSI_COLOR_RESET" ",sudokuInstance.rows[row][column]); }else{ printf("%d ",sudokuInstance.rows[row][column]); } } printf ("\n"); } dublicateNum=0; } else if(dublicateNum==0){ printf("\nValid Sudoku.\n"); } if(sem_destroy(&s1) == -1){ perror("semaphore_destroy");exit(EXIT_FAILURE); } break; } else if(option == 2) { int i; printf("Enter Sudoku Data , %d numbers in each row\n",SUDOKU_SIZE); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ scanf("%d",&inputData[row][column]); } } storeSudokuData(inputData); if (startSolve(0, 0)) { printf("\nSolved Sudoku:\n"); printSudoku(); /* Prints only the Sudoku in usual form. */ //printSudokuData(); /* Will print all Stored data: Rows/Columns/Grids. */ } else { printf("Solver failed!"); } break; } /*else if(option == 3) { pthread_t tid[THREADS_NUMBER]; if(pthread_create(&tid[0], NULL, th_checkRows, NULL) != 0){ perror("pthread_create"), exit(1); } if(pthread_create(&tid[1], NULL, th_checkColumns, NULL) != 0){ perror("pthread_create"), exit(1); } if(pthread_create(&tid[2], NULL, th_checkSubGrids, NULL) != 0){ perror("pthread_create"), exit(1); } if(pthread_join(tid[0], NULL) != 0){ perror("pthread_join"), exit(1); } if(pthread_join(tid[1], NULL) != 0){ perror("pthread_join"), exit(1); } if(pthread_join(tid[2], NULL) != 0){ perror("pthread_join"), exit(1); } if(dublicateNum!=0){ printf("Dublicates Found :\n"); for (int row=0; row < SUDOKU_SIZE ; row++){ for (int column=0; column < SUDOKU_SIZE ; column++){ if(matchedInDub(row,column)){ printf(ANSI_COLOR_RED"%d"ANSI_COLOR_RESET" ",sudokuInstance.rows[row][column]); }else{ printf("%d ",sudokuInstance.rows[row][column]); } } printf ("\n"); } dublicateNum=0; } else if(dublicateNum==0){ printf("\nValid Sudoku."); } if(sem_destroy(&s1) == -1){ perror("semaphore_destroy");exit(EXIT_FAILURE); } }*/ else if(option == 3) { printf("\n Exiting, Thanks for using!\n"); break; } else { printf("\nINVALID OPTION\n"); } } return 1; }
the_stack_data/885655.c
#include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <inttypes.h> #include <limits.h> #if !defined(__SIZEOF_INT128__) || defined(PHP_RANDOM_FORCE_EMULATE_128) typedef struct _random_uint128_t { uint64_t hi; uint64_t lo; } random_uint128_t; static inline random_uint128_t php_random_uint128_constant(uint64_t hi, uint64_t lo) { random_uint128_t r; r.hi = hi; r.lo = lo; return r; } static inline random_uint128_t php_random_uint128_add(random_uint128_t num1, random_uint128_t num2) { random_uint128_t r; r.lo = (num1.lo + num2.lo); r.hi = (num1.hi + num2.hi + (r.lo < num1.lo)); return r; } static inline random_uint128_t php_random_uint128_multiply(random_uint128_t num1, random_uint128_t num2) { random_uint128_t r; const uint64_t x0 = num1.lo & 0xffffffffULL, x1 = num1.lo >> 32, y0 = num2.lo & 0xffffffffULL, y1 = num2.lo >> 32, z0 = (((x1 * y0) + (x0 * y0 >> 32)) & 0xffffffffULL) + x0 * y1; r.hi = num1.hi * num2.lo + num1.lo * num2.hi; r.lo = num1.lo * num2.lo; r.hi += x1 * y1 + ((x1 * y0 + (x0 * y0 >> 32)) >> 32) + (z0 >> 32); return r; } static inline uint64_t php_random_pcg64s_rotr64(random_uint128_t num) { const uint64_t v = (num.hi ^ num.lo), s = num.hi >> 58U; return (v >> s) | (v << ((-s) & 63)); } #else typedef __uint128_t random_uint128_t; static inline random_uint128_t php_random_uint128_constant(uint64_t hi, uint64_t lo) { random_uint128_t r; r = ((random_uint128_t) hi << 64) + lo; return r; } static inline random_uint128_t php_random_uint128_add(random_uint128_t num1, random_uint128_t num2) { return num1 + num2; } static inline random_uint128_t php_random_uint128_multiply(random_uint128_t num1, random_uint128_t num2) { return num1 * num2; } static inline uint64_t php_random_pcg64s_rotr64(random_uint128_t num) { const uint64_t v = ((uint64_t) (num >> 64U)) ^ (uint64_t) num, s = num >> 122U; return (v >> s) | (v << ((-s) & 63)); } #endif typedef struct _php_random_engine_state_pcg64 { random_uint128_t s; random_uint128_t inc; } php_random_engine_state_pcg64; static inline void pcg64s_step(php_random_engine_state_pcg64 *s) { s->s = php_random_uint128_add( php_random_uint128_multiply(s->s, php_random_uint128_constant(2549297995355413924ULL,4865540595714422341ULL)), php_random_uint128_constant(6364136223846793005ULL,1442695040888963407ULL) ); } static inline void pcg64s_advance(php_random_engine_state_pcg64 *s, uint64_t advance) { random_uint128_t cur_mult = php_random_uint128_constant(2549297995355413924ULL,4865540595714422341ULL), cur_plus = php_random_uint128_constant(6364136223846793005ULL,1442695040888963407ULL), acc_mult = php_random_uint128_constant(0ULL, 1ULL), acc_plus = php_random_uint128_constant(0ULL, 0ULL); while (advance > 0) { if (advance & 1) { acc_mult = php_random_uint128_multiply(acc_mult, cur_mult); acc_plus = php_random_uint128_add(php_random_uint128_multiply(acc_plus, cur_mult), cur_plus); } cur_plus = php_random_uint128_multiply(php_random_uint128_add(cur_mult, php_random_uint128_constant(0ULL, 1ULL)), cur_plus); cur_mult = php_random_uint128_multiply(cur_mult, cur_mult); advance /= 2; } s->s = php_random_uint128_add(php_random_uint128_multiply(acc_mult, s->s), acc_plus); } static uint64_t pcg64s_generate(void *state) { php_random_engine_state_pcg64 *s = (php_random_engine_state_pcg64 *) state; uint64_t result; pcg64s_step(s); result = php_random_pcg64s_rotr64(s->s); return result; } static void pcg64s_seed(void *state, const random_uint128_t seed) { php_random_engine_state_pcg64 *s = (php_random_engine_state_pcg64 *) state; s->s = php_random_uint128_constant(0ULL, 0ULL); pcg64s_step(s); s->s = php_random_uint128_add(s->s, seed); pcg64s_step(s); } int main(int argc, char **argv) { if (argc < 3) { printf("%s\n", "requires: {seed} {iterations} {output_file}"); return 1; } php_random_engine_state_pcg64 *s = calloc(1, sizeof(php_random_engine_state_pcg64)); uint64_t seed, advance = UINT64_MAX; int iterations, i; FILE *fp; seed = strtoull(argv[1], NULL, 10); iterations = atoi(argv[2]); fp = fopen(argv[3], "w"); if (fp == NULL) { printf("fopen failed: %s\n", argv[3]); free(s); return 2; } #ifdef PHP_RANDOM_FORCE_EMULATE_128 printf("%s\n", "NOTICE: Emulated __uint128_t"); #endif printf("parameters:\n\tseed: %" PRIu64 "\n\titerations: %i\n\toutput_file: %s\n", seed, iterations, argv[3]); printf("seeding..."); pcg64s_seed(s, php_random_uint128_constant(0ULL, seed)); printf("OK\n"); printf("generating..."); fprintf(fp, "seed: %" PRIu64 "\n", seed); for (i = 0; i < iterations; i++) { fprintf(fp, "%i: %" PRIu64 "\n", i + 1, pcg64s_generate(s)); } pcg64s_advance(s, advance); fprintf(fp, "advance %llu: %" PRIu64 "\n", advance, pcg64s_generate(s)); printf("done\n"); fclose(fp); free(s); printf("%s\n", "finished"); return 0; }
the_stack_data/777739.c
#include <stdio.h> void scilab_rt_contour_i2d2i2d0d0d0s0i2d2d0_(int in00, int in01, int matrixin0[in00][in01], int in10, int in11, double matrixin1[in10][in11], int in20, int in21, int matrixin2[in20][in21], double scalarin0, double scalarin1, double scalarin2, char* scalarin3, int in30, int in31, int matrixin3[in30][in31], int in40, int in41, double matrixin4[in40][in41], double scalarin4) { int i; int j; int val0 = 0; double val1 = 0; int val2 = 0; int val3 = 0; double val4 = 0; for (i = 0; i < in00; ++i) { for (j = 0; j < in01; ++j) { val0 += matrixin0[i][j]; } } printf("%d", val0); for (i = 0; i < in10; ++i) { for (j = 0; j < in11; ++j) { val1 += matrixin1[i][j]; } } printf("%f", val1); for (i = 0; i < in20; ++i) { for (j = 0; j < in21; ++j) { val2 += matrixin2[i][j]; } } printf("%d", val2); printf("%f", scalarin0); printf("%f", scalarin1); printf("%f", scalarin2); printf("%s", scalarin3); for (i = 0; i < in30; ++i) { for (j = 0; j < in31; ++j) { val3 += matrixin3[i][j]; } } printf("%d", val3); for (i = 0; i < in40; ++i) { for (j = 0; j < in41; ++j) { val4 += matrixin4[i][j]; } } printf("%f", val4); printf("%f", scalarin4); }
the_stack_data/62638643.c
#include <stdio.h> #define P 33100000U // puzzle input #define N 1000000U // number of houses (arbitrary) #define M1 10U // elf multiplier (part 1) #define M2 11U // elf multiplier (part 2) #define Q 50U // max house visits (part 2) unsigned int presents[N] = {M1}; // init for part 1 int main(void) { unsigned int elf, house, npres, visit; // Part 1: distribute presents (elf 1 already visited by init) for (elf = 2; elf < N; ++elf) { npres = elf * M1; for (house = elf; house < N; house += elf) { presents[house] += npres; } } // Part 1: find lowest house number where number of presents >= puzzle input for (house = 1; house < N; ++house) { if (presents[house] >= P) { printf("Part 1: %u\n", house); break; } } // Part 2: distribute presents for (house = 1; house < N; ++house) { presents[house] = M2; } for (elf = 2; elf < N; ++elf) { npres = elf * M2; visit = 0; for (house = elf; visit++ < Q && house < N; house += elf) { presents[house] += npres; } } // Part 2: find lowest house number where number of presents >= puzzle input for (house = 1; house < N; ++house) { if (presents[house] >= P) { printf("Part 2: %u\n", house); break; } } return 0; }
the_stack_data/842455.c
#include <stdio.h> int main() { int t; scanf("%d", &t); for(int i = 0; i < t; i++) { int n; int arr[10] = {0}; scanf("%d", &n); for(int k = 0; k < n; k++) { char ch[10]; getchar(); scanf("%s", ch); for(int j = 0; j < 10; j++) { // printf("%c %d\n", ch, j); if(ch[j] == '1'){ // printf(" %d %d\n", j, arr[j]); arr[j]++; } } } int count = 0; // for(int k = 0; k < 10; k++) // printf("%d\n", arr[k]); for(int k = 0; k < 10; k++) if(arr[k] % 2) count++; printf("%d\n", count); } return 0; }
the_stack_data/154828522.c
#include <stdio.h> #include <stdlib.h> /* TEMPO SEQUENCIAL PERF: 56,306335417 seconds time elapsed TEMPO PARALELO PERF: 12,394167292 seconds time elapsed SPEED UP = 4,5 */ void mm(double* a, double* b, double* c, int width) { #pragma omp parallel for for (int i = 0; i < width; i++) { for (int j = 0; j < width; j++) { double sum = 0; for (int k = 0; k < width; k++) { double x = a[i * width + k]; double y = b[k * width + j]; sum += x * y; } c[i * width + j] = sum; } } } int main() { int width = 2000; double *a = (double*) malloc (width * width * sizeof(double)); double *b = (double*) malloc (width * width * sizeof(double)); double *c = (double*) malloc (width * width * sizeof(double)); #pragma omp parallel for for(int i = 0; i < width; i++) { for(int j = 0; j < width; j++) { a[i*width+j] = i; b[i*width+j] = j; c[i*width+j] = 0; } } mm(a,b,c,width); // for(int i = 0; i < width; i++) { // for(int j = 0; j < width; j++) { // printf("\n c[%d][%d] = %f",i,j,c[i*width+j]); // } // } }
the_stack_data/9512548.c
#include <stdio.h> #include <sys/ipc.h> #include <sys/msg.h> #define MAX 10 struct MQ { long type; char message[100]; } mq; int main() { key_t key; int msgid; key = 1234; msgid = msgget(key, 0666 | IPC_CREAT); msgrcv(msgid, &mq, sizeof(mq), 1, 0); printf("Data Received is : %s \n", mq.message); msgctl(msgid, IPC_RMID, NULL); return 0; }
the_stack_data/87274.c
/* * Copyright (c) 2017, 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. */ #define LOOP_COUNT 10000 enum { A, B, C, D, E, F, G, H, I, J, K, L, M, N }; int main() { int i; int sum = 0; for (i = 0; i < LOOP_COUNT; i++) { switch (i % (N + 1)) { case A: sum += 1; break; case B: sum += 4; break; case C: sum += 3; break; case D: sum += 5; break; case E: sum += 3; break; case F: sum += 2; break; case G: sum += 2; break; case H: sum += 2; break; case I: sum += 4; break; case J: sum += 1; break; case K: sum += 2; break; case L: sum += 1; break; case M: sum += 4; break; case N: sum += 2; break; } } if (sum != 25717) { abort(); } return 0; }
the_stack_data/1018127.c
/* XXX Emscripten XXX */ #if __EMSCRIPTEN__ // When building for wasm we export `malloc` and `emscripten_builtin_malloc` as // weak alias of the internal `dlmalloc` which is static to this file. #define DLMALLOC_EXPORT static /* mmap uses malloc, so malloc can't use mmap */ #define HAVE_MMAP 0 /* we can only grow the heap up anyhow, so don't try to trim */ #define MORECORE_CANNOT_TRIM 1 #ifndef DLMALLOC_DEBUG /* dlmalloc has many checks, calls to abort() increase code size, leave them only in debug builds */ #define ABORT __builtin_unreachable() /* allow malloc stats only in debug builds, which brings in stdio code. */ #define NO_MALLOC_STATS 1 #endif /* XXX Emscripten Tracing API. This defines away the code if tracing is disabled. */ #include <emscripten/trace.h> /* Make malloc() and free() threadsafe by securing the memory allocations with pthread mutexes. */ #if __EMSCRIPTEN_PTHREADS__ #define USE_LOCKS 1 #define USE_SPIN_LOCKS 0 // Ensure we use pthread_mutex_t. #endif #ifndef MALLOC_ALIGNMENT #include <stddef.h> /* `malloc`ed pointers must be aligned at least as strictly as max_align_t. */ #define MALLOC_ALIGNMENT (__alignof__(max_align_t)) /* Emscripten aligns even float128 to 64-bits, to save size and increase speed. See https://github.com/emscripten-core/emscripten/issues/10072 */ _Static_assert(MALLOC_ALIGNMENT == 8, "max_align_t must be 8"); #endif #endif // __EMSCRIPTEN__ #define __THROW #define __attribute_malloc__ #define __wur /* This is a version (aka dlmalloc) of malloc/free/realloc written by Doug Lea and released to the public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ Send questions, comments, complaints, performance data, etc to [email protected] * Version 2.8.6 Wed Aug 29 06:57:58 2012 Doug Lea Note: There may be an updated version of this malloc obtainable at ftp://gee.cs.oswego.edu/pub/misc/malloc.c Check before installing! * Quickstart This library is all in one file to simplify the most common usage: ftp it, compile it (-O3), and link it into another program. All of the compile-time options default to reasonable values for use on most platforms. You might later want to step through various compile-time and dynamic tuning options. For convenience, an include file for code using this malloc is at: ftp://gee.cs.oswego.edu/pub/misc/malloc-2.8.6.h You don't really need this .h file unless you call functions not defined in your system include files. The .h file contains only the excerpts from this file needed for using this malloc on ANSI C/C++ systems, so long as you haven't changed compile-time options about naming and tuning parameters. If you do, then you can create your own malloc.h that does include all settings by cutting at the point indicated below. Note that you may already by default be using a C library containing a malloc that is based on some version of this malloc (for example in linux). You might still want to use the one in this file to customize settings or to avoid overheads associated with library versions. * Vital statistics: Supported pointer/size_t representation: 4 or 8 bytes size_t MUST be an unsigned type of the same width as pointers. (If you are using an ancient system that declares size_t as a signed type, or need it to be a different width than pointers, you can use a previous release of this malloc (e.g. 2.7.2) supporting these.) Alignment: 8 bytes (minimum) This suffices for nearly all current machines and C compilers. However, you can define MALLOC_ALIGNMENT to be wider than this if necessary (up to 128bytes), at the expense of using more space. Minimum overhead per allocated chunk: 4 or 8 bytes (if 4byte sizes) 8 or 16 bytes (if 8byte sizes) Each malloced chunk has a hidden word of overhead holding size and status information, and additional cross-check word if FOOTERS is defined. Minimum allocated size: 4-byte ptrs: 16 bytes (including overhead) 8-byte ptrs: 32 bytes (including overhead) Even a request for zero bytes (i.e., malloc(0)) returns a pointer to something of the minimum allocatable size. The maximum overhead wastage (i.e., number of extra bytes allocated than were requested in malloc) is less than or equal to the minimum size, except for requests >= mmap_threshold that are serviced via mmap(), where the worst case wastage is about 32 bytes plus the remainder from a system page (the minimal mmap unit); typically 4096 or 8192 bytes. Security: static-safe; optionally more or less The "security" of malloc refers to the ability of malicious code to accentuate the effects of errors (for example, freeing space that is not currently malloc'ed or overwriting past the ends of chunks) in code that calls malloc. This malloc guarantees not to modify any memory locations below the base of heap, i.e., static variables, even in the presence of usage errors. The routines additionally detect most improper frees and reallocs. All this holds as long as the static bookkeeping for malloc itself is not corrupted by some other means. This is only one aspect of security -- these checks do not, and cannot, detect all possible programming errors. If FOOTERS is defined nonzero, then each allocated chunk carries an additional check word to verify that it was malloced from its space. These check words are the same within each execution of a program using malloc, but differ across executions, so externally crafted fake chunks cannot be freed. This improves security by rejecting frees/reallocs that could corrupt heap memory, in addition to the checks preventing writes to statics that are always on. This may further improve security at the expense of time and space overhead. (Note that FOOTERS may also be worth using with MSPACES.) By default detected errors cause the program to abort (calling "abort()"). You can override this to instead proceed past errors by defining PROCEED_ON_ERROR. In this case, a bad free has no effect, and a malloc that encounters a bad address caused by user overwrites will ignore the bad address by dropping pointers and indices to all known memory. This may be appropriate for programs that should continue if at all possible in the face of programming errors, although they may run out of memory because dropped memory is never reclaimed. If you don't like either of these options, you can define CORRUPTION_ERROR_ACTION and USAGE_ERROR_ACTION to do anything else. And if if you are sure that your program using malloc has no errors or vulnerabilities, you can define INSECURE to 1, which might (or might not) provide a small performance improvement. It is also possible to limit the maximum total allocatable space, using malloc_set_footprint_limit. This is not designed as a security feature in itself (calls to set limits are not screened or privileged), but may be useful as one aspect of a secure implementation. Thread-safety: NOT thread-safe unless USE_LOCKS defined non-zero When USE_LOCKS is defined, each public call to malloc, free, etc is surrounded with a lock. By default, this uses a plain pthread mutex, win32 critical section, or a spin-lock if if available for the platform and not disabled by setting USE_SPIN_LOCKS=0. However, if USE_RECURSIVE_LOCKS is defined, recursive versions are used instead (which are not required for base functionality but may be needed in layered extensions). Using a global lock is not especially fast, and can be a major bottleneck. It is designed only to provide minimal protection in concurrent environments, and to provide a basis for extensions. If you are using malloc in a concurrent program, consider instead using nedmalloc (http://www.nedprod.com/programs/portable/nedmalloc/) or ptmalloc (See http://www.malloc.de), which are derived from versions of this malloc. System requirements: Any combination of MORECORE and/or MMAP/MUNMAP This malloc can use unix sbrk or any emulation (invoked using the CALL_MORECORE macro) and/or mmap/munmap or any emulation (invoked using CALL_MMAP/CALL_MUNMAP) to get and release system memory. On most unix systems, it tends to work best if both MORECORE and MMAP are enabled. On Win32, it uses emulations based on VirtualAlloc. It also uses common C library functions like memset. Compliance: I believe it is compliant with the Single Unix Specification (See http://www.unix.org). Also SVID/XPG, ANSI C, and probably others as well. * Overview of algorithms This is not the fastest, most space-conserving, most portable, or most tunable malloc ever written. However it is among the fastest while also being among the most space-conserving, portable and tunable. Consistent balance across these factors results in a good general-purpose allocator for malloc-intensive programs. In most ways, this malloc is a best-fit allocator. Generally, it chooses the best-fitting existing chunk for a request, with ties broken in approximately least-recently-used order. (This strategy normally maintains low fragmentation.) However, for requests less than 256bytes, it deviates from best-fit when there is not an exactly fitting available chunk by preferring to use space adjacent to that used for the previous small request, as well as by breaking ties in approximately most-recently-used order. (These enhance locality of series of small allocations.) And for very large requests (>= 256Kb by default), it relies on system memory mapping facilities, if supported. (This helps avoid carrying around and possibly fragmenting memory used only for large chunks.) All operations (except malloc_stats and mallinfo) have execution times that are bounded by a constant factor of the number of bits in a size_t, not counting any clearing in calloc or copying in realloc, or actions surrounding MORECORE and MMAP that have times proportional to the number of non-contiguous regions returned by system allocation routines, which is often just 1. In real-time applications, you can optionally suppress segment traversals using NO_SEGMENT_TRAVERSAL, which assures bounded execution even when system allocators return non-contiguous spaces, at the typical expense of carrying around more memory and increased fragmentation. The implementation is not very modular and seriously overuses macros. Perhaps someday all C compilers will do as good a job inlining modular code as can now be done by brute-force expansion, but now, enough of them seem not to. Some compilers issue a lot of warnings about code that is dead/unreachable only on some platforms, and also about intentional uses of negation on unsigned types. All known cases of each can be ignored. For a longer but out of date high-level description, see http://gee.cs.oswego.edu/dl/html/malloc.html * MSPACES If MSPACES is defined, then in addition to malloc, free, etc., this file also defines mspace_malloc, mspace_free, etc. These are versions of malloc routines that take an "mspace" argument obtained using create_mspace, to control all internal bookkeeping. If ONLY_MSPACES is defined, only these versions are compiled. So if you would like to use this allocator for only some allocations, and your system malloc for others, you can compile with ONLY_MSPACES and then do something like... static mspace mymspace = create_mspace(0,0); // for example #define mymalloc(bytes) mspace_malloc(mymspace, bytes) (Note: If you only need one instance of an mspace, you can instead use "USE_DL_PREFIX" to relabel the global malloc.) You can similarly create thread-local allocators by storing mspaces as thread-locals. For example: static __thread mspace tlms = 0; void* tlmalloc(size_t bytes) { if (tlms == 0) tlms = create_mspace(0, 0); return mspace_malloc(tlms, bytes); } void tlfree(void* mem) { mspace_free(tlms, mem); } Unless FOOTERS is defined, each mspace is completely independent. You cannot allocate from one and free to another (although conformance is only weakly checked, so usage errors are not always caught). If FOOTERS is defined, then each chunk carries around a tag indicating its originating mspace, and frees are directed to their originating spaces. Normally, this requires use of locks. ------------------------- Compile-time options --------------------------- Be careful in setting #define values for numerical constants of type size_t. On some systems, literal values are not automatically extended to size_t precision unless they are explicitly casted. You can also use the symbolic values MAX_SIZE_T, SIZE_T_ONE, etc below. WIN32 default: defined if _WIN32 defined Defining WIN32 sets up defaults for MS environment and compilers. Otherwise defaults are for unix. Beware that there seem to be some cases where this malloc might not be a pure drop-in replacement for Win32 malloc: Random-looking failures from Win32 GDI API's (eg; SetDIBits()) may be due to bugs in some video driver implementations when pixel buffers are malloc()ed, and the region spans more than one VirtualAlloc()ed region. Because dlmalloc uses a small (64Kb) default granularity, pixel buffers may straddle virtual allocation regions more often than when using the Microsoft allocator. You can avoid this by using VirtualAlloc() and VirtualFree() for all pixel buffers rather than using malloc(). If this is not possible, recompile this malloc with a larger DEFAULT_GRANULARITY. Note: in cases where MSC and gcc (cygwin) are known to differ on WIN32, conditions use _MSC_VER to distinguish them. DLMALLOC_EXPORT default: extern Defines how public APIs are declared. If you want to export via a Windows DLL, you might define this as #define DLMALLOC_EXPORT extern __declspec(dllexport) If you want a POSIX ELF shared object, you might use #define DLMALLOC_EXPORT extern __attribute__((visibility("default"))) MALLOC_ALIGNMENT default: (size_t)(2 * sizeof(void *)) Controls the minimum alignment for malloc'ed chunks. It must be a power of two and at least 8, even on machines for which smaller alignments would suffice. It may be defined as larger than this though. Note however that code and data structures are optimized for the case of 8-byte alignment. MSPACES default: 0 (false) If true, compile in support for independent allocation spaces. This is only supported if HAVE_MMAP is true. ONLY_MSPACES default: 0 (false) If true, only compile in mspace versions, not regular versions. USE_LOCKS default: 0 (false) Causes each call to each public routine to be surrounded with pthread or WIN32 mutex lock/unlock. (If set true, this can be overridden on a per-mspace basis for mspace versions.) If set to a non-zero value other than 1, locks are used, but their implementation is left out, so lock functions must be supplied manually, as described below. USE_SPIN_LOCKS default: 1 iff USE_LOCKS and spin locks available If true, uses custom spin locks for locking. This is currently supported only gcc >= 4.1, older gccs on x86 platforms, and recent MS compilers. Otherwise, posix locks or win32 critical sections are used. USE_RECURSIVE_LOCKS default: not defined If defined nonzero, uses recursive (aka reentrant) locks, otherwise uses plain mutexes. This is not required for malloc proper, but may be needed for layered allocators such as nedmalloc. LOCK_AT_FORK default: not defined If defined nonzero, performs pthread_atfork upon initialization to initialize child lock while holding parent lock. The implementation assumes that pthread locks (not custom locks) are being used. In other cases, you may need to customize the implementation. FOOTERS default: 0 If true, provide extra checking and dispatching by placing information in the footers of allocated chunks. This adds space and time overhead. INSECURE default: 0 If true, omit checks for usage errors and heap space overwrites. USE_DL_PREFIX default: NOT defined Causes compiler to prefix all public routines with the string 'dl'. This can be useful when you only want to use this malloc in one part of a program, using your regular system malloc elsewhere. MALLOC_INSPECT_ALL default: NOT defined If defined, compiles malloc_inspect_all and mspace_inspect_all, that perform traversal of all heap space. Unless access to these functions is otherwise restricted, you probably do not want to include them in secure implementations. ABORT default: defined as abort() Defines how to abort on failed checks. On most systems, a failed check cannot die with an "assert" or even print an informative message, because the underlying print routines in turn call malloc, which will fail again. Generally, the best policy is to simply call abort(). It's not very useful to do more than this because many errors due to overwriting will show up as address faults (null, odd addresses etc) rather than malloc-triggered checks, so will also abort. Also, most compilers know that abort() does not return, so can better optimize code conditionally calling it. PROCEED_ON_ERROR default: defined as 0 (false) Controls whether detected bad addresses cause them to bypassed rather than aborting. If set, detected bad arguments to free and realloc are ignored. And all bookkeeping information is zeroed out upon a detected overwrite of freed heap space, thus losing the ability to ever return it from malloc again, but enabling the application to proceed. If PROCEED_ON_ERROR is defined, the static variable malloc_corruption_error_count is compiled in and can be examined to see if errors have occurred. This option generates slower code than the default abort policy. DEBUG default: NOT defined The DEBUG setting is mainly intended for people trying to modify this code or diagnose problems when porting to new platforms. However, it may also be able to better isolate user errors than just using runtime checks. The assertions in the check routines spell out in more detail the assumptions and invariants underlying the algorithms. The checking is fairly extensive, and will slow down execution noticeably. Calling malloc_stats or mallinfo with DEBUG set will attempt to check every non-mmapped allocated and free chunk in the course of computing the summaries. ABORT_ON_ASSERT_FAILURE default: defined as 1 (true) Debugging assertion failures can be nearly impossible if your version of the assert macro causes malloc to be called, which will lead to a cascade of further failures, blowing the runtime stack. ABORT_ON_ASSERT_FAILURE cause assertions failures to call abort(), which will usually make debugging easier. MALLOC_FAILURE_ACTION default: sets errno to ENOMEM, or no-op on win32 The action to take before "return 0" when malloc fails to be able to return memory because there is none available. HAVE_MORECORE default: 1 (true) unless win32 or ONLY_MSPACES True if this system supports sbrk or an emulation of it. MORECORE default: sbrk The name of the sbrk-style system routine to call to obtain more memory. See below for guidance on writing custom MORECORE functions. The type of the argument to sbrk/MORECORE varies across systems. It cannot be size_t, because it supports negative arguments, so it is normally the signed type of the same width as size_t (sometimes declared as "intptr_t"). It doesn't much matter though. Internally, we only call it with arguments less than half the max value of a size_t, which should work across all reasonable possibilities, although sometimes generating compiler warnings. MORECORE_CONTIGUOUS default: 1 (true) if HAVE_MORECORE If true, take advantage of fact that consecutive calls to MORECORE with positive arguments always return contiguous increasing addresses. This is true of unix sbrk. It does not hurt too much to set it true anyway, since malloc copes with non-contiguities. Setting it false when definitely non-contiguous saves time and possibly wasted space it would take to discover this though. MORECORE_CANNOT_TRIM default: NOT defined True if MORECORE cannot release space back to the system when given negative arguments. This is generally necessary only if you are using a hand-crafted MORECORE function that cannot handle negative arguments. NO_SEGMENT_TRAVERSAL default: 0 If non-zero, suppresses traversals of memory segments returned by either MORECORE or CALL_MMAP. This disables merging of segments that are contiguous, and selectively releasing them to the OS if unused, but bounds execution times. HAVE_MMAP default: 1 (true) True if this system supports mmap or an emulation of it. If so, and HAVE_MORECORE is not true, MMAP is used for all system allocation. If set and HAVE_MORECORE is true as well, MMAP is primarily used to directly allocate very large blocks. It is also used as a backup strategy in cases where MORECORE fails to provide space from system. Note: A single call to MUNMAP is assumed to be able to unmap memory that may have be allocated using multiple calls to MMAP, so long as they are adjacent. HAVE_MREMAP default: 1 on linux, else 0 If true realloc() uses mremap() to re-allocate large blocks and extend or shrink allocation spaces. MMAP_CLEARS default: 1 except on WINCE. True if mmap clears memory so calloc doesn't need to. This is true for standard unix mmap using /dev/zero and on WIN32 except for WINCE. USE_BUILTIN_FFS default: 0 (i.e., not used) Causes malloc to use the builtin ffs() function to compute indices. Some compilers may recognize and intrinsify ffs to be faster than the supplied C version. Also, the case of x86 using gcc is special-cased to an asm instruction, so is already as fast as it can be, and so this setting has no effect. Similarly for Win32 under recent MS compilers. (On most x86s, the asm version is only slightly faster than the C version.) malloc_getpagesize default: derive from system includes, or 4096. The system page size. To the extent possible, this malloc manages memory from the system in page-size units. This may be (and usually is) a function rather than a constant. This is ignored if WIN32, where page size is determined using getSystemInfo during initialization. USE_DEV_RANDOM default: 0 (i.e., not used) Causes malloc to use /dev/random to initialize secure magic seed for stamping footers. Otherwise, the current time is used. NO_MALLINFO default: 0 If defined, don't compile "mallinfo". This can be a simple way of dealing with mismatches between system declarations and those in this file. MALLINFO_FIELD_TYPE default: size_t The type of the fields in the mallinfo struct. This was originally defined as "int" in SVID etc, but is more usefully defined as size_t. The value is used only if HAVE_USR_INCLUDE_MALLOC_H is not set NO_MALLOC_STATS default: 0 If defined, don't compile "malloc_stats". This avoids calls to fprintf and bringing in stdio dependencies you might not want. REALLOC_ZERO_BYTES_FREES default: not defined This should be set if a call to realloc with zero bytes should be the same as a call to free. Some people think it should. Otherwise, since this malloc returns a unique pointer for malloc(0), so does realloc(p, 0). LACKS_UNISTD_H, LACKS_FCNTL_H, LACKS_SYS_PARAM_H, LACKS_SYS_MMAN_H LACKS_STRINGS_H, LACKS_STRING_H, LACKS_SYS_TYPES_H, LACKS_ERRNO_H LACKS_STDLIB_H LACKS_SCHED_H LACKS_TIME_H default: NOT defined unless on WIN32 Define these if your system does not have these header files. You might need to manually insert some of the declarations they provide. DEFAULT_GRANULARITY default: page size if MORECORE_CONTIGUOUS, system_info.dwAllocationGranularity in WIN32, otherwise 64K. Also settable using mallopt(M_GRANULARITY, x) The unit for allocating and deallocating memory from the system. On most systems with contiguous MORECORE, there is no reason to make this more than a page. However, systems with MMAP tend to either require or encourage larger granularities. You can increase this value to prevent system allocation functions to be called so often, especially if they are slow. The value must be at least one page and must be a power of two. Setting to 0 causes initialization to either page size or win32 region size. (Note: In previous versions of malloc, the equivalent of this option was called "TOP_PAD") DEFAULT_TRIM_THRESHOLD default: 2MB Also settable using mallopt(M_TRIM_THRESHOLD, x) The maximum amount of unused top-most memory to keep before releasing via malloc_trim in free(). Automatic trimming is mainly useful in long-lived programs using contiguous MORECORE. Because trimming via sbrk can be slow on some systems, and can sometimes be wasteful (in cases where programs immediately afterward allocate more large chunks) the value should be high enough so that your overall system performance would improve by releasing this much memory. As a rough guide, you might set to a value close to the average size of a process (program) running on your system. Releasing this much memory would allow such a process to run in memory. Generally, it is worth tuning trim thresholds when a program undergoes phases where several large chunks are allocated and released in ways that can reuse each other's storage, perhaps mixed with phases where there are no such chunks at all. The trim value must be greater than page size to have any useful effect. To disable trimming completely, you can set to MAX_SIZE_T. Note that the trick some people use of mallocing a huge space and then freeing it at program startup, in an attempt to reserve system memory, doesn't have the intended effect under automatic trimming, since that memory will immediately be returned to the system. DEFAULT_MMAP_THRESHOLD default: 256K Also settable using mallopt(M_MMAP_THRESHOLD, x) The request size threshold for using MMAP to directly service a request. Requests of at least this size that cannot be allocated using already-existing space will be serviced via mmap. (If enough normal freed space already exists it is used instead.) Using mmap segregates relatively large chunks of memory so that they can be individually obtained and released from the host system. A request serviced through mmap is never reused by any other request (at least not directly; the system may just so happen to remap successive requests to the same locations). Segregating space in this way has the benefits that: Mmapped space can always be individually released back to the system, which helps keep the system level memory demands of a long-lived program low. Also, mapped memory doesn't become `locked' between other chunks, as can happen with normally allocated chunks, which means that even trimming via malloc_trim would not release them. However, it has the disadvantage that the space cannot be reclaimed, consolidated, and then used to service later requests, as happens with normal chunks. The advantages of mmap nearly always outweigh disadvantages for "large" chunks, but the value of "large" may vary across systems. The default is an empirically derived value that works well in most systems. You can disable mmap by setting to MAX_SIZE_T. MAX_RELEASE_CHECK_RATE default: 4095 unless not HAVE_MMAP The number of consolidated frees between checks to release unused segments when freeing. When using non-contiguous segments, especially with multiple mspaces, checking only for topmost space doesn't always suffice to trigger trimming. To compensate for this, free() will, with a period of MAX_RELEASE_CHECK_RATE (or the current number of segments, if greater) try to release unused segments to the OS when freeing chunks that result in consolidation. The best value for this parameter is a compromise between slowing down frees with relatively costly checks that rarely trigger versus holding on to unused memory. To effectively disable, set to MAX_SIZE_T. This may lead to a very slight speed improvement at the expense of carrying around more memory. */ /* Version identifier to allow people to support multiple versions */ #ifndef DLMALLOC_VERSION #define DLMALLOC_VERSION 20806 #endif /* DLMALLOC_VERSION */ #ifndef DLMALLOC_EXPORT #define DLMALLOC_EXPORT extern #endif #ifndef WIN32 #ifdef _WIN32 #define WIN32 1 #endif /* _WIN32 */ #ifdef _WIN32_WCE #define LACKS_FCNTL_H #define WIN32 1 #endif /* _WIN32_WCE */ #endif /* WIN32 */ #ifdef WIN32 #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <tchar.h> #define HAVE_MMAP 1 #define HAVE_MORECORE 0 #define LACKS_UNISTD_H #define LACKS_SYS_PARAM_H #define LACKS_SYS_MMAN_H #define LACKS_STRING_H #define LACKS_STRINGS_H #define LACKS_SYS_TYPES_H #define LACKS_ERRNO_H #define LACKS_SCHED_H #ifndef MALLOC_FAILURE_ACTION #define MALLOC_FAILURE_ACTION #endif /* MALLOC_FAILURE_ACTION */ #ifndef MMAP_CLEARS #ifdef _WIN32_WCE /* WINCE reportedly does not clear */ #define MMAP_CLEARS 0 #else #define MMAP_CLEARS 1 #endif /* _WIN32_WCE */ #endif /*MMAP_CLEARS */ #endif /* WIN32 */ #if defined(DARWIN) || defined(_DARWIN) /* Mac OSX docs advise not to use sbrk; it seems better to use mmap */ #ifndef HAVE_MORECORE #define HAVE_MORECORE 0 #define HAVE_MMAP 1 /* OSX allocators provide 16 byte alignment */ #ifndef MALLOC_ALIGNMENT #define MALLOC_ALIGNMENT ((size_t)16U) #endif #endif /* HAVE_MORECORE */ #endif /* DARWIN */ #ifndef LACKS_SYS_TYPES_H #include <sys/types.h> /* For size_t */ #endif /* LACKS_SYS_TYPES_H */ /* The maximum possible size_t value has all bits set */ #define MAX_SIZE_T (~(size_t)0) #ifndef USE_LOCKS /* ensure true if spin or recursive locks set */ /* XXX: The following block adapted locally to avoid clean up new Clang -Wexpansion-to-defined warnings. http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20160118/147239.html */ #if (defined(USE_SPIN_LOCKS) && USE_SPIN_LOCKS != 0) || \ (defined(USE_RECURSIVE_LOCKS) && USE_RECURSIVE_LOCKS != 0) #define USE_LOCKS 1 #else #define USE_LOCKS 0 #endif #endif /* USE_LOCKS */ #if USE_LOCKS /* Spin locks for gcc >= 4.1, older gcc on x86, MSC >= 1310 */ #if ((defined(__GNUC__) && \ ((__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)) || \ defined(__i386__) || defined(__x86_64__))) || \ (defined(_MSC_VER) && _MSC_VER>=1310)) #ifndef USE_SPIN_LOCKS #define USE_SPIN_LOCKS 1 #endif /* USE_SPIN_LOCKS */ #elif USE_SPIN_LOCKS #error "USE_SPIN_LOCKS defined without implementation" #endif /* ... locks available... */ #elif !defined(USE_SPIN_LOCKS) #define USE_SPIN_LOCKS 0 #endif /* USE_LOCKS */ #ifndef ONLY_MSPACES #define ONLY_MSPACES 0 #endif /* ONLY_MSPACES */ #ifndef MSPACES #if ONLY_MSPACES #define MSPACES 1 #else /* ONLY_MSPACES */ #define MSPACES 0 #endif /* ONLY_MSPACES */ #endif /* MSPACES */ #ifndef MALLOC_ALIGNMENT #define MALLOC_ALIGNMENT ((size_t)(2 * sizeof(void *))) #endif /* MALLOC_ALIGNMENT */ #ifndef FOOTERS #define FOOTERS 0 #endif /* FOOTERS */ #ifndef ABORT #define ABORT abort() #endif /* ABORT */ #ifndef ABORT_ON_ASSERT_FAILURE #define ABORT_ON_ASSERT_FAILURE 1 #endif /* ABORT_ON_ASSERT_FAILURE */ #ifndef PROCEED_ON_ERROR #define PROCEED_ON_ERROR 0 #endif /* PROCEED_ON_ERROR */ #ifndef INSECURE #define INSECURE 0 #endif /* INSECURE */ #ifndef MALLOC_INSPECT_ALL #define MALLOC_INSPECT_ALL 0 #endif /* MALLOC_INSPECT_ALL */ #ifndef HAVE_MMAP #define HAVE_MMAP 1 #endif /* HAVE_MMAP */ #ifndef MMAP_CLEARS #define MMAP_CLEARS 1 #endif /* MMAP_CLEARS */ #ifndef HAVE_MREMAP #ifdef linux #define HAVE_MREMAP 1 #define _GNU_SOURCE /* Turns on mremap() definition */ #else /* linux */ #define HAVE_MREMAP 0 #endif /* linux */ #endif /* HAVE_MREMAP */ #ifndef MALLOC_FAILURE_ACTION #define MALLOC_FAILURE_ACTION errno = ENOMEM; #endif /* MALLOC_FAILURE_ACTION */ #ifndef HAVE_MORECORE #if ONLY_MSPACES #define HAVE_MORECORE 0 #else /* ONLY_MSPACES */ #define HAVE_MORECORE 1 #endif /* ONLY_MSPACES */ #endif /* HAVE_MORECORE */ #if !HAVE_MORECORE #define MORECORE_CONTIGUOUS 0 #else /* !HAVE_MORECORE */ #define MORECORE_DEFAULT sbrk #ifndef MORECORE_CONTIGUOUS #define MORECORE_CONTIGUOUS 1 #endif /* MORECORE_CONTIGUOUS */ #endif /* HAVE_MORECORE */ #ifndef DEFAULT_GRANULARITY #if (MORECORE_CONTIGUOUS || defined(WIN32)) #define DEFAULT_GRANULARITY (0) /* 0 means to compute in init_mparams */ #else /* MORECORE_CONTIGUOUS */ #define DEFAULT_GRANULARITY ((size_t)64U * (size_t)1024U) #endif /* MORECORE_CONTIGUOUS */ #endif /* DEFAULT_GRANULARITY */ #ifndef DEFAULT_TRIM_THRESHOLD #ifndef MORECORE_CANNOT_TRIM #define DEFAULT_TRIM_THRESHOLD ((size_t)2U * (size_t)1024U * (size_t)1024U) #else /* MORECORE_CANNOT_TRIM */ #define DEFAULT_TRIM_THRESHOLD MAX_SIZE_T #endif /* MORECORE_CANNOT_TRIM */ #endif /* DEFAULT_TRIM_THRESHOLD */ #ifndef DEFAULT_MMAP_THRESHOLD #if HAVE_MMAP #define DEFAULT_MMAP_THRESHOLD ((size_t)256U * (size_t)1024U) #else /* HAVE_MMAP */ #define DEFAULT_MMAP_THRESHOLD MAX_SIZE_T #endif /* HAVE_MMAP */ #endif /* DEFAULT_MMAP_THRESHOLD */ #ifndef MAX_RELEASE_CHECK_RATE #if HAVE_MMAP #define MAX_RELEASE_CHECK_RATE 4095 #else #define MAX_RELEASE_CHECK_RATE MAX_SIZE_T #endif /* HAVE_MMAP */ #endif /* MAX_RELEASE_CHECK_RATE */ #ifndef USE_BUILTIN_FFS #define USE_BUILTIN_FFS 0 #endif /* USE_BUILTIN_FFS */ #ifndef USE_DEV_RANDOM #define USE_DEV_RANDOM 0 #endif /* USE_DEV_RANDOM */ #ifndef NO_MALLINFO #define NO_MALLINFO 0 #endif /* NO_MALLINFO */ #ifndef MALLINFO_FIELD_TYPE #define MALLINFO_FIELD_TYPE size_t #endif /* MALLINFO_FIELD_TYPE */ #ifndef NO_MALLOC_STATS #define NO_MALLOC_STATS 0 #endif /* NO_MALLOC_STATS */ #ifndef NO_SEGMENT_TRAVERSAL #define NO_SEGMENT_TRAVERSAL 0 #endif /* NO_SEGMENT_TRAVERSAL */ /* mallopt tuning options. SVID/XPG defines four standard parameter numbers for mallopt, normally defined in malloc.h. None of these are used in this malloc, so setting them has no effect. But this malloc does support the following options. */ #define M_TRIM_THRESHOLD (-1) #define M_GRANULARITY (-2) #define M_MMAP_THRESHOLD (-3) /* ------------------------ Mallinfo declarations ------------------------ */ #if !NO_MALLINFO /* This version of malloc supports the standard SVID/XPG mallinfo routine that returns a struct containing usage properties and statistics. It should work on any system that has a /usr/include/malloc.h defining struct mallinfo. The main declaration needed is the mallinfo struct that is returned (by-copy) by mallinfo(). The malloinfo struct contains a bunch of fields that are not even meaningful in this version of malloc. These fields are are instead filled by mallinfo() with other numbers that might be of interest. HAVE_USR_INCLUDE_MALLOC_H should be set if you have a /usr/include/malloc.h file that includes a declaration of struct mallinfo. If so, it is included; else a compliant version is declared below. These must be precisely the same for mallinfo() to work. The original SVID version of this struct, defined on most systems with mallinfo, declares all fields as ints. But some others define as unsigned long. If your system defines the fields using a type of different width than listed here, you MUST #include your system version and #define HAVE_USR_INCLUDE_MALLOC_H. */ /* #define HAVE_USR_INCLUDE_MALLOC_H */ #ifdef HAVE_USR_INCLUDE_MALLOC_H #include "/usr/include/malloc.h" #else /* HAVE_USR_INCLUDE_MALLOC_H */ #ifndef STRUCT_MALLINFO_DECLARED /* HP-UX (and others?) redefines mallinfo unless _STRUCT_MALLINFO is defined */ #define _STRUCT_MALLINFO #define STRUCT_MALLINFO_DECLARED 1 struct mallinfo { MALLINFO_FIELD_TYPE arena; /* non-mmapped space allocated from system */ MALLINFO_FIELD_TYPE ordblks; /* number of free chunks */ MALLINFO_FIELD_TYPE smblks; /* always 0 */ MALLINFO_FIELD_TYPE hblks; /* always 0 */ MALLINFO_FIELD_TYPE hblkhd; /* space in mmapped regions */ MALLINFO_FIELD_TYPE usmblks; /* maximum total allocated space */ MALLINFO_FIELD_TYPE fsmblks; /* always 0 */ MALLINFO_FIELD_TYPE uordblks; /* total allocated space */ MALLINFO_FIELD_TYPE fordblks; /* total free space */ MALLINFO_FIELD_TYPE keepcost; /* releasable (via malloc_trim) space */ }; #endif /* STRUCT_MALLINFO_DECLARED */ #endif /* HAVE_USR_INCLUDE_MALLOC_H */ #endif /* NO_MALLINFO */ /* Try to persuade compilers to inline. The most critical functions for inlining are defined as macros, so these aren't used for them. */ #ifndef FORCEINLINE #if defined(__GNUC__) #define FORCEINLINE __inline __attribute__ ((always_inline)) #elif defined(_MSC_VER) #define FORCEINLINE __forceinline #endif #endif #ifndef NOINLINE #if defined(__GNUC__) #define NOINLINE __attribute__ ((noinline)) #elif defined(_MSC_VER) #define NOINLINE __declspec(noinline) #else #define NOINLINE #endif #endif #ifdef __cplusplus extern "C" { #ifndef FORCEINLINE #define FORCEINLINE inline #endif #endif /* __cplusplus */ #ifndef FORCEINLINE #define FORCEINLINE #endif #if !ONLY_MSPACES /* ------------------- Declarations of public routines ------------------- */ #ifndef USE_DL_PREFIX // XXX Emscripten XXX #if defined(__EMSCRIPTEN__) void* __libc_malloc(size_t) __attribute__((weak, alias("dlmalloc"))); void __libc_free(void*) __attribute__((weak, alias("dlfree"))); void* __libc_calloc(size_t) __attribute__((weak, alias("dlcalloc"))); void* __libc_realloc(void*, size_t) __attribute__((weak, alias("dlrealloc"))); void* malloc(size_t) __attribute__((weak, alias("dlmalloc"))); void free(void*) __attribute__((weak, alias("dlfree"))); void* calloc(size_t, size_t) __attribute__((weak, alias("dlcalloc"))); void* realloc(void*, size_t) __attribute__((weak, alias("dlrealloc"))); void* realloc_in_place(void*, size_t) __attribute__((weak, alias("dlrealloc_in_place"))); void* memalign(size_t, size_t) __attribute__((weak, alias("dlmemalign"))); int posix_memalign(void**, size_t, size_t) __attribute__((weak, alias("dlposix_memalign"))); void* valloc(size_t) __attribute__((weak, alias("dlvalloc"))); void* pvalloc(size_t) __attribute__((weak, alias("dlpvalloc"))); #if !NO_MALLINFO struct mallinfo mallinfo(void) __attribute__((weak, alias("dlmallinfo"))); #endif int mallopt(int, int) __attribute__((weak, alias("dlmallopt"))); int malloc_trim(size_t) __attribute__((weak, alias("dlmalloc_trim"))); #if !NO_MALLOC_STATS void malloc_stats(void) __attribute__((weak, alias("dlmalloc_stats"))); #endif size_t malloc_usable_size(const void*) __attribute__((weak, alias("dlmalloc_usable_size"))); size_t malloc_footprint(void) __attribute__((weak, alias("dlmalloc_footprint"))); size_t malloc_max_footprint(void) __attribute__((weak, alias("dlmalloc_max_footprint"))); size_t malloc_footprint_limit(void) __attribute__((weak, alias("dlmalloc_footprint_limit"))); size_t malloc_set_footprint_limit(size_t bytes) __attribute__((weak, alias("dlmalloc_set_footprint_limit"))); #if MALLOC_INSPECT_ALL void malloc_inspect_all(void(*handler)(void*, void *, size_t, void*), void* arg) __attribute__((weak, alias("dlmalloc_inspect_all"))); #endif void** independent_calloc(size_t, size_t, void**) __attribute__((weak, alias("dlindependent_calloc"))); void** independent_comalloc(size_t, size_t*, void**) __attribute__((weak, alias("dlindependent_comalloc"))); size_t bulk_free(void**, size_t n_elements) __attribute__((weak, alias("dlbulk_free"))); #endif /*__EMSCRIPTEN__*/ #endif /* USE_DL_PREFIX */ /* malloc(size_t n) Returns a pointer to a newly allocated chunk of at least n bytes, or null if no space is available, in which case errno is set to ENOMEM on ANSI C systems. If n is zero, malloc returns a minimum-sized chunk. (The minimum size is 16 bytes on most 32bit systems, and 32 bytes on 64bit systems.) Note that size_t is an unsigned type, so calls with arguments that would be negative if signed are interpreted as requests for huge amounts of space, which will often fail. The maximum supported value of n differs across systems, but is in all cases less than the maximum representable value of a size_t. */ DLMALLOC_EXPORT void* dlmalloc(size_t); /* free(void* p) Releases the chunk of memory pointed to by p, that had been previously allocated using malloc or a related routine such as realloc. It has no effect if p is null. If p was not malloced or already freed, free(p) will by default cause the current program to abort. */ DLMALLOC_EXPORT void dlfree(void*); /* calloc(size_t n_elements, size_t element_size); Returns a pointer to n_elements * element_size bytes, with all locations set to zero. */ DLMALLOC_EXPORT void* dlcalloc(size_t, size_t); /* realloc(void* p, size_t n) Returns a pointer to a chunk of size n that contains the same data as does chunk p up to the minimum of (n, p's size) bytes, or null if no space is available. The returned pointer may or may not be the same as p. The algorithm prefers extending p in most cases when possible, otherwise it employs the equivalent of a malloc-copy-free sequence. If p is null, realloc is equivalent to malloc. If space is not available, realloc returns null, errno is set (if on ANSI) and p is NOT freed. if n is for fewer bytes than already held by p, the newly unused space is lopped off and freed if possible. realloc with a size argument of zero (re)allocates a minimum-sized chunk. The old unix realloc convention of allowing the last-free'd chunk to be used as an argument to realloc is not supported. */ DLMALLOC_EXPORT void* dlrealloc(void*, size_t); /* realloc_in_place(void* p, size_t n) Resizes the space allocated for p to size n, only if this can be done without moving p (i.e., only if there is adjacent space available if n is greater than p's current allocated size, or n is less than or equal to p's size). This may be used instead of plain realloc if an alternative allocation strategy is needed upon failure to expand space; for example, reallocation of a buffer that must be memory-aligned or cleared. You can use realloc_in_place to trigger these alternatives only when needed. Returns p if successful; otherwise null. */ DLMALLOC_EXPORT void* dlrealloc_in_place(void*, size_t); /* memalign(size_t alignment, size_t n); Returns a pointer to a newly allocated chunk of n bytes, aligned in accord with the alignment argument. The alignment argument should be a power of two. If the argument is not a power of two, the nearest greater power is used. 8-byte alignment is guaranteed by normal malloc calls, so don't bother calling memalign with an argument of 8 or less. Overreliance on memalign is a sure way to fragment space. */ DLMALLOC_EXPORT void* dlmemalign(size_t, size_t); /* int posix_memalign(void** pp, size_t alignment, size_t n); Allocates a chunk of n bytes, aligned in accord with the alignment argument. Differs from memalign only in that it (1) assigns the allocated memory to *pp rather than returning it, (2) fails and returns EINVAL if the alignment is not a power of two (3) fails and returns ENOMEM if memory cannot be allocated. */ DLMALLOC_EXPORT int dlposix_memalign(void**, size_t, size_t); /* valloc(size_t n); Equivalent to memalign(pagesize, n), where pagesize is the page size of the system. If the pagesize is unknown, 4096 is used. */ DLMALLOC_EXPORT void* dlvalloc(size_t); /* mallopt(int parameter_number, int parameter_value) Sets tunable parameters The format is to provide a (parameter-number, parameter-value) pair. mallopt then sets the corresponding parameter to the argument value if it can (i.e., so long as the value is meaningful), and returns 1 if successful else 0. To workaround the fact that mallopt is specified to use int, not size_t parameters, the value -1 is specially treated as the maximum unsigned size_t value. SVID/XPG/ANSI defines four standard param numbers for mallopt, normally defined in malloc.h. None of these are use in this malloc, so setting them has no effect. But this malloc also supports other options in mallopt. See below for details. Briefly, supported parameters are as follows (listed defaults are for "typical" configurations). Symbol param # default allowed param values M_TRIM_THRESHOLD -1 2*1024*1024 any (-1 disables) M_GRANULARITY -2 page size any power of 2 >= page size M_MMAP_THRESHOLD -3 256*1024 any (or 0 if no MMAP support) */ DLMALLOC_EXPORT int dlmallopt(int, int); /* malloc_footprint(); Returns the number of bytes obtained from the system. The total number of bytes allocated by malloc, realloc etc., is less than this value. Unlike mallinfo, this function returns only a precomputed result, so can be called frequently to monitor memory consumption. Even if locks are otherwise defined, this function does not use them, so results might not be up to date. */ DLMALLOC_EXPORT size_t dlmalloc_footprint(void); /* malloc_max_footprint(); Returns the maximum number of bytes obtained from the system. This value will be greater than current footprint if deallocated space has been reclaimed by the system. The peak number of bytes allocated by malloc, realloc etc., is less than this value. Unlike mallinfo, this function returns only a precomputed result, so can be called frequently to monitor memory consumption. Even if locks are otherwise defined, this function does not use them, so results might not be up to date. */ DLMALLOC_EXPORT size_t dlmalloc_max_footprint(void); /* malloc_footprint_limit(); Returns the number of bytes that the heap is allowed to obtain from the system, returning the last value returned by malloc_set_footprint_limit, or the maximum size_t value if never set. The returned value reflects a permission. There is no guarantee that this number of bytes can actually be obtained from the system. */ DLMALLOC_EXPORT size_t dlmalloc_footprint_limit(); /* malloc_set_footprint_limit(); Sets the maximum number of bytes to obtain from the system, causing failure returns from malloc and related functions upon attempts to exceed this value. The argument value may be subject to page rounding to an enforceable limit; this actual value is returned. Using an argument of the maximum possible size_t effectively disables checks. If the argument is less than or equal to the current malloc_footprint, then all future allocations that require additional system memory will fail. However, invocation cannot retroactively deallocate existing used memory. */ DLMALLOC_EXPORT size_t dlmalloc_set_footprint_limit(size_t bytes); #if MALLOC_INSPECT_ALL /* malloc_inspect_all(void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg); Traverses the heap and calls the given handler for each managed region, skipping all bytes that are (or may be) used for bookkeeping purposes. Traversal does not include include chunks that have been directly memory mapped. Each reported region begins at the start address, and continues up to but not including the end address. The first used_bytes of the region contain allocated data. If used_bytes is zero, the region is unallocated. The handler is invoked with the given callback argument. If locks are defined, they are held during the entire traversal. It is a bad idea to invoke other malloc functions from within the handler. For example, to count the number of in-use chunks with size greater than 1000, you could write: static int count = 0; void count_chunks(void* start, void* end, size_t used, void* arg) { if (used >= 1000) ++count; } then: malloc_inspect_all(count_chunks, NULL); malloc_inspect_all is compiled only if MALLOC_INSPECT_ALL is defined. */ DLMALLOC_EXPORT void dlmalloc_inspect_all(void(*handler)(void*, void *, size_t, void*), void* arg); #endif /* MALLOC_INSPECT_ALL */ #if !NO_MALLINFO /* mallinfo() Returns (by copy) a struct containing various summary statistics: arena: current total non-mmapped bytes allocated from system ordblks: the number of free chunks smblks: always zero. hblks: current number of mmapped regions hblkhd: total bytes held in mmapped regions usmblks: the maximum total allocated space. This will be greater than current total if trimming has occurred. fsmblks: always zero uordblks: current total allocated space (normal or mmapped) fordblks: total free space keepcost: the maximum number of bytes that could ideally be released back to system via malloc_trim. ("ideally" means that it ignores page restrictions etc.) Because these fields are ints, but internal bookkeeping may be kept as longs, the reported values may wrap around zero and thus be inaccurate. */ DLMALLOC_EXPORT struct mallinfo dlmallinfo(void); #endif /* NO_MALLINFO */ /* independent_calloc(size_t n_elements, size_t element_size, void* chunks[]); independent_calloc is similar to calloc, but instead of returning a single cleared space, it returns an array of pointers to n_elements independent elements that can hold contents of size elem_size, each of which starts out cleared, and can be independently freed, realloc'ed etc. The elements are guaranteed to be adjacently allocated (this is not guaranteed to occur with multiple callocs or mallocs), which may also improve cache locality in some applications. The "chunks" argument is optional (i.e., may be null, which is probably the most typical usage). If it is null, the returned array is itself dynamically allocated and should also be freed when it is no longer needed. Otherwise, the chunks array must be of at least n_elements in length. It is filled in with the pointers to the chunks. In either case, independent_calloc returns this pointer array, or null if the allocation failed. If n_elements is zero and "chunks" is null, it returns a chunk representing an array with zero elements (which should be freed if not wanted). Each element must be freed when it is no longer needed. This can be done all at once using bulk_free. independent_calloc simplifies and speeds up implementations of many kinds of pools. It may also be useful when constructing large data structures that initially have a fixed number of fixed-sized nodes, but the number is not known at compile time, and some of the nodes may later need to be freed. For example: struct Node { int item; struct Node* next; }; struct Node* build_list() { struct Node** pool; int n = read_number_of_nodes_needed(); if (n <= 0) return 0; pool = (struct Node**)(independent_calloc(n, sizeof(struct Node), 0); if (pool == 0) die(); // organize into a linked list... struct Node* first = pool[0]; for (i = 0; i < n-1; ++i) pool[i]->next = pool[i+1]; free(pool); // Can now free the array (or not, if it is needed later) return first; } */ DLMALLOC_EXPORT void** dlindependent_calloc(size_t, size_t, void**); /* independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]); independent_comalloc allocates, all at once, a set of n_elements chunks with sizes indicated in the "sizes" array. It returns an array of pointers to these elements, each of which can be independently freed, realloc'ed etc. The elements are guaranteed to be adjacently allocated (this is not guaranteed to occur with multiple callocs or mallocs), which may also improve cache locality in some applications. The "chunks" argument is optional (i.e., may be null). If it is null the returned array is itself dynamically allocated and should also be freed when it is no longer needed. Otherwise, the chunks array must be of at least n_elements in length. It is filled in with the pointers to the chunks. In either case, independent_comalloc returns this pointer array, or null if the allocation failed. If n_elements is zero and chunks is null, it returns a chunk representing an array with zero elements (which should be freed if not wanted). Each element must be freed when it is no longer needed. This can be done all at once using bulk_free. independent_comallac differs from independent_calloc in that each element may have a different size, and also that it does not automatically clear elements. independent_comalloc can be used to speed up allocation in cases where several structs or objects must always be allocated at the same time. For example: struct Head { ... } struct Foot { ... } void send_message(char* msg) { int msglen = strlen(msg); size_t sizes[3] = { sizeof(struct Head), msglen, sizeof(struct Foot) }; void* chunks[3]; if (independent_comalloc(3, sizes, chunks) == 0) die(); struct Head* head = (struct Head*)(chunks[0]); char* body = (char*)(chunks[1]); struct Foot* foot = (struct Foot*)(chunks[2]); // ... } In general though, independent_comalloc is worth using only for larger values of n_elements. For small values, you probably won't detect enough difference from series of malloc calls to bother. Overuse of independent_comalloc can increase overall memory usage, since it cannot reuse existing noncontiguous small chunks that might be available for some of the elements. */ DLMALLOC_EXPORT void** dlindependent_comalloc(size_t, size_t*, void**); /* bulk_free(void* array[], size_t n_elements) Frees and clears (sets to null) each non-null pointer in the given array. This is likely to be faster than freeing them one-by-one. If footers are used, pointers that have been allocated in different mspaces are not freed or cleared, and the count of all such pointers is returned. For large arrays of pointers with poor locality, it may be worthwhile to sort this array before calling bulk_free. */ DLMALLOC_EXPORT size_t dlbulk_free(void**, size_t n_elements); /* pvalloc(size_t n); Equivalent to valloc(minimum-page-that-holds(n)), that is, round up n to nearest pagesize. */ DLMALLOC_EXPORT void* dlpvalloc(size_t); /* malloc_trim(size_t pad); If possible, gives memory back to the system (via negative arguments to sbrk) if there is unused memory at the `high' end of the malloc pool or in unused MMAP segments. You can call this after freeing large blocks of memory to potentially reduce the system-level memory requirements of a program. However, it cannot guarantee to reduce memory. Under some allocation patterns, some large free blocks of memory will be locked between two used chunks, so they cannot be given back to the system. The `pad' argument to malloc_trim represents the amount of free trailing space to leave untrimmed. If this argument is zero, only the minimum amount of memory to maintain internal data structures will be left. Non-zero arguments can be supplied to maintain enough trailing space to service future expected allocations without having to re-obtain memory from the system. Malloc_trim returns 1 if it actually released any memory, else 0. */ DLMALLOC_EXPORT int dlmalloc_trim(size_t); /* malloc_stats(); Prints on stderr the amount of space obtained from the system (both via sbrk and mmap), the maximum amount (which may be more than current if malloc_trim and/or munmap got called), and the current number of bytes allocated via malloc (or realloc, etc) but not yet freed. Note that this is the number of bytes allocated, not the number requested. It will be larger than the number requested because of alignment and bookkeeping overhead. Because it includes alignment wastage as being in use, this figure may be greater than zero even when no user-level chunks are allocated. The reported current and maximum system memory can be inaccurate if a program makes other calls to system memory allocation functions (normally sbrk) outside of malloc. malloc_stats prints only the most commonly interesting statistics. More information can be obtained by calling mallinfo. */ DLMALLOC_EXPORT void dlmalloc_stats(void); /* malloc_usable_size(void* p); Returns the number of bytes you can actually use in an allocated chunk, which may be more than you requested (although often not) due to alignment and minimum size constraints. You can use this many bytes without worrying about overwriting other allocated objects. This is not a particularly great programming practice. malloc_usable_size can be more useful in debugging and assertions, for example: p = malloc(n); assert(malloc_usable_size(p) >= 256); */ /* XXX EMSCRIPTEN: mark for export (and therefore weak) */ DLMALLOC_EXPORT size_t dlmalloc_usable_size(void*); #endif /* ONLY_MSPACES */ #if MSPACES /* mspace is an opaque type representing an independent region of space that supports mspace_malloc, etc. */ typedef void* mspace; /* create_mspace creates and returns a new independent space with the given initial capacity, or, if 0, the default granularity size. It returns null if there is no system memory available to create the space. If argument locked is non-zero, the space uses a separate lock to control access. The capacity of the space will grow dynamically as needed to service mspace_malloc requests. You can control the sizes of incremental increases of this space by compiling with a different DEFAULT_GRANULARITY or dynamically setting with mallopt(M_GRANULARITY, value). */ DLMALLOC_EXPORT mspace create_mspace(size_t capacity, int locked); /* destroy_mspace destroys the given space, and attempts to return all of its memory back to the system, returning the total number of bytes freed. After destruction, the results of access to all memory used by the space become undefined. */ DLMALLOC_EXPORT size_t destroy_mspace(mspace msp); /* create_mspace_with_base uses the memory supplied as the initial base of a new mspace. Part (less than 128*sizeof(size_t) bytes) of this space is used for bookkeeping, so the capacity must be at least this large. (Otherwise 0 is returned.) When this initial space is exhausted, additional memory will be obtained from the system. Destroying this space will deallocate all additionally allocated space (if possible) but not the initial base. */ DLMALLOC_EXPORT mspace create_mspace_with_base(void* base, size_t capacity, int locked); /* mspace_track_large_chunks controls whether requests for large chunks are allocated in their own untracked mmapped regions, separate from others in this mspace. By default large chunks are not tracked, which reduces fragmentation. However, such chunks are not necessarily released to the system upon destroy_mspace. Enabling tracking by setting to true may increase fragmentation, but avoids leakage when relying on destroy_mspace to release all memory allocated using this space. The function returns the previous setting. */ DLMALLOC_EXPORT int mspace_track_large_chunks(mspace msp, int enable); /* mspace_malloc behaves as malloc, but operates within the given space. */ DLMALLOC_EXPORT void* mspace_malloc(mspace msp, size_t bytes); /* mspace_free behaves as free, but operates within the given space. If compiled with FOOTERS==1, mspace_free is not actually needed. free may be called instead of mspace_free because freed chunks from any space are handled by their originating spaces. */ DLMALLOC_EXPORT void mspace_free(mspace msp, void* mem); /* mspace_realloc behaves as realloc, but operates within the given space. If compiled with FOOTERS==1, mspace_realloc is not actually needed. realloc may be called instead of mspace_realloc because realloced chunks from any space are handled by their originating spaces. */ DLMALLOC_EXPORT void* mspace_realloc(mspace msp, void* mem, size_t newsize); /* mspace_calloc behaves as calloc, but operates within the given space. */ DLMALLOC_EXPORT void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size); /* mspace_memalign behaves as memalign, but operates within the given space. */ DLMALLOC_EXPORT void* mspace_memalign(mspace msp, size_t alignment, size_t bytes); /* mspace_independent_calloc behaves as independent_calloc, but operates within the given space. */ DLMALLOC_EXPORT void** mspace_independent_calloc(mspace msp, size_t n_elements, size_t elem_size, void* chunks[]); /* mspace_independent_comalloc behaves as independent_comalloc, but operates within the given space. */ DLMALLOC_EXPORT void** mspace_independent_comalloc(mspace msp, size_t n_elements, size_t sizes[], void* chunks[]); /* mspace_footprint() returns the number of bytes obtained from the system for this space. */ DLMALLOC_EXPORT size_t mspace_footprint(mspace msp); /* mspace_max_footprint() returns the peak number of bytes obtained from the system for this space. */ DLMALLOC_EXPORT size_t mspace_max_footprint(mspace msp); #if !NO_MALLINFO /* mspace_mallinfo behaves as mallinfo, but reports properties of the given space. */ DLMALLOC_EXPORT struct mallinfo mspace_mallinfo(mspace msp); #endif /* NO_MALLINFO */ /* malloc_usable_size(void* p) behaves the same as malloc_usable_size; */ DLMALLOC_EXPORT size_t mspace_usable_size(const void* mem); /* mspace_malloc_stats behaves as malloc_stats, but reports properties of the given space. */ DLMALLOC_EXPORT void mspace_malloc_stats(mspace msp); /* mspace_trim behaves as malloc_trim, but operates within the given space. */ DLMALLOC_EXPORT int mspace_trim(mspace msp, size_t pad); /* An alias for mallopt. */ DLMALLOC_EXPORT int mspace_mallopt(int, int); #endif /* MSPACES */ #ifdef __cplusplus } /* end of extern "C" */ #endif /* __cplusplus */ /* ======================================================================== To make a fully customizable malloc.h header file, cut everything above this line, put into file malloc.h, edit to suit, and #include it on the next line, as well as in programs that use this malloc. ======================================================================== */ /* #include "malloc.h" */ /*------------------------------ internal #includes ---------------------- */ #ifdef _MSC_VER #pragma warning( disable : 4146 ) /* no "unsigned" warnings */ #endif /* _MSC_VER */ #if !NO_MALLOC_STATS #include <stdio.h> /* for printing in malloc_stats */ #endif /* NO_MALLOC_STATS */ #ifndef LACKS_ERRNO_H #include <errno.h> /* for MALLOC_FAILURE_ACTION */ #endif /* LACKS_ERRNO_H */ #ifdef DEBUG #if ABORT_ON_ASSERT_FAILURE #undef assert #define assert(x) if(!(x)) ABORT #else /* ABORT_ON_ASSERT_FAILURE */ #include <assert.h> #endif /* ABORT_ON_ASSERT_FAILURE */ #else /* DEBUG */ #ifndef assert #define assert(x) #endif #define DEBUG 0 #endif /* DEBUG */ #if !defined(WIN32) && !defined(LACKS_TIME_H) #include <time.h> /* for magic initialization */ #endif /* WIN32 */ #ifndef LACKS_STDLIB_H #include <stdlib.h> /* for abort() */ #endif /* LACKS_STDLIB_H */ #ifndef LACKS_STRING_H #include <string.h> /* for memset etc */ #endif /* LACKS_STRING_H */ #if USE_BUILTIN_FFS #ifndef LACKS_STRINGS_H #include <strings.h> /* for ffs */ #endif /* LACKS_STRINGS_H */ #endif /* USE_BUILTIN_FFS */ #if HAVE_MMAP #ifndef LACKS_SYS_MMAN_H /* On some versions of linux, mremap decl in mman.h needs __USE_GNU set */ #if (defined(linux) && !defined(__USE_GNU)) #define __USE_GNU 1 #include <sys/mman.h> /* for mmap */ #undef __USE_GNU #else #include <sys/mman.h> /* for mmap */ #endif /* linux */ #endif /* LACKS_SYS_MMAN_H */ #ifndef LACKS_FCNTL_H #include <fcntl.h> #endif /* LACKS_FCNTL_H */ #endif /* HAVE_MMAP */ #ifndef LACKS_UNISTD_H #include <unistd.h> /* for sbrk, sysconf */ #else /* LACKS_UNISTD_H */ #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) extern void* sbrk(ptrdiff_t); #endif /* FreeBSD etc */ #endif /* LACKS_UNISTD_H */ /* Declarations for locking */ #if USE_LOCKS #ifndef WIN32 #if defined (__SVR4) && defined (__sun) /* solaris */ #include <thread.h> #elif !defined(LACKS_SCHED_H) #include <sched.h> #endif /* solaris or LACKS_SCHED_H */ #if (defined(USE_RECURSIVE_LOCKS) && USE_RECURSIVE_LOCKS != 0) || !USE_SPIN_LOCKS #include <pthread.h> #endif /* USE_RECURSIVE_LOCKS ... */ #elif defined(_MSC_VER) #ifndef _M_AMD64 /* These are already defined on AMD64 builds */ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ LONG __cdecl _InterlockedCompareExchange(LONG volatile *Dest, LONG Exchange, LONG Comp); LONG __cdecl _InterlockedExchange(LONG volatile *Target, LONG Value); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* _M_AMD64 */ #pragma intrinsic (_InterlockedCompareExchange) #pragma intrinsic (_InterlockedExchange) #define interlockedcompareexchange _InterlockedCompareExchange #define interlockedexchange _InterlockedExchange #elif defined(WIN32) && defined(__GNUC__) #define interlockedcompareexchange(a, b, c) __sync_val_compare_and_swap(a, c, b) #define interlockedexchange __sync_lock_test_and_set #endif /* Win32 */ #else /* USE_LOCKS */ #endif /* USE_LOCKS */ #ifndef LOCK_AT_FORK #define LOCK_AT_FORK 0 #endif /* Declarations for bit scanning on win32 */ #if defined(_MSC_VER) && _MSC_VER>=1300 #ifndef BitScanForward /* Try to avoid pulling in WinNT.h */ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ unsigned char _BitScanForward(unsigned long *index, unsigned long mask); unsigned char _BitScanReverse(unsigned long *index, unsigned long mask); #ifdef __cplusplus } #endif /* __cplusplus */ #define BitScanForward _BitScanForward #define BitScanReverse _BitScanReverse #pragma intrinsic(_BitScanForward) #pragma intrinsic(_BitScanReverse) #endif /* BitScanForward */ #endif /* defined(_MSC_VER) && _MSC_VER>=1300 */ #ifndef WIN32 #ifndef malloc_getpagesize # ifdef _SC_PAGESIZE /* some SVR4 systems omit an underscore */ # ifndef _SC_PAGE_SIZE # define _SC_PAGE_SIZE _SC_PAGESIZE # endif # endif # ifdef _SC_PAGE_SIZE # if defined(__EMSCRIPTEN__) # define malloc_getpagesize (4096) /* avoid sysconf calls during startup */ # else # define malloc_getpagesize sysconf(_SC_PAGE_SIZE) # endif # else # if defined(BSD) || defined(DGUX) || defined(HAVE_GETPAGESIZE) extern size_t getpagesize(); # define malloc_getpagesize getpagesize() # else # ifdef WIN32 /* use supplied emulation of getpagesize */ # define malloc_getpagesize getpagesize() # else # ifndef LACKS_SYS_PARAM_H # include <sys/param.h> # endif # ifdef EXEC_PAGESIZE # define malloc_getpagesize EXEC_PAGESIZE # else # ifdef NBPG # ifndef CLSIZE # define malloc_getpagesize NBPG # else # define malloc_getpagesize (NBPG * CLSIZE) # endif # else # ifdef NBPC # define malloc_getpagesize NBPC # else # ifdef PAGESIZE # define malloc_getpagesize PAGESIZE # else /* just guess */ # define malloc_getpagesize ((size_t)4096U) # endif # endif # endif # endif # endif # endif # endif #endif #endif /* ------------------- size_t and alignment properties -------------------- */ /* The byte and bit size of a size_t */ #define SIZE_T_SIZE (sizeof(size_t)) #define SIZE_T_BITSIZE (sizeof(size_t) << 3) /* Some constants coerced to size_t */ /* Annoying but necessary to avoid errors on some platforms */ #define SIZE_T_ZERO ((size_t)0) #define SIZE_T_ONE ((size_t)1) #define SIZE_T_TWO ((size_t)2) #define SIZE_T_FOUR ((size_t)4) #define TWO_SIZE_T_SIZES (SIZE_T_SIZE<<1) #define FOUR_SIZE_T_SIZES (SIZE_T_SIZE<<2) #define SIX_SIZE_T_SIZES (FOUR_SIZE_T_SIZES+TWO_SIZE_T_SIZES) #define HALF_MAX_SIZE_T (MAX_SIZE_T / 2U) /* The bit mask value corresponding to MALLOC_ALIGNMENT */ #define CHUNK_ALIGN_MASK (MALLOC_ALIGNMENT - SIZE_T_ONE) /* True if address a has acceptable alignment */ #define is_aligned(A) (((size_t)((A)) & (CHUNK_ALIGN_MASK)) == 0) /* the number of bytes to offset an address to align it */ #define align_offset(A)\ ((((size_t)(A) & CHUNK_ALIGN_MASK) == 0)? 0 :\ ((MALLOC_ALIGNMENT - ((size_t)(A) & CHUNK_ALIGN_MASK)) & CHUNK_ALIGN_MASK)) /* -------------------------- MMAP preliminaries ------------------------- */ /* If HAVE_MORECORE or HAVE_MMAP are false, we just define calls and checks to fail so compiler optimizer can delete code rather than using so many "#if"s. */ /* MORECORE and MMAP must return MFAIL on failure */ #define MFAIL ((void*)(MAX_SIZE_T)) #define CMFAIL ((char*)(MFAIL)) /* defined for convenience */ #if HAVE_MMAP #ifndef WIN32 #define MUNMAP_DEFAULT(a, s) munmap((a), (s)) #define MMAP_PROT (PROT_READ|PROT_WRITE) #if !defined(MAP_ANONYMOUS) && defined(MAP_ANON) #define MAP_ANONYMOUS MAP_ANON #endif /* MAP_ANON */ #ifdef MAP_ANONYMOUS #define MMAP_FLAGS (MAP_PRIVATE|MAP_ANONYMOUS) #define MMAP_DEFAULT(s) mmap(0, (s), MMAP_PROT, MMAP_FLAGS, -1, 0) #else /* MAP_ANONYMOUS */ /* Nearly all versions of mmap support MAP_ANONYMOUS, so the following is unlikely to be needed, but is supplied just in case. */ #define MMAP_FLAGS (MAP_PRIVATE) static int dev_zero_fd = -1; /* Cached file descriptor for /dev/zero. */ #define MMAP_DEFAULT(s) ((dev_zero_fd < 0) ? \ (dev_zero_fd = open("/dev/zero", O_RDWR), \ mmap(0, (s), MMAP_PROT, MMAP_FLAGS, dev_zero_fd, 0)) : \ mmap(0, (s), MMAP_PROT, MMAP_FLAGS, dev_zero_fd, 0)) #endif /* MAP_ANONYMOUS */ #define DIRECT_MMAP_DEFAULT(s) MMAP_DEFAULT(s) #else /* WIN32 */ /* Win32 MMAP via VirtualAlloc */ static FORCEINLINE void* win32mmap(size_t size) { void* ptr = VirtualAlloc(0, size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE); return (ptr != 0)? ptr: MFAIL; } /* For direct MMAP, use MEM_TOP_DOWN to minimize interference */ static FORCEINLINE void* win32direct_mmap(size_t size) { void* ptr = VirtualAlloc(0, size, MEM_RESERVE|MEM_COMMIT|MEM_TOP_DOWN, PAGE_READWRITE); return (ptr != 0)? ptr: MFAIL; } /* This function supports releasing coalesed segments */ static FORCEINLINE int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = (char*)ptr; while (size) { if (VirtualQuery(cptr, &minfo, sizeof(minfo)) == 0) return -1; if (minfo.BaseAddress != cptr || minfo.AllocationBase != cptr || minfo.State != MEM_COMMIT || minfo.RegionSize > size) return -1; if (VirtualFree(cptr, 0, MEM_RELEASE) == 0) return -1; cptr += minfo.RegionSize; size -= minfo.RegionSize; } return 0; } #define MMAP_DEFAULT(s) win32mmap(s) #define MUNMAP_DEFAULT(a, s) win32munmap((a), (s)) #define DIRECT_MMAP_DEFAULT(s) win32direct_mmap(s) #endif /* WIN32 */ #endif /* HAVE_MMAP */ #if HAVE_MREMAP #ifndef WIN32 #define MREMAP_DEFAULT(addr, osz, nsz, mv) mremap((addr), (osz), (nsz), (mv)) #endif /* WIN32 */ #endif /* HAVE_MREMAP */ /** * Define CALL_MORECORE */ #if HAVE_MORECORE #ifdef MORECORE #define CALL_MORECORE(S) MORECORE(S) #else /* MORECORE */ #define CALL_MORECORE(S) MORECORE_DEFAULT(S) #endif /* MORECORE */ #else /* HAVE_MORECORE */ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ /** * Define CALL_MMAP/CALL_MUNMAP/CALL_DIRECT_MMAP */ #if HAVE_MMAP #define USE_MMAP_BIT (SIZE_T_ONE) #ifdef MMAP #define CALL_MMAP(s) MMAP(s) #else /* MMAP */ #define CALL_MMAP(s) MMAP_DEFAULT(s) #endif /* MMAP */ #ifdef MUNMAP #define CALL_MUNMAP(a, s) MUNMAP((a), (s)) #else /* MUNMAP */ #define CALL_MUNMAP(a, s) MUNMAP_DEFAULT((a), (s)) #endif /* MUNMAP */ #ifdef DIRECT_MMAP #define CALL_DIRECT_MMAP(s) DIRECT_MMAP(s) #else /* DIRECT_MMAP */ #define CALL_DIRECT_MMAP(s) DIRECT_MMAP_DEFAULT(s) #endif /* DIRECT_MMAP */ #else /* HAVE_MMAP */ #define USE_MMAP_BIT (SIZE_T_ZERO) #define MMAP(s) MFAIL #define MUNMAP(a, s) (-1) #define DIRECT_MMAP(s) MFAIL #define CALL_DIRECT_MMAP(s) DIRECT_MMAP(s) #define CALL_MMAP(s) MMAP(s) #define CALL_MUNMAP(a, s) MUNMAP((a), (s)) #endif /* HAVE_MMAP */ /** * Define CALL_MREMAP */ #if HAVE_MMAP && HAVE_MREMAP #ifdef MREMAP #define CALL_MREMAP(addr, osz, nsz, mv) MREMAP((addr), (osz), (nsz), (mv)) #else /* MREMAP */ #define CALL_MREMAP(addr, osz, nsz, mv) MREMAP_DEFAULT((addr), (osz), (nsz), (mv)) #endif /* MREMAP */ #else /* HAVE_MMAP && HAVE_MREMAP */ #define CALL_MREMAP(addr, osz, nsz, mv) MFAIL #endif /* HAVE_MMAP && HAVE_MREMAP */ /* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ #define EXTERN_BIT (8U) /* --------------------------- Lock preliminaries ------------------------ */ /* When locks are defined, there is one global lock, plus one per-mspace lock. The global lock_ensures that mparams.magic and other unique mparams values are initialized only once. It also protects sequences of calls to MORECORE. In many cases sys_alloc requires two calls, that should not be interleaved with calls by other threads. This does not protect against direct calls to MORECORE by other threads not using this lock, so there is still code to cope the best we can on interference. Per-mspace locks surround calls to malloc, free, etc. By default, locks are simple non-reentrant mutexes. Because lock-protected regions generally have bounded times, it is OK to use the supplied simple spinlocks. Spinlocks are likely to improve performance for lightly contended applications, but worsen performance under heavy contention. If USE_LOCKS is > 1, the definitions of lock routines here are bypassed, in which case you will need to define the type MLOCK_T, and at least INITIAL_LOCK, DESTROY_LOCK, ACQUIRE_LOCK, RELEASE_LOCK and TRY_LOCK. You must also declare a static MLOCK_T malloc_global_mutex = { initialization values };. */ #if !USE_LOCKS #define USE_LOCK_BIT (0U) #define INITIAL_LOCK(l) (0) #define DESTROY_LOCK(l) (0) #define ACQUIRE_MALLOC_GLOBAL_LOCK() #define RELEASE_MALLOC_GLOBAL_LOCK() #else #if USE_LOCKS > 1 /* ----------------------- User-defined locks ------------------------ */ /* Define your own lock implementation here */ /* #define INITIAL_LOCK(lk) ... */ /* #define DESTROY_LOCK(lk) ... */ /* #define ACQUIRE_LOCK(lk) ... */ /* #define RELEASE_LOCK(lk) ... */ /* #define TRY_LOCK(lk) ... */ /* static MLOCK_T malloc_global_mutex = ... */ #elif USE_SPIN_LOCKS /* First, define CAS_LOCK and CLEAR_LOCK on ints */ /* Note CAS_LOCK defined to return 0 on success */ #if defined(__GNUC__)&& (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)) #define CAS_LOCK(sl) __sync_lock_test_and_set(sl, 1) #define CLEAR_LOCK(sl) __sync_lock_release(sl) #elif (defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))) /* Custom spin locks for older gcc on x86 */ static FORCEINLINE int x86_cas_lock(int *sl) { int ret; int val = 1; int cmp = 0; __asm__ __volatile__ ("lock; cmpxchgl %1, %2" : "=a" (ret) : "r" (val), "m" (*(sl)), "0"(cmp) : "memory", "cc"); return ret; } static FORCEINLINE void x86_clear_lock(int* sl) { assert(*sl != 0); int prev = 0; int ret; __asm__ __volatile__ ("lock; xchgl %0, %1" : "=r" (ret) : "m" (*(sl)), "0"(prev) : "memory"); } #define CAS_LOCK(sl) x86_cas_lock(sl) #define CLEAR_LOCK(sl) x86_clear_lock(sl) #else /* Win32 MSC */ #define CAS_LOCK(sl) interlockedexchange(sl, (LONG)1) #define CLEAR_LOCK(sl) interlockedexchange (sl, (LONG)0) #endif /* ... gcc spins locks ... */ /* How to yield for a spin lock */ #define SPINS_PER_YIELD 63 #if defined(_MSC_VER) #define SLEEP_EX_DURATION 50 /* delay for yield/sleep */ #define SPIN_LOCK_YIELD SleepEx(SLEEP_EX_DURATION, FALSE) #elif defined (__SVR4) && defined (__sun) /* solaris */ #define SPIN_LOCK_YIELD thr_yield(); #elif !defined(LACKS_SCHED_H) #define SPIN_LOCK_YIELD sched_yield(); #else #define SPIN_LOCK_YIELD #endif /* ... yield ... */ #if !defined(USE_RECURSIVE_LOCKS) || USE_RECURSIVE_LOCKS == 0 /* Plain spin locks use single word (embedded in malloc_states) */ static int spin_acquire_lock(int *sl) { int spins = 0; while (*(volatile int *)sl != 0 || CAS_LOCK(sl)) { if ((++spins & SPINS_PER_YIELD) == 0) { SPIN_LOCK_YIELD; } } return 0; } #define MLOCK_T int #define TRY_LOCK(sl) !CAS_LOCK(sl) #define RELEASE_LOCK(sl) CLEAR_LOCK(sl) #define ACQUIRE_LOCK(sl) (CAS_LOCK(sl)? spin_acquire_lock(sl) : 0) #define INITIAL_LOCK(sl) (*sl = 0) #define DESTROY_LOCK(sl) (0) static MLOCK_T malloc_global_mutex = 0; #else /* USE_RECURSIVE_LOCKS */ /* types for lock owners */ #ifdef WIN32 #define THREAD_ID_T DWORD #define CURRENT_THREAD GetCurrentThreadId() #define EQ_OWNER(X,Y) ((X) == (Y)) #else /* Note: the following assume that pthread_t is a type that can be initialized to (casted) zero. If this is not the case, you will need to somehow redefine these or not use spin locks. */ #define THREAD_ID_T pthread_t #define CURRENT_THREAD pthread_self() #define EQ_OWNER(X,Y) pthread_equal(X, Y) #endif struct malloc_recursive_lock { int sl; unsigned int c; THREAD_ID_T threadid; }; #define MLOCK_T struct malloc_recursive_lock static MLOCK_T malloc_global_mutex = { 0, 0, (THREAD_ID_T)0}; static FORCEINLINE void recursive_release_lock(MLOCK_T *lk) { assert(lk->sl != 0); if (--lk->c == 0) { CLEAR_LOCK(&lk->sl); } } static FORCEINLINE int recursive_acquire_lock(MLOCK_T *lk) { THREAD_ID_T mythreadid = CURRENT_THREAD; int spins = 0; for (;;) { if (*((volatile int *)(&lk->sl)) == 0) { if (!CAS_LOCK(&lk->sl)) { lk->threadid = mythreadid; lk->c = 1; return 0; } } else if (EQ_OWNER(lk->threadid, mythreadid)) { ++lk->c; return 0; } if ((++spins & SPINS_PER_YIELD) == 0) { SPIN_LOCK_YIELD; } } } static FORCEINLINE int recursive_try_lock(MLOCK_T *lk) { THREAD_ID_T mythreadid = CURRENT_THREAD; if (*((volatile int *)(&lk->sl)) == 0) { if (!CAS_LOCK(&lk->sl)) { lk->threadid = mythreadid; lk->c = 1; return 1; } } else if (EQ_OWNER(lk->threadid, mythreadid)) { ++lk->c; return 1; } return 0; } #define RELEASE_LOCK(lk) recursive_release_lock(lk) #define TRY_LOCK(lk) recursive_try_lock(lk) #define ACQUIRE_LOCK(lk) recursive_acquire_lock(lk) #define INITIAL_LOCK(lk) ((lk)->threadid = (THREAD_ID_T)0, (lk)->sl = 0, (lk)->c = 0) #define DESTROY_LOCK(lk) (0) #endif /* USE_RECURSIVE_LOCKS */ #elif defined(WIN32) /* Win32 critical sections */ #define MLOCK_T CRITICAL_SECTION #define ACQUIRE_LOCK(lk) (EnterCriticalSection(lk), 0) #define RELEASE_LOCK(lk) LeaveCriticalSection(lk) #define TRY_LOCK(lk) TryEnterCriticalSection(lk) #define INITIAL_LOCK(lk) (!InitializeCriticalSectionAndSpinCount((lk), 0x80000000|4000)) #define DESTROY_LOCK(lk) (DeleteCriticalSection(lk), 0) #define NEED_GLOBAL_LOCK_INIT static MLOCK_T malloc_global_mutex; static volatile LONG malloc_global_mutex_status; /* Use spin loop to initialize global lock */ static void init_malloc_global_mutex() { for (;;) { long stat = malloc_global_mutex_status; if (stat > 0) return; /* transition to < 0 while initializing, then to > 0) */ if (stat == 0 && interlockedcompareexchange(&malloc_global_mutex_status, (LONG)-1, (LONG)0) == 0) { InitializeCriticalSection(&malloc_global_mutex); interlockedexchange(&malloc_global_mutex_status, (LONG)1); return; } SleepEx(0, FALSE); } } #else /* pthreads-based locks */ #define MLOCK_T pthread_mutex_t #define ACQUIRE_LOCK(lk) pthread_mutex_lock(lk) #define RELEASE_LOCK(lk) pthread_mutex_unlock(lk) #define TRY_LOCK(lk) (!pthread_mutex_trylock(lk)) #define INITIAL_LOCK(lk) pthread_init_lock(lk) #define DESTROY_LOCK(lk) pthread_mutex_destroy(lk) #if defined(USE_RECURSIVE_LOCKS) && USE_RECURSIVE_LOCKS != 0 && defined(linux) && !defined(PTHREAD_MUTEX_RECURSIVE) /* Cope with old-style linux recursive lock initialization by adding */ /* skipped internal declaration from pthread.h */ extern int pthread_mutexattr_setkind_np __P ((pthread_mutexattr_t *__attr, int __kind)); #define PTHREAD_MUTEX_RECURSIVE PTHREAD_MUTEX_RECURSIVE_NP #define pthread_mutexattr_settype(x,y) pthread_mutexattr_setkind_np(x,y) #endif /* USE_RECURSIVE_LOCKS ... */ static MLOCK_T malloc_global_mutex = PTHREAD_MUTEX_INITIALIZER; static int pthread_init_lock (MLOCK_T *lk) { pthread_mutexattr_t attr; if (pthread_mutexattr_init(&attr)) return 1; #if defined(USE_RECURSIVE_LOCKS) && USE_RECURSIVE_LOCKS != 0 if (pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE)) return 1; #endif if (pthread_mutex_init(lk, &attr)) return 1; if (pthread_mutexattr_destroy(&attr)) return 1; return 0; } #endif /* ... lock types ... */ /* Common code for all lock types */ #define USE_LOCK_BIT (2U) #ifndef ACQUIRE_MALLOC_GLOBAL_LOCK #define ACQUIRE_MALLOC_GLOBAL_LOCK() ACQUIRE_LOCK(&malloc_global_mutex); #endif #ifndef RELEASE_MALLOC_GLOBAL_LOCK #define RELEASE_MALLOC_GLOBAL_LOCK() RELEASE_LOCK(&malloc_global_mutex); #endif #endif /* USE_LOCKS */ /* ----------------------- Chunk representations ------------------------ */ /* (The following includes lightly edited explanations by Colin Plumb.) The malloc_chunk declaration below is misleading (but accurate and necessary). It declares a "view" into memory allowing access to necessary fields at known offsets from a given base. Chunks of memory are maintained using a `boundary tag' method as originally described by Knuth. (See the paper by Paul Wilson ftp://ftp.cs.utexas.edu/pub/garbage/allocsrv.ps for a survey of such techniques.) Sizes of free chunks are stored both in the front of each chunk and at the end. This makes consolidating fragmented chunks into bigger chunks fast. The head fields also hold bits representing whether chunks are free or in use. Here are some pictures to make it clearer. They are "exploded" to show that the state of a chunk can be thought of as extending from the high 31 bits of the head field of its header through the prev_foot and PINUSE_BIT bit of the following chunk header. A chunk that's in use looks like: chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Size of previous chunk (if P = 0) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |P| | Size of this chunk 1| +-+ mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | +- -+ | | +- -+ | : +- size - sizeof(size_t) available payload bytes -+ : | chunk-> +- -+ | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |1| | Size of next chunk (may or may not be in use) | +-+ mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ And if it's free, it looks like this: chunk-> +- -+ | User payload (must be in use, or we would have merged!) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |P| | Size of this chunk 0| +-+ mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Next pointer | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Prev pointer | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | : +- size - sizeof(struct chunk) unused bytes -+ : | chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Size of this chunk | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |0| | Size of next chunk (must be in use, or we would have merged)| +-+ mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | : +- User payload -+ : | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |0| +-+ Note that since we always merge adjacent free chunks, the chunks adjacent to a free chunk must be in use. Given a pointer to a chunk (which can be derived trivially from the payload pointer) we can, in O(1) time, find out whether the adjacent chunks are free, and if so, unlink them from the lists that they are on and merge them with the current chunk. Chunks always begin on even word boundaries, so the mem portion (which is returned to the user) is also on an even word boundary, and thus at least double-word aligned. The P (PINUSE_BIT) bit, stored in the unused low-order bit of the chunk size (which is always a multiple of two words), is an in-use bit for the *previous* chunk. If that bit is *clear*, then the word before the current chunk size contains the previous chunk size, and can be used to find the front of the previous chunk. The very first chunk allocated always has this bit set, preventing access to non-existent (or non-owned) memory. If pinuse is set for any given chunk, then you CANNOT determine the size of the previous chunk, and might even get a memory addressing fault when trying to do so. The C (CINUSE_BIT) bit, stored in the unused second-lowest bit of the chunk size redundantly records whether the current chunk is inuse (unless the chunk is mmapped). This redundancy enables usage checks within free and realloc, and reduces indirection when freeing and consolidating chunks. Each freshly allocated chunk must have both cinuse and pinuse set. That is, each allocated chunk borders either a previously allocated and still in-use chunk, or the base of its memory arena. This is ensured by making all allocations from the `lowest' part of any found chunk. Further, no free chunk physically borders another one, so each free chunk is known to be preceded and followed by either inuse chunks or the ends of memory. Note that the `foot' of the current chunk is actually represented as the prev_foot of the NEXT chunk. This makes it easier to deal with alignments etc but can be very confusing when trying to extend or adapt this code. The exceptions to all this are 1. The special chunk `top' is the top-most available chunk (i.e., the one bordering the end of available memory). It is treated specially. Top is never included in any bin, is used only if no other chunk is available, and is released back to the system if it is very large (see M_TRIM_THRESHOLD). In effect, the top chunk is treated as larger (and thus less well fitting) than any other available chunk. The top chunk doesn't update its trailing size field since there is no next contiguous chunk that would have to index off it. However, space is still allocated for it (TOP_FOOT_SIZE) to enable separation or merging when space is extended. 3. Chunks allocated via mmap, have both cinuse and pinuse bits cleared in their head fields. Because they are allocated one-by-one, each must carry its own prev_foot field, which is also used to hold the offset this chunk has within its mmapped region, which is needed to preserve alignment. Each mmapped chunk is trailed by the first two fields of a fake next-chunk for sake of usage checks. */ struct malloc_chunk { size_t prev_foot; /* Size of previous chunk (if free). */ size_t head; /* Size and inuse bits. */ struct malloc_chunk* fd; /* double links -- used only if free. */ struct malloc_chunk* bk; }; typedef struct malloc_chunk mchunk; typedef struct malloc_chunk* mchunkptr; typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */ typedef unsigned int bindex_t; /* Described below */ typedef unsigned int binmap_t; /* Described below */ typedef unsigned int flag_t; /* The type of various bit flag sets */ /* ------------------- Chunks sizes and alignments ----------------------- */ #define MCHUNK_SIZE (sizeof(mchunk)) #if FOOTERS #define CHUNK_OVERHEAD (TWO_SIZE_T_SIZES) #else /* FOOTERS */ #define CHUNK_OVERHEAD (SIZE_T_SIZE) #endif /* FOOTERS */ /* MMapped chunks need a second word of overhead ... */ #define MMAP_CHUNK_OVERHEAD (TWO_SIZE_T_SIZES) /* ... and additional padding for fake next-chunk at foot */ #define MMAP_FOOT_PAD (FOUR_SIZE_T_SIZES) /* The smallest size we can malloc is an aligned minimal chunk */ #define MIN_CHUNK_SIZE \ ((MCHUNK_SIZE + CHUNK_ALIGN_MASK) & ~CHUNK_ALIGN_MASK) /* conversion from malloc headers to user pointers, and back */ #define chunk2mem(p) ((void*)((char*)(p) + TWO_SIZE_T_SIZES)) #define mem2chunk(mem) ((mchunkptr)((char*)(mem) - TWO_SIZE_T_SIZES)) /* chunk associated with aligned address A */ #define align_as_chunk(A) (mchunkptr)((A) + align_offset(chunk2mem(A))) /* Bounds on request (not chunk) sizes. */ #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2) #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE) /* pad request bytes into a usable size */ #define pad_request(req) \ (((req) + CHUNK_OVERHEAD + CHUNK_ALIGN_MASK) & ~CHUNK_ALIGN_MASK) /* pad request, checking for minimum (but not maximum) */ #define request2size(req) \ (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req)) /* ------------------ Operations on head and foot fields ----------------- */ /* The head field of a chunk is or'ed with PINUSE_BIT when previous adjacent chunk in use, and or'ed with CINUSE_BIT if this chunk is in use, unless mmapped, in which case both bits are cleared. FLAG4_BIT is not used by this malloc, but might be useful in extensions. */ #define PINUSE_BIT (SIZE_T_ONE) #define CINUSE_BIT (SIZE_T_TWO) #define FLAG4_BIT (SIZE_T_FOUR) #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT) #define FLAG_BITS (PINUSE_BIT|CINUSE_BIT|FLAG4_BIT) /* Head value for fenceposts */ #define FENCEPOST_HEAD (INUSE_BITS|SIZE_T_SIZE) /* extraction of fields from head words */ #define cinuse(p) ((p)->head & CINUSE_BIT) #define pinuse(p) ((p)->head & PINUSE_BIT) #define flag4inuse(p) ((p)->head & FLAG4_BIT) #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT) #define is_mmapped(p) (((p)->head & INUSE_BITS) == 0) #define chunksize(p) ((p)->head & ~(FLAG_BITS)) #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT) #define set_flag4(p) ((p)->head |= FLAG4_BIT) #define clear_flag4(p) ((p)->head &= ~FLAG4_BIT) /* Treat space at ptr +/- offset as a chunk */ #define chunk_plus_offset(p, s) ((mchunkptr)(((char*)(p)) + (s))) #define chunk_minus_offset(p, s) ((mchunkptr)(((char*)(p)) - (s))) /* Ptr to next or previous physical malloc_chunk. */ #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->head & ~FLAG_BITS))) #define prev_chunk(p) ((mchunkptr)( ((char*)(p)) - ((p)->prev_foot) )) /* extract next chunk's pinuse bit */ #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT) /* Get/set size at footer */ #define get_foot(p, s) (((mchunkptr)((char*)(p) + (s)))->prev_foot) #define set_foot(p, s) (((mchunkptr)((char*)(p) + (s)))->prev_foot = (s)) /* Set size, pinuse bit, and foot */ #define set_size_and_pinuse_of_free_chunk(p, s)\ ((p)->head = (s|PINUSE_BIT), set_foot(p, s)) /* Set size, pinuse bit, foot, and clear next pinuse */ #define set_free_with_pinuse(p, s, n)\ (clear_pinuse(n), set_size_and_pinuse_of_free_chunk(p, s)) /* Get the internal overhead associated with chunk p */ #define overhead_for(p)\ (is_mmapped(p)? MMAP_CHUNK_OVERHEAD : CHUNK_OVERHEAD) /* Return true if malloced space is not necessarily cleared */ #if MMAP_CLEARS #define calloc_must_clear(p) (!is_mmapped(p)) #else /* MMAP_CLEARS */ #define calloc_must_clear(p) (1) #endif /* MMAP_CLEARS */ /* ---------------------- Overlaid data structures ----------------------- */ /* When chunks are not in use, they are treated as nodes of either lists or trees. "Small" chunks are stored in circular doubly-linked lists, and look like this: chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Size of previous chunk | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `head:' | Size of chunk, in bytes |P| mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Forward pointer to next chunk in list | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Back pointer to previous chunk in list | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Unused space (may be 0 bytes long) . . . . | nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `foot:' | Size of chunk, in bytes | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Larger chunks are kept in a form of bitwise digital trees (aka tries) keyed on chunksizes. Because malloc_tree_chunks are only for free chunks greater than 256 bytes, their size doesn't impose any constraints on user chunk sizes. Each node looks like: chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Size of previous chunk | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `head:' | Size of chunk, in bytes |P| mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Forward pointer to next chunk of same size | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Back pointer to previous chunk of same size | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Pointer to left child (child[0]) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Pointer to right child (child[1]) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Pointer to parent | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | bin index of this chunk | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Unused space . . | nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `foot:' | Size of chunk, in bytes | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Each tree holding treenodes is a tree of unique chunk sizes. Chunks of the same size are arranged in a circularly-linked list, with only the oldest chunk (the next to be used, in our FIFO ordering) actually in the tree. (Tree members are distinguished by a non-null parent pointer.) If a chunk with the same size an an existing node is inserted, it is linked off the existing node using pointers that work in the same way as fd/bk pointers of small chunks. Each tree contains a power of 2 sized range of chunk sizes (the smallest is 0x100 <= x < 0x180), which is is divided in half at each tree level, with the chunks in the smaller half of the range (0x100 <= x < 0x140 for the top nose) in the left subtree and the larger half (0x140 <= x < 0x180) in the right subtree. This is, of course, done by inspecting individual bits. Using these rules, each node's left subtree contains all smaller sizes than its right subtree. However, the node at the root of each subtree has no particular ordering relationship to either. (The dividing line between the subtree sizes is based on trie relation.) If we remove the last chunk of a given size from the interior of the tree, we need to replace it with a leaf node. The tree ordering rules permit a node to be replaced by any leaf below it. The smallest chunk in a tree (a common operation in a best-fit allocator) can be found by walking a path to the leftmost leaf in the tree. Unlike a usual binary tree, where we follow left child pointers until we reach a null, here we follow the right child pointer any time the left one is null, until we reach a leaf with both child pointers null. The smallest chunk in the tree will be somewhere along that path. The worst case number of steps to add, find, or remove a node is bounded by the number of bits differentiating chunks within bins. Under current bin calculations, this ranges from 6 up to 21 (for 32 bit sizes) or up to 53 (for 64 bit sizes). The typical case is of course much better. */ struct malloc_tree_chunk { /* The first four fields must be compatible with malloc_chunk */ size_t prev_foot; size_t head; struct malloc_tree_chunk* fd; struct malloc_tree_chunk* bk; struct malloc_tree_chunk* child[2]; struct malloc_tree_chunk* parent; bindex_t index; }; typedef struct malloc_tree_chunk tchunk; typedef struct malloc_tree_chunk* tchunkptr; typedef struct malloc_tree_chunk* tbinptr; /* The type of bins of trees */ /* A little helper macro for trees */ #define leftmost_child(t) ((t)->child[0] != 0? (t)->child[0] : (t)->child[1]) /* ----------------------------- Segments -------------------------------- */ /* Each malloc space may include non-contiguous segments, held in a list headed by an embedded malloc_segment record representing the top-most space. Segments also include flags holding properties of the space. Large chunks that are directly allocated by mmap are not included in this list. They are instead independently created and destroyed without otherwise keeping track of them. Segment management mainly comes into play for spaces allocated by MMAP. Any call to MMAP might or might not return memory that is adjacent to an existing segment. MORECORE normally contiguously extends the current space, so this space is almost always adjacent, which is simpler and faster to deal with. (This is why MORECORE is used preferentially to MMAP when both are available -- see sys_alloc.) When allocating using MMAP, we don't use any of the hinting mechanisms (inconsistently) supported in various implementations of unix mmap, or distinguish reserving from committing memory. Instead, we just ask for space, and exploit contiguity when we get it. It is probably possible to do better than this on some systems, but no general scheme seems to be significantly better. Management entails a simpler variant of the consolidation scheme used for chunks to reduce fragmentation -- new adjacent memory is normally prepended or appended to an existing segment. However, there are limitations compared to chunk consolidation that mostly reflect the fact that segment processing is relatively infrequent (occurring only when getting memory from system) and that we don't expect to have huge numbers of segments: * Segments are not indexed, so traversal requires linear scans. (It would be possible to index these, but is not worth the extra overhead and complexity for most programs on most platforms.) * New segments are only appended to old ones when holding top-most memory; if they cannot be prepended to others, they are held in different segments. Except for the top-most segment of an mstate, each segment record is kept at the tail of its segment. Segments are added by pushing segment records onto the list headed by &mstate.seg for the containing mstate. Segment flags control allocation/merge/deallocation policies: * If EXTERN_BIT set, then we did not allocate this segment, and so should not try to deallocate or merge with others. (This currently holds only for the initial segment passed into create_mspace_with_base.) * If USE_MMAP_BIT set, the segment may be merged with other surrounding mmapped segments and trimmed/de-allocated using munmap. * If neither bit is set, then the segment was obtained using MORECORE so can be merged with surrounding MORECORE'd segments and deallocated/trimmed using MORECORE with negative arguments. */ struct malloc_segment { char* base; /* base address */ size_t size; /* allocated size */ struct malloc_segment* next; /* ptr to next segment */ flag_t sflags; /* mmap and extern flag */ }; #define is_mmapped_segment(S) ((S)->sflags & USE_MMAP_BIT) #define is_extern_segment(S) ((S)->sflags & EXTERN_BIT) typedef struct malloc_segment msegment; typedef struct malloc_segment* msegmentptr; /* ---------------------------- malloc_state ----------------------------- */ /* A malloc_state holds all of the bookkeeping for a space. The main fields are: Top The topmost chunk of the currently active segment. Its size is cached in topsize. The actual size of topmost space is topsize+TOP_FOOT_SIZE, which includes space reserved for adding fenceposts and segment records if necessary when getting more space from the system. The size at which to autotrim top is cached from mparams in trim_check, except that it is disabled if an autotrim fails. Designated victim (dv) This is the preferred chunk for servicing small requests that don't have exact fits. It is normally the chunk split off most recently to service another small request. Its size is cached in dvsize. The link fields of this chunk are not maintained since it is not kept in a bin. SmallBins An array of bin headers for free chunks. These bins hold chunks with sizes less than MIN_LARGE_SIZE bytes. Each bin contains chunks of all the same size, spaced 8 bytes apart. To simplify use in double-linked lists, each bin header acts as a malloc_chunk pointing to the real first node, if it exists (else pointing to itself). This avoids special-casing for headers. But to avoid waste, we allocate only the fd/bk pointers of bins, and then use repositioning tricks to treat these as the fields of a chunk. TreeBins Treebins are pointers to the roots of trees holding a range of sizes. There are 2 equally spaced treebins for each power of two from TREE_SHIFT to TREE_SHIFT+16. The last bin holds anything larger. Bin maps There is one bit map for small bins ("smallmap") and one for treebins ("treemap). Each bin sets its bit when non-empty, and clears the bit when empty. Bit operations are then used to avoid bin-by-bin searching -- nearly all "search" is done without ever looking at bins that won't be selected. The bit maps conservatively use 32 bits per map word, even if on 64bit system. For a good description of some of the bit-based techniques used here, see Henry S. Warren Jr's book "Hacker's Delight" (and supplement at http://hackersdelight.org/). Many of these are intended to reduce the branchiness of paths through malloc etc, as well as to reduce the number of memory locations read or written. Segments A list of segments headed by an embedded malloc_segment record representing the initial space. Address check support The least_addr field is the least address ever obtained from MORECORE or MMAP. Attempted frees and reallocs of any address less than this are trapped (unless INSECURE is defined). Magic tag A cross-check field that should always hold same value as mparams.magic. Max allowed footprint The maximum allowed bytes to allocate from system (zero means no limit) Flags Bits recording whether to use MMAP, locks, or contiguous MORECORE Statistics Each space keeps track of current and maximum system memory obtained via MORECORE or MMAP. Trim support Fields holding the amount of unused topmost memory that should trigger trimming, and a counter to force periodic scanning to release unused non-topmost segments. Locking If USE_LOCKS is defined, the "mutex" lock is acquired and released around every public call using this mspace. Extension support A void* pointer and a size_t field that can be used to help implement extensions to this malloc. */ /* Bin types, widths and sizes */ #define NSMALLBINS (32U) #define NTREEBINS (32U) #define SMALLBIN_SHIFT (3U) #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT) #define TREEBIN_SHIFT (8U) #define MIN_LARGE_SIZE (SIZE_T_ONE << TREEBIN_SHIFT) #define MAX_SMALL_SIZE (MIN_LARGE_SIZE - SIZE_T_ONE) #define MAX_SMALL_REQUEST (MAX_SMALL_SIZE - CHUNK_ALIGN_MASK - CHUNK_OVERHEAD) struct malloc_state { binmap_t smallmap; binmap_t treemap; size_t dvsize; size_t topsize; char* least_addr; mchunkptr dv; mchunkptr top; size_t trim_check; size_t release_checks; size_t magic; mchunkptr smallbins[(NSMALLBINS+1)*2]; tbinptr treebins[NTREEBINS]; size_t footprint; size_t max_footprint; size_t footprint_limit; /* zero means no limit */ flag_t mflags; #if USE_LOCKS MLOCK_T mutex; /* locate lock among fields that rarely change */ #endif /* USE_LOCKS */ msegment seg; void* extp; /* Unused but available for extensions */ size_t exts; }; typedef struct malloc_state* mstate; /* ------------- Global malloc_state and malloc_params ------------------- */ /* malloc_params holds global properties, including those that can be dynamically set using mallopt. There is a single instance, mparams, initialized in init_mparams. Note that the non-zeroness of "magic" also serves as an initialization flag. */ struct malloc_params { size_t magic; size_t page_size; size_t granularity; size_t mmap_threshold; size_t trim_threshold; flag_t default_mflags; }; static struct malloc_params mparams; /* Ensure mparams initialized */ #define ensure_initialization() (void)(mparams.magic != 0 || init_mparams()) #if !ONLY_MSPACES /* The global malloc_state used for all non-"mspace" calls */ static struct malloc_state _gm_; #define gm (&_gm_) #define is_global(M) ((M) == &_gm_) #endif /* !ONLY_MSPACES */ #define is_initialized(M) ((M)->top != 0) /* -------------------------- system alloc setup ------------------------- */ /* Operations on mflags */ #define use_lock(M) ((M)->mflags & USE_LOCK_BIT) #define enable_lock(M) ((M)->mflags |= USE_LOCK_BIT) #if USE_LOCKS #define disable_lock(M) ((M)->mflags &= ~USE_LOCK_BIT) #else #define disable_lock(M) #endif #define use_mmap(M) ((M)->mflags & USE_MMAP_BIT) #define enable_mmap(M) ((M)->mflags |= USE_MMAP_BIT) #if HAVE_MMAP #define disable_mmap(M) ((M)->mflags &= ~USE_MMAP_BIT) #else #define disable_mmap(M) #endif #define use_noncontiguous(M) ((M)->mflags & USE_NONCONTIGUOUS_BIT) #define disable_contiguous(M) ((M)->mflags |= USE_NONCONTIGUOUS_BIT) #define set_lock(M,L)\ ((M)->mflags = (L)?\ ((M)->mflags | USE_LOCK_BIT) :\ ((M)->mflags & ~USE_LOCK_BIT)) /* page-align a size */ #define page_align(S)\ (((S) + (mparams.page_size - SIZE_T_ONE)) & ~(mparams.page_size - SIZE_T_ONE)) /* granularity-align a size */ #define granularity_align(S)\ (((S) + (mparams.granularity - SIZE_T_ONE))\ & ~(mparams.granularity - SIZE_T_ONE)) /* For mmap, use granularity alignment on windows, else page-align */ #ifdef WIN32 #define mmap_align(S) granularity_align(S) #else #define mmap_align(S) page_align(S) #endif /* For sys_alloc, enough padding to ensure can malloc request on success */ #define SYS_ALLOC_PADDING (TOP_FOOT_SIZE + MALLOC_ALIGNMENT) #define is_page_aligned(S)\ (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0) #define is_granularity_aligned(S)\ (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0) /* True if segment S holds address A */ #define segment_holds(S, A)\ ((char*)(A) >= S->base && (char*)(A) < S->base + S->size) /* Return segment holding given address */ static msegmentptr segment_holding(mstate m, char* addr) { msegmentptr sp = &m->seg; for (;;) { if (addr >= sp->base && addr < sp->base + sp->size) return sp; if ((sp = sp->next) == 0) return 0; } } /* Return true if segment contains a segment link */ static int has_segment_link(mstate m, msegmentptr ss) { msegmentptr sp = &m->seg; for (;;) { if ((char*)sp >= ss->base && (char*)sp < ss->base + ss->size) return 1; if ((sp = sp->next) == 0) return 0; } } #ifndef MORECORE_CANNOT_TRIM #define should_trim(M,s) ((s) > (M)->trim_check) #else /* MORECORE_CANNOT_TRIM */ #define should_trim(M,s) (0) #endif /* MORECORE_CANNOT_TRIM */ /* TOP_FOOT_SIZE is padding at the end of a segment, including space that may be needed to place segment records and fenceposts when new noncontiguous segments are added. */ #define TOP_FOOT_SIZE \ (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE) /* ------------------------------- Hooks -------------------------------- */ /* PREACTION should be defined to return 0 on success, and nonzero on failure. If you are not using locking, you can redefine these to do anything you like. */ #if USE_LOCKS #define PREACTION(M) ((use_lock(M))? ACQUIRE_LOCK(&(M)->mutex) : 0) #define POSTACTION(M) { if (use_lock(M)) RELEASE_LOCK(&(M)->mutex); } #else /* USE_LOCKS */ #ifndef PREACTION #define PREACTION(M) (0) #endif /* PREACTION */ #ifndef POSTACTION #define POSTACTION(M) #endif /* POSTACTION */ #endif /* USE_LOCKS */ /* CORRUPTION_ERROR_ACTION is triggered upon detected bad addresses. USAGE_ERROR_ACTION is triggered on detected bad frees and reallocs. The argument p is an address that might have triggered the fault. It is ignored by the two predefined actions, but might be useful in custom actions that try to help diagnose errors. */ #if PROCEED_ON_ERROR /* A count of the number of corruption errors causing resets */ int malloc_corruption_error_count; /* default corruption action */ static void reset_on_error(mstate m); #define CORRUPTION_ERROR_ACTION(m) reset_on_error(m) #define USAGE_ERROR_ACTION(m, p) #else /* PROCEED_ON_ERROR */ #ifndef CORRUPTION_ERROR_ACTION #define CORRUPTION_ERROR_ACTION(m) ABORT #endif /* CORRUPTION_ERROR_ACTION */ #ifndef USAGE_ERROR_ACTION #define USAGE_ERROR_ACTION(m,p) ABORT #endif /* USAGE_ERROR_ACTION */ #endif /* PROCEED_ON_ERROR */ /* -------------------------- Debugging setup ---------------------------- */ #if ! DEBUG #define check_free_chunk(M,P) #define check_inuse_chunk(M,P) #define check_malloced_chunk(M,P,N) #define check_mmapped_chunk(M,P) #define check_malloc_state(M) #define check_top_chunk(M,P) #else /* DEBUG */ #define check_free_chunk(M,P) do_check_free_chunk(M,P) #define check_inuse_chunk(M,P) do_check_inuse_chunk(M,P) #define check_top_chunk(M,P) do_check_top_chunk(M,P) #define check_malloced_chunk(M,P,N) do_check_malloced_chunk(M,P,N) #define check_mmapped_chunk(M,P) do_check_mmapped_chunk(M,P) #define check_malloc_state(M) do_check_malloc_state(M) static void do_check_any_chunk(mstate m, mchunkptr p); static void do_check_top_chunk(mstate m, mchunkptr p); static void do_check_mmapped_chunk(mstate m, mchunkptr p); static void do_check_inuse_chunk(mstate m, mchunkptr p); static void do_check_free_chunk(mstate m, mchunkptr p); static void do_check_malloced_chunk(mstate m, void* mem, size_t s); static void do_check_tree(mstate m, tchunkptr t); static void do_check_treebin(mstate m, bindex_t i); static void do_check_smallbin(mstate m, bindex_t i); static void do_check_malloc_state(mstate m); static int bin_find(mstate m, mchunkptr x); static size_t traverse_and_check(mstate m); #endif /* DEBUG */ /* ---------------------------- Indexing Bins ---------------------------- */ #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS) #define small_index(s) (bindex_t)((s) >> SMALLBIN_SHIFT) #define small_index2size(i) ((i) << SMALLBIN_SHIFT) #define MIN_SMALL_INDEX (small_index(MIN_CHUNK_SIZE)) /* addressing by index. See above about smallbin repositioning */ #define smallbin_at(M, i) ((sbinptr)((char*)&((M)->smallbins[(i)<<1]))) #define treebin_at(M,i) (&((M)->treebins[i])) /* assign tree index for size S to variable I. Use x86 asm if possible */ #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) #define compute_tree_index(S, I)\ {\ unsigned int X = S >> TREEBIN_SHIFT;\ if (X == 0)\ I = 0;\ else if (X > 0xFFFF)\ I = NTREEBINS-1;\ else {\ unsigned int K = (unsigned) sizeof(X)*__CHAR_BIT__ - 1 - (unsigned) __builtin_clz(X); \ I = (bindex_t)((K << 1) + ((S >> (K + (TREEBIN_SHIFT-1)) & 1)));\ }\ } #elif defined (__INTEL_COMPILER) #define compute_tree_index(S, I)\ {\ size_t X = S >> TREEBIN_SHIFT;\ if (X == 0)\ I = 0;\ else if (X > 0xFFFF)\ I = NTREEBINS-1;\ else {\ unsigned int K = _bit_scan_reverse (X); \ I = (bindex_t)((K << 1) + ((S >> (K + (TREEBIN_SHIFT-1)) & 1)));\ }\ } #elif defined(_MSC_VER) && _MSC_VER>=1300 #define compute_tree_index(S, I)\ {\ size_t X = S >> TREEBIN_SHIFT;\ if (X == 0)\ I = 0;\ else if (X > 0xFFFF)\ I = NTREEBINS-1;\ else {\ unsigned int K;\ _BitScanReverse((DWORD *) &K, (DWORD) X);\ I = (bindex_t)((K << 1) + ((S >> (K + (TREEBIN_SHIFT-1)) & 1)));\ }\ } #else /* GNUC */ #define compute_tree_index(S, I)\ {\ size_t X = S >> TREEBIN_SHIFT;\ if (X == 0)\ I = 0;\ else if (X > 0xFFFF)\ I = NTREEBINS-1;\ else {\ unsigned int Y = (unsigned int)X;\ unsigned int N = ((Y - 0x100) >> 16) & 8;\ unsigned int K = (((Y <<= N) - 0x1000) >> 16) & 4;\ N += K;\ N += K = (((Y <<= K) - 0x4000) >> 16) & 2;\ K = 14 - N + ((Y <<= K) >> 15);\ I = (K << 1) + ((S >> (K + (TREEBIN_SHIFT-1)) & 1));\ }\ } #endif /* GNUC */ /* Bit representing maximum resolved size in a treebin at i */ #define bit_for_tree_index(i) \ (i == NTREEBINS-1)? (SIZE_T_BITSIZE-1) : (((i) >> 1) + TREEBIN_SHIFT - 2) /* Shift placing maximum resolved bit in a treebin at i as sign bit */ #define leftshift_for_tree_index(i) \ ((i == NTREEBINS-1)? 0 : \ ((SIZE_T_BITSIZE-SIZE_T_ONE) - (((i) >> 1) + TREEBIN_SHIFT - 2))) /* The size of the smallest chunk held in bin with index i */ #define minsize_for_tree_index(i) \ ((SIZE_T_ONE << (((i) >> 1) + TREEBIN_SHIFT)) | \ (((size_t)((i) & SIZE_T_ONE)) << (((i) >> 1) + TREEBIN_SHIFT - 1))) /* ------------------------ Operations on bin maps ----------------------- */ /* bit corresponding to given index */ #define idx2bit(i) ((binmap_t)(1) << (i)) /* Mark/Clear bits with given index */ #define mark_smallmap(M,i) ((M)->smallmap |= idx2bit(i)) #define clear_smallmap(M,i) ((M)->smallmap &= ~idx2bit(i)) #define smallmap_is_marked(M,i) ((M)->smallmap & idx2bit(i)) #define mark_treemap(M,i) ((M)->treemap |= idx2bit(i)) #define clear_treemap(M,i) ((M)->treemap &= ~idx2bit(i)) #define treemap_is_marked(M,i) ((M)->treemap & idx2bit(i)) /* isolate the least set bit of a bitmap */ #define least_bit(x) ((x) & -(x)) /* mask with all bits to left of least bit of x on */ #define left_bits(x) ((x<<1) | -(x<<1)) /* mask with all bits to left of or equal to least bit of x on */ #define same_or_left_bits(x) ((x) | -(x)) /* index corresponding to given bit. Use x86 asm if possible */ #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) #define compute_bit2idx(X, I)\ {\ unsigned int J;\ J = __builtin_ctz(X); \ I = (bindex_t)J;\ } #elif defined (__INTEL_COMPILER) #define compute_bit2idx(X, I)\ {\ unsigned int J;\ J = _bit_scan_forward (X); \ I = (bindex_t)J;\ } #elif defined(_MSC_VER) && _MSC_VER>=1300 #define compute_bit2idx(X, I)\ {\ unsigned int J;\ _BitScanForward((DWORD *) &J, X);\ I = (bindex_t)J;\ } #elif USE_BUILTIN_FFS #define compute_bit2idx(X, I) I = ffs(X)-1 #else #define compute_bit2idx(X, I)\ {\ unsigned int Y = X - 1;\ unsigned int K = Y >> (16-4) & 16;\ unsigned int N = K; Y >>= K;\ N += K = Y >> (8-3) & 8; Y >>= K;\ N += K = Y >> (4-2) & 4; Y >>= K;\ N += K = Y >> (2-1) & 2; Y >>= K;\ N += K = Y >> (1-0) & 1; Y >>= K;\ I = (bindex_t)(N + Y);\ } #endif /* GNUC */ /* ----------------------- Runtime Check Support ------------------------- */ /* For security, the main invariant is that malloc/free/etc never writes to a static address other than malloc_state, unless static malloc_state itself has been corrupted, which cannot occur via malloc (because of these checks). In essence this means that we believe all pointers, sizes, maps etc held in malloc_state, but check all of those linked or offsetted from other embedded data structures. These checks are interspersed with main code in a way that tends to minimize their run-time cost. When FOOTERS is defined, in addition to range checking, we also verify footer fields of inuse chunks, which can be used guarantee that the mstate controlling malloc/free is intact. This is a streamlined version of the approach described by William Robertson et al in "Run-time Detection of Heap-based Overflows" LISA'03 http://www.usenix.org/events/lisa03/tech/robertson.html The footer of an inuse chunk holds the xor of its mstate and a random seed, that is checked upon calls to free() and realloc(). This is (probabalistically) unguessable from outside the program, but can be computed by any code successfully malloc'ing any chunk, so does not itself provide protection against code that has already broken security through some other means. Unlike Robertson et al, we always dynamically check addresses of all offset chunks (previous, next, etc). This turns out to be cheaper than relying on hashes. */ #if !INSECURE /* Check if address a is at least as high as any from MORECORE or MMAP */ #define ok_address(M, a) ((char*)(a) >= (M)->least_addr) /* Check if address of next chunk n is higher than base chunk p */ #define ok_next(p, n) ((char*)(p) < (char*)(n)) /* Check if p has inuse status */ #define ok_inuse(p) is_inuse(p) /* Check if p has its pinuse bit on */ #define ok_pinuse(p) pinuse(p) #else /* !INSECURE */ #define ok_address(M, a) (1) #define ok_next(b, n) (1) #define ok_inuse(p) (1) #define ok_pinuse(p) (1) #endif /* !INSECURE */ #if (FOOTERS && !INSECURE) /* Check if (alleged) mstate m has expected magic field */ #define ok_magic(M) ((M)->magic == mparams.magic) #else /* (FOOTERS && !INSECURE) */ #define ok_magic(M) (1) #endif /* (FOOTERS && !INSECURE) */ /* In gcc, use __builtin_expect to minimize impact of checks */ #if !INSECURE #if defined(__GNUC__) && __GNUC__ >= 3 #define RTCHECK(e) __builtin_expect(e, 1) #else /* GNUC */ #define RTCHECK(e) (e) #endif /* GNUC */ #else /* !INSECURE */ #define RTCHECK(e) (1) #endif /* !INSECURE */ /* macros to set up inuse chunks with or without footers */ #if !FOOTERS #define mark_inuse_foot(M,p,s) /* Macros for setting head/foot of non-mmapped chunks */ /* Set cinuse bit and pinuse bit of next chunk */ #define set_inuse(M,p,s)\ ((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\ ((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT) /* Set cinuse and pinuse of this chunk and pinuse of next chunk */ #define set_inuse_and_pinuse(M,p,s)\ ((p)->head = (s|PINUSE_BIT|CINUSE_BIT),\ ((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT) /* Set size, cinuse and pinuse bit of this chunk */ #define set_size_and_pinuse_of_inuse_chunk(M, p, s)\ ((p)->head = (s|PINUSE_BIT|CINUSE_BIT)) #else /* FOOTERS */ /* Set foot of inuse chunk to be xor of mstate and seed */ #define mark_inuse_foot(M,p,s)\ (((mchunkptr)((char*)(p) + (s)))->prev_foot = ((size_t)(M) ^ mparams.magic)) #define get_mstate_for(p)\ ((mstate)(((mchunkptr)((char*)(p) +\ (chunksize(p))))->prev_foot ^ mparams.magic)) #define set_inuse(M,p,s)\ ((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\ (((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT), \ mark_inuse_foot(M,p,s)) #define set_inuse_and_pinuse(M,p,s)\ ((p)->head = (s|PINUSE_BIT|CINUSE_BIT),\ (((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT),\ mark_inuse_foot(M,p,s)) #define set_size_and_pinuse_of_inuse_chunk(M, p, s)\ ((p)->head = (s|PINUSE_BIT|CINUSE_BIT),\ mark_inuse_foot(M, p, s)) #endif /* !FOOTERS */ /* ---------------------------- setting mparams -------------------------- */ #if LOCK_AT_FORK static void pre_fork(void) { ACQUIRE_LOCK(&(gm)->mutex); } static void post_fork_parent(void) { RELEASE_LOCK(&(gm)->mutex); } static void post_fork_child(void) { INITIAL_LOCK(&(gm)->mutex); } #endif /* LOCK_AT_FORK */ /* Initialize mparams */ static int init_mparams(void) { #ifdef NEED_GLOBAL_LOCK_INIT if (malloc_global_mutex_status <= 0) init_malloc_global_mutex(); #endif ACQUIRE_MALLOC_GLOBAL_LOCK(); if (mparams.magic == 0) { size_t magic; size_t psize; size_t gsize; #ifndef WIN32 psize = malloc_getpagesize; gsize = ((DEFAULT_GRANULARITY != 0)? DEFAULT_GRANULARITY : psize); #else /* WIN32 */ { SYSTEM_INFO system_info; GetSystemInfo(&system_info); psize = system_info.dwPageSize; gsize = ((DEFAULT_GRANULARITY != 0)? DEFAULT_GRANULARITY : system_info.dwAllocationGranularity); } #endif /* WIN32 */ /* Sanity-check configuration: size_t must be unsigned and as wide as pointer type. ints must be at least 4 bytes. alignment must be at least 8. Alignment, min chunk size, and page size must all be powers of 2. */ if ((sizeof(size_t) != sizeof(char*)) || (MAX_SIZE_T < MIN_CHUNK_SIZE) || (sizeof(int) < 4) || (MALLOC_ALIGNMENT < (size_t)8U) || ((MALLOC_ALIGNMENT & (MALLOC_ALIGNMENT-SIZE_T_ONE)) != 0) || ((MCHUNK_SIZE & (MCHUNK_SIZE-SIZE_T_ONE)) != 0) || ((gsize & (gsize-SIZE_T_ONE)) != 0) || ((psize & (psize-SIZE_T_ONE)) != 0)) ABORT; mparams.granularity = gsize; mparams.page_size = psize; mparams.mmap_threshold = DEFAULT_MMAP_THRESHOLD; mparams.trim_threshold = DEFAULT_TRIM_THRESHOLD; #if MORECORE_CONTIGUOUS mparams.default_mflags = USE_LOCK_BIT|USE_MMAP_BIT; #else /* MORECORE_CONTIGUOUS */ mparams.default_mflags = USE_LOCK_BIT|USE_MMAP_BIT|USE_NONCONTIGUOUS_BIT; #endif /* MORECORE_CONTIGUOUS */ #if !ONLY_MSPACES /* Set up lock for main malloc area */ gm->mflags = mparams.default_mflags; (void)INITIAL_LOCK(&gm->mutex); #endif #if LOCK_AT_FORK pthread_atfork(&pre_fork, &post_fork_parent, &post_fork_child); #endif { #if USE_DEV_RANDOM int fd; unsigned char buf[sizeof(size_t)]; /* Try to use /dev/urandom, else fall back on using time */ if ((fd = open("/dev/urandom", O_RDONLY)) >= 0 && read(fd, buf, sizeof(buf)) == sizeof(buf)) { magic = *((size_t *) buf); close(fd); } else #endif /* USE_DEV_RANDOM */ #ifdef WIN32 magic = (size_t)(GetTickCount() ^ (size_t)0x55555555U); #elif defined(LACKS_TIME_H) || defined(__EMSCRIPTEN__) magic = (size_t)&magic ^ (size_t)0x55555555U; #else magic = (size_t)(time(0) ^ (size_t)0x55555555U); #endif magic |= (size_t)8U; /* ensure nonzero */ magic &= ~(size_t)7U; /* improve chances of fault for bad values */ /* Until memory modes commonly available, use volatile-write */ (*(volatile size_t *)(&(mparams.magic))) = magic; } } RELEASE_MALLOC_GLOBAL_LOCK(); return 1; } /* support for mallopt */ static int change_mparam(int param_number, int value) { size_t val; ensure_initialization(); val = (value == -1)? MAX_SIZE_T : (size_t)value; switch(param_number) { case M_TRIM_THRESHOLD: mparams.trim_threshold = val; return 1; case M_GRANULARITY: if (val >= mparams.page_size && ((val & (val-1)) == 0)) { mparams.granularity = val; return 1; } else return 0; case M_MMAP_THRESHOLD: mparams.mmap_threshold = val; return 1; default: return 0; } } #if DEBUG /* ------------------------- Debugging Support --------------------------- */ /* Check properties of any chunk, whether free, inuse, mmapped etc */ static void do_check_any_chunk(mstate m, mchunkptr p) { assert((is_aligned(chunk2mem(p))) || (p->head == FENCEPOST_HEAD)); assert(ok_address(m, p)); } /* Check properties of top chunk */ static void do_check_top_chunk(mstate m, mchunkptr p) { msegmentptr sp = segment_holding(m, (char*)p); size_t sz = p->head & ~INUSE_BITS; /* third-lowest bit can be set! */ assert(sp != 0); assert((is_aligned(chunk2mem(p))) || (p->head == FENCEPOST_HEAD)); assert(ok_address(m, p)); assert(sz == m->topsize); assert(sz > 0); assert(sz == ((sp->base + sp->size) - (char*)p) - TOP_FOOT_SIZE); assert(pinuse(p)); assert(!pinuse(chunk_plus_offset(p, sz))); } /* Check properties of (inuse) mmapped chunks */ static void do_check_mmapped_chunk(mstate m, mchunkptr p) { size_t sz = chunksize(p); size_t len = (sz + (p->prev_foot) + MMAP_FOOT_PAD); assert(is_mmapped(p)); assert(use_mmap(m)); assert((is_aligned(chunk2mem(p))) || (p->head == FENCEPOST_HEAD)); assert(ok_address(m, p)); assert(!is_small(sz)); assert((len & (mparams.page_size-SIZE_T_ONE)) == 0); assert(chunk_plus_offset(p, sz)->head == FENCEPOST_HEAD); assert(chunk_plus_offset(p, sz+SIZE_T_SIZE)->head == 0); } /* Check properties of inuse chunks */ static void do_check_inuse_chunk(mstate m, mchunkptr p) { do_check_any_chunk(m, p); assert(is_inuse(p)); assert(next_pinuse(p)); /* If not pinuse and not mmapped, previous chunk has OK offset */ assert(is_mmapped(p) || pinuse(p) || next_chunk(prev_chunk(p)) == p); if (is_mmapped(p)) do_check_mmapped_chunk(m, p); } /* Check properties of free chunks */ static void do_check_free_chunk(mstate m, mchunkptr p) { size_t sz = chunksize(p); mchunkptr next = chunk_plus_offset(p, sz); do_check_any_chunk(m, p); assert(!is_inuse(p)); assert(!next_pinuse(p)); assert (!is_mmapped(p)); if (p != m->dv && p != m->top) { if (sz >= MIN_CHUNK_SIZE) { assert((sz & CHUNK_ALIGN_MASK) == 0); assert(is_aligned(chunk2mem(p))); assert(next->prev_foot == sz); assert(pinuse(p)); assert (next == m->top || is_inuse(next)); assert(p->fd->bk == p); assert(p->bk->fd == p); } else /* markers are always of size SIZE_T_SIZE */ assert(sz == SIZE_T_SIZE); } } /* Check properties of malloced chunks at the point they are malloced */ static void do_check_malloced_chunk(mstate m, void* mem, size_t s) { if (mem != 0) { mchunkptr p = mem2chunk(mem); size_t sz = p->head & ~INUSE_BITS; do_check_inuse_chunk(m, p); assert((sz & CHUNK_ALIGN_MASK) == 0); assert(sz >= MIN_CHUNK_SIZE); assert(sz >= s); /* unless mmapped, size is less than MIN_CHUNK_SIZE more than request */ assert(is_mmapped(p) || sz < (s + MIN_CHUNK_SIZE)); } } /* Check a tree and its subtrees. */ static void do_check_tree(mstate m, tchunkptr t) { tchunkptr head = 0; tchunkptr u = t; bindex_t tindex = t->index; size_t tsize = chunksize(t); bindex_t idx; compute_tree_index(tsize, idx); assert(tindex == idx); assert(tsize >= MIN_LARGE_SIZE); assert(tsize >= minsize_for_tree_index(idx)); assert((idx == NTREEBINS-1) || (tsize < minsize_for_tree_index((idx+1)))); do { /* traverse through chain of same-sized nodes */ do_check_any_chunk(m, ((mchunkptr)u)); assert(u->index == tindex); assert(chunksize(u) == tsize); assert(!is_inuse(u)); assert(!next_pinuse(u)); assert(u->fd->bk == u); assert(u->bk->fd == u); if (u->parent == 0) { assert(u->child[0] == 0); assert(u->child[1] == 0); } else { assert(head == 0); /* only one node on chain has parent */ head = u; assert(u->parent != u); assert (u->parent->child[0] == u || u->parent->child[1] == u || *((tbinptr*)(u->parent)) == u); if (u->child[0] != 0) { assert(u->child[0]->parent == u); assert(u->child[0] != u); do_check_tree(m, u->child[0]); } if (u->child[1] != 0) { assert(u->child[1]->parent == u); assert(u->child[1] != u); do_check_tree(m, u->child[1]); } if (u->child[0] != 0 && u->child[1] != 0) { assert(chunksize(u->child[0]) < chunksize(u->child[1])); } } u = u->fd; } while (u != t); assert(head != 0); } /* Check all the chunks in a treebin. */ static void do_check_treebin(mstate m, bindex_t i) { tbinptr* tb = treebin_at(m, i); tchunkptr t = *tb; int empty = (m->treemap & (1U << i)) == 0; if (t == 0) assert(empty); if (!empty) do_check_tree(m, t); } /* Check all the chunks in a smallbin. */ static void do_check_smallbin(mstate m, bindex_t i) { sbinptr b = smallbin_at(m, i); mchunkptr p = b->bk; unsigned int empty = (m->smallmap & (1U << i)) == 0; if (p == b) assert(empty); if (!empty) { for (; p != b; p = p->bk) { size_t size = chunksize(p); mchunkptr q; /* each chunk claims to be free */ do_check_free_chunk(m, p); /* chunk belongs in bin */ assert(small_index(size) == i); assert(p->bk == b || chunksize(p->bk) == chunksize(p)); /* chunk is followed by an inuse chunk */ q = next_chunk(p); if (q->head != FENCEPOST_HEAD) do_check_inuse_chunk(m, q); } } } /* Find x in a bin. Used in other check functions. */ static int bin_find(mstate m, mchunkptr x) { size_t size = chunksize(x); if (is_small(size)) { bindex_t sidx = small_index(size); sbinptr b = smallbin_at(m, sidx); if (smallmap_is_marked(m, sidx)) { mchunkptr p = b; do { if (p == x) return 1; } while ((p = p->fd) != b); } } else { bindex_t tidx; compute_tree_index(size, tidx); if (treemap_is_marked(m, tidx)) { tchunkptr t = *treebin_at(m, tidx); size_t sizebits = size << leftshift_for_tree_index(tidx); while (t != 0 && chunksize(t) != size) { t = t->child[(sizebits >> (SIZE_T_BITSIZE-SIZE_T_ONE)) & 1]; sizebits <<= 1; } if (t != 0) { tchunkptr u = t; do { if (u == (tchunkptr)x) return 1; } while ((u = u->fd) != t); } } } return 0; } /* Traverse each chunk and check it; return total */ static size_t traverse_and_check(mstate m) { size_t sum = 0; if (is_initialized(m)) { msegmentptr s = &m->seg; sum += m->topsize + TOP_FOOT_SIZE; while (s != 0) { mchunkptr q = align_as_chunk(s->base); mchunkptr lastq = 0; assert(pinuse(q)); while (segment_holds(s, q) && q != m->top && q->head != FENCEPOST_HEAD) { sum += chunksize(q); if (is_inuse(q)) { assert(!bin_find(m, q)); do_check_inuse_chunk(m, q); } else { assert(q == m->dv || bin_find(m, q)); assert(lastq == 0 || is_inuse(lastq)); /* Not 2 consecutive free */ do_check_free_chunk(m, q); } lastq = q; q = next_chunk(q); } s = s->next; } } return sum; } /* Check all properties of malloc_state. */ static void do_check_malloc_state(mstate m) { bindex_t i; size_t total; /* check bins */ for (i = 0; i < NSMALLBINS; ++i) do_check_smallbin(m, i); for (i = 0; i < NTREEBINS; ++i) do_check_treebin(m, i); if (m->dvsize != 0) { /* check dv chunk */ do_check_any_chunk(m, m->dv); assert(m->dvsize == chunksize(m->dv)); assert(m->dvsize >= MIN_CHUNK_SIZE); assert(bin_find(m, m->dv) == 0); } if (m->top != 0) { /* check top chunk */ do_check_top_chunk(m, m->top); /*assert(m->topsize == chunksize(m->top)); redundant */ assert(m->topsize > 0); assert(bin_find(m, m->top) == 0); } total = traverse_and_check(m); assert(total <= m->footprint); assert(m->footprint <= m->max_footprint); } #endif /* DEBUG */ /* ----------------------------- statistics ------------------------------ */ #if !NO_MALLINFO static struct mallinfo internal_mallinfo(mstate m) { struct mallinfo nm = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; ensure_initialization(); if (!PREACTION(m)) { check_malloc_state(m); if (is_initialized(m)) { size_t nfree = SIZE_T_ONE; /* top always free */ size_t mfree = m->topsize + TOP_FOOT_SIZE; size_t sum = mfree; msegmentptr s = &m->seg; while (s != 0) { mchunkptr q = align_as_chunk(s->base); while (segment_holds(s, q) && q != m->top && q->head != FENCEPOST_HEAD) { size_t sz = chunksize(q); sum += sz; if (!is_inuse(q)) { mfree += sz; ++nfree; } q = next_chunk(q); } s = s->next; } nm.arena = sum; nm.ordblks = nfree; nm.hblkhd = m->footprint - sum; nm.usmblks = m->max_footprint; nm.uordblks = m->footprint - mfree; nm.fordblks = mfree; nm.keepcost = m->topsize; } POSTACTION(m); } return nm; } #endif /* !NO_MALLINFO */ #if !NO_MALLOC_STATS static void internal_malloc_stats(mstate m) { ensure_initialization(); if (!PREACTION(m)) { size_t maxfp = 0; size_t fp = 0; size_t used = 0; check_malloc_state(m); if (is_initialized(m)) { msegmentptr s = &m->seg; maxfp = m->max_footprint; fp = m->footprint; used = fp - (m->topsize + TOP_FOOT_SIZE); while (s != 0) { mchunkptr q = align_as_chunk(s->base); while (segment_holds(s, q) && q != m->top && q->head != FENCEPOST_HEAD) { if (!is_inuse(q)) used -= chunksize(q); q = next_chunk(q); } s = s->next; } } POSTACTION(m); /* drop lock */ fprintf(stderr, "max system bytes = %10lu\n", (unsigned long)(maxfp)); fprintf(stderr, "system bytes = %10lu\n", (unsigned long)(fp)); fprintf(stderr, "in use bytes = %10lu\n", (unsigned long)(used)); } } #endif /* NO_MALLOC_STATS */ /* ----------------------- Operations on smallbins ----------------------- */ /* Various forms of linking and unlinking are defined as macros. Even the ones for trees, which are very long but have very short typical paths. This is ugly but reduces reliance on inlining support of compilers. */ /* Link a free chunk into a smallbin */ #define insert_small_chunk(M, P, S) {\ bindex_t I = small_index(S);\ mchunkptr B = smallbin_at(M, I);\ mchunkptr F = B;\ assert(S >= MIN_CHUNK_SIZE);\ if (!smallmap_is_marked(M, I))\ mark_smallmap(M, I);\ else if (RTCHECK(ok_address(M, B->fd)))\ F = B->fd;\ else {\ CORRUPTION_ERROR_ACTION(M);\ }\ B->fd = P;\ F->bk = P;\ P->fd = F;\ P->bk = B;\ } /* Unlink a chunk from a smallbin */ #define unlink_small_chunk(M, P, S) {\ mchunkptr F = P->fd;\ mchunkptr B = P->bk;\ bindex_t I = small_index(S);\ assert(P != B);\ assert(P != F);\ assert(chunksize(P) == small_index2size(I));\ if (RTCHECK(F == smallbin_at(M,I) || (ok_address(M, F) && F->bk == P))) { \ if (B == F) {\ clear_smallmap(M, I);\ }\ else if (RTCHECK(B == smallbin_at(M,I) ||\ (ok_address(M, B) && B->fd == P))) {\ F->bk = B;\ B->fd = F;\ }\ else {\ CORRUPTION_ERROR_ACTION(M);\ }\ }\ else {\ CORRUPTION_ERROR_ACTION(M);\ }\ } /* Unlink the first chunk from a smallbin */ #define unlink_first_small_chunk(M, B, P, I) {\ mchunkptr F = P->fd;\ assert(P != B);\ assert(P != F);\ assert(chunksize(P) == small_index2size(I));\ if (B == F) {\ clear_smallmap(M, I);\ }\ else if (RTCHECK(ok_address(M, F) && F->bk == P)) {\ F->bk = B;\ B->fd = F;\ }\ else {\ CORRUPTION_ERROR_ACTION(M);\ }\ } /* Replace dv node, binning the old one */ /* Used only when dvsize known to be small */ #define replace_dv(M, P, S) {\ size_t DVS = M->dvsize;\ assert(is_small(DVS));\ if (DVS != 0) {\ mchunkptr DV = M->dv;\ insert_small_chunk(M, DV, DVS);\ }\ M->dvsize = S;\ M->dv = P;\ } /* ------------------------- Operations on trees ------------------------- */ /* Insert chunk into tree */ #define insert_large_chunk(M, X, S) {\ tbinptr* H;\ bindex_t I;\ compute_tree_index(S, I);\ H = treebin_at(M, I);\ X->index = I;\ X->child[0] = X->child[1] = 0;\ if (!treemap_is_marked(M, I)) {\ mark_treemap(M, I);\ *H = X;\ X->parent = (tchunkptr)H;\ X->fd = X->bk = X;\ }\ else {\ tchunkptr T = *H;\ size_t K = S << leftshift_for_tree_index(I);\ for (;;) {\ if (chunksize(T) != S) {\ tchunkptr* C = &(T->child[(K >> (SIZE_T_BITSIZE-SIZE_T_ONE)) & 1]);\ K <<= 1;\ if (*C != 0)\ T = *C;\ else if (RTCHECK(ok_address(M, C))) {\ *C = X;\ X->parent = T;\ X->fd = X->bk = X;\ break;\ }\ else {\ CORRUPTION_ERROR_ACTION(M);\ break;\ }\ }\ else {\ tchunkptr F = T->fd;\ if (RTCHECK(ok_address(M, T) && ok_address(M, F))) {\ T->fd = F->bk = X;\ X->fd = F;\ X->bk = T;\ X->parent = 0;\ break;\ }\ else {\ CORRUPTION_ERROR_ACTION(M);\ break;\ }\ }\ }\ }\ } /* Unlink steps: 1. If x is a chained node, unlink it from its same-sized fd/bk links and choose its bk node as its replacement. 2. If x was the last node of its size, but not a leaf node, it must be replaced with a leaf node (not merely one with an open left or right), to make sure that lefts and rights of descendents correspond properly to bit masks. We use the rightmost descendent of x. We could use any other leaf, but this is easy to locate and tends to counteract removal of leftmosts elsewhere, and so keeps paths shorter than minimally guaranteed. This doesn't loop much because on average a node in a tree is near the bottom. 3. If x is the base of a chain (i.e., has parent links) relink x's parent and children to x's replacement (or null if none). */ #define unlink_large_chunk(M, X) { \ tchunkptr XP = X->parent; \ tchunkptr R; \ if (X->bk != X) { \ tchunkptr F = X->fd; \ R = X->bk; \ if (RTCHECK(ok_address(M, F) && F->bk == X && R->fd == X)) { \ F->bk = R; \ R->fd = F; \ } \ else { \ CORRUPTION_ERROR_ACTION(M); \ } \ } \ else { \ tchunkptr* RP; \ if (((R = *(RP = &(X->child[1]))) != 0) || \ ((R = *(RP = &(X->child[0]))) != 0)) { \ tchunkptr* CP; \ while ((*(CP = &(R->child[1])) != 0) || \ (*(CP = &(R->child[0])) != 0)) { \ R = *(RP = CP); \ } \ if (RTCHECK(ok_address(M, RP))) \ *RP = 0; \ else { \ CORRUPTION_ERROR_ACTION(M); \ } \ } \ } \ if (XP != 0) { \ tbinptr* H = treebin_at(M, X->index); \ if (X == *H) { \ if ((*H = R) == 0) \ clear_treemap(M, X->index); \ } \ else if (RTCHECK(ok_address(M, XP))) { \ if (XP->child[0] == X) \ XP->child[0] = R; \ else \ XP->child[1] = R; \ } \ else \ CORRUPTION_ERROR_ACTION(M); \ if (R != 0) { \ if (RTCHECK(ok_address(M, R))) { \ tchunkptr C0, C1; \ R->parent = XP; \ if ((C0 = X->child[0]) != 0) { \ if (RTCHECK(ok_address(M, C0))) { \ R->child[0] = C0; \ C0->parent = R; \ } \ else \ CORRUPTION_ERROR_ACTION(M); \ } \ if ((C1 = X->child[1]) != 0) { \ if (RTCHECK(ok_address(M, C1))) { \ R->child[1] = C1; \ C1->parent = R; \ } \ else \ CORRUPTION_ERROR_ACTION(M); \ } \ } \ else \ CORRUPTION_ERROR_ACTION(M); \ } \ } \ } /* Relays to large vs small bin operations */ #define insert_chunk(M, P, S) \ if (is_small(S)) insert_small_chunk(M, P, S) \ else { tchunkptr TP = (tchunkptr)(P); insert_large_chunk(M, TP, S); } #define unlink_chunk(M, P, S) \ if (is_small(S)) unlink_small_chunk(M, P, S) \ else { tchunkptr TP = (tchunkptr)(P); unlink_large_chunk(M, TP); } /* Relays to internal calls to malloc/free from realloc, memalign etc */ #if ONLY_MSPACES #define internal_malloc(m, b) mspace_malloc(m, b) #define internal_free(m, mem) mspace_free(m,mem); #else /* ONLY_MSPACES */ #if MSPACES #define internal_malloc(m, b)\ ((m == gm)? dlmalloc(b) : mspace_malloc(m, b)) #define internal_free(m, mem)\ if (m == gm) dlfree(mem); else mspace_free(m,mem); #else /* MSPACES */ #define internal_malloc(m, b) dlmalloc(b) #define internal_free(m, mem) dlfree(mem) #endif /* MSPACES */ #endif /* ONLY_MSPACES */ /* ----------------------- Direct-mmapping chunks ----------------------- */ /* Directly mmapped chunks are set up with an offset to the start of the mmapped region stored in the prev_foot field of the chunk. This allows reconstruction of the required argument to MUNMAP when freed, and also allows adjustment of the returned chunk to meet alignment requirements (especially in memalign). */ /* Malloc using mmap */ static void* mmap_alloc(mstate m, size_t nb) { size_t mmsize = mmap_align(nb + SIX_SIZE_T_SIZES + CHUNK_ALIGN_MASK); if (m->footprint_limit != 0) { size_t fp = m->footprint + mmsize; if (fp <= m->footprint || fp > m->footprint_limit) return 0; } if (mmsize > nb) { /* Check for wrap around 0 */ char* mm = (char*)(CALL_DIRECT_MMAP(mmsize)); if (mm != CMFAIL) { size_t offset = align_offset(chunk2mem(mm)); size_t psize = mmsize - offset - MMAP_FOOT_PAD; mchunkptr p = (mchunkptr)(mm + offset); p->prev_foot = offset; p->head = psize; mark_inuse_foot(m, p, psize); chunk_plus_offset(p, psize)->head = FENCEPOST_HEAD; chunk_plus_offset(p, psize+SIZE_T_SIZE)->head = 0; if (m->least_addr == 0 || mm < m->least_addr) m->least_addr = mm; if ((m->footprint += mmsize) > m->max_footprint) m->max_footprint = m->footprint; assert(is_aligned(chunk2mem(p))); check_mmapped_chunk(m, p); return chunk2mem(p); } } return 0; } /* Realloc using mmap */ static mchunkptr mmap_resize(mstate m, mchunkptr oldp, size_t nb, int flags) { size_t oldsize = chunksize(oldp); (void)flags; /* placate people compiling -Wunused */ if (is_small(nb)) /* Can't shrink mmap regions below small size */ return 0; /* Keep old chunk if big enough but not too big */ if (oldsize >= nb + SIZE_T_SIZE && (oldsize - nb) <= (mparams.granularity << 1)) return oldp; else { size_t offset = oldp->prev_foot; size_t oldmmsize = oldsize + offset + MMAP_FOOT_PAD; size_t newmmsize = mmap_align(nb + SIX_SIZE_T_SIZES + CHUNK_ALIGN_MASK); char* cp = (char*)CALL_MREMAP((char*)oldp - offset, oldmmsize, newmmsize, flags); if (cp != CMFAIL) { mchunkptr newp = (mchunkptr)(cp + offset); size_t psize = newmmsize - offset - MMAP_FOOT_PAD; newp->head = psize; mark_inuse_foot(m, newp, psize); chunk_plus_offset(newp, psize)->head = FENCEPOST_HEAD; chunk_plus_offset(newp, psize+SIZE_T_SIZE)->head = 0; if (cp < m->least_addr) m->least_addr = cp; if ((m->footprint += newmmsize - oldmmsize) > m->max_footprint) m->max_footprint = m->footprint; check_mmapped_chunk(m, newp); return newp; } } return 0; } /* -------------------------- mspace management -------------------------- */ /* Initialize top chunk and its size */ static void init_top(mstate m, mchunkptr p, size_t psize) { /* Ensure alignment */ size_t offset = align_offset(chunk2mem(p)); p = (mchunkptr)((char*)p + offset); psize -= offset; m->top = p; m->topsize = psize; p->head = psize | PINUSE_BIT; /* set size of fake trailing chunk holding overhead space only once */ chunk_plus_offset(p, psize)->head = TOP_FOOT_SIZE; m->trim_check = mparams.trim_threshold; /* reset on each update */ } /* Initialize bins for a new mstate that is otherwise zeroed out */ static void init_bins(mstate m) { /* Establish circular links for smallbins */ bindex_t i; for (i = 0; i < NSMALLBINS; ++i) { sbinptr bin = smallbin_at(m,i); bin->fd = bin->bk = bin; } } #if PROCEED_ON_ERROR /* default corruption action */ static void reset_on_error(mstate m) { int i; ++malloc_corruption_error_count; /* Reinitialize fields to forget about all memory */ m->smallmap = m->treemap = 0; m->dvsize = m->topsize = 0; m->seg.base = 0; m->seg.size = 0; m->seg.next = 0; m->top = m->dv = 0; for (i = 0; i < NTREEBINS; ++i) *treebin_at(m, i) = 0; init_bins(m); } #endif /* PROCEED_ON_ERROR */ /* Allocate chunk and prepend remainder with chunk in successor base. */ static void* prepend_alloc(mstate m, char* newbase, char* oldbase, size_t nb) { mchunkptr p = align_as_chunk(newbase); mchunkptr oldfirst = align_as_chunk(oldbase); size_t psize = (char*)oldfirst - (char*)p; mchunkptr q = chunk_plus_offset(p, nb); size_t qsize = psize - nb; set_size_and_pinuse_of_inuse_chunk(m, p, nb); assert((char*)oldfirst > (char*)q); assert(pinuse(oldfirst)); assert(qsize >= MIN_CHUNK_SIZE); /* consolidate remainder with first chunk of old base */ if (oldfirst == m->top) { size_t tsize = m->topsize += qsize; m->top = q; q->head = tsize | PINUSE_BIT; check_top_chunk(m, q); } else if (oldfirst == m->dv) { size_t dsize = m->dvsize += qsize; m->dv = q; set_size_and_pinuse_of_free_chunk(q, dsize); } else { if (!is_inuse(oldfirst)) { size_t nsize = chunksize(oldfirst); unlink_chunk(m, oldfirst, nsize); oldfirst = chunk_plus_offset(oldfirst, nsize); qsize += nsize; } set_free_with_pinuse(q, qsize, oldfirst); insert_chunk(m, q, qsize); check_free_chunk(m, q); } check_malloced_chunk(m, chunk2mem(p), nb); return chunk2mem(p); } /* Add a segment to hold a new noncontiguous region */ static void add_segment(mstate m, char* tbase, size_t tsize, flag_t mmapped) { /* Determine locations and sizes of segment, fenceposts, old top */ char* old_top = (char*)m->top; msegmentptr oldsp = segment_holding(m, old_top); char* old_end = oldsp->base + oldsp->size; size_t ssize = pad_request(sizeof(struct malloc_segment)); char* rawsp = old_end - (ssize + FOUR_SIZE_T_SIZES + CHUNK_ALIGN_MASK); size_t offset = align_offset(chunk2mem(rawsp)); char* asp = rawsp + offset; char* csp = (asp < (old_top + MIN_CHUNK_SIZE))? old_top : asp; mchunkptr sp = (mchunkptr)csp; msegmentptr ss = (msegmentptr)(chunk2mem(sp)); mchunkptr tnext = chunk_plus_offset(sp, ssize); mchunkptr p = tnext; int nfences = 0; /* reset top to new space */ init_top(m, (mchunkptr)tbase, tsize - TOP_FOOT_SIZE); /* Set up segment record */ assert(is_aligned(ss)); set_size_and_pinuse_of_inuse_chunk(m, sp, ssize); *ss = m->seg; /* Push current record */ m->seg.base = tbase; m->seg.size = tsize; m->seg.sflags = mmapped; m->seg.next = ss; /* Insert trailing fenceposts */ for (;;) { mchunkptr nextp = chunk_plus_offset(p, SIZE_T_SIZE); p->head = FENCEPOST_HEAD; ++nfences; if ((char*)(&(nextp->head)) < old_end) p = nextp; else break; } assert(nfences >= 2); /* Insert the rest of old top into a bin as an ordinary free chunk */ if (csp != old_top) { mchunkptr q = (mchunkptr)old_top; size_t psize = csp - old_top; mchunkptr tn = chunk_plus_offset(q, psize); set_free_with_pinuse(q, psize, tn); insert_chunk(m, q, psize); } check_top_chunk(m, m->top); } /* -------------------------- System allocation -------------------------- */ /* Get memory from system using MORECORE or MMAP */ static void* sys_alloc(mstate m, size_t nb) { char* tbase = CMFAIL; size_t tsize = 0; flag_t mmap_flag = 0; size_t asize; /* allocation size */ ensure_initialization(); /* Directly map large chunks, but only if already initialized */ if (use_mmap(m) && nb >= mparams.mmap_threshold && m->topsize != 0) { void* mem = mmap_alloc(m, nb); if (mem != 0) return mem; } asize = granularity_align(nb + SYS_ALLOC_PADDING); if (asize <= nb) return 0; /* wraparound */ if (m->footprint_limit != 0) { size_t fp = m->footprint + asize; if (fp <= m->footprint || fp > m->footprint_limit) return 0; } /* Try getting memory in any of three ways (in most-preferred to least-preferred order): 1. A call to MORECORE that can normally contiguously extend memory. (disabled if not MORECORE_CONTIGUOUS or not HAVE_MORECORE or or main space is mmapped or a previous contiguous call failed) 2. A call to MMAP new space (disabled if not HAVE_MMAP). Note that under the default settings, if MORECORE is unable to fulfill a request, and HAVE_MMAP is true, then mmap is used as a noncontiguous system allocator. This is a useful backup strategy for systems with holes in address spaces -- in this case sbrk cannot contiguously expand the heap, but mmap may be able to find space. 3. A call to MORECORE that cannot usually contiguously extend memory. (disabled if not HAVE_MORECORE) In all cases, we need to request enough bytes from system to ensure we can malloc nb bytes upon success, so pad with enough space for top_foot, plus alignment-pad to make sure we don't lose bytes if not on boundary, and round this up to a granularity unit. */ if (MORECORE_CONTIGUOUS && !use_noncontiguous(m)) { char* br = CMFAIL; size_t ssize = asize; /* sbrk call size */ msegmentptr ss = (m->top == 0)? 0 : segment_holding(m, (char*)m->top); ACQUIRE_MALLOC_GLOBAL_LOCK(); if (ss == 0) { /* First time through or recovery */ char* base = (char*)CALL_MORECORE(0); if (base != CMFAIL) { size_t fp; /* Adjust to end on a page boundary */ if (!is_page_aligned(base)) ssize += (page_align((size_t)base) - (size_t)base); fp = m->footprint + ssize; /* recheck limits */ if (ssize > nb && ssize < HALF_MAX_SIZE_T && (m->footprint_limit == 0 || (fp > m->footprint && fp <= m->footprint_limit)) && (br = (char*)(CALL_MORECORE(ssize))) == base) { tbase = base; tsize = ssize; } } } else { /* Subtract out existing available top space from MORECORE request. */ ssize = granularity_align(nb - m->topsize + SYS_ALLOC_PADDING); /* Use mem here only if it did continuously extend old space */ if (ssize < HALF_MAX_SIZE_T && (br = (char*)(CALL_MORECORE(ssize))) == ss->base+ss->size) { tbase = br; tsize = ssize; } } if (tbase == CMFAIL) { /* Cope with partial failure */ if (br != CMFAIL) { /* Try to use/extend the space we did get */ if (ssize < HALF_MAX_SIZE_T && ssize < nb + SYS_ALLOC_PADDING) { size_t esize = granularity_align(nb + SYS_ALLOC_PADDING - ssize); if (esize < HALF_MAX_SIZE_T) { char* end = (char*)CALL_MORECORE(esize); if (end != CMFAIL) ssize += esize; else { /* Can't use; try to release */ (void) CALL_MORECORE(-ssize); br = CMFAIL; } } } } if (br != CMFAIL) { /* Use the space we did get */ tbase = br; tsize = ssize; } else disable_contiguous(m); /* Don't try contiguous path in the future */ } RELEASE_MALLOC_GLOBAL_LOCK(); } if (HAVE_MMAP && tbase == CMFAIL) { /* Try MMAP */ char* mp = (char*)(CALL_MMAP(asize)); if (mp != CMFAIL) { tbase = mp; tsize = asize; mmap_flag = USE_MMAP_BIT; } } if (HAVE_MORECORE && tbase == CMFAIL) { /* Try noncontiguous MORECORE */ if (asize < HALF_MAX_SIZE_T) { char* br = CMFAIL; char* end = CMFAIL; ACQUIRE_MALLOC_GLOBAL_LOCK(); br = (char*)(CALL_MORECORE(asize)); end = (char*)(CALL_MORECORE(0)); RELEASE_MALLOC_GLOBAL_LOCK(); if (br != CMFAIL && end != CMFAIL && br < end) { size_t ssize = end - br; if (ssize > nb + TOP_FOOT_SIZE) { tbase = br; tsize = ssize; } } } } if (tbase != CMFAIL) { if ((m->footprint += tsize) > m->max_footprint) m->max_footprint = m->footprint; if (!is_initialized(m)) { /* first-time initialization */ if (m->least_addr == 0 || tbase < m->least_addr) m->least_addr = tbase; m->seg.base = tbase; m->seg.size = tsize; m->seg.sflags = mmap_flag; m->magic = mparams.magic; m->release_checks = MAX_RELEASE_CHECK_RATE; init_bins(m); #if !ONLY_MSPACES if (is_global(m)) init_top(m, (mchunkptr)tbase, tsize - TOP_FOOT_SIZE); else #endif { /* Offset top by embedded malloc_state */ mchunkptr mn = next_chunk(mem2chunk(m)); init_top(m, mn, (size_t)((tbase + tsize) - (char*)mn) -TOP_FOOT_SIZE); } } else { /* Try to merge with an existing segment */ msegmentptr sp = &m->seg; /* Only consider most recent segment if traversal suppressed */ while (sp != 0 && tbase != sp->base + sp->size) sp = (NO_SEGMENT_TRAVERSAL) ? 0 : sp->next; if (sp != 0 && !is_extern_segment(sp) && (sp->sflags & USE_MMAP_BIT) == mmap_flag && segment_holds(sp, m->top)) { /* append */ sp->size += tsize; init_top(m, m->top, m->topsize + tsize); } else { if (tbase < m->least_addr) m->least_addr = tbase; sp = &m->seg; while (sp != 0 && sp->base != tbase + tsize) sp = (NO_SEGMENT_TRAVERSAL) ? 0 : sp->next; if (sp != 0 && !is_extern_segment(sp) && (sp->sflags & USE_MMAP_BIT) == mmap_flag) { char* oldbase = sp->base; sp->base = tbase; sp->size += tsize; return prepend_alloc(m, tbase, oldbase, nb); } else add_segment(m, tbase, tsize, mmap_flag); } } if (nb < m->topsize) { /* Allocate from new or extended top space */ size_t rsize = m->topsize -= nb; mchunkptr p = m->top; mchunkptr r = m->top = chunk_plus_offset(p, nb); r->head = rsize | PINUSE_BIT; set_size_and_pinuse_of_inuse_chunk(m, p, nb); check_top_chunk(m, m->top); check_malloced_chunk(m, chunk2mem(p), nb); return chunk2mem(p); } } MALLOC_FAILURE_ACTION; return 0; } /* ----------------------- system deallocation -------------------------- */ /* Unmap and unlink any mmapped segments that don't contain used chunks */ static size_t release_unused_segments(mstate m) { size_t released = 0; int nsegs = 0; msegmentptr pred = &m->seg; msegmentptr sp = pred->next; while (sp != 0) { char* base = sp->base; size_t size = sp->size; msegmentptr next = sp->next; ++nsegs; if (is_mmapped_segment(sp) && !is_extern_segment(sp)) { mchunkptr p = align_as_chunk(base); size_t psize = chunksize(p); /* Can unmap if first chunk holds entire segment and not pinned */ if (!is_inuse(p) && (char*)p + psize >= base + size - TOP_FOOT_SIZE) { tchunkptr tp = (tchunkptr)p; assert(segment_holds(sp, (char*)sp)); if (p == m->dv) { m->dv = 0; m->dvsize = 0; } else { unlink_large_chunk(m, tp); } if (CALL_MUNMAP(base, size) == 0) { released += size; m->footprint -= size; /* unlink obsoleted record */ sp = pred; sp->next = next; } else { /* back out if cannot unmap */ insert_large_chunk(m, tp, psize); } } } if (NO_SEGMENT_TRAVERSAL) /* scan only first segment */ break; pred = sp; sp = next; } /* Reset check counter */ m->release_checks = (((size_t) nsegs > (size_t) MAX_RELEASE_CHECK_RATE)? (size_t) nsegs : (size_t) MAX_RELEASE_CHECK_RATE); return released; } static int sys_trim(mstate m, size_t pad) { size_t released = 0; ensure_initialization(); if (pad < MAX_REQUEST && is_initialized(m)) { pad += TOP_FOOT_SIZE; /* ensure enough room for segment overhead */ if (m->topsize > pad) { /* Shrink top space in granularity-size units, keeping at least one */ size_t unit = mparams.granularity; size_t extra = ((m->topsize - pad + (unit - SIZE_T_ONE)) / unit - SIZE_T_ONE) * unit; msegmentptr sp = segment_holding(m, (char*)m->top); if (!is_extern_segment(sp)) { if (is_mmapped_segment(sp)) { if (HAVE_MMAP && sp->size >= extra && !has_segment_link(m, sp)) { /* can't shrink if pinned */ size_t newsize = sp->size - extra; (void)newsize; /* placate people compiling -Wunused-variable */ /* Prefer mremap, fall back to munmap */ if ((CALL_MREMAP(sp->base, sp->size, newsize, 0) != MFAIL) || (CALL_MUNMAP(sp->base + newsize, extra) == 0)) { released = extra; } } } else if (HAVE_MORECORE) { if (extra >= HALF_MAX_SIZE_T) /* Avoid wrapping negative */ extra = (HALF_MAX_SIZE_T) + SIZE_T_ONE - unit; ACQUIRE_MALLOC_GLOBAL_LOCK(); { /* Make sure end of memory is where we last set it. */ char* old_br = (char*)(CALL_MORECORE(0)); if (old_br == sp->base + sp->size) { char* rel_br = (char*)(CALL_MORECORE(-extra)); char* new_br = (char*)(CALL_MORECORE(0)); if (rel_br != CMFAIL && new_br < old_br) released = old_br - new_br; } } RELEASE_MALLOC_GLOBAL_LOCK(); } } if (released != 0) { sp->size -= released; m->footprint -= released; init_top(m, m->top, m->topsize - released); check_top_chunk(m, m->top); } } /* Unmap any unused mmapped segments */ if (HAVE_MMAP) released += release_unused_segments(m); /* On failure, disable autotrim to avoid repeated failed future calls */ if (released == 0 && m->topsize > m->trim_check) m->trim_check = MAX_SIZE_T; } return (released != 0)? 1 : 0; } /* Consolidate and bin a chunk. Differs from exported versions of free mainly in that the chunk need not be marked as inuse. */ static void dispose_chunk(mstate m, mchunkptr p, size_t psize) { mchunkptr next = chunk_plus_offset(p, psize); if (!pinuse(p)) { mchunkptr prev; size_t prevsize = p->prev_foot; if (is_mmapped(p)) { psize += prevsize + MMAP_FOOT_PAD; if (CALL_MUNMAP((char*)p - prevsize, psize) == 0) m->footprint -= psize; return; } prev = chunk_minus_offset(p, prevsize); psize += prevsize; p = prev; if (RTCHECK(ok_address(m, prev))) { /* consolidate backward */ if (p != m->dv) { unlink_chunk(m, p, prevsize); } else if ((next->head & INUSE_BITS) == INUSE_BITS) { m->dvsize = psize; set_free_with_pinuse(p, psize, next); return; } } else { CORRUPTION_ERROR_ACTION(m); return; } } if (RTCHECK(ok_address(m, next))) { if (!cinuse(next)) { /* consolidate forward */ if (next == m->top) { size_t tsize = m->topsize += psize; m->top = p; p->head = tsize | PINUSE_BIT; if (p == m->dv) { m->dv = 0; m->dvsize = 0; } return; } else if (next == m->dv) { size_t dsize = m->dvsize += psize; m->dv = p; set_size_and_pinuse_of_free_chunk(p, dsize); return; } else { size_t nsize = chunksize(next); psize += nsize; unlink_chunk(m, next, nsize); set_size_and_pinuse_of_free_chunk(p, psize); if (p == m->dv) { m->dvsize = psize; return; } } } else { set_free_with_pinuse(p, psize, next); } insert_chunk(m, p, psize); } else { CORRUPTION_ERROR_ACTION(m); } } /* ---------------------------- malloc --------------------------- */ /* allocate a large request from the best fitting chunk in a treebin */ static void* tmalloc_large(mstate m, size_t nb) { tchunkptr v = 0; size_t rsize = -nb; /* Unsigned negation */ tchunkptr t; bindex_t idx; compute_tree_index(nb, idx); if ((t = *treebin_at(m, idx)) != 0) { /* Traverse tree for this bin looking for node with size == nb */ size_t sizebits = nb << leftshift_for_tree_index(idx); tchunkptr rst = 0; /* The deepest untaken right subtree */ for (;;) { tchunkptr rt; size_t trem = chunksize(t) - nb; if (trem < rsize) { v = t; if ((rsize = trem) == 0) break; } rt = t->child[1]; t = t->child[(sizebits >> (SIZE_T_BITSIZE-SIZE_T_ONE)) & 1]; if (rt != 0 && rt != t) rst = rt; if (t == 0) { t = rst; /* set t to least subtree holding sizes > nb */ break; } sizebits <<= 1; } } if (t == 0 && v == 0) { /* set t to root of next non-empty treebin */ binmap_t leftbits = left_bits(idx2bit(idx)) & m->treemap; if (leftbits != 0) { bindex_t i; binmap_t leastbit = least_bit(leftbits); compute_bit2idx(leastbit, i); t = *treebin_at(m, i); } } while (t != 0) { /* find smallest of tree or subtree */ size_t trem = chunksize(t) - nb; if (trem < rsize) { rsize = trem; v = t; } t = leftmost_child(t); } /* If dv is a better fit, return 0 so malloc will use it */ if (v != 0 && rsize < (size_t)(m->dvsize - nb)) { if (RTCHECK(ok_address(m, v))) { /* split */ mchunkptr r = chunk_plus_offset(v, nb); assert(chunksize(v) == rsize + nb); if (RTCHECK(ok_next(v, r))) { unlink_large_chunk(m, v); if (rsize < MIN_CHUNK_SIZE) set_inuse_and_pinuse(m, v, (rsize + nb)); else { set_size_and_pinuse_of_inuse_chunk(m, v, nb); set_size_and_pinuse_of_free_chunk(r, rsize); insert_chunk(m, r, rsize); } return chunk2mem(v); } } CORRUPTION_ERROR_ACTION(m); } return 0; } /* allocate a small request from the best fitting chunk in a treebin */ static void* tmalloc_small(mstate m, size_t nb) { tchunkptr t, v; size_t rsize; bindex_t i; binmap_t leastbit = least_bit(m->treemap); compute_bit2idx(leastbit, i); v = t = *treebin_at(m, i); rsize = chunksize(t) - nb; while ((t = leftmost_child(t)) != 0) { size_t trem = chunksize(t) - nb; if (trem < rsize) { rsize = trem; v = t; } } if (RTCHECK(ok_address(m, v))) { mchunkptr r = chunk_plus_offset(v, nb); assert(chunksize(v) == rsize + nb); if (RTCHECK(ok_next(v, r))) { unlink_large_chunk(m, v); if (rsize < MIN_CHUNK_SIZE) set_inuse_and_pinuse(m, v, (rsize + nb)); else { set_size_and_pinuse_of_inuse_chunk(m, v, nb); set_size_and_pinuse_of_free_chunk(r, rsize); replace_dv(m, r, rsize); } return chunk2mem(v); } } CORRUPTION_ERROR_ACTION(m); return 0; } #if !ONLY_MSPACES void* dlmalloc(size_t bytes) { /* Basic algorithm: If a small request (< 256 bytes minus per-chunk overhead): 1. If one exists, use a remainderless chunk in associated smallbin. (Remainderless means that there are too few excess bytes to represent as a chunk.) 2. If it is big enough, use the dv chunk, which is normally the chunk adjacent to the one used for the most recent small request. 3. If one exists, split the smallest available chunk in a bin, saving remainder in dv. 4. If it is big enough, use the top chunk. 5. If available, get memory from system and use it Otherwise, for a large request: 1. Find the smallest available binned chunk that fits, and use it if it is better fitting than dv chunk, splitting if necessary. 2. If better fitting than any binned chunk, use the dv chunk. 3. If it is big enough, use the top chunk. 4. If request size >= mmap threshold, try to directly mmap this chunk. 5. If available, get memory from system and use it The ugly goto's here ensure that postaction occurs along all paths. */ #if USE_LOCKS ensure_initialization(); /* initialize in sys_alloc if not using locks */ #endif if (!PREACTION(gm)) { void* mem; size_t nb; if (bytes <= MAX_SMALL_REQUEST) { bindex_t idx; binmap_t smallbits; nb = (bytes < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(bytes); idx = small_index(nb); smallbits = gm->smallmap >> idx; if ((smallbits & 0x3U) != 0) { /* Remainderless fit to a smallbin. */ mchunkptr b, p; idx += ~smallbits & 1; /* Uses next bin if idx empty */ b = smallbin_at(gm, idx); p = b->fd; assert(chunksize(p) == small_index2size(idx)); unlink_first_small_chunk(gm, b, p, idx); set_inuse_and_pinuse(gm, p, small_index2size(idx)); mem = chunk2mem(p); check_malloced_chunk(gm, mem, nb); goto postaction; } else if (nb > gm->dvsize) { if (smallbits != 0) { /* Use chunk in next nonempty smallbin */ mchunkptr b, p, r; size_t rsize; bindex_t i; binmap_t leftbits = (smallbits << idx) & left_bits(idx2bit(idx)); binmap_t leastbit = least_bit(leftbits); compute_bit2idx(leastbit, i); b = smallbin_at(gm, i); p = b->fd; assert(chunksize(p) == small_index2size(i)); unlink_first_small_chunk(gm, b, p, i); rsize = small_index2size(i) - nb; /* Fit here cannot be remainderless if 4byte sizes */ if (SIZE_T_SIZE != 4 && rsize < MIN_CHUNK_SIZE) set_inuse_and_pinuse(gm, p, small_index2size(i)); else { set_size_and_pinuse_of_inuse_chunk(gm, p, nb); r = chunk_plus_offset(p, nb); set_size_and_pinuse_of_free_chunk(r, rsize); replace_dv(gm, r, rsize); } mem = chunk2mem(p); check_malloced_chunk(gm, mem, nb); goto postaction; } else if (gm->treemap != 0 && (mem = tmalloc_small(gm, nb)) != 0) { check_malloced_chunk(gm, mem, nb); goto postaction; } } } else if (bytes >= MAX_REQUEST) nb = MAX_SIZE_T; /* Too big to allocate. Force failure (in sys alloc) */ else { nb = pad_request(bytes); if (gm->treemap != 0 && (mem = tmalloc_large(gm, nb)) != 0) { check_malloced_chunk(gm, mem, nb); goto postaction; } } if (nb <= gm->dvsize) { size_t rsize = gm->dvsize - nb; mchunkptr p = gm->dv; if (rsize >= MIN_CHUNK_SIZE) { /* split dv */ mchunkptr r = gm->dv = chunk_plus_offset(p, nb); gm->dvsize = rsize; set_size_and_pinuse_of_free_chunk(r, rsize); set_size_and_pinuse_of_inuse_chunk(gm, p, nb); } else { /* exhaust dv */ size_t dvs = gm->dvsize; gm->dvsize = 0; gm->dv = 0; set_inuse_and_pinuse(gm, p, dvs); } mem = chunk2mem(p); check_malloced_chunk(gm, mem, nb); goto postaction; } else if (nb < gm->topsize) { /* Split top */ size_t rsize = gm->topsize -= nb; mchunkptr p = gm->top; mchunkptr r = gm->top = chunk_plus_offset(p, nb); r->head = rsize | PINUSE_BIT; set_size_and_pinuse_of_inuse_chunk(gm, p, nb); mem = chunk2mem(p); check_top_chunk(gm, gm->top); check_malloced_chunk(gm, mem, nb); goto postaction; } mem = sys_alloc(gm, nb); postaction: POSTACTION(gm); #if __EMSCRIPTEN__ /* XXX Emscripten Tracing API. */ emscripten_trace_record_allocation(mem, bytes); #endif return mem; } return 0; } /* ---------------------------- free --------------------------- */ void dlfree(void* mem) { /* Consolidate freed chunks with preceeding or succeeding bordering free chunks, if they exist, and then place in a bin. Intermixed with special cases for top, dv, mmapped chunks, and usage errors. */ if (mem != 0) { #if __EMSCRIPTEN__ /* XXX Emscripten Tracing API. */ emscripten_trace_record_free(mem); #endif mchunkptr p = mem2chunk(mem); #if FOOTERS mstate fm = get_mstate_for(p); if (!ok_magic(fm)) { USAGE_ERROR_ACTION(fm, p); return; } #else /* FOOTERS */ #define fm gm #endif /* FOOTERS */ if (!PREACTION(fm)) { check_inuse_chunk(fm, p); if (RTCHECK(ok_address(fm, p) && ok_inuse(p))) { size_t psize = chunksize(p); mchunkptr next = chunk_plus_offset(p, psize); if (!pinuse(p)) { size_t prevsize = p->prev_foot; if (is_mmapped(p)) { psize += prevsize + MMAP_FOOT_PAD; if (CALL_MUNMAP((char*)p - prevsize, psize) == 0) fm->footprint -= psize; goto postaction; } else { mchunkptr prev = chunk_minus_offset(p, prevsize); psize += prevsize; p = prev; if (RTCHECK(ok_address(fm, prev))) { /* consolidate backward */ if (p != fm->dv) { unlink_chunk(fm, p, prevsize); } else if ((next->head & INUSE_BITS) == INUSE_BITS) { fm->dvsize = psize; set_free_with_pinuse(p, psize, next); goto postaction; } } else goto erroraction; } } if (RTCHECK(ok_next(p, next) && ok_pinuse(next))) { if (!cinuse(next)) { /* consolidate forward */ if (next == fm->top) { size_t tsize = fm->topsize += psize; fm->top = p; p->head = tsize | PINUSE_BIT; if (p == fm->dv) { fm->dv = 0; fm->dvsize = 0; } if (should_trim(fm, tsize)) sys_trim(fm, 0); goto postaction; } else if (next == fm->dv) { size_t dsize = fm->dvsize += psize; fm->dv = p; set_size_and_pinuse_of_free_chunk(p, dsize); goto postaction; } else { size_t nsize = chunksize(next); psize += nsize; unlink_chunk(fm, next, nsize); set_size_and_pinuse_of_free_chunk(p, psize); if (p == fm->dv) { fm->dvsize = psize; goto postaction; } } } else set_free_with_pinuse(p, psize, next); if (is_small(psize)) { insert_small_chunk(fm, p, psize); check_free_chunk(fm, p); } else { tchunkptr tp = (tchunkptr)p; insert_large_chunk(fm, tp, psize); check_free_chunk(fm, p); if (--fm->release_checks == 0) release_unused_segments(fm); } goto postaction; } } erroraction: USAGE_ERROR_ACTION(fm, p); postaction: POSTACTION(fm); } } #if !FOOTERS #undef fm #endif /* FOOTERS */ } void* dlcalloc(size_t n_elements, size_t elem_size) { void* mem; size_t req = 0; if (n_elements != 0) { req = n_elements * elem_size; if (((n_elements | elem_size) & ~(size_t)0xffff) && (req / n_elements != elem_size)) req = MAX_SIZE_T; /* force downstream failure on overflow */ } mem = dlmalloc(req); if (mem != 0 && calloc_must_clear(mem2chunk(mem))) memset(mem, 0, req); return mem; } #endif /* !ONLY_MSPACES */ /* ------------ Internal support for realloc, memalign, etc -------------- */ /* Try to realloc; only in-place unless can_move true */ static mchunkptr try_realloc_chunk(mstate m, mchunkptr p, size_t nb, int can_move) { mchunkptr newp = 0; size_t oldsize = chunksize(p); mchunkptr next = chunk_plus_offset(p, oldsize); if (RTCHECK(ok_address(m, p) && ok_inuse(p) && ok_next(p, next) && ok_pinuse(next))) { if (is_mmapped(p)) { newp = mmap_resize(m, p, nb, can_move); } else if (oldsize >= nb) { /* already big enough */ size_t rsize = oldsize - nb; if (rsize >= MIN_CHUNK_SIZE) { /* split off remainder */ mchunkptr r = chunk_plus_offset(p, nb); set_inuse(m, p, nb); set_inuse(m, r, rsize); dispose_chunk(m, r, rsize); } newp = p; } else if (next == m->top) { /* extend into top */ if (oldsize + m->topsize > nb) { size_t newsize = oldsize + m->topsize; size_t newtopsize = newsize - nb; mchunkptr newtop = chunk_plus_offset(p, nb); set_inuse(m, p, nb); newtop->head = newtopsize |PINUSE_BIT; m->top = newtop; m->topsize = newtopsize; newp = p; } } else if (next == m->dv) { /* extend into dv */ size_t dvs = m->dvsize; if (oldsize + dvs >= nb) { size_t dsize = oldsize + dvs - nb; if (dsize >= MIN_CHUNK_SIZE) { mchunkptr r = chunk_plus_offset(p, nb); mchunkptr n = chunk_plus_offset(r, dsize); set_inuse(m, p, nb); set_size_and_pinuse_of_free_chunk(r, dsize); clear_pinuse(n); m->dvsize = dsize; m->dv = r; } else { /* exhaust dv */ size_t newsize = oldsize + dvs; set_inuse(m, p, newsize); m->dvsize = 0; m->dv = 0; } newp = p; } } else if (!cinuse(next)) { /* extend into next free chunk */ size_t nextsize = chunksize(next); if (oldsize + nextsize >= nb) { size_t rsize = oldsize + nextsize - nb; unlink_chunk(m, next, nextsize); if (rsize < MIN_CHUNK_SIZE) { size_t newsize = oldsize + nextsize; set_inuse(m, p, newsize); } else { mchunkptr r = chunk_plus_offset(p, nb); set_inuse(m, p, nb); set_inuse(m, r, rsize); dispose_chunk(m, r, rsize); } newp = p; } } } else { USAGE_ERROR_ACTION(m, chunk2mem(p)); } return newp; } static void* internal_memalign(mstate m, size_t alignment, size_t bytes) { void* mem = 0; if (alignment < MIN_CHUNK_SIZE) /* must be at least a minimum chunk size */ alignment = MIN_CHUNK_SIZE; if ((alignment & (alignment-SIZE_T_ONE)) != 0) {/* Ensure a power of 2 */ size_t a = MALLOC_ALIGNMENT << 1; while (a < alignment) a <<= 1; alignment = a; } if (bytes >= MAX_REQUEST - alignment) { if (m != 0) { /* Test isn't needed but avoids compiler warning */ MALLOC_FAILURE_ACTION; } } else { size_t nb = request2size(bytes); size_t req = nb + alignment + MIN_CHUNK_SIZE - CHUNK_OVERHEAD; mem = internal_malloc(m, req); if (mem != 0) { mchunkptr p = mem2chunk(mem); if (PREACTION(m)) return 0; if ((((size_t)(mem)) & (alignment - 1)) != 0) { /* misaligned */ /* Find an aligned spot inside chunk. Since we need to give back leading space in a chunk of at least MIN_CHUNK_SIZE, if the first calculation places us at a spot with less than MIN_CHUNK_SIZE leader, we can move to the next aligned spot. We've allocated enough total room so that this is always possible. */ char* br = (char*)mem2chunk((size_t)(((size_t)((char*)mem + alignment - SIZE_T_ONE)) & -alignment)); char* pos = ((size_t)(br - (char*)(p)) >= MIN_CHUNK_SIZE)? br : br+alignment; mchunkptr newp = (mchunkptr)pos; size_t leadsize = pos - (char*)(p); size_t newsize = chunksize(p) - leadsize; if (is_mmapped(p)) { /* For mmapped chunks, just adjust offset */ newp->prev_foot = p->prev_foot + leadsize; newp->head = newsize; } else { /* Otherwise, give back leader, use the rest */ set_inuse(m, newp, newsize); set_inuse(m, p, leadsize); dispose_chunk(m, p, leadsize); } p = newp; } /* Give back spare room at the end */ if (!is_mmapped(p)) { size_t size = chunksize(p); if (size > nb + MIN_CHUNK_SIZE) { size_t remainder_size = size - nb; mchunkptr remainder = chunk_plus_offset(p, nb); set_inuse(m, p, nb); set_inuse(m, remainder, remainder_size); dispose_chunk(m, remainder, remainder_size); } } mem = chunk2mem(p); assert (chunksize(p) >= nb); assert(((size_t)mem & (alignment - 1)) == 0); check_inuse_chunk(m, p); POSTACTION(m); } } return mem; } /* Common support for independent_X routines, handling all of the combinations that can result. The opts arg has: bit 0 set if all elements are same size (using sizes[0]) bit 1 set if elements should be zeroed */ static void** ialloc(mstate m, size_t n_elements, size_t* sizes, int opts, void* chunks[]) { size_t element_size; /* chunksize of each element, if all same */ size_t contents_size; /* total size of elements */ size_t array_size; /* request size of pointer array */ void* mem; /* malloced aggregate space */ mchunkptr p; /* corresponding chunk */ size_t remainder_size; /* remaining bytes while splitting */ void** marray; /* either "chunks" or malloced ptr array */ mchunkptr array_chunk; /* chunk for malloced ptr array */ flag_t was_enabled; /* to disable mmap */ size_t size; size_t i; ensure_initialization(); /* compute array length, if needed */ if (chunks != 0) { if (n_elements == 0) return chunks; /* nothing to do */ marray = chunks; array_size = 0; } else { /* if empty req, must still return chunk representing empty array */ if (n_elements == 0) return (void**)internal_malloc(m, 0); marray = 0; array_size = request2size(n_elements * (sizeof(void*))); } /* compute total element size */ if (opts & 0x1) { /* all-same-size */ element_size = request2size(*sizes); contents_size = n_elements * element_size; } else { /* add up all the sizes */ element_size = 0; contents_size = 0; for (i = 0; i != n_elements; ++i) contents_size += request2size(sizes[i]); } size = contents_size + array_size; /* Allocate the aggregate chunk. First disable direct-mmapping so malloc won't use it, since we would not be able to later free/realloc space internal to a segregated mmap region. */ was_enabled = use_mmap(m); disable_mmap(m); mem = internal_malloc(m, size - CHUNK_OVERHEAD); if (was_enabled) enable_mmap(m); if (mem == 0) return 0; if (PREACTION(m)) return 0; p = mem2chunk(mem); remainder_size = chunksize(p); assert(!is_mmapped(p)); if (opts & 0x2) { /* optionally clear the elements */ memset((size_t*)mem, 0, remainder_size - SIZE_T_SIZE - array_size); } /* If not provided, allocate the pointer array as final part of chunk */ if (marray == 0) { size_t array_chunk_size; array_chunk = chunk_plus_offset(p, contents_size); array_chunk_size = remainder_size - contents_size; marray = (void**) (chunk2mem(array_chunk)); set_size_and_pinuse_of_inuse_chunk(m, array_chunk, array_chunk_size); remainder_size = contents_size; } /* split out elements */ for (i = 0; ; ++i) { marray[i] = chunk2mem(p); if (i != n_elements-1) { if (element_size != 0) size = element_size; else size = request2size(sizes[i]); remainder_size -= size; set_size_and_pinuse_of_inuse_chunk(m, p, size); p = chunk_plus_offset(p, size); } else { /* the final element absorbs any overallocation slop */ set_size_and_pinuse_of_inuse_chunk(m, p, remainder_size); break; } } #if DEBUG if (marray != chunks) { /* final element must have exactly exhausted chunk */ if (element_size != 0) { assert(remainder_size == element_size); } else { assert(remainder_size == request2size(sizes[i])); } check_inuse_chunk(m, mem2chunk(marray)); } for (i = 0; i != n_elements; ++i) check_inuse_chunk(m, mem2chunk(marray[i])); #endif /* DEBUG */ POSTACTION(m); return marray; } /* Try to free all pointers in the given array. Note: this could be made faster, by delaying consolidation, at the price of disabling some user integrity checks, We still optimize some consolidations by combining adjacent chunks before freeing, which will occur often if allocated with ialloc or the array is sorted. */ static size_t internal_bulk_free(mstate m, void* array[], size_t nelem) { size_t unfreed = 0; if (!PREACTION(m)) { void** a; void** fence = &(array[nelem]); for (a = array; a != fence; ++a) { void* mem = *a; if (mem != 0) { mchunkptr p = mem2chunk(mem); size_t psize = chunksize(p); #if FOOTERS if (get_mstate_for(p) != m) { ++unfreed; continue; } #endif check_inuse_chunk(m, p); *a = 0; if (RTCHECK(ok_address(m, p) && ok_inuse(p))) { void ** b = a + 1; /* try to merge with next chunk */ mchunkptr next = next_chunk(p); if (b != fence && *b == chunk2mem(next)) { size_t newsize = chunksize(next) + psize; set_inuse(m, p, newsize); *b = chunk2mem(p); } else dispose_chunk(m, p, psize); } else { CORRUPTION_ERROR_ACTION(m); break; } } } if (should_trim(m, m->topsize)) sys_trim(m, 0); POSTACTION(m); } return unfreed; } /* Traversal */ #if MALLOC_INSPECT_ALL static void internal_inspect_all(mstate m, void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) { if (is_initialized(m)) { mchunkptr top = m->top; msegmentptr s; for (s = &m->seg; s != 0; s = s->next) { mchunkptr q = align_as_chunk(s->base); while (segment_holds(s, q) && q->head != FENCEPOST_HEAD) { mchunkptr next = next_chunk(q); size_t sz = chunksize(q); size_t used; void* start; if (is_inuse(q)) { used = sz - CHUNK_OVERHEAD; /* must not be mmapped */ start = chunk2mem(q); } else { used = 0; if (is_small(sz)) { /* offset by possible bookkeeping */ start = (void*)((char*)q + sizeof(struct malloc_chunk)); } else { start = (void*)((char*)q + sizeof(struct malloc_tree_chunk)); } } if (start < (void*)next) /* skip if all space is bookkeeping */ handler(start, next, used, arg); if (q == top) break; q = next; } } } } #endif /* MALLOC_INSPECT_ALL */ /* ------------------ Exported realloc, memalign, etc -------------------- */ #if !ONLY_MSPACES void* dlrealloc(void* oldmem, size_t bytes) { void* mem = 0; if (oldmem == 0) { mem = dlmalloc(bytes); } else if (bytes >= MAX_REQUEST) { MALLOC_FAILURE_ACTION; } #ifdef REALLOC_ZERO_BYTES_FREES else if (bytes == 0) { dlfree(oldmem); } #endif /* REALLOC_ZERO_BYTES_FREES */ else { size_t nb = request2size(bytes); mchunkptr oldp = mem2chunk(oldmem); #if ! FOOTERS mstate m = gm; #else /* FOOTERS */ mstate m = get_mstate_for(oldp); if (!ok_magic(m)) { USAGE_ERROR_ACTION(m, oldmem); return 0; } #endif /* FOOTERS */ if (!PREACTION(m)) { mchunkptr newp = try_realloc_chunk(m, oldp, nb, 1); POSTACTION(m); if (newp != 0) { check_inuse_chunk(m, newp); mem = chunk2mem(newp); #if __EMSCRIPTEN__ /* XXX Emscripten Tracing API. */ emscripten_trace_record_reallocation(oldmem, mem, bytes); #endif } else { mem = internal_malloc(m, bytes); if (mem != 0) { size_t oc = chunksize(oldp) - overhead_for(oldp); memcpy(mem, oldmem, (oc < bytes)? oc : bytes); internal_free(m, oldmem); } } } } return mem; } void* dlrealloc_in_place(void* oldmem, size_t bytes) { void* mem = 0; if (oldmem != 0) { if (bytes >= MAX_REQUEST) { MALLOC_FAILURE_ACTION; } else { size_t nb = request2size(bytes); mchunkptr oldp = mem2chunk(oldmem); #if ! FOOTERS mstate m = gm; #else /* FOOTERS */ mstate m = get_mstate_for(oldp); if (!ok_magic(m)) { USAGE_ERROR_ACTION(m, oldmem); return 0; } #endif /* FOOTERS */ if (!PREACTION(m)) { mchunkptr newp = try_realloc_chunk(m, oldp, nb, 0); POSTACTION(m); if (newp == oldp) { check_inuse_chunk(m, newp); mem = oldmem; } } } } #if __EMSCRIPTEN__ /* XXX Emscripten Tracing API. */ emscripten_trace_record_reallocation(oldmem, mem, bytes); #endif return mem; } void* dlmemalign(size_t alignment, size_t bytes) { if (alignment <= MALLOC_ALIGNMENT) { return dlmalloc(bytes); } return internal_memalign(gm, alignment, bytes); } int dlposix_memalign(void** pp, size_t alignment, size_t bytes) { void* mem = 0; if (alignment == MALLOC_ALIGNMENT) mem = dlmalloc(bytes); else { size_t d = alignment / sizeof(void*); size_t r = alignment % sizeof(void*); if (r != 0 || d == 0 || (d & (d-SIZE_T_ONE)) != 0) return EINVAL; else if (bytes <= MAX_REQUEST - alignment) { if (alignment < MIN_CHUNK_SIZE) alignment = MIN_CHUNK_SIZE; mem = internal_memalign(gm, alignment, bytes); } } if (mem == 0) return ENOMEM; else { *pp = mem; return 0; } } void* dlvalloc(size_t bytes) { size_t pagesz; ensure_initialization(); pagesz = mparams.page_size; return dlmemalign(pagesz, bytes); } void* dlpvalloc(size_t bytes) { size_t pagesz; ensure_initialization(); pagesz = mparams.page_size; return dlmemalign(pagesz, (bytes + pagesz - SIZE_T_ONE) & ~(pagesz - SIZE_T_ONE)); } void** dlindependent_calloc(size_t n_elements, size_t elem_size, void* chunks[]) { size_t sz = elem_size; /* serves as 1-element array */ return ialloc(gm, n_elements, &sz, 3, chunks); } void** dlindependent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]) { return ialloc(gm, n_elements, sizes, 0, chunks); } size_t dlbulk_free(void* array[], size_t nelem) { return internal_bulk_free(gm, array, nelem); } #if MALLOC_INSPECT_ALL void dlmalloc_inspect_all(void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) { ensure_initialization(); if (!PREACTION(gm)) { internal_inspect_all(gm, handler, arg); POSTACTION(gm); } } #endif /* MALLOC_INSPECT_ALL */ int dlmalloc_trim(size_t pad) { int result = 0; ensure_initialization(); if (!PREACTION(gm)) { result = sys_trim(gm, pad); POSTACTION(gm); } return result; } size_t dlmalloc_footprint(void) { return gm->footprint; } size_t dlmalloc_max_footprint(void) { return gm->max_footprint; } size_t dlmalloc_footprint_limit(void) { size_t maf = gm->footprint_limit; return maf == 0 ? MAX_SIZE_T : maf; } size_t dlmalloc_set_footprint_limit(size_t bytes) { size_t result; /* invert sense of 0 */ if (bytes == 0) result = granularity_align(1); /* Use minimal size */ if (bytes == MAX_SIZE_T) result = 0; /* disable */ else result = granularity_align(bytes); return gm->footprint_limit = result; } #if !NO_MALLINFO struct mallinfo dlmallinfo(void) { return internal_mallinfo(gm); } #endif /* NO_MALLINFO */ #if !NO_MALLOC_STATS void dlmalloc_stats() { internal_malloc_stats(gm); } #endif /* NO_MALLOC_STATS */ int dlmallopt(int param_number, int value) { return change_mparam(param_number, value); } size_t dlmalloc_usable_size(void* mem) { if (mem != 0) { mchunkptr p = mem2chunk(mem); if (is_inuse(p)) return chunksize(p) - overhead_for(p); } return 0; } #endif /* !ONLY_MSPACES */ /* ----------------------------- user mspaces ---------------------------- */ #if MSPACES static mstate init_user_mstate(char* tbase, size_t tsize) { size_t msize = pad_request(sizeof(struct malloc_state)); mchunkptr mn; mchunkptr msp = align_as_chunk(tbase); mstate m = (mstate)(chunk2mem(msp)); memset(m, 0, msize); (void)INITIAL_LOCK(&m->mutex); msp->head = (msize|INUSE_BITS); m->seg.base = m->least_addr = tbase; m->seg.size = m->footprint = m->max_footprint = tsize; m->magic = mparams.magic; m->release_checks = MAX_RELEASE_CHECK_RATE; m->mflags = mparams.default_mflags; m->extp = 0; m->exts = 0; disable_contiguous(m); init_bins(m); mn = next_chunk(mem2chunk(m)); init_top(m, mn, (size_t)((tbase + tsize) - (char*)mn) - TOP_FOOT_SIZE); check_top_chunk(m, m->top); return m; } mspace create_mspace(size_t capacity, int locked) { mstate m = 0; size_t msize; ensure_initialization(); msize = pad_request(sizeof(struct malloc_state)); if (capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) { size_t rs = ((capacity == 0)? mparams.granularity : (capacity + TOP_FOOT_SIZE + msize)); size_t tsize = granularity_align(rs); char* tbase = (char*)(CALL_MMAP(tsize)); if (tbase != CMFAIL) { m = init_user_mstate(tbase, tsize); m->seg.sflags = USE_MMAP_BIT; set_lock(m, locked); } } return (mspace)m; } mspace create_mspace_with_base(void* base, size_t capacity, int locked) { mstate m = 0; size_t msize; ensure_initialization(); msize = pad_request(sizeof(struct malloc_state)); if (capacity > msize + TOP_FOOT_SIZE && capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) { m = init_user_mstate((char*)base, capacity); m->seg.sflags = EXTERN_BIT; set_lock(m, locked); } return (mspace)m; } int mspace_track_large_chunks(mspace msp, int enable) { int ret = 0; mstate ms = (mstate)msp; if (!PREACTION(ms)) { if (!use_mmap(ms)) { ret = 1; } if (!enable) { enable_mmap(ms); } else { disable_mmap(ms); } POSTACTION(ms); } return ret; } size_t destroy_mspace(mspace msp) { size_t freed = 0; mstate ms = (mstate)msp; if (ok_magic(ms)) { msegmentptr sp = &ms->seg; (void)DESTROY_LOCK(&ms->mutex); /* destroy before unmapped */ while (sp != 0) { char* base = sp->base; size_t size = sp->size; flag_t flag = sp->sflags; (void)base; /* placate people compiling -Wunused-variable */ sp = sp->next; if ((flag & USE_MMAP_BIT) && !(flag & EXTERN_BIT) && CALL_MUNMAP(base, size) == 0) freed += size; } } else { USAGE_ERROR_ACTION(ms,ms); } return freed; } /* mspace versions of routines are near-clones of the global versions. This is not so nice but better than the alternatives. */ void* mspace_malloc(mspace msp, size_t bytes) { mstate ms = (mstate)msp; if (!ok_magic(ms)) { USAGE_ERROR_ACTION(ms,ms); return 0; } if (!PREACTION(ms)) { void* mem; size_t nb; if (bytes <= MAX_SMALL_REQUEST) { bindex_t idx; binmap_t smallbits; nb = (bytes < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(bytes); idx = small_index(nb); smallbits = ms->smallmap >> idx; if ((smallbits & 0x3U) != 0) { /* Remainderless fit to a smallbin. */ mchunkptr b, p; idx += ~smallbits & 1; /* Uses next bin if idx empty */ b = smallbin_at(ms, idx); p = b->fd; assert(chunksize(p) == small_index2size(idx)); unlink_first_small_chunk(ms, b, p, idx); set_inuse_and_pinuse(ms, p, small_index2size(idx)); mem = chunk2mem(p); check_malloced_chunk(ms, mem, nb); goto postaction; } else if (nb > ms->dvsize) { if (smallbits != 0) { /* Use chunk in next nonempty smallbin */ mchunkptr b, p, r; size_t rsize; bindex_t i; binmap_t leftbits = (smallbits << idx) & left_bits(idx2bit(idx)); binmap_t leastbit = least_bit(leftbits); compute_bit2idx(leastbit, i); b = smallbin_at(ms, i); p = b->fd; assert(chunksize(p) == small_index2size(i)); unlink_first_small_chunk(ms, b, p, i); rsize = small_index2size(i) - nb; /* Fit here cannot be remainderless if 4byte sizes */ if (SIZE_T_SIZE != 4 && rsize < MIN_CHUNK_SIZE) set_inuse_and_pinuse(ms, p, small_index2size(i)); else { set_size_and_pinuse_of_inuse_chunk(ms, p, nb); r = chunk_plus_offset(p, nb); set_size_and_pinuse_of_free_chunk(r, rsize); replace_dv(ms, r, rsize); } mem = chunk2mem(p); check_malloced_chunk(ms, mem, nb); goto postaction; } else if (ms->treemap != 0 && (mem = tmalloc_small(ms, nb)) != 0) { check_malloced_chunk(ms, mem, nb); goto postaction; } } } else if (bytes >= MAX_REQUEST) nb = MAX_SIZE_T; /* Too big to allocate. Force failure (in sys alloc) */ else { nb = pad_request(bytes); if (ms->treemap != 0 && (mem = tmalloc_large(ms, nb)) != 0) { check_malloced_chunk(ms, mem, nb); goto postaction; } } if (nb <= ms->dvsize) { size_t rsize = ms->dvsize - nb; mchunkptr p = ms->dv; if (rsize >= MIN_CHUNK_SIZE) { /* split dv */ mchunkptr r = ms->dv = chunk_plus_offset(p, nb); ms->dvsize = rsize; set_size_and_pinuse_of_free_chunk(r, rsize); set_size_and_pinuse_of_inuse_chunk(ms, p, nb); } else { /* exhaust dv */ size_t dvs = ms->dvsize; ms->dvsize = 0; ms->dv = 0; set_inuse_and_pinuse(ms, p, dvs); } mem = chunk2mem(p); check_malloced_chunk(ms, mem, nb); goto postaction; } else if (nb < ms->topsize) { /* Split top */ size_t rsize = ms->topsize -= nb; mchunkptr p = ms->top; mchunkptr r = ms->top = chunk_plus_offset(p, nb); r->head = rsize | PINUSE_BIT; set_size_and_pinuse_of_inuse_chunk(ms, p, nb); mem = chunk2mem(p); check_top_chunk(ms, ms->top); check_malloced_chunk(ms, mem, nb); goto postaction; } mem = sys_alloc(ms, nb); postaction: POSTACTION(ms); return mem; } return 0; } void mspace_free(mspace msp, void* mem) { if (mem != 0) { mchunkptr p = mem2chunk(mem); #if FOOTERS mstate fm = get_mstate_for(p); (void)msp; /* placate people compiling -Wunused */ #else /* FOOTERS */ mstate fm = (mstate)msp; #endif /* FOOTERS */ if (!ok_magic(fm)) { USAGE_ERROR_ACTION(fm, p); return; } if (!PREACTION(fm)) { check_inuse_chunk(fm, p); if (RTCHECK(ok_address(fm, p) && ok_inuse(p))) { size_t psize = chunksize(p); mchunkptr next = chunk_plus_offset(p, psize); if (!pinuse(p)) { size_t prevsize = p->prev_foot; if (is_mmapped(p)) { psize += prevsize + MMAP_FOOT_PAD; if (CALL_MUNMAP((char*)p - prevsize, psize) == 0) fm->footprint -= psize; goto postaction; } else { mchunkptr prev = chunk_minus_offset(p, prevsize); psize += prevsize; p = prev; if (RTCHECK(ok_address(fm, prev))) { /* consolidate backward */ if (p != fm->dv) { unlink_chunk(fm, p, prevsize); } else if ((next->head & INUSE_BITS) == INUSE_BITS) { fm->dvsize = psize; set_free_with_pinuse(p, psize, next); goto postaction; } } else goto erroraction; } } if (RTCHECK(ok_next(p, next) && ok_pinuse(next))) { if (!cinuse(next)) { /* consolidate forward */ if (next == fm->top) { size_t tsize = fm->topsize += psize; fm->top = p; p->head = tsize | PINUSE_BIT; if (p == fm->dv) { fm->dv = 0; fm->dvsize = 0; } if (should_trim(fm, tsize)) sys_trim(fm, 0); goto postaction; } else if (next == fm->dv) { size_t dsize = fm->dvsize += psize; fm->dv = p; set_size_and_pinuse_of_free_chunk(p, dsize); goto postaction; } else { size_t nsize = chunksize(next); psize += nsize; unlink_chunk(fm, next, nsize); set_size_and_pinuse_of_free_chunk(p, psize); if (p == fm->dv) { fm->dvsize = psize; goto postaction; } } } else set_free_with_pinuse(p, psize, next); if (is_small(psize)) { insert_small_chunk(fm, p, psize); check_free_chunk(fm, p); } else { tchunkptr tp = (tchunkptr)p; insert_large_chunk(fm, tp, psize); check_free_chunk(fm, p); if (--fm->release_checks == 0) release_unused_segments(fm); } goto postaction; } } erroraction: USAGE_ERROR_ACTION(fm, p); postaction: POSTACTION(fm); } } } void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size) { void* mem; size_t req = 0; mstate ms = (mstate)msp; if (!ok_magic(ms)) { USAGE_ERROR_ACTION(ms,ms); return 0; } if (n_elements != 0) { req = n_elements * elem_size; if (((n_elements | elem_size) & ~(size_t)0xffff) && (req / n_elements != elem_size)) req = MAX_SIZE_T; /* force downstream failure on overflow */ } mem = internal_malloc(ms, req); if (mem != 0 && calloc_must_clear(mem2chunk(mem))) memset(mem, 0, req); return mem; } void* mspace_realloc(mspace msp, void* oldmem, size_t bytes) { void* mem = 0; if (oldmem == 0) { mem = mspace_malloc(msp, bytes); } else if (bytes >= MAX_REQUEST) { MALLOC_FAILURE_ACTION; } #ifdef REALLOC_ZERO_BYTES_FREES else if (bytes == 0) { mspace_free(msp, oldmem); } #endif /* REALLOC_ZERO_BYTES_FREES */ else { size_t nb = request2size(bytes); mchunkptr oldp = mem2chunk(oldmem); #if ! FOOTERS mstate m = (mstate)msp; #else /* FOOTERS */ mstate m = get_mstate_for(oldp); if (!ok_magic(m)) { USAGE_ERROR_ACTION(m, oldmem); return 0; } #endif /* FOOTERS */ if (!PREACTION(m)) { mchunkptr newp = try_realloc_chunk(m, oldp, nb, 1); POSTACTION(m); if (newp != 0) { check_inuse_chunk(m, newp); mem = chunk2mem(newp); } else { mem = mspace_malloc(m, bytes); if (mem != 0) { size_t oc = chunksize(oldp) - overhead_for(oldp); memcpy(mem, oldmem, (oc < bytes)? oc : bytes); mspace_free(m, oldmem); } } } } return mem; } void* mspace_realloc_in_place(mspace msp, void* oldmem, size_t bytes) { void* mem = 0; if (oldmem != 0) { if (bytes >= MAX_REQUEST) { MALLOC_FAILURE_ACTION; } else { size_t nb = request2size(bytes); mchunkptr oldp = mem2chunk(oldmem); #if ! FOOTERS mstate m = (mstate)msp; #else /* FOOTERS */ mstate m = get_mstate_for(oldp); (void)msp; /* placate people compiling -Wunused */ if (!ok_magic(m)) { USAGE_ERROR_ACTION(m, oldmem); return 0; } #endif /* FOOTERS */ if (!PREACTION(m)) { mchunkptr newp = try_realloc_chunk(m, oldp, nb, 0); POSTACTION(m); if (newp == oldp) { check_inuse_chunk(m, newp); mem = oldmem; } } } } return mem; } void* mspace_memalign(mspace msp, size_t alignment, size_t bytes) { mstate ms = (mstate)msp; if (!ok_magic(ms)) { USAGE_ERROR_ACTION(ms,ms); return 0; } if (alignment <= MALLOC_ALIGNMENT) return mspace_malloc(msp, bytes); return internal_memalign(ms, alignment, bytes); } void** mspace_independent_calloc(mspace msp, size_t n_elements, size_t elem_size, void* chunks[]) { size_t sz = elem_size; /* serves as 1-element array */ mstate ms = (mstate)msp; if (!ok_magic(ms)) { USAGE_ERROR_ACTION(ms,ms); return 0; } return ialloc(ms, n_elements, &sz, 3, chunks); } void** mspace_independent_comalloc(mspace msp, size_t n_elements, size_t sizes[], void* chunks[]) { mstate ms = (mstate)msp; if (!ok_magic(ms)) { USAGE_ERROR_ACTION(ms,ms); return 0; } return ialloc(ms, n_elements, sizes, 0, chunks); } size_t mspace_bulk_free(mspace msp, void* array[], size_t nelem) { return internal_bulk_free((mstate)msp, array, nelem); } #if MALLOC_INSPECT_ALL void mspace_inspect_all(mspace msp, void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) { mstate ms = (mstate)msp; if (ok_magic(ms)) { if (!PREACTION(ms)) { internal_inspect_all(ms, handler, arg); POSTACTION(ms); } } else { USAGE_ERROR_ACTION(ms,ms); } } #endif /* MALLOC_INSPECT_ALL */ int mspace_trim(mspace msp, size_t pad) { int result = 0; mstate ms = (mstate)msp; if (ok_magic(ms)) { if (!PREACTION(ms)) { result = sys_trim(ms, pad); POSTACTION(ms); } } else { USAGE_ERROR_ACTION(ms,ms); } return result; } #if !NO_MALLOC_STATS void mspace_malloc_stats(mspace msp) { mstate ms = (mstate)msp; if (ok_magic(ms)) { internal_malloc_stats(ms); } else { USAGE_ERROR_ACTION(ms,ms); } } #endif /* NO_MALLOC_STATS */ size_t mspace_footprint(mspace msp) { size_t result = 0; mstate ms = (mstate)msp; if (ok_magic(ms)) { result = ms->footprint; } else { USAGE_ERROR_ACTION(ms,ms); } return result; } size_t mspace_max_footprint(mspace msp) { size_t result = 0; mstate ms = (mstate)msp; if (ok_magic(ms)) { result = ms->max_footprint; } else { USAGE_ERROR_ACTION(ms,ms); } return result; } size_t mspace_footprint_limit(mspace msp) { size_t result = 0; mstate ms = (mstate)msp; if (ok_magic(ms)) { size_t maf = ms->footprint_limit; result = (maf == 0) ? MAX_SIZE_T : maf; } else { USAGE_ERROR_ACTION(ms,ms); } return result; } size_t mspace_set_footprint_limit(mspace msp, size_t bytes) { size_t result = 0; mstate ms = (mstate)msp; if (ok_magic(ms)) { if (bytes == 0) result = granularity_align(1); /* Use minimal size */ if (bytes == MAX_SIZE_T) result = 0; /* disable */ else result = granularity_align(bytes); ms->footprint_limit = result; } else { USAGE_ERROR_ACTION(ms,ms); } return result; } #if !NO_MALLINFO struct mallinfo mspace_mallinfo(mspace msp) { mstate ms = (mstate)msp; if (!ok_magic(ms)) { USAGE_ERROR_ACTION(ms,ms); } return internal_mallinfo(ms); } #endif /* NO_MALLINFO */ size_t mspace_usable_size(const void* mem) { if (mem != 0) { mchunkptr p = mem2chunk(mem); if (is_inuse(p)) return chunksize(p) - overhead_for(p); } return 0; } int mspace_mallopt(int param_number, int value) { return change_mparam(param_number, value); } #endif /* MSPACES */ // Export malloc and free as duplicate names emscripten_builtin_malloc and // emscripten_builtin_free so that applications can replace malloc and free // in their code, and make those replacements refer to the original dlmalloc // and dlfree from this file. // This allows an easy mechanism for hooking into memory allocation. #if defined(__EMSCRIPTEN__) && !ONLY_MSPACES extern __typeof(malloc) emscripten_builtin_malloc __attribute__((alias("dlmalloc"))); extern __typeof(free) emscripten_builtin_free __attribute__((alias("dlfree"))); extern __typeof(memalign) emscripten_builtin_memalign __attribute__((alias("dlmemalign"))); #endif /* -------------------- Alternative MORECORE functions ------------------- */ /* Guidelines for creating a custom version of MORECORE: * For best performance, MORECORE should allocate in multiples of pagesize. * MORECORE may allocate more memory than requested. (Or even less, but this will usually result in a malloc failure.) * MORECORE must not allocate memory when given argument zero, but instead return one past the end address of memory from previous nonzero call. * For best performance, consecutive calls to MORECORE with positive arguments should return increasing addresses, indicating that space has been contiguously extended. * Even though consecutive calls to MORECORE need not return contiguous addresses, it must be OK for malloc'ed chunks to span multiple regions in those cases where they do happen to be contiguous. * MORECORE need not handle negative arguments -- it may instead just return MFAIL when given negative arguments. Negative arguments are always multiples of pagesize. MORECORE must not misinterpret negative args as large positive unsigned args. You can suppress all such calls from even occurring by defining MORECORE_CANNOT_TRIM, As an example alternative MORECORE, here is a custom allocator kindly contributed for pre-OSX macOS. It uses virtually but not necessarily physically contiguous non-paged memory (locked in, present and won't get swapped out). You can use it by uncommenting this section, adding some #includes, and setting up the appropriate defines above: #define MORECORE osMoreCore There is also a shutdown routine that should somehow be called for cleanup upon program exit. #define MAX_POOL_ENTRIES 100 #define MINIMUM_MORECORE_SIZE (64 * 1024U) static int next_os_pool; void *our_os_pools[MAX_POOL_ENTRIES]; void *osMoreCore(int size) { void *ptr = 0; static void *sbrk_top = 0; if (size > 0) { if (size < MINIMUM_MORECORE_SIZE) size = MINIMUM_MORECORE_SIZE; if (CurrentExecutionLevel() == kTaskLevel) ptr = PoolAllocateResident(size + RM_PAGE_SIZE, 0); if (ptr == 0) { return (void *) MFAIL; } // save ptrs so they can be freed during cleanup our_os_pools[next_os_pool] = ptr; next_os_pool++; ptr = (void *) ((((size_t) ptr) + RM_PAGE_MASK) & ~RM_PAGE_MASK); sbrk_top = (char *) ptr + size; return ptr; } else if (size < 0) { // we don't currently support shrink behavior return (void *) MFAIL; } else { return sbrk_top; } } // cleanup any allocated memory pools // called as last thing before shutting down driver void osCleanupMem(void) { void **ptr; for (ptr = our_os_pools; ptr < &our_os_pools[MAX_POOL_ENTRIES]; ptr++) if (*ptr) { PoolDeallocate(*ptr); *ptr = 0; } } */ /* ----------------------------------------------------------------------- History: v2.8.6 Wed Aug 29 06:57:58 2012 Doug Lea * fix bad comparison in dlposix_memalign * don't reuse adjusted asize in sys_alloc * add LOCK_AT_FORK -- thanks to Kirill Artamonov for the suggestion * reduce compiler warnings -- thanks to all who reported/suggested these v2.8.5 Sun May 22 10:26:02 2011 Doug Lea (dl at gee) * Always perform unlink checks unless INSECURE * Add posix_memalign. * Improve realloc to expand in more cases; expose realloc_in_place. Thanks to Peter Buhr for the suggestion. * Add footprint_limit, inspect_all, bulk_free. Thanks to Barry Hayes and others for the suggestions. * Internal refactorings to avoid calls while holding locks * Use non-reentrant locks by default. Thanks to Roland McGrath for the suggestion. * Small fixes to mspace_destroy, reset_on_error. * Various configuration extensions/changes. Thanks to all who contributed these. V2.8.4a Thu Apr 28 14:39:43 2011 (dl at gee.cs.oswego.edu) * Update Creative Commons URL V2.8.4 Wed May 27 09:56:23 2009 Doug Lea (dl at gee) * Use zeros instead of prev foot for is_mmapped * Add mspace_track_large_chunks; thanks to Jean Brouwers * Fix set_inuse in internal_realloc; thanks to Jean Brouwers * Fix insufficient sys_alloc padding when using 16byte alignment * Fix bad error check in mspace_footprint * Adaptations for ptmalloc; thanks to Wolfram Gloger. * Reentrant spin locks; thanks to Earl Chew and others * Win32 improvements; thanks to Niall Douglas and Earl Chew * Add NO_SEGMENT_TRAVERSAL and MAX_RELEASE_CHECK_RATE options * Extension hook in malloc_state * Various small adjustments to reduce warnings on some compilers * Various configuration extensions/changes for more platforms. Thanks to all who contributed these. V2.8.3 Thu Sep 22 11:16:32 2005 Doug Lea (dl at gee) * Add max_footprint functions * Ensure all appropriate literals are size_t * Fix conditional compilation problem for some #define settings * Avoid concatenating segments with the one provided in create_mspace_with_base * Rename some variables to avoid compiler shadowing warnings * Use explicit lock initialization. * Better handling of sbrk interference. * Simplify and fix segment insertion, trimming and mspace_destroy * Reinstate REALLOC_ZERO_BYTES_FREES option from 2.7.x * Thanks especially to Dennis Flanagan for help on these. V2.8.2 Sun Jun 12 16:01:10 2005 Doug Lea (dl at gee) * Fix memalign brace error. V2.8.1 Wed Jun 8 16:11:46 2005 Doug Lea (dl at gee) * Fix improper #endif nesting in C++ * Add explicit casts needed for C++ V2.8.0 Mon May 30 14:09:02 2005 Doug Lea (dl at gee) * Use trees for large bins * Support mspaces * Use segments to unify sbrk-based and mmap-based system allocation, removing need for emulation on most platforms without sbrk. * Default safety checks * Optional footer checks. Thanks to William Robertson for the idea. * Internal code refactoring * Incorporate suggestions and platform-specific changes. Thanks to Dennis Flanagan, Colin Plumb, Niall Douglas, Aaron Bachmann, Emery Berger, and others. * Speed up non-fastbin processing enough to remove fastbins. * Remove useless cfree() to avoid conflicts with other apps. * Remove internal memcpy, memset. Compilers handle builtins better. * Remove some options that no one ever used and rename others. V2.7.2 Sat Aug 17 09:07:30 2002 Doug Lea (dl at gee) * Fix malloc_state bitmap array misdeclaration V2.7.1 Thu Jul 25 10:58:03 2002 Doug Lea (dl at gee) * Allow tuning of FIRST_SORTED_BIN_SIZE * Use PTR_UINT as type for all ptr->int casts. Thanks to John Belmonte. * Better detection and support for non-contiguousness of MORECORE. Thanks to Andreas Mueller, Conal Walsh, and Wolfram Gloger * Bypass most of malloc if no frees. Thanks To Emery Berger. * Fix freeing of old top non-contiguous chunk im sysmalloc. * Raised default trim and map thresholds to 256K. * Fix mmap-related #defines. Thanks to Lubos Lunak. * Fix copy macros; added LACKS_FCNTL_H. Thanks to Neal Walfield. * Branch-free bin calculation * Default trim and mmap thresholds now 256K. V2.7.0 Sun Mar 11 14:14:06 2001 Doug Lea (dl at gee) * Introduce independent_comalloc and independent_calloc. Thanks to Michael Pachos for motivation and help. * Make optional .h file available * Allow > 2GB requests on 32bit systems. * new WIN32 sbrk, mmap, munmap, lock code from <[email protected]>. Thanks also to Andreas Mueller <a.mueller at paradatec.de>, and Anonymous. * Allow override of MALLOC_ALIGNMENT (Thanks to Ruud Waij for helping test this.) * memalign: check alignment arg * realloc: don't try to shift chunks backwards, since this leads to more fragmentation in some programs and doesn't seem to help in any others. * Collect all cases in malloc requiring system memory into sysmalloc * Use mmap as backup to sbrk * Place all internal state in malloc_state * Introduce fastbins (although similar to 2.5.1) * Many minor tunings and cosmetic improvements * Introduce USE_PUBLIC_MALLOC_WRAPPERS, USE_MALLOC_LOCK * Introduce MALLOC_FAILURE_ACTION, MORECORE_CONTIGUOUS Thanks to Tony E. Bennett <[email protected]> and others. * Include errno.h to support default failure action. V2.6.6 Sun Dec 5 07:42:19 1999 Doug Lea (dl at gee) * return null for negative arguments * Added Several WIN32 cleanups from Martin C. Fong <mcfong at yahoo.com> * Add 'LACKS_SYS_PARAM_H' for those systems without 'sys/param.h' (e.g. WIN32 platforms) * Cleanup header file inclusion for WIN32 platforms * Cleanup code to avoid Microsoft Visual C++ compiler complaints * Add 'USE_DL_PREFIX' to quickly allow co-existence with existing memory allocation routines * Set 'malloc_getpagesize' for WIN32 platforms (needs more work) * Use 'assert' rather than 'ASSERT' in WIN32 code to conform to usage of 'assert' in non-WIN32 code * Improve WIN32 'sbrk()' emulation's 'findRegion()' routine to avoid infinite loop * Always call 'fREe()' rather than 'free()' V2.6.5 Wed Jun 17 15:57:31 1998 Doug Lea (dl at gee) * Fixed ordering problem with boundary-stamping V2.6.3 Sun May 19 08:17:58 1996 Doug Lea (dl at gee) * Added pvalloc, as recommended by H.J. Liu * Added 64bit pointer support mainly from Wolfram Gloger * Added anonymously donated WIN32 sbrk emulation * Malloc, calloc, getpagesize: add optimizations from Raymond Nijssen * malloc_extend_top: fix mask error that caused wastage after foreign sbrks * Add linux mremap support code from HJ Liu V2.6.2 Tue Dec 5 06:52:55 1995 Doug Lea (dl at gee) * Integrated most documentation with the code. * Add support for mmap, with help from Wolfram Gloger ([email protected]). * Use last_remainder in more cases. * Pack bins using idea from [email protected] * Use ordered bins instead of best-fit threshhold * Eliminate block-local decls to simplify tracing and debugging. * Support another case of realloc via move into top * Fix error occuring when initial sbrk_base not word-aligned. * Rely on page size for units instead of SBRK_UNIT to avoid surprises about sbrk alignment conventions. * Add mallinfo, mallopt. Thanks to Raymond Nijssen ([email protected]) for the suggestion. * Add `pad' argument to malloc_trim and top_pad mallopt parameter. * More precautions for cases where other routines call sbrk, courtesy of Wolfram Gloger ([email protected]). * Added macros etc., allowing use in linux libc from H.J. Lu ([email protected]) * Inverted this history list V2.6.1 Sat Dec 2 14:10:57 1995 Doug Lea (dl at gee) * Re-tuned and fixed to behave more nicely with V2.6.0 changes. * Removed all preallocation code since under current scheme the work required to undo bad preallocations exceeds the work saved in good cases for most test programs. * No longer use return list or unconsolidated bins since no scheme using them consistently outperforms those that don't given above changes. * Use best fit for very large chunks to prevent some worst-cases. * Added some support for debugging V2.6.0 Sat Nov 4 07:05:23 1995 Doug Lea (dl at gee) * Removed footers when chunks are in use. Thanks to Paul Wilson ([email protected]) for the suggestion. V2.5.4 Wed Nov 1 07:54:51 1995 Doug Lea (dl at gee) * Added malloc_trim, with help from Wolfram Gloger ([email protected]). V2.5.3 Tue Apr 26 10:16:01 1994 Doug Lea (dl at g) V2.5.2 Tue Apr 5 16:20:40 1994 Doug Lea (dl at g) * realloc: try to expand in both directions * malloc: swap order of clean-bin strategy; * realloc: only conditionally expand backwards * Try not to scavenge used bins * Use bin counts as a guide to preallocation * Occasionally bin return list chunks in first scan * Add a few optimizations from [email protected] V2.5.1 Sat Aug 14 15:40:43 1993 Doug Lea (dl at g) * faster bin computation & slightly different binning * merged all consolidations to one part of malloc proper (eliminating old malloc_find_space & malloc_clean_bin) * Scan 2 returns chunks (not just 1) * Propagate failure in realloc if malloc returns 0 * Add stuff to allow compilation on non-ANSI compilers from [email protected] V2.5 Sat Aug 7 07:41:59 1993 Doug Lea (dl at g.oswego.edu) * removed potential for odd address access in prev_chunk * removed dependency on getpagesize.h * misc cosmetics and a bit more internal documentation * anticosmetics: mangled names in macros to evade debugger strangeness * tested on sparc, hp-700, dec-mips, rs6000 with gcc & native cc (hp, dec only) allowing Detlefs & Zorn comparison study (in SIGPLAN Notices.) Trial version Fri Aug 28 13:14:29 1992 Doug Lea (dl at g.oswego.edu) * Based loosely on libg++-1.2X malloc. (It retains some of the overall structure of old version, but most details differ.) */
the_stack_data/768675.c
#include <linux/bpf.h> #define SEC(NAME) __attribute__((section(NAME), used)) SEC("prog") int xdp_drop(struct xdp_md *ctx) { return XDP_DROP; } char __license[] SEC("license") = "GPL";
the_stack_data/165764597.c
double snippet(double a, double b) { if (b >= 0){ a = -a;//change:inserted if (a >= 0) return a; else return 0;//change } else { if (a >= 0 && b>=0) //change: unsafisfiable condition return -a; else return a; } }
the_stack_data/90766911.c
/* * EAP peer method: EAP-MSCHAPV2 (draft-kamath-pppext-eap-mschapv2-00.txt) * Copyright (c) 2004-2008, 2012, Jouni Malinen <[email protected]> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifdef EAP_MSCHAPv2 #include "wpa/wpa.h" #include "wpa/includes.h" #include "wpa/common.h" #include "crypto/random.h" #include "crypto/ms_funcs.h" #include "wpa2/tls/tls.h" #include "wpa2/eap_peer/eap_i.h" #include "wpa2/eap_peer/eap_defs.h" #include "wpa2/eap_peer/eap_tls_common.h" #include "wpa2/eap_peer/eap_config.h" #include "wpa2/eap_peer/mschapv2.h" #include "wpa2/eap_peer/eap_methods.h" #ifdef MEMLEAK_DEBUG static const char mem_debug_file[] ICACHE_RODATA_ATTR = __FILE__; #endif #define MSCHAPV2_OP_CHALLENGE 1 #define MSCHAPV2_OP_RESPONSE 2 #define MSCHAPV2_OP_SUCCESS 3 #define MSCHAPV2_OP_FAILURE 4 #define MSCHAPV2_OP_CHANGE_PASSWORD 7 #define PASSWD_CHANGE_CHAL_LEN 16 #define MSCHAPV2_KEY_LEN 16 #define ERROR_RESTRICTED_LOGON_HOURS 646 #define ERROR_ACCT_DISABLED 647 #define ERROR_PASSWD_EXPIRED 648 #define ERROR_NO_DIALIN_PERMISSION 649 #define ERROR_AUTHENTICATION_FAILURE 691 #define ERROR_CHANGING_PASSWORD 709 struct eap_mschapv2_hdr { u8 op_code; u8 mschapv2_id; u8 ms_length[2]; } __packed; struct ms_response { u8 peer_challenge[MSCHAPV2_CHAL_LEN]; u8 reserved[8]; u8 nt_response[MSCHAPV2_NT_RESPONSE_LEN]; u8 flags; } __packed; struct ms_change_password { u8 encr_password[516]; u8 encr_hash[16]; u8 peer_challenge[MSCHAPV2_CHAL_LEN]; u8 reserved[8]; u8 nt_response[MSCHAPV2_NT_RESPONSE_LEN]; u8 flags[2]; } __packed; struct eap_mschapv2_data { u8 auth_response[MSCHAPV2_AUTH_RESPONSE_LEN]; int auth_response_valid; int prev_error; u8 passwd_change_challenge[PASSWD_CHANGE_CHAL_LEN]; int passwd_change_challenge_valid; int passwd_change_version; u8* peer_challenge; u8* auth_challenge; int phase2; u8 master_key[MSCHAPV2_MASTER_KEY_LEN]; int master_key_valid; int success; struct wpabuf* prev_challenge; }; static void eap_mschapv2_deinit(struct eap_sm* sm, void* priv) { struct eap_mschapv2_data* data = priv; os_free(data->peer_challenge); os_free(data->auth_challenge); wpabuf_free(data->prev_challenge); os_free(data); } static void* eap_mschapv2_init(struct eap_sm* sm) { struct eap_mschapv2_data* data; //Do not init insecure unencapsulated MSCHAPv2 as Phase 1 method, only init if Phase 2 if (!sm->init_phase2) { return NULL; } data = (struct eap_mschapv2_data*)os_zalloc(sizeof(*data)); if (data == NULL) { return NULL; } data->phase2 = sm->init_phase2; return data; } static struct wpabuf* eap_mschapv2_challenge_reply( struct eap_sm* sm, struct eap_mschapv2_data* data, u8 id, u8 mschapv2_id, const u8* auth_challenge) { struct wpabuf* resp; struct eap_mschapv2_hdr* ms; u8* peer_challenge; int ms_len; struct ms_response* r; size_t identity_len, password_len; const u8* identity, *password; int pwhash; wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: Generate Challenge Response\n"); identity = eap_get_config_identity(sm, &identity_len); password = eap_get_config_password2(sm, &password_len, &pwhash); if (identity == NULL || password == NULL) { return NULL; } ms_len = sizeof(*ms) + 1 + sizeof(*r) + identity_len; resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, ms_len, EAP_CODE_RESPONSE, id); if (resp == NULL) { return NULL; } ms = wpabuf_put(resp, sizeof(*ms)); ms->op_code = MSCHAPV2_OP_RESPONSE; ms->mschapv2_id = mschapv2_id; if (data->prev_error) { ms->mschapv2_id++; } WPA_PUT_BE16(ms->ms_length, ms_len); wpabuf_put_u8(resp, sizeof(*r)); /* Response */ r = wpabuf_put(resp, sizeof(*r)); peer_challenge = r->peer_challenge; if (data->peer_challenge) { peer_challenge = data->peer_challenge; os_memset(r->peer_challenge, 0, MSCHAPV2_CHAL_LEN); } else if (random_get_bytes(peer_challenge, MSCHAPV2_CHAL_LEN)) { wpabuf_free(resp); return NULL; } os_memset(r->reserved, 0, 8); if (data->auth_challenge) { auth_challenge = data->auth_challenge; } if (mschapv2_derive_response(identity, identity_len, password, password_len, pwhash, auth_challenge, peer_challenge, r->nt_response, data->auth_response, data->master_key)) { wpabuf_free(resp); return NULL; } data->auth_response_valid = 1; data->master_key_valid = 1; r->flags = 0; wpabuf_put_data(resp, identity, identity_len); return resp; } static struct wpabuf* eap_mschapv2_challenge( struct eap_sm* sm, struct eap_mschapv2_data* data, struct eap_method_ret* ret, const struct eap_mschapv2_hdr* req, size_t req_len, u8 id) { size_t len, challenge_len; const u8* pos, *challenge; if (eap_get_config_identity(sm, &len) == NULL || eap_get_config_password(sm, &len) == NULL) { return NULL; } if (req_len < sizeof(*req) + 1) { ret->ignore = true; return NULL; } pos = (const u8*)(req + 1); challenge_len = *pos++; len = req_len - sizeof(*req) - 1; if (challenge_len != MSCHAPV2_CHAL_LEN) { ret->ignore = true; return NULL; } if (len < challenge_len) { ret->ignore = true; return NULL; } if (data->passwd_change_challenge_valid) { challenge = data->passwd_change_challenge; } else { challenge = pos; } pos += challenge_len; len -= challenge_len; ret->ignore = false; ret->methodState = METHOD_MAY_CONT; ret->decision = DECISION_FAIL; ret->allowNotifications = true; return eap_mschapv2_challenge_reply(sm, data, id, req->mschapv2_id, challenge); } static void eap_mschapv2_password_changed(struct eap_sm* sm, struct eap_mschapv2_data* data) { struct eap_peer_config* config = eap_get_config(sm); if (config && config->new_password) { data->prev_error = 0; os_free(config->password); if (config->flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) { } else if (config->flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH) { config->password = os_malloc(16); config->password_len = 16; if (config->password) { nt_password_hash(config->new_password, config->new_password_len, config->password); } os_free(config->new_password); } else { config->password = config->new_password; config->password_len = config->new_password_len; } config->new_password = NULL; config->new_password_len = 0; } } static struct wpabuf* eap_mschapv2_success(struct eap_sm* sm, struct eap_mschapv2_data* data, struct eap_method_ret* ret, const struct eap_mschapv2_hdr* req, size_t req_len, u8 id) { struct wpabuf* resp; const u8* pos; size_t len; len = req_len - sizeof(*req); pos = (const u8*)(req + 1); if (!data->auth_response_valid || mschapv2_verify_auth_response(data->auth_response, pos, len)) { ret->methodState = METHOD_NONE; ret->decision = DECISION_FAIL; return NULL; } pos += 2 + 2 * MSCHAPV2_AUTH_RESPONSE_LEN; len -= 2 + 2 * MSCHAPV2_AUTH_RESPONSE_LEN; while (len > 0 && *pos == ' ') { pos++; len--; } resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, 1, EAP_CODE_RESPONSE, id); if (resp == NULL) { ret->ignore = true; return NULL; } wpabuf_put_u8(resp, MSCHAPV2_OP_SUCCESS); ret->methodState = METHOD_DONE; ret->decision = DECISION_UNCOND_SUCC; ret->allowNotifications = false; data->success = 1; if (data->prev_error == ERROR_PASSWD_EXPIRED) { eap_mschapv2_password_changed(sm, data); } return resp; } static int eap_mschapv2_failure_txt(struct eap_sm* sm, struct eap_mschapv2_data* data, char* txt) { char* pos; int retry = 1; struct eap_peer_config* config = eap_get_config(sm); pos = txt; if (pos && os_strncmp(pos, "E=", 2) == 0) { pos += 2; data->prev_error = atoi(pos); pos = (char*)os_strchr(pos, ' '); if (pos) { pos++; } } if (pos && os_strncmp(pos, "R=", 2) == 0) { pos += 2; retry = atoi(pos); pos = (char*)os_strchr(pos, ' '); if (pos) { pos++; } } if (pos && os_strncmp(pos, "C=", 2) == 0) { int hex_len; pos += 2; hex_len = (char*)os_strchr(pos, ' ') - (char*)pos; if (hex_len == PASSWD_CHANGE_CHAL_LEN * 2) { if (hexstr2bin(pos, data->passwd_change_challenge, PASSWD_CHANGE_CHAL_LEN)) { wpa_printf(MSG_ERROR, "EAP-MSCHAPV2: invalid failure challenge\n"); } else { data->passwd_change_challenge_valid = 1; } } else { wpa_printf(MSG_ERROR, "EAP-MSCHAPV2: required challenge field " "was not present in failure message\n"); } } if (pos && os_strncmp(pos, "V=", 2) == 0) { pos += 2; data->passwd_change_version = atoi(pos); pos = (char*)os_strchr(pos, ' '); if (pos) { pos++; } } if (pos && os_strncmp(pos, "M=", 2) == 0) { pos += 2; } #if 0 wpa_printf(MSG_WARNING, "EAP-MSCHAPV2: failure message: '%s' (retry %sallowed, error %d)", msg, retry == 1 ? "" : "not ", data->prev_error); #endif if (data->prev_error == ERROR_PASSWD_EXPIRED && data->passwd_change_version == 3 && config) { if (config->new_password == NULL) { wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: Password expired - " "password change reqired\n"); //eap_sm_request_new_password(sm); } } else if (retry == 1 && config) { if (!config->mschapv2_retry) //eap_sm_request_identity(sm); //eap_sm_request_password(sm); { config->mschapv2_retry = 1; } } else if (config) { config->mschapv2_retry = 0; } return retry == 1; } static struct wpabuf* eap_mschapv2_change_password( struct eap_sm* sm, struct eap_mschapv2_data* data, struct eap_method_ret* ret, const struct eap_mschapv2_hdr* req, u8 id) { struct wpabuf* resp; int ms_len; const u8* username, *password, *new_password; size_t username_len, password_len, new_password_len; struct eap_mschapv2_hdr* ms; struct ms_change_password* cp; u8 password_hash[16], password_hash_hash[16]; int pwhash; username = eap_get_config_identity(sm, &username_len); password = eap_get_config_password2(sm, &password_len, &pwhash); new_password = eap_get_config_new_password(sm, &new_password_len); if (username == NULL || password == NULL || new_password == NULL) { return NULL; } username = mschapv2_remove_domain(username, &username_len); ret->ignore = false; ret->methodState = METHOD_MAY_CONT; ret->decision = DECISION_COND_SUCC; ret->allowNotifications = TRUE; ms_len = sizeof(*ms) + sizeof(*cp); resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, ms_len, EAP_CODE_RESPONSE, id); if (resp == NULL) { return NULL; } ms = wpabuf_put(resp, sizeof(*ms)); ms->op_code = MSCHAPV2_OP_CHANGE_PASSWORD; ms->mschapv2_id = req->mschapv2_id + 1; WPA_PUT_BE16(ms->ms_length, ms_len); cp = wpabuf_put(resp, sizeof(*cp)); if (pwhash) { if (encrypt_pw_block_with_password_hash( new_password, new_password_len, password, cp->encr_password)) { goto fail; } } else { if (new_password_encrypted_with_old_nt_password_hash( new_password, new_password_len, password, password_len, cp->encr_password)) { goto fail; } } if (pwhash) { u8 new_password_hash[16]; nt_password_hash(new_password, new_password_len, new_password_hash); nt_password_hash_encrypted_with_block(password, new_password_hash, cp->encr_hash); } else { old_nt_password_hash_encrypted_with_new_nt_password_hash( new_password, new_password_len, password, password_len, cp->encr_hash); } if (random_get_bytes(cp->peer_challenge, MSCHAPV2_CHAL_LEN)) { goto fail; } os_memset(cp->reserved, 0, 8); generate_nt_response(data->passwd_change_challenge, cp->peer_challenge, username, username_len, new_password, new_password_len, cp->nt_response); generate_authenticator_response(new_password, new_password_len, cp->peer_challenge, data->passwd_change_challenge, username, username_len, cp->nt_response, data->auth_response); data->auth_response_valid = 1; nt_password_hash(new_password, new_password_len, password_hash); hash_nt_password_hash(password_hash, password_hash_hash); get_master_key(password_hash_hash, cp->nt_response, data->master_key); data->master_key_valid = 1; os_memset(cp->flags, 0, 2); return resp; fail: wpabuf_free(resp); return NULL; } static struct wpabuf* eap_mschapv2_failure(struct eap_sm* sm, struct eap_mschapv2_data* data, struct eap_method_ret* ret, const struct eap_mschapv2_hdr* req, size_t req_len, u8 id) { struct wpabuf* resp; const u8* msdata = (const u8*)(req + 1); char* buf; size_t len = req_len - sizeof(*req); int retry = 0; buf = (char*)dup_binstr(msdata, len); if (buf) { retry = eap_mschapv2_failure_txt(sm, data, buf); os_free(buf); } ret->ignore = false; ret->methodState = METHOD_DONE; ret->decision = DECISION_FAIL; ret->allowNotifications = false; if (data->prev_error == ERROR_PASSWD_EXPIRED && data->passwd_change_version == 3) { struct eap_peer_config* config = eap_get_config(sm); if (config && config->new_password) return eap_mschapv2_change_password(sm, data, ret, req, id); //if (config && config->pending_req_new_password) // return NULL; } else if (retry && data->prev_error == ERROR_AUTHENTICATION_FAILURE) { return NULL; } resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, 1, EAP_CODE_RESPONSE, id); if (resp == NULL) { return NULL; } wpabuf_put_u8(resp, MSCHAPV2_OP_FAILURE); return resp; } static int eap_mschapv2_check_config(struct eap_sm* sm) { struct eap_peer_config* config = eap_get_config(sm); if (config == NULL) { return -1; } if (config->identity == NULL || config->identity_len == 0) { wpa_printf(MSG_ERROR, "EAP-MSCHAPV2: idetity not configured\n"); return -1; } if (config->password == NULL || config->password_len == 0) { wpa_printf(MSG_ERROR, "EAP-MSCHAPV2: Password not configured\n"); return -1; } return 0; } static int eap_mschapv2_check_mslen(struct eap_sm* sm, size_t len, const struct eap_mschapv2_hdr* ms) { size_t ms_len = WPA_GET_BE16(ms->ms_length); if (ms_len == len) { return 0; } if (sm->workaround) { wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: Workaround, ignore Invalid" " header len=%lu ms_len=%lu\n", (unsigned long)len, (unsigned long)ms_len); return 0; } wpa_printf(MSG_ERROR, "EAP-MSCHAPV2: Invalid header len=%lu ms_len=%lu\n", (unsigned long)len, (unsigned long)ms_len); return -1; } static void eap_mschapv2_copy_challenge(struct eap_mschapv2_data* data, const struct wpabuf* reqData) { wpabuf_free(data->prev_challenge); data->prev_challenge = wpabuf_dup(reqData); } static struct wpabuf* eap_mschapv2_process(struct eap_sm* sm, void* priv, struct eap_method_ret* ret, const struct wpabuf* reqData) { u8 id; size_t len; const u8* pos; int using_prev_challenge = 0; const struct eap_mschapv2_hdr* ms; struct eap_mschapv2_data* data = priv; struct eap_peer_config* config = eap_get_config(sm); if (eap_mschapv2_check_config(sm)) { ret->ignore = true; return NULL; } if (config->mschapv2_retry && data->prev_challenge && data->prev_error == ERROR_AUTHENTICATION_FAILURE) { reqData = data->prev_challenge; using_prev_challenge = 1; config->mschapv2_retry = 0; } pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, reqData, &len); if (pos == NULL || len < sizeof(*ms) + 1) { ret->ignore = true; return NULL; } ms = (const struct eap_mschapv2_hdr*)pos; if (eap_mschapv2_check_mslen(sm, len, ms)) { ret->ignore = true; return NULL; } id = eap_get_id(reqData); wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: RX identifier %d mschapv2_id %d\n", id, ms->mschapv2_id); switch (ms->op_code) { case MSCHAPV2_OP_CHALLENGE: if (!using_prev_challenge) { eap_mschapv2_copy_challenge(data, reqData); } return eap_mschapv2_challenge(sm, data, ret, ms, len, id); case MSCHAPV2_OP_SUCCESS: return eap_mschapv2_success(sm, data, ret, ms, len, id); case MSCHAPV2_OP_FAILURE: return eap_mschapv2_failure(sm, data, ret, ms, len, id); default: wpa_printf(MSG_ERROR, "EAP-MSCHAPV2: Unknow op code %d -ignored\n", ms->op_code); return NULL; } } static bool eap_mschapv2_isKeyAvailable(struct eap_sm* sm, void* priv) { struct eap_mschapv2_data* data = priv; return data->success && data->master_key_valid; } static u8* eap_mschapv2_getKey(struct eap_sm* sm, void* priv, size_t* len) { struct eap_mschapv2_data* data = priv; u8* key; int key_len; if (!data->master_key_valid || !data->success) { return NULL; } key_len = 2 * MSCHAPV2_KEY_LEN; key = os_malloc(key_len); /* MSK = server MS-MPPE-Recv-Key | MS-MPPE-Send-Key, * peer MS-MPPE-Send-Key | MS-MPPE-Recv-Key */ get_asymetric_start_key(data->master_key, key, MSCHAPV2_KEY_LEN, 1, 0); get_asymetric_start_key(data->master_key, key + MSCHAPV2_KEY_LEN, MSCHAPV2_KEY_LEN, 0, 0); *len = key_len; return key; } int eap_peer_mschapv2_register(void) { struct eap_method* eap; int ret; eap = eap_peer_method_alloc(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, "MSCHAPV2"); if (eap == NULL) { return -1; } eap->init = eap_mschapv2_init; eap->deinit = eap_mschapv2_deinit; eap->process = eap_mschapv2_process; eap->isKeyAvailable = eap_mschapv2_isKeyAvailable; eap->getKey = eap_mschapv2_getKey; ret = eap_peer_method_register(eap); if (ret) { eap_peer_method_free(eap); } return ret; } #endif /* EAP_MSCHAPv2 */
the_stack_data/184518833.c
#include <stdio.h> #include <stdbool.h> #include <stdlib.h> #include <pthread.h> #include <time.h> #include <unistd.h> #include <errno.h> int PSLY_Record_IDXNUM = 16; int PSLY_Record_IDXBIT = ((1 << 16) - 1); int PSLY_Record_ARRAYNUM_MAX = (1 << 4); int PSLY_Record_ARRAYNUM = (1 << 2); int PSLY_Record_ARRAYBITS = ((1 << 4) -1); int PSLY_Record_ARRBIT = (((1 << 4) - 1) << 16); int PSLY_Record_ARRBITR = ((1 << 4) - 1); int PSLY_Record_ARRIDXBIT = ((((1 << 4) - 1) << 16) | ((1 << 16) - 1)); int PSLY_Record_NEXTIDXNUM = 16; int PSLY_Record_NEXTIDXBIT = ((1 << 16) - 1); int PSLY_Record_NEXTTAILNUM = 1; int PSLY_Record_NEXTTAILBIT = (((1 << 1) - 1) << 16); int PSLY_Record_NEXTVERSIONNUM = (32 - 1 - 16); int PSLY_Record_NEXTVERSIONBIT = ((~0)^((((1 << 1) - 1) << 16) | ((1 << 16) - 1))); int PSLY_Record_NEXTVERSIONONE = (1 + ((((1 << 1) - 1) << 16) | ((1 << 16) - 1))); int PSLY_Record_TAILIDXNUM = 16; int PSLY_Record_TAILIDXBIT = ((1 << 16) - 1); int PSLY_Record_TAILVERSIONNUM = (32 - 16); int PSLY_Record_TAILVERSIONBIT = ((~0) ^ ((1 << 16) - 1)); int PSLY_Record_TAILVERSIONONE = (1 + ((1 << 16) - 1)); int PSLY_Record_HEADIDXNUM = 16; int PSLY_Record_HEADIDXBIT = ((1 << 16) - 1); int PSLY_Record_HEADVERSIONNUM = (32 - 16); int PSLY_Record_HEADVERSIONBIT = ((~0) ^ ((1 << 16) - 1)); int PSLY_Record_HEADVERSIONONE = (1 + ((1 << 16) - 1)); typedef struct Record { int volatile next __attribute__((aligned(128))); int self ; long volatile nextRecord __attribute__((aligned(128))); void* volatile pointer ; } Record __attribute__((aligned(128))); typedef struct RecordQueue { int volatile head ; int volatile tail ; } RecordQueue ; static Record* volatile psly_Records[1 << 4]; static RecordQueue volatile psly_Record_queues[1 << 4]; static long volatile recordTake = 0; Record* idx_Record(int index) { return psly_Records[(index & PSLY_Record_ARRBIT) >> PSLY_Record_IDXNUM] + (index & PSLY_Record_IDXBIT); } Record* get_Record() { for(;;) { int localArrayNum = PSLY_Record_ARRAYNUM; int array = localArrayNum - 1; RecordQueue* queue = psly_Record_queues + array; Record* arr = psly_Records[array]; for(;;){ int headIndex = (queue->head); int indexHead = headIndex & PSLY_Record_HEADIDXBIT; Record* head = arr + indexHead; int tailIndex = (queue->tail); int indexTail = tailIndex & PSLY_Record_TAILIDXBIT; int nextIndex = (head->next); if(headIndex == (queue->head)) { if(indexHead == indexTail){ if((nextIndex & PSLY_Record_NEXTTAILBIT) == PSLY_Record_NEXTTAILBIT) break; __sync_bool_compare_and_swap(&queue->tail, tailIndex, (((tailIndex & PSLY_Record_TAILVERSIONBIT) + PSLY_Record_TAILVERSIONONE ) & PSLY_Record_TAILVERSIONBIT)|(nextIndex & PSLY_Record_TAILIDXBIT)); } else { if(__sync_bool_compare_and_swap(&queue->head, headIndex, (((headIndex & PSLY_Record_HEADVERSIONBIT) + PSLY_Record_HEADVERSIONONE) & PSLY_Record_HEADVERSIONBIT)|(nextIndex & PSLY_Record_HEADIDXBIT))) { return head; } else { break; } } } } for(int i = 0; i < localArrayNum; ++i) { long localR; int array = (localR = __sync_fetch_and_add(&recordTake, 1)) % localArrayNum; RecordQueue* queue = psly_Record_queues + array; Record* arr = psly_Records[array]; for(;;){ int headIndex = (queue->head); int indexHead = headIndex & PSLY_Record_HEADIDXBIT; Record* head = arr + indexHead; int tailIndex = (queue->tail); int indexTail = tailIndex & PSLY_Record_TAILIDXBIT; if(array < 0) printf("array: %d theRecordTake: %ld\n", array, localR); int nextIndex = (head->next); if(headIndex == (queue->head)) { if(indexHead == indexTail){ if((nextIndex & PSLY_Record_NEXTTAILBIT) == PSLY_Record_NEXTTAILBIT) break; __sync_bool_compare_and_swap(&queue->tail, tailIndex, (((tailIndex & PSLY_Record_TAILVERSIONBIT) + PSLY_Record_TAILVERSIONONE ) & PSLY_Record_TAILVERSIONBIT)|(nextIndex & PSLY_Record_TAILIDXBIT)); } else { if(__sync_bool_compare_and_swap(&queue->head, headIndex, (((headIndex & PSLY_Record_HEADVERSIONBIT) + PSLY_Record_HEADVERSIONONE) & PSLY_Record_HEADVERSIONBIT)|(nextIndex & PSLY_Record_HEADIDXBIT))) { return head; } else { break; } } } } } for(int i = 0; i < localArrayNum; ++i) { int array = i; RecordQueue* queue = psly_Record_queues + array; Record* arr = psly_Records[array]; for(;;){ int headIndex = (queue->head); int indexHead = headIndex & PSLY_Record_HEADIDXBIT; Record* head = arr + indexHead; int tailIndex = (queue->tail); int indexTail = tailIndex & PSLY_Record_TAILIDXBIT; int nextIndex = (head->next); if(headIndex == (queue->head)) { if(indexHead == indexTail){ if((nextIndex & PSLY_Record_NEXTTAILBIT) == PSLY_Record_NEXTTAILBIT) break; __sync_bool_compare_and_swap(&queue->tail, tailIndex, (((tailIndex & PSLY_Record_TAILVERSIONBIT) + PSLY_Record_TAILVERSIONONE ) & PSLY_Record_TAILVERSIONBIT)|(nextIndex & PSLY_Record_TAILIDXBIT)); } else { if(__sync_bool_compare_and_swap(&queue->head, headIndex, (((headIndex & PSLY_Record_HEADVERSIONBIT) + PSLY_Record_HEADVERSIONONE) & PSLY_Record_HEADVERSIONBIT)|(nextIndex & PSLY_Record_HEADIDXBIT))) { return head; } } } } } //不够增加 if(localArrayNum == PSLY_Record_ARRAYNUM_MAX) return NULL; if(localArrayNum == PSLY_Record_ARRAYNUM) { if(psly_Records[localArrayNum] == NULL) { int array_ = localArrayNum; Record* record; void * ptr; int ret = posix_memalign(&ptr, 4096, (1 << PSLY_Record_IDXNUM) * sizeof(Record)); record = ptr; memset(record, 0, (1 << PSLY_Record_IDXNUM) * sizeof(Record)); for(int j = 0; j < (1 << PSLY_Record_IDXNUM) - 1; ++j){ record->self = (array_ << PSLY_Record_IDXNUM) | j; record->next = j+1; record->pointer = NULL; record->nextRecord = 0; record += 1; } record->self = (array_ << PSLY_Record_IDXNUM) | ((1 << PSLY_Record_IDXNUM) - 1); record->next = PSLY_Record_NEXTTAILBIT; record->pointer = NULL; record->nextRecord = 0; //printf("I'm here %d %ld\n", localArrayNum, pthread_self()); if(!__sync_bool_compare_and_swap(&psly_Records[array_], NULL, ptr)) {free(ptr);} else /*printf("extend to %d\n", localArrayNum + 1)*/; } if(localArrayNum == PSLY_Record_ARRAYNUM) __sync_bool_compare_and_swap(&PSLY_Record_ARRAYNUM, localArrayNum, localArrayNum + 1); } } } void return_Record(Record* record) { long local = (record->next); local |= PSLY_Record_NEXTTAILBIT; record->next = local; int self = record->self; int array = (self >> PSLY_Record_IDXNUM) & PSLY_Record_ARRBITR; Record* arr = psly_Records[array]; RecordQueue* queue = psly_Record_queues + array; for(;;) { int tailIndex = (queue->tail); int indexTail = tailIndex & PSLY_Record_TAILIDXBIT; Record* tail = arr + indexTail; int nextIndex = (tail->next); if(tailIndex == (queue->tail)){ if((nextIndex & PSLY_Record_NEXTTAILBIT) == PSLY_Record_NEXTTAILBIT) { if(__sync_bool_compare_and_swap(&tail->next, nextIndex, (((nextIndex & PSLY_Record_NEXTVERSIONBIT) + PSLY_Record_NEXTVERSIONONE) & PSLY_Record_NEXTVERSIONBIT)|(self & PSLY_Record_NEXTIDXBIT))){ __sync_bool_compare_and_swap(&queue->tail, tailIndex, (((tailIndex & PSLY_Record_TAILVERSIONBIT) + PSLY_Record_TAILVERSIONONE) & PSLY_Record_TAILVERSIONBIT)|(self & PSLY_Record_TAILIDXBIT)); return; } } else { __sync_bool_compare_and_swap(&queue->tail, tailIndex, (((tailIndex & PSLY_Record_TAILVERSIONBIT) + PSLY_Record_TAILVERSIONONE) & PSLY_Record_TAILVERSIONBIT)|(nextIndex & PSLY_Record_TAILIDXBIT)); } } } } int IDXNUM_ = 16; long IDXBIT_= ((1 << 16) - 1); int ARRNUM_ = 4; long ARRBIT_ = (((1 << 4) - 1) << 16); long ARRIDXBIT_= (((1 << 16) - 1) | (((1 << 4) - 1) << 16)); int REFCB = 16; int REFCBITS_ = ((1 << 16) - 1); long REFCBITS = (((long)(-1)) << (64 - 16)); long REFONE = (((long)1) << (64 - 16)); long DELETED = 0x0000000000000000; int RECBW = (64 - 16); int NODEB = ((64 - 16 - 4 - 16) >> 1); long NODEBITS = (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))); long NODEONE = ((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))); int NEXTB = ((64 - 16 - 4 - 16) >> 1); long NEXTBITS = ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) ^ ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) >> ((64 - 16 - 4 - 16) >> 1))); long NEXTONE = (((((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) ^ ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) ^ ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) ^ ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) >> ((64 - 16 - 4 - 16) >> 1)))); long NEXTTT = (((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) ^ ((((((((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1))) - 1) & (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) ^ (((((long)1) << (64 - 16)) -1 ) ^ (((((long)1) << (64 - 16)) - 1) >> ((64 - 16 - 4 - 16) >> 1)))) - 1) >> ((64 - 16 - 4 - 16) >> 1))) | ((((1 << 4) - 1) << 16)|((1 << 16) - 1))); int RESTART = 2; int KEEPPREV = 1; int NONE = 0; int RECORD = 0x00000004; int SEARCH = 0x00000002; int REMOVE = 0x00000001; typedef struct RecordList { Record* volatile head ; Record* volatile tail ; } RecordList ; typedef struct RecordMap { volatile RecordList* lists[131072] ; } RecordMap ; static volatile RecordMap map; long nxtAddrV(long old, Record* replace) { return (old & REFCBITS) | (old & NODEBITS) | ((old + NEXTONE) & NEXTBITS) | (replace->self & ARRIDXBIT_); } long plusRecord(long old) { return ((old + REFONE) & REFCBITS) | (old & NODEBITS) | (old & NEXTBITS) | (old & ARRIDXBIT_); } long newNext(long old, Record* replace) { return REFONE | ((old + NODEONE) & NODEBITS) | (old & NEXTBITS) | (replace->self & ARRIDXBIT_); } typedef struct Prevs { Record* r __attribute__((aligned(128))); long rNext ; } Prevs __attribute__((aligned(128))); #define MAXPREV 1024 #define STEPBIT 0 #define STEPS (1 << STEPBIT) #define STEPS_ (STEPS - 1) int psly_handle_records(RecordList* list, void* pointer, int flag) { static __thread Prevs prevs_[MAXPREV]; static __thread bool flag_ = false; if(!flag_) { for(int i = 0; i < MAXPREV; ++i) { prevs_[i].r = NULL; prevs_[i].rNext = 0; } flag_ = true; } static __thread int steps; steps = 0; long key = (long) pointer; Record* head = list->head; Record* tail = list->tail; steps = 0; Record* my = NULL; long localN; int removed = 0; Record* prev = head; long prevNext = (prev->nextRecord); Record* curr = idx_Record(prevNext); for(;;) { long currNext; KeepPrev: currNext = curr->nextRecord; void* currPointer = (curr->pointer); long New = (prev->nextRecord); if((prevNext & NODEBITS) != (New & NODEBITS) || (New & REFCBITS) == DELETED) { /*prev = head; prevNext = (prev->nextRecord); curr = idx_Record(prevNext);*/ --steps; for(;;) { int bucket = steps >> STEPBIT; bucket = bucket < MAXPREV ? bucket: (MAXPREV - 1); Prevs* prevs = &prevs_[bucket]; prev = prevs->r; // printf("steps: %d\n", steps + 1); prevNext = prev->nextRecord; long prevNextKeep = prevs->rNext; if((prevNextKeep & NODEBITS) != (prevNext & NODEBITS) || (prevNext & REFCBITS) == DELETED) { steps -= STEPS; } else { prevs->rNext = prevNext; curr = idx_Record(prevNext); break; } } steps = steps & (~STEPS_); continue; } if((prevNext & NEXTTT) != (New & NEXTTT)) { //JUSTNEXTCHANGE: prevNext = New; curr = idx_Record(prevNext); continue; } prevNext = New; long currKey = (long) currPointer; if(curr == tail || currKey > key) { if(flag == SEARCH) return 0; if(flag == REMOVE && (prevNext & ARRIDXBIT_) == (curr->self & ARRIDXBIT_)) return 0; Record* append; /*CasAppend:*/ if(flag == RECORD) { if(my == NULL) { my = get_Record(); localN = (my->nextRecord); my->pointer = pointer; } my->nextRecord = newNext(localN, curr); append = my; } else { append = curr; } for(;;) { long prevBefore; if((prevBefore = __sync_val_compare_and_swap(&prev->nextRecord, prevNext, nxtAddrV(prevNext, append))) == prevNext ) { // printf("%d add\n", __sync_add_and_fetch(&maxListLFor0, 1)); //sleep(5); long local = prevNext; while((local & ARRIDXBIT_) != (curr->self & ARRIDXBIT_)){ Record* first = idx_Record(local); first->pointer = NULL; local = (first->nextRecord); // if(index == 0) // printf("%d sub\n", __sync_sub_and_fetch(&maxListLFor0, 1)); return_Record(first); } if(flag == RECORD) return 1; else return 0; } New = prevBefore; if((prevNext & NODEBITS) != (New & NODEBITS) || (New & REFCBITS) == DELETED) { /*prev = head; prevNext = (prev->nextRecord); curr = idx_Record(prevNext);*/ --steps; for(;;) { int bucket = steps >> STEPBIT; bucket = bucket < MAXPREV ? bucket: (MAXPREV - 1); Prevs* prevs = &prevs_[bucket]; prev = prevs->r; prevNext = prev->nextRecord; long prevNextKeep = prevs->rNext; if((prevNextKeep & NODEBITS) != (prevNext & NODEBITS) || (prevNext & REFCBITS) == DELETED) { steps -= STEPS; } else { prevs->rNext = prevNext; curr = idx_Record(prevNext); break; } } steps = steps & (~STEPS_); goto KeepPrev; } if((prevNext & NEXTTT) != (New & NEXTTT)) { prevNext = New; curr = idx_Record(prevNext); goto KeepPrev; } prevNext = New; } } else { if(flag == SEARCH && currKey == key) return (currNext >> RECBW) & REFCBITS_; New = (curr->nextRecord); if((currNext & NODEBITS) != (New & NODEBITS)) { New = (prev->nextRecord); if((prevNext & NODEBITS) != (New & NODEBITS) || (New & REFCBITS) == DELETED) { /*prev = head; prevNext = (prev->nextRecord); curr = idx_Record(prevNext);*/ --steps; for(;;) { int bucket = steps >> STEPBIT; bucket = bucket < MAXPREV ? bucket: (MAXPREV - 1); Prevs* prevs = &prevs_[bucket]; prev = prevs->r; prevNext = prev->nextRecord; long prevNextKeep = prevs->rNext; if((prevNextKeep & NODEBITS) != (prevNext & NODEBITS) || (prevNext & REFCBITS) == DELETED) { steps -= STEPS; } else { prevs->rNext = prevNext; curr = idx_Record(prevNext); break; } } steps = steps & (~STEPS_); continue; } prevNext = New; curr = idx_Record(prevNext); continue; } currNext = New; if((currNext & REFCBITS) == DELETED) { curr = idx_Record(currNext); continue; } if(currKey != key) { int bucket; if((steps & STEPS_) == 0 && (bucket = (steps >> STEPBIT)) < MAXPREV) { Prevs* step = &prevs_[bucket]; //if(step->r != prev) { step->r = prev; step->rNext = prevNext; //} } ++steps; //printf("steps: %d\n", steps + 1); prev = curr; prevNext = currNext; } else { if(removed) return 0; Record* found = curr; long foundNext = currNext; if(flag == REMOVE) { long refNuM; if(((refNuM = __sync_sub_and_fetch(&found->nextRecord, REFONE)) & REFCBITS) != DELETED) return (refNuM >> RECBW) & REFCBITS_; removed = 1; currNext = refNuM; } else { for(;;) { long refNuM; long prevBefore; if((prevBefore = __sync_val_compare_and_swap(&found->nextRecord, foundNext, refNuM = plusRecord(foundNext))) == foundNext) { if(my != NULL) { my->nextRecord = localN; return_Record(my); } return (refNuM >> RECBW) & REFCBITS_; } New = prevBefore; if((foundNext & NODEBITS) != (New & NODEBITS)) { New = (prev->nextRecord); if((prevNext & NODEBITS) != (New & NODEBITS) || (New & REFCBITS) == DELETED) { /*prev = head; prevNext = (prev->nextRecord); curr = idx_Record(prevNext);*/ --steps; for(;;) { int bucket = steps >> STEPBIT; bucket = bucket < MAXPREV ? bucket: (MAXPREV - 1); Prevs* prevs = &prevs_[bucket]; prev = prevs->r; prevNext = prev->nextRecord; long prevNextKeep = prevs->rNext; if((prevNextKeep & NODEBITS) != (prevNext & NODEBITS) || (prevNext & REFCBITS) == DELETED) { steps -= STEPS; } else { prevs->rNext = prevNext; curr = idx_Record(prevNext); break; } } steps = steps & (~STEPS_); goto KeepPrev; } prevNext = New; curr = idx_Record(prevNext); goto KeepPrev; } if((New & REFCBITS) == DELETED) { currNext = New; break; } foundNext = New; } } } curr = idx_Record(currNext); } } } int psly_record(void* pointer) { long key = ((long) pointer) >> 4 ; RecordList* list = map.lists[key & 131071]; return psly_handle_records(list, pointer, RECORD); } int psly_remove(void* pointer) { long key =((long) pointer) >> 4 ; RecordList* list = map.lists[key & 131071]; return psly_handle_records(list, pointer, REMOVE); } int psly_search(void* pointer) { long key =((long) pointer) >> 4 ; RecordList* list = map.lists[key & 131071]; return psly_handle_records(list, pointer, SEARCH); } #define INIT_RESOURCE(listNum) \ for(int i = 0; i < (PSLY_Record_ARRAYNUM); ++i){ \ Record* record; \ void * ptr;\ int ret = posix_memalign(&ptr, 4096, (1 << PSLY_Record_IDXNUM) * sizeof(Record));\ psly_Records[i] = record = ptr; \ memset(record, 0, (1 << PSLY_Record_IDXNUM) * sizeof(Record)); \ for(int j = 0; j < (1 << PSLY_Record_IDXNUM) - 1; ++j){ \ record->self = (i << PSLY_Record_IDXNUM) | j; \ record->next = j+1; \ record->pointer = NULL;\ record->nextRecord = 0;\ /*printf("%ld\n", record->nextRecord);*/\ record += 1; \ } \ record->self = (i << PSLY_Record_IDXNUM) | ((1 << PSLY_Record_IDXNUM) - 1); \ record->next = PSLY_Record_NEXTTAILBIT; \ record->pointer = NULL;\ record->nextRecord = 0;\ }\ for(int i = 0; i < PSLY_Record_ARRAYNUM_MAX; ++i){\ psly_Record_queues[i].head = 0; \ psly_Record_queues[i].tail = (1 << PSLY_Record_IDXNUM) - 1; \ } \ for(int i = 0; i < listNum; ++i) { \ void* ptr;\ int ret = posix_memalign(&ptr, 4096, sizeof(RecordList));\ Record* head = get_Record();\ Record* tail = get_Record();\ head->nextRecord = newNext(head->nextRecord, tail); \ map.lists[i] = ptr;\ map.lists[i]->head = head; \ map.lists[i]->tail = tail; \ } #define UNINIT_RESOURCE(listNum) \ for(int i = 0; i < (PSLY_Record_ARRAYNUM); ++i){ \ free(psly_Records[i]); \ } \ for(int i = 0; i < listNum; ++i) {\ free(map.lists[i]);\ } #define K 2 int THRESHOLD = 1; int MAXTHRES = 1; #define MAXTHREADS 11000 typedef struct NodeType { int value; struct NodeType* next; } NodeType; void* GlobalHP[K * MAXTHREADS]; int H = 0; typedef struct ListType{ void* node; struct ListType* next; } ListType; typedef struct HPrectype{ void** HP; struct HPrectype* next; bool Active; int rcount; int count; ListType* list; } HPrecType; volatile HPrecType* head; volatile NodeType* Head; volatile NodeType* Tail; static __thread HPrecType* myhprec; void allocateHPRec() { HPrecType* local = head; for(;local != NULL; local = local->next){ if(local->Active) continue; if(!__sync_bool_compare_and_swap(&local->Active, false, true)) continue; myhprec = local; return; } int oldCount; do { oldCount = H; } while(!__sync_bool_compare_and_swap(&H, oldCount, oldCount + K)); local = (HPrecType*) malloc(sizeof(HPrecType)); if(local == NULL) {printf("NULL!!!!\n");exit(1);} local->Active = true; local->next = NULL; local->HP = GlobalHP + oldCount; for(int i = 0; i < K; ++i) local->HP[i] = NULL; __asm__ volatile("mfence" : : : "cc", "memory"); local->rcount = 0; local->count = 0; local->list = (ListType*) malloc(MAXTHRES * sizeof(ListType)); if(local->list == NULL) {printf("NULL!\n"); exit(1);} for(int i = 0; i < MAXTHRES; ++i) { local->list[i].node = NULL; local->list[i].next = NULL; } HPrecType* oldHead; do { oldHead = head; local->next = oldHead; } while(!__sync_bool_compare_and_swap(&head, oldHead, local)); myhprec = local; } void retireHPrec(){ for(int i = 0; i < K; ++i) myhprec->HP[i] = NULL; myhprec->Active = false; } bool isInpre(void* node, ListType* list){ while(list != NULL){ if(list->node == node) return true; list = list->next; } return false; } bool isIn(void* node){ return psly_search(node); } int numOfRetire; void scan(HPrecType* local){ __sync_fetch_and_add(&numOfRetire, 1); ListType* rList = local->list; int i = 0; while(i <= local->rcount){ void* node = rList[i].node; if(node != NULL && !isIn(node)){ free(node); rList[i].node = NULL; local->count--; } ++i; } } void retireNode(void* node){ int i; int count = 0; begin: i = 0; ListType* the; count++; if(count > 100000) printf("retireLoop %d", count); for(the = myhprec->list; i < MAXTHRES; ){ if(the->node == NULL) break; ++i; the = myhprec->list + i; } if(i == MAXTHRES){printf("%ld\n", pthread_self()); scan(myhprec); goto begin; } the->node = node; if(i > myhprec->rcount) myhprec->rcount = i; myhprec->count++; if(myhprec->count >= THRESHOLD){ scan(myhprec); } } void enqueue(int value){ //NodeType* node = (NodeType*) malloc(sizeof(NodeType)); NodeType* node; int re = posix_memalign(&node, 64, sizeof(NodeType)); if(re == EINVAL) { printf("参数不是2的幂,或者不是void指针的倍数。\n"); fflush(stdout); exit(1); } if(re == ENOMEM) { printf("没有足够的内存去满足函数的请求。\n"); fflush(stdout); exit(1); } if(((long) node % 64) != 0) { printf("%ld is not 64 enqueue\n", node); fflush(stdout); exit(1); } memset(node, 0, sizeof(NodeType)); if(node == NULL) { printf("KKKKKKKKKKKKKK\n"); exit(1);} node->value = value; node->next = NULL; NodeType* t; long count = 0; for(;;){ ++count; if(count > 100000000) { printf(">>>100000000\n"); printf("%p %p %d\n", t, t->next, pthread_self()); sleep(2); } t = Tail; //printf("%ld\n", ((long)t) & 1); if((((long)t) & 1) == 1) { /*printf("%p\n", t); exit(1);*/ } psly_record(t); //__sync_synchronize(); if(Tail != t) { psly_remove(t); continue; } NodeType* next = t->next; if(Tail != t) { psly_remove(t); continue; } if(next != NULL){ psly_remove(t); __sync_bool_compare_and_swap(&Tail, t, next); continue; } if(__sync_bool_compare_and_swap(&t->next, NULL, node)) { psly_remove(t); if( t == node ) { printf("%p %p is something wrong! %d\n", t, node, pthread_self()); exit(1); } break; } psly_remove(t); } __sync_bool_compare_and_swap(&Tail, t, node); } int flagRet = 0; int dequeue(){ long count = 0; int data; NodeType* h; for(;;){ ++count; if(count > 100000) printf("DDDDDDDDDDDDDDDDDDDDDAAAAA>100000\n"); h = Head; //myhprec->HP[0] = h; psly_record(h); if(Head != h) { psly_remove(h); continue; } NodeType* t = Tail; NodeType* next = h->next; psly_record(next); //myhprec->HP[1] = next; if(Head != h) { psly_remove(h); psly_remove(next); continue; } if(next == NULL) { psly_remove(h); psly_remove(next); return -1000000; } if(h == t){ psly_remove(h); psly_remove(next); __sync_bool_compare_and_swap(&Tail, t, next); continue; } data = next->value; //myhprec->HP[1] = NULL; //myhprec->HP[0] = NULL; if(__sync_bool_compare_and_swap(&Head, h, next)) { psly_remove(h); psly_remove(next); break; } psly_remove(h); psly_remove(next); } //myhprec->HP[0] = NULL; //myhprec->HP[1] = NULL; if(flagRet) retireNode(h); return data; } long numofdequeue; long numoferr; void* thread_routine(void* argv){ allocateHPRec(); for(int i = 100; i < 100 + (int)argv; ++i) enqueue(3781); int result; //printf("enqueue end!!! %d\n", pthread_self()); while((result = dequeue()) != -1000000){ //printf("tid: %ld output is: %d times is: %d\n", pthread_self(), result, numofdequeue + 1); __sync_fetch_and_add(&numofdequeue, 1); if(result != 3781) __sync_fetch_and_add(&numoferr, 1); } scan(myhprec); return 0; } int main(int argc, char** argv){ //printf("I'm main %ld\n", pthread_self()); int n = 0; INIT_RESOURCE(131072); for(int k = 0; k < 32;++k){ printf("\n%d times\n", k); fflush(stdout); float time_use=0; struct timeval start; struct timeval end; gettimeofday(&start,NULL); //Head = Tail = (NodeType*) malloc(sizeof(NodeType)); int re = posix_memalign(&Head, 64, sizeof(NodeType)); if(re == ENOMEM || re == EINVAL) { printf("memory has empty!\n"); fflush(stdout); exit(1); } if(((long) Head % 64) != 0) { printf("%ld is not 64 Head\n", Head); fflush(stdout); exit(1); } Tail = Head; if(Head == NULL) {printf("AAAAAAAAAAAA\n"); exit(1);} Head->value = -1; Head->next = NULL; if(argc != 5) return 0; int nThread = atoi(argv[1]); MAXTHRES = 10000; int numItem = atoi(argv[2]); THRESHOLD = atoi(argv[4]); flagRet = atoi(argv[3]); printf("\n"); pthread_t pid[MAXTHREADS]; for(int i = 0; i < nThread; ++i) { if(pthread_create(&pid[i], NULL, thread_routine, numItem)) { printf("can't create %d thread\n", i); exit(1); } } for(int i = 0; i < nThread; ++i) pthread_join(pid[i], NULL); printf("%ld dequeues\n\n", numofdequeue); gettimeofday(&end,NULL); time_use=(end.tv_sec-start.tv_sec)+(end.tv_usec-start.tv_usec) / 1000000.0;//微秒 printf("time_use is %f, err num is %ld \n", time_use, numoferr); //printf("NodeType: %d\n", sizeof(NodeType)); HPrecType* h = head;head = NULL;H = 0; HPrecType* l; printf("begin father collect garbage\n"); while(h != NULL) { l = h->next; scan(h); free(h->list); free(h); h = l; } free(Head); int kk = 0; for(int i = 0; i < 131072; ++i) { Record* head = idx_Record(map.lists[i]->head->nextRecord); Record* tail = map.lists[i]->tail; while(head != tail) { printf("%p\n", head->pointer); ++kk; head = idx_Record(head->nextRecord); } } printf("the rest: %d\n", kk); fflush(stdout); //sleep(1); } UNINIT_RESOURCE(131072); return 0; }
the_stack_data/40074.c
#include <stdio.h> int main(void) { int age = 23; float weight = 72.1; char name[100] = "Juan dela Cruz"; printf("Name: %s", name); printf("\n\tAge: %d years old", age); printf("\n\tWeight: %f kg", weight); printf("\n\nWhat is your name? "); scanf("%s", name); printf("\nWhat is your age? "); scanf("%d", &age); printf("\nWhat is your weight (kg)? "); scanf("%f", &weight); printf("\n\nName: %s", name); printf("\n\tAge: %d years old", age); printf("\n\tWeight: %f kg", weight); return 0; }
the_stack_data/67732.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_6__ TYPE_3__ ; typedef struct TYPE_5__ TYPE_2__ ; typedef struct TYPE_4__ TYPE_1__ ; /* Type definitions */ typedef int u8 ; typedef int u32 ; struct mlx4_init_hca_param {int log_rd_per_qp; scalar_t__ uar_page_sz; unsigned long long pf_context_behaviour; unsigned long long num_ports; int log_num_qps; int log_num_srqs; int log_num_cqs; int log_mpt_sz; int dev_cap_enabled; int eqe_size; int cqe_size; int extra_flags; scalar_t__ rss_ip_frags; int /*<<< orphan*/ phys_port_id; int /*<<< orphan*/ qp1_proxy_qpn; int /*<<< orphan*/ qp1_tunnel_qpn; int /*<<< orphan*/ qp0_proxy_qpn; int /*<<< orphan*/ qp0_tunnel_qpn; int /*<<< orphan*/ qp0_qkey; int /*<<< orphan*/ reserved_lkey; int /*<<< orphan*/ reserved_eq; int /*<<< orphan*/ max_eq; int /*<<< orphan*/ mtt_quota; int /*<<< orphan*/ mpt_quota; int /*<<< orphan*/ cq_quota; int /*<<< orphan*/ srq_quota; int /*<<< orphan*/ qp_quota; int /*<<< orphan*/ hca_core_clock; int /*<<< orphan*/ log_mc_entry_sz; scalar_t__ global_caps; } ; struct mlx4_func_cap {int log_rd_per_qp; scalar_t__ uar_page_sz; unsigned long long pf_context_behaviour; unsigned long long num_ports; int log_num_qps; int log_num_srqs; int log_num_cqs; int log_mpt_sz; int dev_cap_enabled; int eqe_size; int cqe_size; int extra_flags; scalar_t__ rss_ip_frags; int /*<<< orphan*/ phys_port_id; int /*<<< orphan*/ qp1_proxy_qpn; int /*<<< orphan*/ qp1_tunnel_qpn; int /*<<< orphan*/ qp0_proxy_qpn; int /*<<< orphan*/ qp0_tunnel_qpn; int /*<<< orphan*/ qp0_qkey; int /*<<< orphan*/ reserved_lkey; int /*<<< orphan*/ reserved_eq; int /*<<< orphan*/ max_eq; int /*<<< orphan*/ mtt_quota; int /*<<< orphan*/ mpt_quota; int /*<<< orphan*/ cq_quota; int /*<<< orphan*/ srq_quota; int /*<<< orphan*/ qp_quota; int /*<<< orphan*/ hca_core_clock; int /*<<< orphan*/ log_mc_entry_sz; scalar_t__ global_caps; } ; struct mlx4_dev_cap {int log_rd_per_qp; scalar_t__ uar_page_sz; unsigned long long pf_context_behaviour; unsigned long long num_ports; int log_num_qps; int log_num_srqs; int log_num_cqs; int log_mpt_sz; int dev_cap_enabled; int eqe_size; int cqe_size; int extra_flags; scalar_t__ rss_ip_frags; int /*<<< orphan*/ phys_port_id; int /*<<< orphan*/ qp1_proxy_qpn; int /*<<< orphan*/ qp1_tunnel_qpn; int /*<<< orphan*/ qp0_proxy_qpn; int /*<<< orphan*/ qp0_tunnel_qpn; int /*<<< orphan*/ qp0_qkey; int /*<<< orphan*/ reserved_lkey; int /*<<< orphan*/ reserved_eq; int /*<<< orphan*/ max_eq; int /*<<< orphan*/ mtt_quota; int /*<<< orphan*/ mpt_quota; int /*<<< orphan*/ cq_quota; int /*<<< orphan*/ srq_quota; int /*<<< orphan*/ qp_quota; int /*<<< orphan*/ hca_core_clock; int /*<<< orphan*/ log_mc_entry_sz; scalar_t__ global_caps; } ; struct TYPE_6__ {int max_qp_dest_rdma; int page_size_cap; int uar_page_size; unsigned long long num_ports; int num_qps; int num_srqs; int num_cqs; int num_mpts; int num_uars; int reserved_uars; int eqe_size; int eqe_factor; int cqe_size; int /*<<< orphan*/ * qp1_proxy; int /*<<< orphan*/ * qp1_tunnel; int /*<<< orphan*/ * qp0_proxy; int /*<<< orphan*/ * qp0_tunnel; int /*<<< orphan*/ * qp0_qkey; int /*<<< orphan*/ alloc_res_qp_mask; scalar_t__ bf_reg_size; int /*<<< orphan*/ flags2; int /*<<< orphan*/ userspace_caps; int /*<<< orphan*/ * pkey_table_len; int /*<<< orphan*/ * gid_table_len; int /*<<< orphan*/ * phys_port_id; int /*<<< orphan*/ * port_type; int /*<<< orphan*/ * port_mask; scalar_t__ num_amgms; scalar_t__ num_mgms; int /*<<< orphan*/ num_pds; int /*<<< orphan*/ reserved_lkey; int /*<<< orphan*/ reserved_eqs; int /*<<< orphan*/ num_eqs; int /*<<< orphan*/ hca_core_clock; } ; struct TYPE_4__ {int /*<<< orphan*/ mtt; int /*<<< orphan*/ mpt; int /*<<< orphan*/ cq; int /*<<< orphan*/ srq; int /*<<< orphan*/ qp; } ; struct mlx4_dev {scalar_t__ uar_page_shift; TYPE_3__ caps; TYPE_2__* persist; TYPE_1__ quotas; } ; typedef int /*<<< orphan*/ hca_param ; typedef int /*<<< orphan*/ func_cap ; typedef int /*<<< orphan*/ dev_cap ; struct TYPE_5__ {int /*<<< orphan*/ pdev; } ; /* Variables and functions */ int ENODEV ; int ENOMEM ; int ENOSYS ; int /*<<< orphan*/ GFP_KERNEL ; int MLX4_DEV_CAP_64B_CQE_ENABLED ; int MLX4_DEV_CAP_64B_EQE_ENABLED ; int MLX4_DEV_CAP_CQE_STRIDE_ENABLED ; int MLX4_DEV_CAP_EQE_STRIDE_ENABLED ; int /*<<< orphan*/ MLX4_DEV_CAP_FLAG2_TS ; unsigned long long MLX4_MAX_PORTS ; int /*<<< orphan*/ MLX4_NUM_PDS ; int MLX4_QUERY_FUNC_FLAGS_A0_RES_QP ; int MLX4_QUERY_FUNC_FLAGS_BF_RES_QP ; int /*<<< orphan*/ MLX4_RESERVE_A0_QP ; int /*<<< orphan*/ MLX4_RESERVE_ETH_BF_QP ; int /*<<< orphan*/ MLX4_USER_DEV_CAP_LARGE_CQE ; scalar_t__ PAGE_SHIFT ; int PAGE_SIZE ; unsigned long long PF_CONTEXT_BEHAVIOUR_MASK ; void* kcalloc (int,int,int /*<<< orphan*/ ) ; int /*<<< orphan*/ kfree (int /*<<< orphan*/ *) ; int /*<<< orphan*/ memset (struct mlx4_init_hca_param*,int /*<<< orphan*/ ,int) ; int mlx4_QUERY_FUNC_CAP (struct mlx4_dev*,int,struct mlx4_init_hca_param*) ; int mlx4_QUERY_FW (struct mlx4_dev*) ; int mlx4_QUERY_HCA (struct mlx4_dev*,struct mlx4_init_hca_param*) ; int /*<<< orphan*/ mlx4_dbg (struct mlx4_dev*,char*,char*) ; int mlx4_dev_cap (struct mlx4_dev*,struct mlx4_init_hca_param*) ; int /*<<< orphan*/ mlx4_err (struct mlx4_dev*,char*,...) ; int mlx4_get_slave_pkey_gid_tbl_len (struct mlx4_dev*,int,int /*<<< orphan*/ *,int /*<<< orphan*/ *) ; int /*<<< orphan*/ mlx4_log_num_mgm_entry_size ; int /*<<< orphan*/ mlx4_replace_zero_macs (struct mlx4_dev*) ; int /*<<< orphan*/ mlx4_set_num_reserved_uars (struct mlx4_dev*,struct mlx4_init_hca_param*) ; int /*<<< orphan*/ mlx4_warn (struct mlx4_dev*,char*,...) ; int pci_resource_len (int /*<<< orphan*/ ,int) ; int /*<<< orphan*/ slave_adjust_steering_mode (struct mlx4_dev*,struct mlx4_init_hca_param*,struct mlx4_init_hca_param*) ; __attribute__((used)) static int mlx4_slave_cap(struct mlx4_dev *dev) { int err; u32 page_size; struct mlx4_dev_cap dev_cap; struct mlx4_func_cap func_cap; struct mlx4_init_hca_param hca_param; u8 i; memset(&hca_param, 0, sizeof(hca_param)); err = mlx4_QUERY_HCA(dev, &hca_param); if (err) { mlx4_err(dev, "QUERY_HCA command failed, aborting\n"); return err; } /* fail if the hca has an unknown global capability * at this time global_caps should be always zeroed */ if (hca_param.global_caps) { mlx4_err(dev, "Unknown hca global capabilities\n"); return -ENOSYS; } mlx4_log_num_mgm_entry_size = hca_param.log_mc_entry_sz; dev->caps.hca_core_clock = hca_param.hca_core_clock; memset(&dev_cap, 0, sizeof(dev_cap)); dev->caps.max_qp_dest_rdma = 1 << hca_param.log_rd_per_qp; err = mlx4_dev_cap(dev, &dev_cap); if (err) { mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting\n"); return err; } err = mlx4_QUERY_FW(dev); if (err) mlx4_err(dev, "QUERY_FW command failed: could not get FW version\n"); page_size = ~dev->caps.page_size_cap + 1; mlx4_warn(dev, "HCA minimum page size:%d\n", page_size); if (page_size > PAGE_SIZE) { mlx4_err(dev, "HCA minimum page size of %d bigger than kernel PAGE_SIZE of %ld, aborting\n", page_size, (long)PAGE_SIZE); return -ENODEV; } /* Set uar_page_shift for VF */ dev->uar_page_shift = hca_param.uar_page_sz + 12; /* Make sure the master uar page size is valid */ if (dev->uar_page_shift > PAGE_SHIFT) { mlx4_err(dev, "Invalid configuration: uar page size is larger than system page size\n"); return -ENODEV; } /* Set reserved_uars based on the uar_page_shift */ mlx4_set_num_reserved_uars(dev, &dev_cap); /* Although uar page size in FW differs from system page size, * upper software layers (mlx4_ib, mlx4_en and part of mlx4_core) * still works with assumption that uar page size == system page size */ dev->caps.uar_page_size = PAGE_SIZE; memset(&func_cap, 0, sizeof(func_cap)); err = mlx4_QUERY_FUNC_CAP(dev, 0, &func_cap); if (err) { mlx4_err(dev, "QUERY_FUNC_CAP general command failed, aborting (%d)\n", err); return err; } if ((func_cap.pf_context_behaviour | PF_CONTEXT_BEHAVIOUR_MASK) != PF_CONTEXT_BEHAVIOUR_MASK) { mlx4_err(dev, "Unknown pf context behaviour %x known flags %x\n", func_cap.pf_context_behaviour, PF_CONTEXT_BEHAVIOUR_MASK); return -ENOSYS; } dev->caps.num_ports = func_cap.num_ports; dev->quotas.qp = func_cap.qp_quota; dev->quotas.srq = func_cap.srq_quota; dev->quotas.cq = func_cap.cq_quota; dev->quotas.mpt = func_cap.mpt_quota; dev->quotas.mtt = func_cap.mtt_quota; dev->caps.num_qps = 1 << hca_param.log_num_qps; dev->caps.num_srqs = 1 << hca_param.log_num_srqs; dev->caps.num_cqs = 1 << hca_param.log_num_cqs; dev->caps.num_mpts = 1 << hca_param.log_mpt_sz; dev->caps.num_eqs = func_cap.max_eq; dev->caps.reserved_eqs = func_cap.reserved_eq; dev->caps.reserved_lkey = func_cap.reserved_lkey; dev->caps.num_pds = MLX4_NUM_PDS; dev->caps.num_mgms = 0; dev->caps.num_amgms = 0; if (dev->caps.num_ports > MLX4_MAX_PORTS) { mlx4_err(dev, "HCA has %d ports, but we only support %d, aborting\n", dev->caps.num_ports, MLX4_MAX_PORTS); return -ENODEV; } mlx4_replace_zero_macs(dev); dev->caps.qp0_qkey = kcalloc(dev->caps.num_ports, sizeof(u32), GFP_KERNEL); dev->caps.qp0_tunnel = kcalloc(dev->caps.num_ports, sizeof (u32), GFP_KERNEL); dev->caps.qp0_proxy = kcalloc(dev->caps.num_ports, sizeof (u32), GFP_KERNEL); dev->caps.qp1_tunnel = kcalloc(dev->caps.num_ports, sizeof (u32), GFP_KERNEL); dev->caps.qp1_proxy = kcalloc(dev->caps.num_ports, sizeof (u32), GFP_KERNEL); if (!dev->caps.qp0_tunnel || !dev->caps.qp0_proxy || !dev->caps.qp1_tunnel || !dev->caps.qp1_proxy || !dev->caps.qp0_qkey) { err = -ENOMEM; goto err_mem; } for (i = 1; i <= dev->caps.num_ports; ++i) { err = mlx4_QUERY_FUNC_CAP(dev, i, &func_cap); if (err) { mlx4_err(dev, "QUERY_FUNC_CAP port command failed for port %d, aborting (%d)\n", i, err); goto err_mem; } dev->caps.qp0_qkey[i - 1] = func_cap.qp0_qkey; dev->caps.qp0_tunnel[i - 1] = func_cap.qp0_tunnel_qpn; dev->caps.qp0_proxy[i - 1] = func_cap.qp0_proxy_qpn; dev->caps.qp1_tunnel[i - 1] = func_cap.qp1_tunnel_qpn; dev->caps.qp1_proxy[i - 1] = func_cap.qp1_proxy_qpn; dev->caps.port_mask[i] = dev->caps.port_type[i]; dev->caps.phys_port_id[i] = func_cap.phys_port_id; err = mlx4_get_slave_pkey_gid_tbl_len(dev, i, &dev->caps.gid_table_len[i], &dev->caps.pkey_table_len[i]); if (err) goto err_mem; } if (dev->caps.uar_page_size * (dev->caps.num_uars - dev->caps.reserved_uars) > pci_resource_len(dev->persist->pdev, 2)) { mlx4_err(dev, "HCA reported UAR region size of 0x%x bigger than PCI resource 2 size of 0x%llx, aborting\n", dev->caps.uar_page_size * dev->caps.num_uars, (unsigned long long) pci_resource_len(dev->persist->pdev, 2)); err = -ENOMEM; goto err_mem; } if (hca_param.dev_cap_enabled & MLX4_DEV_CAP_64B_EQE_ENABLED) { dev->caps.eqe_size = 64; dev->caps.eqe_factor = 1; } else { dev->caps.eqe_size = 32; dev->caps.eqe_factor = 0; } if (hca_param.dev_cap_enabled & MLX4_DEV_CAP_64B_CQE_ENABLED) { dev->caps.cqe_size = 64; dev->caps.userspace_caps |= MLX4_USER_DEV_CAP_LARGE_CQE; } else { dev->caps.cqe_size = 32; } if (hca_param.dev_cap_enabled & MLX4_DEV_CAP_EQE_STRIDE_ENABLED) { dev->caps.eqe_size = hca_param.eqe_size; dev->caps.eqe_factor = 0; } if (hca_param.dev_cap_enabled & MLX4_DEV_CAP_CQE_STRIDE_ENABLED) { dev->caps.cqe_size = hca_param.cqe_size; /* User still need to know when CQE > 32B */ dev->caps.userspace_caps |= MLX4_USER_DEV_CAP_LARGE_CQE; } dev->caps.flags2 &= ~MLX4_DEV_CAP_FLAG2_TS; mlx4_warn(dev, "Timestamping is not supported in slave mode\n"); slave_adjust_steering_mode(dev, &dev_cap, &hca_param); mlx4_dbg(dev, "RSS support for IP fragments is %s\n", hca_param.rss_ip_frags ? "on" : "off"); if (func_cap.extra_flags & MLX4_QUERY_FUNC_FLAGS_BF_RES_QP && dev->caps.bf_reg_size) dev->caps.alloc_res_qp_mask |= MLX4_RESERVE_ETH_BF_QP; if (func_cap.extra_flags & MLX4_QUERY_FUNC_FLAGS_A0_RES_QP) dev->caps.alloc_res_qp_mask |= MLX4_RESERVE_A0_QP; return 0; err_mem: kfree(dev->caps.qp0_qkey); kfree(dev->caps.qp0_tunnel); kfree(dev->caps.qp0_proxy); kfree(dev->caps.qp1_tunnel); kfree(dev->caps.qp1_proxy); dev->caps.qp0_qkey = NULL; dev->caps.qp0_tunnel = NULL; dev->caps.qp0_proxy = NULL; dev->caps.qp1_tunnel = NULL; dev->caps.qp1_proxy = NULL; return err; }
the_stack_data/231391959.c
/* * Copyright (c) 2011 The Native Client Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. * * tests whether small structures are lowered as expected */ typedef struct { char x; char y; } TWO_CHARS; typedef struct { short x; short y; } TWO_SHORTS; typedef struct { int x; int y; } TWO_INTS; /* @IGNORE_LINES_FOR_CODE_HYGIENE[3] */ extern void foo_chars(TWO_CHARS z); extern void foo_shorts(TWO_SHORTS z); extern void foo_ints(TWO_INTS z); void bar_chars(TWO_CHARS z) { foo_chars(z); } void bar_shorts(TWO_SHORTS z) { foo_shorts(z); } void bar_ints(TWO_INTS z) { foo_ints(z); }
the_stack_data/168892632.c
#include <stdio.h> #include <stdlib.h> #include <locale.h> void main(){ setlocale(LC_ALL, "Portuguese"); int c = 10; printf("Usando for:\n"); for(c; c <= 20; c += 2){ printf("%d\n", c); } printf("Usando while:\n"); c = 10; while(c <= 20){ printf("%d\n", c); c +=2; } printf("Usando do while:\n"); c = 10; do{ printf("%d\n", c); c += 2; }while(c <= 20); system("pause"); }
the_stack_data/68724.c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, R. Hrbacek, Z. Vasicek and L. Sekanina, "EvoApprox8b: Library of approximate adders and multipliers for circuit design and benchmarking of approximation methods". Design, Automation & Test in Europe Conference & Exhibition (DATE), 2017, Lausanne, 2017, pp. 258-261. doi: 10.23919/DATE.2017.7926993 * This file contains a circuit from evoapprox8b dataset. Note that a new version of library was already published. ***/ #include <stdint.h> #include <stdlib.h> /// Approximate function add8_062 /// Library = EvoApprox8b /// Circuit = add8_062 /// Area (180) = 804 /// Delay (180) = 1.300 /// Power (180) = 222.70 /// Area (45) = 61 /// Delay (45) = 0.480 /// Power (45) = 21.91 /// Nodes = 11 /// HD = 134400 /// MAE = 1.65625 /// MSE = 5.50000 /// MRE = 0.86 % /// WCE = 7 /// WCRE = 100 % /// EP = 71.9 % uint16_t add8_062(uint8_t a, uint8_t b) { uint16_t c = 0; uint8_t n0 = (a >> 0) & 0x1; uint8_t n2 = (a >> 1) & 0x1; uint8_t n4 = (a >> 2) & 0x1; uint8_t n6 = (a >> 3) & 0x1; uint8_t n8 = (a >> 4) & 0x1; uint8_t n10 = (a >> 5) & 0x1; uint8_t n12 = (a >> 6) & 0x1; uint8_t n14 = (a >> 7) & 0x1; uint8_t n18 = (b >> 1) & 0x1; uint8_t n20 = (b >> 2) & 0x1; uint8_t n22 = (b >> 3) & 0x1; uint8_t n24 = (b >> 4) & 0x1; uint8_t n26 = (b >> 5) & 0x1; uint8_t n28 = (b >> 6) & 0x1; uint8_t n30 = (b >> 7) & 0x1; uint8_t n32; uint8_t n42; uint8_t n60; uint8_t n82; uint8_t n100; uint8_t n132; uint8_t n182; uint8_t n183; uint8_t n232; uint8_t n233; uint8_t n282; uint8_t n283; uint8_t n332; uint8_t n333; uint8_t n382; uint8_t n383; n32 = ~(n20 & n4 & n0); n42 = ~(n32 | n14); n60 = ~(n18 ^ n18); n82 = n2 | n18; n100 = n60; n132 = n4 | n20; n182 = (n6 ^ n22) ^ n42; n183 = (n6 & n22) | (n22 & n42) | (n6 & n42); n232 = (n8 ^ n24) ^ n183; n233 = (n8 & n24) | (n24 & n183) | (n8 & n183); n282 = (n10 ^ n26) ^ n233; n283 = (n10 & n26) | (n26 & n233) | (n10 & n233); n332 = (n12 ^ n28) ^ n283; n333 = (n12 & n28) | (n28 & n283) | (n12 & n283); n382 = (n14 ^ n30) ^ n333; n383 = (n14 & n30) | (n30 & n333) | (n14 & n333); c |= (n100 & 0x1) << 0; c |= (n82 & 0x1) << 1; c |= (n132 & 0x1) << 2; c |= (n182 & 0x1) << 3; c |= (n232 & 0x1) << 4; c |= (n282 & 0x1) << 5; c |= (n332 & 0x1) << 6; c |= (n382 & 0x1) << 7; c |= (n383 & 0x1) << 8; return c; }
the_stack_data/178266805.c
void shellSort(double *array, int n) { int h = 1; while (h <= n / 3) { h = h * 3 + 1; } while (h > 0) { for (int i = h; i < n; i++) { double aux = array[i]; int j = i; while (j > h - 1 && array[j - h] >= aux) { array[j] = array[j - h]; j -= h; } array[j] = aux; } h = (h - 1) / 3; } }
the_stack_data/25136932.c
/* Name: dweight2.c Purpose: Computes the dimensional weight of a box from input provided by the user. Author: K.N. King Date: 25.02.2022 */ #include <stdio.h> int main (void) { int height, length, width, volume, weight; printf("Enter height of box: "); scanf("%d", &height); printf("Enter length of box: "); scanf("%d", &length); printf("Enter width of box: "); scanf("%d", &width); volume = height * length * width; weight = (volume + 165) / 166; printf("Volume (cubic inches): %d\n", volume); printf("Dimensional weight (pounds): %d\n", weight); return 0; }
the_stack_data/184517825.c
#include <stdio.h> void main() { int nValores[5]; nValores[0] = 10; nValores[1] = 20; nValores[2] = 30; nValores[3] = 40; nValores[4] = 50; printf("nValores[4]............................: %d\n", nValores[4]); printf("nValores[3]............................: %d\n", nValores[3]); printf("nValores[2]............................: %d\n", nValores[2]); printf("nValores[1]............................: %d\n", nValores[1]); printf("nValores[0]............................: %d\n", nValores[0]); }
the_stack_data/787325.c
/********************************************************************* * Copyright 2010, UCAR/Unidata * See netcdf/COPYRIGHT file for copying and redistribution conditions. *********************************************************************/ /* $Id: liblib.c,v 1.2 2010/05/24 19:48:13 dmh Exp $ */ /* $Header: /upc/share/CVS/netcdf-3/liblib/liblib.c,v 1.2 2010/05/24 19:48:13 dmh Exp $ */ /* Only here to keep loader quiet */ int liblib(void) { return 1; }
the_stack_data/240978.c
// WARNING in exfat_bdev_read // https://syzkaller.appspot.com/bug?id=374b9f0f762ad5a22298adf3dbe048874673bd4c // status:open // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <endian.h> #include <fcntl.h> #include <net/if.h> #include <netinet/in.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/socket.h> #include <sys/syscall.h> #include <sys/types.h> #include <unistd.h> #include <sched.h> #include <linux/genetlink.h> #include <linux/if_addr.h> #include <linux/if_link.h> #include <linux/in6.h> #include <linux/neighbour.h> #include <linux/net.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <linux/veth.h> struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[1024]; }; static struct nlmsg nlmsg; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (hdr->nlmsg_type == NLMSG_DONE) { *reply_len = 0; return 0; } if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return -((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); (void)err; } const int kInitNetNsFd = 239; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_CMD_RELOAD 37 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 #define DEVLINK_ATTR_NETNS_FD 138 static int netlink_devlink_id_get(struct nlmsg* nlmsg, int sock) { struct genlmsghdr genlhdr; struct nlattr* attr; int err, n; uint16_t id = 0; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, DEVLINK_FAMILY_NAME, strlen(DEVLINK_FAMILY_NAME) + 1); err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n); if (err) { return -1; } attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); /* recv ack */ return id; } static void netlink_devlink_netns_move(const char* bus_name, const char* dev_name, int netns_fd) { struct genlmsghdr genlhdr; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_RELOAD; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd)); err = netlink_send(&nlmsg, sock); if (err) { } error: close(sock); } static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len); if (err) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } static void initialize_devlink_pci(void) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); int ret = setns(kInitNetNsFd, 0); if (ret == -1) exit(1); netlink_devlink_netns_move("pci", "0000:00:10.0", netns); ret = setns(netns, 0); if (ret == -1) exit(1); close(netns); initialize_devlink_ports("pci", "0000:00:10.0", "netpci"); } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); memcpy((void*)0x20000000, "./bus\000", 6); syscall(__NR_creat, 0x20000000ul, 0xfffffffffffffffcul); memcpy((void*)0x20000280, "/dev/loop", 9); *(uint8_t*)0x20000289 = 0x30; *(uint8_t*)0x2000028a = 0; memcpy((void*)0x200002c0, "./bus\000", 6); memcpy((void*)0x20000300, "exfat\000", 6); syscall(__NR_mount, 0x20000280ul, 0x200002c0ul, 0x20000300ul, 0x400000ul, 0ul); return 0; }
the_stack_data/88262.c
/* Simple tool to create config.h. * Would be much easier with ccan modules, but deliberately standalone. * * Copyright 2011 Rusty Russell <[email protected]>. MIT license. * * c12r_err, c12r_errx functions copied from ccan/err/err.c * Copyright Rusty Russell <[email protected]>. CC0 (Public domain) License. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #define _POSIX_C_SOURCE 200809L /* For pclose, popen, strdup */ #define EXIT_BAD_USAGE 1 #define EXIT_TROUBLE_RUNNING 2 #define EXIT_BAD_TEST 3 #define EXIT_BAD_INPUT 4 #include <errno.h> #include <stdio.h> #include <stdarg.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #ifdef _MSC_VER #define popen _popen #define pclose _pclose #endif #ifdef _MSC_VER #define DEFAULT_COMPILER "cl" /* Note: Dash options avoid POSIX path conversion when used under msys bash * and are therefore preferred to slash (e.g. -nologo over /nologo) * Note: Disable Warning 4200 "nonstandard extension used : zero-sized array * in struct/union" for flexible array members. */ #define DEFAULT_FLAGS "-nologo -Zi -W4 -wd4200 " \ "-D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS" #define DEFAULT_OUTPUT_EXE_FLAG "-Fe:" #else #define DEFAULT_COMPILER "cc" #define DEFAULT_FLAGS "-g3 -ggdb -Wall -Wundef -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wold-style-definition" #define DEFAULT_OUTPUT_EXE_FLAG "-o" #endif #define OUTPUT_FILE "configurator.out" #define INPUT_FILE "configuratortest.c" #ifdef _WIN32 #define DIR_SEP "\\" #else #define DIR_SEP "/" #endif static const char *progname = ""; static int verbose; static bool like_a_libtool = false; struct test { const char *name; const char *desc; /* * Template style flags (pick one): * OUTSIDE_MAIN: * - put a simple boilerplate main below it. * DEFINES_FUNC: * - defines a static function called func; adds ref to avoid warnings * INSIDE_MAIN: * - put this inside main(). * DEFINES_EVERYTHING: * - don't add any boilerplate at all. * * Execution flags: * EXECUTE: * - a runtime test; must compile, exit 0 means flag is set. * MAY_NOT_COMPILE: * - Only useful with EXECUTE: don't get upset if it doesn't compile. * <nothing>: * - a compile test, if it compiles must run and exit 0. */ const char *style; const char *depends; const char *link; const char *fragment; const char *flags; const char *overrides; /* On success, force this to '1' */ bool done; bool answer; }; /* Terminated by a NULL name */ static struct test *tests; static const struct test base_tests[] = { { "HAVE_32BIT_OFF_T", "off_t is 32 bits", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", NULL, NULL, "#include <sys/types.h>\n" "int main(void) {\n" " return sizeof(off_t) == 4 ? 0 : 1;\n" "}\n" }, { "HAVE_ALIGNOF", "__alignof__ support", "INSIDE_MAIN", NULL, NULL, "return __alignof__(double) > 0 ? 0 : 1;" }, { "HAVE_ASPRINTF", "asprintf() declaration", "DEFINES_FUNC", NULL, NULL, "#ifndef _GNU_SOURCE\n" "#define _GNU_SOURCE\n" "#endif\n" "#include <stdio.h>\n" "static char *func(int x) {" " char *p;\n" " if (asprintf(&p, \"%u\", x) == -1) \n" " p = NULL;\n" " return p;\n" "}" }, { "HAVE_ATTRIBUTE_COLD", "__attribute__((cold)) support", "DEFINES_FUNC", NULL, NULL, "static int __attribute__((cold)) func(int x) { return x; }" }, { "HAVE_ATTRIBUTE_CONST", "__attribute__((const)) support", "DEFINES_FUNC", NULL, NULL, "static int __attribute__((const)) func(int x) { return x; }" }, { "HAVE_ATTRIBUTE_DEPRECATED", "__attribute__((deprecated)) support", "DEFINES_FUNC", NULL, NULL, "static int __attribute__((deprecated)) func(int x) { return x; }" }, { "HAVE_ATTRIBUTE_NONNULL", "__attribute__((nonnull)) support", "DEFINES_FUNC", NULL, NULL, "static char *__attribute__((nonnull)) func(char *p) { return p; }" }, { "HAVE_ATTRIBUTE_SENTINEL", "__attribute__((sentinel)) support", "DEFINES_FUNC", NULL, NULL, "static int __attribute__((sentinel)) func(int i, ...) { return i; }" }, { "HAVE_ATTRIBUTE_PURE", "__attribute__((pure)) support", "DEFINES_FUNC", NULL, NULL, "static int __attribute__((pure)) func(int x) { return x; }" }, { "HAVE_ATTRIBUTE_MAY_ALIAS", "__attribute__((may_alias)) support", "OUTSIDE_MAIN", NULL, NULL, "typedef short __attribute__((__may_alias__)) short_a;" }, { "HAVE_ATTRIBUTE_NORETURN", "__attribute__((noreturn)) support", "DEFINES_FUNC", NULL, NULL, "#include <stdlib.h>\n" "static void __attribute__((noreturn)) func(int x) { exit(x); }" }, { "HAVE_ATTRIBUTE_PRINTF", "__attribute__ format printf support", "DEFINES_FUNC", NULL, NULL, "static void __attribute__((format(__printf__, 1, 2))) func(const char *fmt, ...) { (void)fmt; }" }, { "HAVE_ATTRIBUTE_UNUSED", "__attribute__((unused)) support", "OUTSIDE_MAIN", NULL, NULL, "static int __attribute__((unused)) func(int x) { return x; }" }, { "HAVE_ATTRIBUTE_USED", "__attribute__((used)) support", "OUTSIDE_MAIN", NULL, NULL, "static int __attribute__((used)) func(int x) { return x; }" }, { "HAVE_BACKTRACE", "backtrace() in <execinfo.h>", "DEFINES_FUNC", NULL, NULL, "#include <execinfo.h>\n" "static int func(int x) {" " void *bt[10];\n" " return backtrace(bt, 10) < x;\n" "}" }, { "HAVE_BIG_ENDIAN", "big endian", "INSIDE_MAIN|EXECUTE", NULL, NULL, "union { int i; char c[sizeof(int)]; } u;\n" "u.i = 0x01020304;\n" "return u.c[0] == 0x01 && u.c[1] == 0x02 && u.c[2] == 0x03 && u.c[3] == 0x04 ? 0 : 1;" }, { "HAVE_BSWAP_64", "bswap64 in byteswap.h", "DEFINES_FUNC", "HAVE_BYTESWAP_H", NULL, "#include <byteswap.h>\n" "static int func(int x) { return bswap_64(x); }" }, { "HAVE_BUILTIN_CHOOSE_EXPR", "__builtin_choose_expr support", "INSIDE_MAIN", NULL, NULL, "return __builtin_choose_expr(1, 0, \"garbage\");" }, { "HAVE_BUILTIN_CLZ", "__builtin_clz support", "INSIDE_MAIN", NULL, NULL, "return __builtin_clz(1) == (sizeof(int)*8 - 1) ? 0 : 1;" }, { "HAVE_BUILTIN_CLZL", "__builtin_clzl support", "INSIDE_MAIN", NULL, NULL, "return __builtin_clzl(1) == (sizeof(long)*8 - 1) ? 0 : 1;" }, { "HAVE_BUILTIN_CLZLL", "__builtin_clzll support", "INSIDE_MAIN", NULL, NULL, "return __builtin_clzll(1) == (sizeof(long long)*8 - 1) ? 0 : 1;" }, { "HAVE_BUILTIN_CTZ", "__builtin_ctz support", "INSIDE_MAIN", NULL, NULL, "return __builtin_ctz(1 << (sizeof(int)*8 - 1)) == (sizeof(int)*8 - 1) ? 0 : 1;" }, { "HAVE_BUILTIN_CTZL", "__builtin_ctzl support", "INSIDE_MAIN", NULL, NULL, "return __builtin_ctzl(1UL << (sizeof(long)*8 - 1)) == (sizeof(long)*8 - 1) ? 0 : 1;" }, { "HAVE_BUILTIN_CTZLL", "__builtin_ctzll support", "INSIDE_MAIN", NULL, NULL, "return __builtin_ctzll(1ULL << (sizeof(long long)*8 - 1)) == (sizeof(long long)*8 - 1) ? 0 : 1;" }, { "HAVE_BUILTIN_CONSTANT_P", "__builtin_constant_p support", "INSIDE_MAIN", NULL, NULL, "return __builtin_constant_p(1) ? 0 : 1;" }, { "HAVE_BUILTIN_EXPECT", "__builtin_expect support", "INSIDE_MAIN", NULL, NULL, "return __builtin_expect(argc == 1, 1) ? 0 : 1;" }, { "HAVE_BUILTIN_FFS", "__builtin_ffs support", "INSIDE_MAIN", NULL, NULL, "return __builtin_ffs(0) == 0 ? 0 : 1;" }, { "HAVE_BUILTIN_FFSL", "__builtin_ffsl support", "INSIDE_MAIN", NULL, NULL, "return __builtin_ffsl(0L) == 0 ? 0 : 1;" }, { "HAVE_BUILTIN_FFSLL", "__builtin_ffsll support", "INSIDE_MAIN", NULL, NULL, "return __builtin_ffsll(0LL) == 0 ? 0 : 1;" }, { "HAVE_BUILTIN_POPCOUNT", "__builtin_popcount support", "INSIDE_MAIN", NULL, NULL, "return __builtin_popcount(255) == 8 ? 0 : 1;" }, { "HAVE_BUILTIN_POPCOUNTL", "__builtin_popcountl support", "INSIDE_MAIN", NULL, NULL, "return __builtin_popcountl(255L) == 8 ? 0 : 1;" }, { "HAVE_BUILTIN_POPCOUNTLL", "__builtin_popcountll support", "INSIDE_MAIN", NULL, NULL, "return __builtin_popcountll(255LL) == 8 ? 0 : 1;" }, { "HAVE_BUILTIN_TYPES_COMPATIBLE_P", "__builtin_types_compatible_p support", "INSIDE_MAIN", NULL, NULL, "return __builtin_types_compatible_p(char *, int) ? 1 : 0;" }, { "HAVE_ICCARM_INTRINSICS", "<intrinsics.h>", "DEFINES_FUNC", NULL, NULL, "#include <intrinsics.h>\n" "int func(int v) {\n" " return __CLZ(__RBIT(v));\n" "}" }, { "HAVE_BYTESWAP_H", "<byteswap.h>", "OUTSIDE_MAIN", NULL, NULL, "#include <byteswap.h>\n" }, { "HAVE_CLOCK_GETTIME", "clock_gettime() declaration", "DEFINES_FUNC", "HAVE_STRUCT_TIMESPEC", NULL, "#include <time.h>\n" "static struct timespec func(void) {\n" " struct timespec ts;\n" " clock_gettime(CLOCK_REALTIME, &ts);\n" " return ts;\n" "}\n" }, { "HAVE_CLOCK_GETTIME_IN_LIBRT", "clock_gettime() in librt", "DEFINES_FUNC", "HAVE_STRUCT_TIMESPEC !HAVE_CLOCK_GETTIME", "-lrt", "#include <time.h>\n" "static struct timespec func(void) {\n" " struct timespec ts;\n" " clock_gettime(CLOCK_REALTIME, &ts);\n" " return ts;\n" "}\n", /* This means HAVE_CLOCK_GETTIME, too */ "HAVE_CLOCK_GETTIME" }, { "HAVE_COMPOUND_LITERALS", "compound literal support", "INSIDE_MAIN", NULL, NULL, "int *foo = (int[]) { 1, 2, 3, 4 };\n" "return foo[0] ? 0 : 1;" }, { "HAVE_FCHDIR", "fchdir support", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", NULL, NULL, "#include <sys/types.h>\n" "#include <sys/stat.h>\n" "#include <fcntl.h>\n" "#include <unistd.h>\n" "int main(void) {\n" " int fd = open(\"..\", O_RDONLY);\n" " return fchdir(fd) == 0 ? 0 : 1;\n" "}\n" }, { "HAVE_ERR_H", "<err.h>", "DEFINES_FUNC", NULL, NULL, "#include <err.h>\n" "static void func(int arg) {\n" " if (arg == 0)\n" " err(1, \"err %u\", arg);\n" " if (arg == 1)\n" " errx(1, \"err %u\", arg);\n" " if (arg == 3)\n" " warn(\"warn %u\", arg);\n" " if (arg == 4)\n" " warnx(\"warn %u\", arg);\n" "}\n" }, { "HAVE_FILE_OFFSET_BITS", "_FILE_OFFSET_BITS to get 64-bit offsets", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", "HAVE_32BIT_OFF_T", NULL, "#define _FILE_OFFSET_BITS 64\n" "#include <sys/types.h>\n" "int main(void) {\n" " return sizeof(off_t) == 8 ? 0 : 1;\n" "}\n" }, { "HAVE_FOR_LOOP_DECLARATION", "for loop declaration support", "INSIDE_MAIN", NULL, NULL, "int ret = 1;\n" "for (int i = 0; i < argc; i++) { ret = 0; };\n" "return ret;" }, { "HAVE_FLEXIBLE_ARRAY_MEMBER", "flexible array member support", "OUTSIDE_MAIN", NULL, NULL, "struct foo { unsigned int x; int arr[]; };" }, { "HAVE_GETPAGESIZE", "getpagesize() in <unistd.h>", "DEFINES_FUNC", NULL, NULL, "#include <unistd.h>\n" "static int func(void) { return getpagesize(); }" }, { "HAVE_ISBLANK", "isblank() in <ctype.h>", "DEFINES_FUNC", NULL, NULL, "#ifndef _GNU_SOURCE\n" "#define _GNU_SOURCE\n" "#endif\n" "#include <ctype.h>\n" "static int func(void) { return isblank(' '); }" }, { "HAVE_LITTLE_ENDIAN", "little endian", "INSIDE_MAIN|EXECUTE", NULL, NULL, "union { int i; char c[sizeof(int)]; } u;\n" "u.i = 0x01020304;\n" "return u.c[0] == 0x04 && u.c[1] == 0x03 && u.c[2] == 0x02 && u.c[3] == 0x01 ? 0 : 1;" }, { "HAVE_MEMMEM", "memmem in <string.h>", "DEFINES_FUNC", NULL, NULL, "#ifndef _GNU_SOURCE\n" "#define _GNU_SOURCE\n" "#endif\n" "#include <string.h>\n" "static void *func(void *h, size_t hl, void *n, size_t nl) {\n" "return memmem(h, hl, n, nl);" "}\n", }, { "HAVE_MEMRCHR", "memrchr in <string.h>", "DEFINES_FUNC", NULL, NULL, "#ifndef _GNU_SOURCE\n" "#define _GNU_SOURCE\n" "#endif\n" "#include <string.h>\n" "static void *func(void *s, int c, size_t n) {\n" "return memrchr(s, c, n);" "}\n", }, { "HAVE_MMAP", "mmap() declaration", "DEFINES_FUNC", NULL, NULL, "#include <sys/mman.h>\n" "static void *func(int fd) {\n" " return mmap(0, 65536, PROT_READ, MAP_SHARED, fd, 0);\n" "}" }, { "HAVE_PROC_SELF_MAPS", "/proc/self/maps exists", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", NULL, NULL, "#include <sys/types.h>\n" "#include <sys/stat.h>\n" "#include <fcntl.h>\n" "int main(void) {\n" " return open(\"/proc/self/maps\", O_RDONLY) != -1 ? 0 : 1;\n" "}\n" }, { "HAVE_QSORT_R_PRIVATE_LAST", "qsort_r cmp takes trailing arg", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", NULL, NULL, "#ifndef _GNU_SOURCE\n" "#define _GNU_SOURCE\n" "#endif\n" "#include <stdlib.h>\n" "static int cmp(const void *lp, const void *rp, void *priv) {\n" " *(unsigned int *)priv = 1;\n" " return *(const int *)lp - *(const int *)rp; }\n" "int main(void) {\n" " int array[] = { 9, 2, 5 };\n" " unsigned int called = 0;\n" " qsort_r(array, 3, sizeof(int), cmp, &called);\n" " return called && array[0] == 2 && array[1] == 5 && array[2] == 9 ? 0 : 1;\n" "}\n" }, { "HAVE_STRUCT_TIMESPEC", "struct timespec declaration", "DEFINES_FUNC", NULL, NULL, "#include <time.h>\n" "static void func(void) {\n" " struct timespec ts;\n" " ts.tv_sec = ts.tv_nsec = 1;\n" "}\n" }, { "HAVE_SECTION_START_STOP", "__attribute__((section)) and __start/__stop", "DEFINES_FUNC", NULL, NULL, "static void *__attribute__((__section__(\"mysec\"))) p = &p;\n" "static int func(void) {\n" " extern void *__start_mysec[], *__stop_mysec[];\n" " return __stop_mysec - __start_mysec;\n" "}\n" }, { "HAVE_STACK_GROWS_UPWARDS", "stack grows upwards", "DEFINES_EVERYTHING|EXECUTE", NULL, NULL, "#include <stddef.h>\n" "static ptrdiff_t nest(const void *base, unsigned int i)\n" "{\n" " if (i == 0)\n" " return (const char *)&i - (const char *)base;\n" " return nest(base, i-1);\n" "}\n" "int main(int argc, char *argv[]) {\n" " (void)argv;\n" " return (nest(&argc, argc) > 0) ? 0 : 1;\n" "}\n" }, { "HAVE_STATEMENT_EXPR", "statement expression support", "INSIDE_MAIN", NULL, NULL, "return ({ int x = argc; x == argc ? 0 : 1; });" }, { "HAVE_SYS_FILIO_H", "<sys/filio.h>", "OUTSIDE_MAIN", NULL, NULL, /* Solaris needs this for FIONREAD */ "#include <sys/filio.h>\n" }, { "HAVE_SYS_TERMIOS_H", "<sys/termios.h>", "OUTSIDE_MAIN", NULL, NULL, "#include <sys/termios.h>\n" }, { "HAVE_SYS_UNISTD_H", "<sys/unistd.h>", "OUTSIDE_MAIN", NULL, NULL, "#include <sys/unistd.h>\n" }, { "HAVE_TYPEOF", "__typeof__ support", "INSIDE_MAIN", NULL, NULL, "__typeof__(argc) i; i = argc; return i == argc ? 0 : 1;" }, { "HAVE_UNALIGNED_ACCESS", "unaligned access to int", "DEFINES_EVERYTHING|EXECUTE", NULL, NULL, "#include <string.h>\n" "int main(int argc, char *argv[]) {\n" " (void)argc;\n" " char pad[sizeof(int *) * 1];\n" " strncpy(pad, argv[0], sizeof(pad));\n" " int *x = (int *)pad, *y = (int *)(pad + 1);\n" " return *x == *y;\n" "}\n" }, { "HAVE_UTIME", "utime() declaration", "DEFINES_FUNC", NULL, NULL, "#include <sys/types.h>\n" "#include <utime.h>\n" "static int func(const char *filename) {\n" " struct utimbuf times = { 0 };\n" " return utime(filename, &times);\n" "}" }, { "HAVE_WARN_UNUSED_RESULT", "__attribute__((warn_unused_result))", "DEFINES_FUNC", NULL, NULL, "#include <sys/types.h>\n" "#include <utime.h>\n" "static __attribute__((warn_unused_result)) int func(int i) {\n" " return i + 1;\n" "}" }, { "HAVE_OPENMP", "#pragma omp and -fopenmp support", "INSIDE_MAIN", NULL, NULL, "int i;\n" "#pragma omp parallel for\n" "for(i = 0; i < 0; i++) {};\n" "return 0;\n", "-Werror -fopenmp" }, { "HAVE_VALGRIND_MEMCHECK_H", "<valgrind/memcheck.h>", "OUTSIDE_MAIN", NULL, NULL, "#include <valgrind/memcheck.h>\n" }, { "HAVE_UCONTEXT", "working <ucontext.h", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", NULL, NULL, "#include <ucontext.h>\n" "static int x = 0;\n" "static char stack[2048];\n" "static ucontext_t a, b;\n" "static void fn(void) {\n" " x |= 2;\n" " setcontext(&b);\n" " x |= 4;\n" "}\n" "int main(void) {\n" " x |= 1;\n" " getcontext(&a);\n" " a.uc_stack.ss_sp = stack;\n" " a.uc_stack.ss_size = sizeof(stack);\n" " makecontext(&a, fn, 0);\n" " swapcontext(&b, &a);\n" " return (x == 3) ? 0 : 1;\n" "}\n" }, { "HAVE_POINTER_SAFE_MAKECONTEXT", "passing pointers via makecontext()", "DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE", "HAVE_UCONTEXT", NULL, "#include <stddef.h>\n" "#include <ucontext.h>\n" "static int worked = 0;\n" "static char stack[1024];\n" "static ucontext_t a, b;\n" "static void fn(void *p, void *q) {\n" " void *cp = &worked;\n" " void *cq = (void *)(~((ptrdiff_t)cp));\n" " if ((p == cp) && (q == cq))\n" " worked = 1;\n" " setcontext(&b);\n" "}\n" "int main(void) {\n" " void *ap = &worked;\n" " void *aq = (void *)(~((ptrdiff_t)ap));\n" " getcontext(&a);\n" " a.uc_stack.ss_sp = stack;\n" " a.uc_stack.ss_size = sizeof(stack);\n" " makecontext(&a, (void (*)(void))fn, 2, ap, aq);\n" " swapcontext(&b, &a);\n" " return worked ? 0 : 1;\n" "}\n" }, }; static void c12r_err(int eval, const char *fmt, ...) { int err_errno = errno; va_list ap; fprintf(stderr, "%s: ", progname); va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); fprintf(stderr, ": %s\n", strerror(err_errno)); exit(eval); } static void c12r_errx(int eval, const char *fmt, ...) { va_list ap; fprintf(stderr, "%s: ", progname); va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); fprintf(stderr, "\n"); exit(eval); } static void start_test(const char *what, const char *why) { if (like_a_libtool) { printf("%s%s... ", what, why); fflush(stdout); } } static void end_test(bool result) { if (like_a_libtool) printf("%s\n", result ? "yes" : "no"); } static size_t fcopy(FILE *fsrc, FILE *fdst) { char buffer[BUFSIZ]; size_t rsize, wsize; size_t copied = 0; while ((rsize = fread(buffer, 1, BUFSIZ, fsrc)) > 0) { wsize = fwrite(buffer, 1, rsize, fdst); copied += wsize; if (wsize != rsize) break; } return copied; } static char *grab_stream(FILE *file) { size_t max, ret, size = 0; char *buffer; max = BUFSIZ; buffer = malloc(max); while ((ret = fread(buffer+size, 1, max - size, file)) == max - size) { size += ret; buffer = realloc(buffer, max *= 2); } size += ret; if (ferror(file)) c12r_err(EXIT_TROUBLE_RUNNING, "reading from command"); buffer[size] = '\0'; return buffer; } static char *run(const char *cmd, int *exitstatus) { static const char redir[] = " 2>&1"; size_t cmdlen; char *cmdredir; FILE *cmdout; char *ret; cmdlen = strlen(cmd); cmdredir = malloc(cmdlen + sizeof(redir)); memcpy(cmdredir, cmd, cmdlen); memcpy(cmdredir + cmdlen, redir, sizeof(redir)); cmdout = popen(cmdredir, "r"); if (!cmdout) c12r_err(EXIT_TROUBLE_RUNNING, "popen \"%s\"", cmdredir); free(cmdredir); ret = grab_stream(cmdout); *exitstatus = pclose(cmdout); return ret; } static char *connect_args(const char *argv[], const char *outflag, const char *files) { unsigned int i; char *ret; size_t len = strlen(outflag) + strlen(files) + 1; for (i = 1; argv[i]; i++) len += 1 + strlen(argv[i]); ret = malloc(len); len = 0; for (i = 1; argv[i]; i++) { strcpy(ret + len, argv[i]); len += strlen(argv[i]); if (argv[i+1] || *outflag) ret[len++] = ' '; } strcpy(ret + len, outflag); len += strlen(outflag); strcpy(ret + len, files); return ret; } static struct test *find_test(const char *name) { unsigned int i; for (i = 0; tests[i].name; i++) { if (strcmp(tests[i].name, name) == 0) return &tests[i]; } c12r_errx(EXIT_BAD_TEST, "Unknown test %s", name); abort(); } #define PRE_BOILERPLATE "/* Test program generated by configurator. */\n" #define MAIN_START_BOILERPLATE \ "int main(int argc, char *argv[]) {\n" \ " (void)argc;\n" \ " (void)argv;\n" #define USE_FUNC_BOILERPLATE "(void)func;\n" #define MAIN_BODY_BOILERPLATE "return 0;\n" #define MAIN_END_BOILERPLATE "}\n" static bool run_test(const char *cmd, struct test *test) { char *output, *newcmd; FILE *outf; int status; if (test->done) return test->answer; if (test->depends) { size_t len; const char *deps = test->depends; char *dep; /* Space-separated dependencies, could be ! for inverse. */ while ((len = strcspn(deps, " ")) != 0) { bool positive = true; if (deps[len]) { dep = strdup(deps); dep[len] = '\0'; } else { dep = (char *)deps; } if (dep[0] == '!') { dep++; positive = false; } if (run_test(cmd, find_test(dep)) != positive) { test->answer = false; test->done = true; return test->answer; } if (deps[len]) free(dep); deps += len; deps += strspn(deps, " "); } } outf = fopen(INPUT_FILE, verbose > 1 ? "w+" : "w"); if (!outf) c12r_err(EXIT_TROUBLE_RUNNING, "creating %s", INPUT_FILE); fprintf(outf, "%s", PRE_BOILERPLATE); if (strstr(test->style, "INSIDE_MAIN")) { fprintf(outf, "%s", MAIN_START_BOILERPLATE); fprintf(outf, "%s", test->fragment); fprintf(outf, "%s", MAIN_END_BOILERPLATE); } else if (strstr(test->style, "OUTSIDE_MAIN")) { fprintf(outf, "%s", test->fragment); fprintf(outf, "%s", MAIN_START_BOILERPLATE); fprintf(outf, "%s", MAIN_BODY_BOILERPLATE); fprintf(outf, "%s", MAIN_END_BOILERPLATE); } else if (strstr(test->style, "DEFINES_FUNC")) { fprintf(outf, "%s", test->fragment); fprintf(outf, "%s", MAIN_START_BOILERPLATE); fprintf(outf, "%s", USE_FUNC_BOILERPLATE); fprintf(outf, "%s", MAIN_BODY_BOILERPLATE); fprintf(outf, "%s", MAIN_END_BOILERPLATE); } else if (strstr(test->style, "DEFINES_EVERYTHING")) { fprintf(outf, "%s", test->fragment); } else c12r_errx(EXIT_BAD_TEST, "Unknown style for test %s: %s", test->name, test->style); if (verbose > 1) { fseek(outf, 0, SEEK_SET); fcopy(outf, stdout); } fclose(outf); newcmd = strdup(cmd); if (test->flags) { newcmd = realloc(newcmd, strlen(newcmd) + strlen(" ") + strlen(test->flags) + 1); strcat(newcmd, " "); strcat(newcmd, test->flags); if (verbose > 1) printf("Extra flags line: %s", newcmd); } if (test->link) { newcmd = realloc(newcmd, strlen(newcmd) + strlen(" ") + strlen(test->link) + 1); strcat(newcmd, " "); strcat(newcmd, test->link); if (verbose > 1) printf("Extra link line: %s", newcmd); } start_test("checking for ", test->desc); output = run(newcmd, &status); free(newcmd); if (status != 0 || strstr(output, "warning")) { if (verbose) printf("Compile %s for %s, status %i: %s\n", status ? "fail" : "warning", test->name, status, output); if (strstr(test->style, "EXECUTE") && !strstr(test->style, "MAY_NOT_COMPILE")) c12r_errx(EXIT_BAD_TEST, "Test for %s did not compile:\n%s", test->name, output); test->answer = false; free(output); } else { /* Compile succeeded. */ free(output); /* We run INSIDE_MAIN tests for sanity checking. */ if (strstr(test->style, "EXECUTE") || strstr(test->style, "INSIDE_MAIN")) { output = run("." DIR_SEP OUTPUT_FILE, &status); if (!strstr(test->style, "EXECUTE") && status != 0) c12r_errx(EXIT_BAD_TEST, "Test for %s failed with %i:\n%s", test->name, status, output); if (verbose && status) printf("%s exited %i\n", test->name, status); free(output); } test->answer = (status == 0); } test->done = true; end_test(test->answer); if (test->answer && test->overrides) { struct test *override = find_test(test->overrides); override->done = true; override->answer = true; } return test->answer; } static char *any_field(char **fieldname) { char buf[1000]; for (;;) { char *p, *eq; if (!fgets(buf, sizeof(buf), stdin)) return NULL; p = buf; /* Ignore whitespace, lines starting with # */ while (*p == ' ' || *p == '\t') p++; if (*p == '#' || *p == '\n') continue; eq = strchr(p, '='); if (!eq) c12r_errx(EXIT_BAD_INPUT, "no = in line: %s", p); *eq = '\0'; *fieldname = strdup(p); p = eq + 1; if (strlen(p) && p[strlen(p)-1] == '\n') p[strlen(p)-1] = '\0'; return strdup(p); } } static char *read_field(const char *name, bool compulsory) { char *fieldname, *value; value = any_field(&fieldname); if (!value) { if (!compulsory) return NULL; c12r_errx(EXIT_BAD_INPUT, "Could not read field %s", name); } if (strcmp(fieldname, name) != 0) c12r_errx(EXIT_BAD_INPUT, "Expected field %s not %s", name, fieldname); return value; } /* Test descriptions from stdin: * Lines starting with # or whitespace-only are ignored. * * First three non-ignored lines must be: * var=<varname> * desc=<description-for-autotools-style> * style=OUTSIDE_MAIN DEFINES_FUNC INSIDE_MAIN DEFINES_EVERYTHING EXECUTE MAY_NOT_COMPILE * * Followed by optional lines: * depends=<space-separated-testnames, ! to invert> * link=<extra args for link line> * flags=<extra args for compile line> * overrides=<testname-to-force> * * Finally a code line, either: * code=<oneline> OR * code= * <lines of code> * <end-comment> * * And <end-comment> looks like this next comment: */ /*END*/ static bool read_test(struct test *test) { char *field, *value; char buf[1000]; memset(test, 0, sizeof(*test)); test->name = read_field("var", false); if (!test->name) return false; test->desc = read_field("desc", true); test->style = read_field("style", true); /* Read any optional fields. */ while ((value = any_field(&field)) != NULL) { if (strcmp(field, "depends") == 0) test->depends = value; else if (strcmp(field, "link") == 0) test->link = value; else if (strcmp(field, "flags") == 0) test->flags = value; else if (strcmp(field, "overrides") == 0) test->overrides = value; else if (strcmp(field, "code") == 0) break; else c12r_errx(EXIT_BAD_INPUT, "Unknown field %s in %s", field, test->name); } if (!value) c12r_errx(EXIT_BAD_INPUT, "Missing code in %s", test->name); if (strlen(value) == 0) { /* Multiline program, read to END comment */ while (fgets(buf, sizeof(buf), stdin) != 0) { size_t n; if (strncmp(buf, "/*END*/", 7) == 0) break; n = strlen(value); value = realloc(value, n + strlen(buf) + 1); strcpy(value + n, buf); n += strlen(buf); } } test->fragment = value; return true; } static void read_tests(size_t num_tests) { while (read_test(tests + num_tests)) { num_tests++; tests = realloc(tests, (num_tests + 1) * sizeof(tests[0])); tests[num_tests].name = NULL; } } int main(int argc, const char *argv[]) { char *cmd; unsigned int i; const char *default_args[] = { "", DEFAULT_COMPILER, DEFAULT_FLAGS, NULL }; const char *outflag = DEFAULT_OUTPUT_EXE_FLAG; const char *configurator_cc = NULL; const char *orig_cc; const char *varfile = NULL; const char *headerfile = NULL; bool extra_tests = false; FILE *outf; if (argc > 0) progname = argv[0]; while (argc > 1) { if (strcmp(argv[1], "--help") == 0) { printf("Usage: configurator [-v] [--var-file=<filename>] [-O<outflag>] [--configurator-cc=<compiler-for-tests>] [--autotools-style] [--extra-tests] [<compiler> <flags>...]\n" " <compiler> <flags> will have \"<outflag> <outfile> <infile.c>\" appended\n" "Default: %s %s %s\n", DEFAULT_COMPILER, DEFAULT_FLAGS, DEFAULT_OUTPUT_EXE_FLAG); exit(0); } if (strncmp(argv[1], "-O", 2) == 0) { argc--; argv++; outflag = argv[1] + 2; if (!*outflag) { fprintf(stderr, "%s: option requires an argument -- O\n", argv[0]); exit(EXIT_BAD_USAGE); } } else if (strcmp(argv[1], "-v") == 0) { argc--; argv++; verbose++; } else if (strcmp(argv[1], "-vv") == 0) { argc--; argv++; verbose += 2; } else if (strncmp(argv[1], "--configurator-cc=", 18) == 0) { configurator_cc = argv[1] + 18; argc--; argv++; } else if (strncmp(argv[1], "--var-file=", 11) == 0) { varfile = argv[1] + 11; argc--; argv++; } else if (strcmp(argv[1], "--autotools-style") == 0) { like_a_libtool = true; argc--; argv++; } else if (strncmp(argv[1], "--header-file=", 14) == 0) { headerfile = argv[1] + 14; argc--; argv++; } else if (strcmp(argv[1], "--extra-tests") == 0) { extra_tests = true; argc--; argv++; } else if (strcmp(argv[1], "--") == 0) { break; } else if (argv[1][0] == '-') { c12r_errx(EXIT_BAD_USAGE, "Unknown option %s", argv[1]); } else { break; } } if (argc == 1) argv = default_args; /* Copy with NULL entry at end */ tests = calloc(sizeof(base_tests)/sizeof(base_tests[0]) + 1, sizeof(base_tests[0])); memcpy(tests, base_tests, sizeof(base_tests)); if (extra_tests) read_tests(sizeof(base_tests)/sizeof(base_tests[0])); orig_cc = argv[1]; if (configurator_cc) argv[1] = configurator_cc; cmd = connect_args(argv, outflag, OUTPUT_FILE " " INPUT_FILE); if (like_a_libtool) { start_test("Making autoconf users comfortable", ""); sleep(1); end_test(1); } for (i = 0; tests[i].name; i++) run_test(cmd, &tests[i]); free(cmd); remove(OUTPUT_FILE); remove(INPUT_FILE); if (varfile) { FILE *vars; if (strcmp(varfile, "-") == 0) vars = stdout; else { start_test("Writing variables to ", varfile); vars = fopen(varfile, "a"); if (!vars) c12r_err(EXIT_TROUBLE_RUNNING, "Could not open %s", varfile); } for (i = 0; tests[i].name; i++) fprintf(vars, "%s=%u\n", tests[i].name, tests[i].answer); if (vars != stdout) { if (fclose(vars) != 0) c12r_err(EXIT_TROUBLE_RUNNING, "Closing %s", varfile); end_test(1); } } if (headerfile) { start_test("Writing header to ", headerfile); outf = fopen(headerfile, "w"); if (!outf) c12r_err(EXIT_TROUBLE_RUNNING, "Could not open %s", headerfile); } else outf = stdout; fprintf(outf, "/* Generated by CCAN configurator */\n" "#ifndef CCAN_CONFIG_H\n" "#define CCAN_CONFIG_H\n"); fprintf(outf, "#ifndef _GNU_SOURCE\n"); fprintf(outf, "#define _GNU_SOURCE /* Always use GNU extensions. */\n"); fprintf(outf, "#endif\n"); fprintf(outf, "#define CCAN_COMPILER \"%s\"\n", orig_cc); cmd = connect_args(argv + 1, "", ""); fprintf(outf, "#define CCAN_CFLAGS \"%s\"\n", cmd); free(cmd); fprintf(outf, "#define CCAN_OUTPUT_EXE_CFLAG \"%s\"\n\n", outflag); /* This one implies "#include <ccan/..." works, eg. for tdb2.h */ fprintf(outf, "#define HAVE_CCAN 1\n"); for (i = 0; tests[i].name; i++) fprintf(outf, "#define %s %u\n", tests[i].name, tests[i].answer); fprintf(outf, "#endif /* CCAN_CONFIG_H */\n"); if (headerfile) { if (fclose(outf) != 0) c12r_err(EXIT_TROUBLE_RUNNING, "Closing %s", headerfile); end_test(1); } return 0; }
the_stack_data/61075224.c
#include <stdio.h> #include <stdlib.h> void matriz_ponteiro(int mtr[3][4]) { for (int lin = 0; lin < 3; lin++) { for (int col = 0; col < 4; col++) printf("\t%d", mtr[lin][col]); printf("\n"); } } int main () { int mtr[3][4]; for (int lin = 0, cont = 0; lin < 3; lin++) for (int col = 0; col < 4; col++) mtr[lin][col] = cont++; matriz_ponteiro(mtr); } //https://pt.stackoverflow.com/q/165524/101
the_stack_data/175142121.c
// // RUN: %clang_cc1 -E -dM -ffreestanding -triple=i386-none-none < /dev/null | FileCheck -match-full-lines -check-prefix I386 %s // // I386-NOT:#define _LP64 // I386:#define __BIGGEST_ALIGNMENT__ 16 // I386:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // I386:#define __CHAR16_TYPE__ unsigned short // I386:#define __CHAR32_TYPE__ unsigned int // I386:#define __CHAR_BIT__ 8 // I386:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // I386:#define __DBL_DIG__ 15 // I386:#define __DBL_EPSILON__ 2.2204460492503131e-16 // I386:#define __DBL_HAS_DENORM__ 1 // I386:#define __DBL_HAS_INFINITY__ 1 // I386:#define __DBL_HAS_QUIET_NAN__ 1 // I386:#define __DBL_MANT_DIG__ 53 // I386:#define __DBL_MAX_10_EXP__ 308 // I386:#define __DBL_MAX_EXP__ 1024 // I386:#define __DBL_MAX__ 1.7976931348623157e+308 // I386:#define __DBL_MIN_10_EXP__ (-307) // I386:#define __DBL_MIN_EXP__ (-1021) // I386:#define __DBL_MIN__ 2.2250738585072014e-308 // I386:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // I386:#define __FLT_DENORM_MIN__ 1.40129846e-45F // I386:#define __FLT_DIG__ 6 // I386:#define __FLT_EPSILON__ 1.19209290e-7F // I386:#define __FLT_HAS_DENORM__ 1 // I386:#define __FLT_HAS_INFINITY__ 1 // I386:#define __FLT_HAS_QUIET_NAN__ 1 // I386:#define __FLT_MANT_DIG__ 24 // I386:#define __FLT_MAX_10_EXP__ 38 // I386:#define __FLT_MAX_EXP__ 128 // I386:#define __FLT_MAX__ 3.40282347e+38F // I386:#define __FLT_MIN_10_EXP__ (-37) // I386:#define __FLT_MIN_EXP__ (-125) // I386:#define __FLT_MIN__ 1.17549435e-38F // I386:#define __FLT_RADIX__ 2 // I386:#define __INT16_C_SUFFIX__ // I386:#define __INT16_FMTd__ "hd" // I386:#define __INT16_FMTi__ "hi" // I386:#define __INT16_MAX__ 32767 // I386:#define __INT16_TYPE__ short // I386:#define __INT32_C_SUFFIX__ // I386:#define __INT32_FMTd__ "d" // I386:#define __INT32_FMTi__ "i" // I386:#define __INT32_MAX__ 2147483647 // I386:#define __INT32_TYPE__ int // I386:#define __INT64_C_SUFFIX__ LL // I386:#define __INT64_FMTd__ "lld" // I386:#define __INT64_FMTi__ "lli" // I386:#define __INT64_MAX__ 9223372036854775807LL // I386:#define __INT64_TYPE__ long long int // I386:#define __INT8_C_SUFFIX__ // I386:#define __INT8_FMTd__ "hhd" // I386:#define __INT8_FMTi__ "hhi" // I386:#define __INT8_MAX__ 127 // I386:#define __INT8_TYPE__ signed char // I386:#define __INTMAX_C_SUFFIX__ LL // I386:#define __INTMAX_FMTd__ "lld" // I386:#define __INTMAX_FMTi__ "lli" // I386:#define __INTMAX_MAX__ 9223372036854775807LL // I386:#define __INTMAX_TYPE__ long long int // I386:#define __INTMAX_WIDTH__ 64 // I386:#define __INTPTR_FMTd__ "d" // I386:#define __INTPTR_FMTi__ "i" // I386:#define __INTPTR_MAX__ 2147483647 // I386:#define __INTPTR_TYPE__ int // I386:#define __INTPTR_WIDTH__ 32 // I386:#define __INT_FAST16_FMTd__ "hd" // I386:#define __INT_FAST16_FMTi__ "hi" // I386:#define __INT_FAST16_MAX__ 32767 // I386:#define __INT_FAST16_TYPE__ short // I386:#define __INT_FAST32_FMTd__ "d" // I386:#define __INT_FAST32_FMTi__ "i" // I386:#define __INT_FAST32_MAX__ 2147483647 // I386:#define __INT_FAST32_TYPE__ int // I386:#define __INT_FAST64_FMTd__ "lld" // I386:#define __INT_FAST64_FMTi__ "lli" // I386:#define __INT_FAST64_MAX__ 9223372036854775807LL // I386:#define __INT_FAST64_TYPE__ long long int // I386:#define __INT_FAST8_FMTd__ "hhd" // I386:#define __INT_FAST8_FMTi__ "hhi" // I386:#define __INT_FAST8_MAX__ 127 // I386:#define __INT_FAST8_TYPE__ signed char // I386:#define __INT_LEAST16_FMTd__ "hd" // I386:#define __INT_LEAST16_FMTi__ "hi" // I386:#define __INT_LEAST16_MAX__ 32767 // I386:#define __INT_LEAST16_TYPE__ short // I386:#define __INT_LEAST32_FMTd__ "d" // I386:#define __INT_LEAST32_FMTi__ "i" // I386:#define __INT_LEAST32_MAX__ 2147483647 // I386:#define __INT_LEAST32_TYPE__ int // I386:#define __INT_LEAST64_FMTd__ "lld" // I386:#define __INT_LEAST64_FMTi__ "lli" // I386:#define __INT_LEAST64_MAX__ 9223372036854775807LL // I386:#define __INT_LEAST64_TYPE__ long long int // I386:#define __INT_LEAST8_FMTd__ "hhd" // I386:#define __INT_LEAST8_FMTi__ "hhi" // I386:#define __INT_LEAST8_MAX__ 127 // I386:#define __INT_LEAST8_TYPE__ signed char // I386:#define __INT_MAX__ 2147483647 // I386:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // I386:#define __LDBL_DIG__ 18 // I386:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // I386:#define __LDBL_HAS_DENORM__ 1 // I386:#define __LDBL_HAS_INFINITY__ 1 // I386:#define __LDBL_HAS_QUIET_NAN__ 1 // I386:#define __LDBL_MANT_DIG__ 64 // I386:#define __LDBL_MAX_10_EXP__ 4932 // I386:#define __LDBL_MAX_EXP__ 16384 // I386:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // I386:#define __LDBL_MIN_10_EXP__ (-4931) // I386:#define __LDBL_MIN_EXP__ (-16381) // I386:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // I386:#define __LITTLE_ENDIAN__ 1 // I386:#define __LONG_LONG_MAX__ 9223372036854775807LL // I386:#define __LONG_MAX__ 2147483647L // I386-NOT:#define __LP64__ // I386:#define __NO_MATH_INLINES 1 // I386:#define __POINTER_WIDTH__ 32 // I386:#define __PTRDIFF_TYPE__ int // I386:#define __PTRDIFF_WIDTH__ 32 // I386:#define __REGISTER_PREFIX__ // I386:#define __SCHAR_MAX__ 127 // I386:#define __SHRT_MAX__ 32767 // I386:#define __SIG_ATOMIC_MAX__ 2147483647 // I386:#define __SIG_ATOMIC_WIDTH__ 32 // I386:#define __SIZEOF_DOUBLE__ 8 // I386:#define __SIZEOF_FLOAT__ 4 // I386:#define __SIZEOF_INT__ 4 // I386:#define __SIZEOF_LONG_DOUBLE__ 12 // I386:#define __SIZEOF_LONG_LONG__ 8 // I386:#define __SIZEOF_LONG__ 4 // I386:#define __SIZEOF_POINTER__ 4 // I386:#define __SIZEOF_PTRDIFF_T__ 4 // I386:#define __SIZEOF_SHORT__ 2 // I386:#define __SIZEOF_SIZE_T__ 4 // I386:#define __SIZEOF_WCHAR_T__ 4 // I386:#define __SIZEOF_WINT_T__ 4 // I386:#define __SIZE_MAX__ 4294967295U // I386:#define __SIZE_TYPE__ unsigned int // I386:#define __SIZE_WIDTH__ 32 // I386:#define __UINT16_C_SUFFIX__ // I386:#define __UINT16_MAX__ 65535 // I386:#define __UINT16_TYPE__ unsigned short // I386:#define __UINT32_C_SUFFIX__ U // I386:#define __UINT32_MAX__ 4294967295U // I386:#define __UINT32_TYPE__ unsigned int // I386:#define __UINT64_C_SUFFIX__ ULL // I386:#define __UINT64_MAX__ 18446744073709551615ULL // I386:#define __UINT64_TYPE__ long long unsigned int // I386:#define __UINT8_C_SUFFIX__ // I386:#define __UINT8_MAX__ 255 // I386:#define __UINT8_TYPE__ unsigned char // I386:#define __UINTMAX_C_SUFFIX__ ULL // I386:#define __UINTMAX_MAX__ 18446744073709551615ULL // I386:#define __UINTMAX_TYPE__ long long unsigned int // I386:#define __UINTMAX_WIDTH__ 64 // I386:#define __UINTPTR_MAX__ 4294967295U // I386:#define __UINTPTR_TYPE__ unsigned int // I386:#define __UINTPTR_WIDTH__ 32 // I386:#define __UINT_FAST16_MAX__ 65535 // I386:#define __UINT_FAST16_TYPE__ unsigned short // I386:#define __UINT_FAST32_MAX__ 4294967295U // I386:#define __UINT_FAST32_TYPE__ unsigned int // I386:#define __UINT_FAST64_MAX__ 18446744073709551615ULL // I386:#define __UINT_FAST64_TYPE__ long long unsigned int // I386:#define __UINT_FAST8_MAX__ 255 // I386:#define __UINT_FAST8_TYPE__ unsigned char // I386:#define __UINT_LEAST16_MAX__ 65535 // I386:#define __UINT_LEAST16_TYPE__ unsigned short // I386:#define __UINT_LEAST32_MAX__ 4294967295U // I386:#define __UINT_LEAST32_TYPE__ unsigned int // I386:#define __UINT_LEAST64_MAX__ 18446744073709551615ULL // I386:#define __UINT_LEAST64_TYPE__ long long unsigned int // I386:#define __UINT_LEAST8_MAX__ 255 // I386:#define __UINT_LEAST8_TYPE__ unsigned char // I386:#define __USER_LABEL_PREFIX__ // I386:#define __WCHAR_MAX__ 2147483647 // I386:#define __WCHAR_TYPE__ int // I386:#define __WCHAR_WIDTH__ 32 // I386:#define __WINT_TYPE__ int // I386:#define __WINT_WIDTH__ 32 // I386:#define __i386 1 // I386:#define __i386__ 1 // I386:#define i386 1 // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=i386-pc-linux-gnu -target-cpu pentium4 < /dev/null | FileCheck -match-full-lines -check-prefix I386-LINUX -check-prefix I386-LINUX-ALIGN32 %s // RUN: %clang_cc1 -x c++ -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=i386-pc-linux-gnu -target-cpu pentium4 < /dev/null | FileCheck -match-full-lines -check-prefix I386-LINUX -check-prefix I386-LINUX-CXX -check-prefix I386-LINUX-ALIGN32 %s // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=i386-pc-linux-gnu -target-cpu pentium4 -malign-double < /dev/null | FileCheck -match-full-lines -check-prefix I386-LINUX -check-prefix I386-LINUX-ALIGN64 %s // // I386-LINUX-NOT:#define _LP64 // I386-LINUX:#define __BIGGEST_ALIGNMENT__ 16 // I386-LINUX:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // I386-LINUX:#define __CHAR16_TYPE__ unsigned short // I386-LINUX:#define __CHAR32_TYPE__ unsigned int // I386-LINUX:#define __CHAR_BIT__ 8 // I386-LINUX:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // I386-LINUX:#define __DBL_DIG__ 15 // I386-LINUX:#define __DBL_EPSILON__ 2.2204460492503131e-16 // I386-LINUX:#define __DBL_HAS_DENORM__ 1 // I386-LINUX:#define __DBL_HAS_INFINITY__ 1 // I386-LINUX:#define __DBL_HAS_QUIET_NAN__ 1 // I386-LINUX:#define __DBL_MANT_DIG__ 53 // I386-LINUX:#define __DBL_MAX_10_EXP__ 308 // I386-LINUX:#define __DBL_MAX_EXP__ 1024 // I386-LINUX:#define __DBL_MAX__ 1.7976931348623157e+308 // I386-LINUX:#define __DBL_MIN_10_EXP__ (-307) // I386-LINUX:#define __DBL_MIN_EXP__ (-1021) // I386-LINUX:#define __DBL_MIN__ 2.2250738585072014e-308 // I386-LINUX:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // I386-LINUX:#define __FLT_DENORM_MIN__ 1.40129846e-45F // I386-LINUX:#define __FLT_DIG__ 6 // I386-LINUX:#define __FLT_EPSILON__ 1.19209290e-7F // I386-LINUX:#define __FLT_HAS_DENORM__ 1 // I386-LINUX:#define __FLT_HAS_INFINITY__ 1 // I386-LINUX:#define __FLT_HAS_QUIET_NAN__ 1 // I386-LINUX:#define __FLT_MANT_DIG__ 24 // I386-LINUX:#define __FLT_MAX_10_EXP__ 38 // I386-LINUX:#define __FLT_MAX_EXP__ 128 // I386-LINUX:#define __FLT_MAX__ 3.40282347e+38F // I386-LINUX:#define __FLT_MIN_10_EXP__ (-37) // I386-LINUX:#define __FLT_MIN_EXP__ (-125) // I386-LINUX:#define __FLT_MIN__ 1.17549435e-38F // I386-LINUX:#define __FLT_RADIX__ 2 // I386-LINUX:#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_INT_LOCK_FREE 2 // I386-LINUX-ALIGN32:#define __GCC_ATOMIC_LLONG_LOCK_FREE 1 // I386-LINUX-ALIGN64:#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_LONG_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 // I386-LINUX:#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 // I386-LINUX:#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 // I386-LINUX:#define __INT16_C_SUFFIX__ // I386-LINUX:#define __INT16_FMTd__ "hd" // I386-LINUX:#define __INT16_FMTi__ "hi" // I386-LINUX:#define __INT16_MAX__ 32767 // I386-LINUX:#define __INT16_TYPE__ short // I386-LINUX:#define __INT32_C_SUFFIX__ // I386-LINUX:#define __INT32_FMTd__ "d" // I386-LINUX:#define __INT32_FMTi__ "i" // I386-LINUX:#define __INT32_MAX__ 2147483647 // I386-LINUX:#define __INT32_TYPE__ int // I386-LINUX:#define __INT64_C_SUFFIX__ LL // I386-LINUX:#define __INT64_FMTd__ "lld" // I386-LINUX:#define __INT64_FMTi__ "lli" // I386-LINUX:#define __INT64_MAX__ 9223372036854775807LL // I386-LINUX:#define __INT64_TYPE__ long long int // I386-LINUX:#define __INT8_C_SUFFIX__ // I386-LINUX:#define __INT8_FMTd__ "hhd" // I386-LINUX:#define __INT8_FMTi__ "hhi" // I386-LINUX:#define __INT8_MAX__ 127 // I386-LINUX:#define __INT8_TYPE__ signed char // I386-LINUX:#define __INTMAX_C_SUFFIX__ LL // I386-LINUX:#define __INTMAX_FMTd__ "lld" // I386-LINUX:#define __INTMAX_FMTi__ "lli" // I386-LINUX:#define __INTMAX_MAX__ 9223372036854775807LL // I386-LINUX:#define __INTMAX_TYPE__ long long int // I386-LINUX:#define __INTMAX_WIDTH__ 64 // I386-LINUX:#define __INTPTR_FMTd__ "d" // I386-LINUX:#define __INTPTR_FMTi__ "i" // I386-LINUX:#define __INTPTR_MAX__ 2147483647 // I386-LINUX:#define __INTPTR_TYPE__ int // I386-LINUX:#define __INTPTR_WIDTH__ 32 // I386-LINUX:#define __INT_FAST16_FMTd__ "hd" // I386-LINUX:#define __INT_FAST16_FMTi__ "hi" // I386-LINUX:#define __INT_FAST16_MAX__ 32767 // I386-LINUX:#define __INT_FAST16_TYPE__ short // I386-LINUX:#define __INT_FAST32_FMTd__ "d" // I386-LINUX:#define __INT_FAST32_FMTi__ "i" // I386-LINUX:#define __INT_FAST32_MAX__ 2147483647 // I386-LINUX:#define __INT_FAST32_TYPE__ int // I386-LINUX:#define __INT_FAST64_FMTd__ "lld" // I386-LINUX:#define __INT_FAST64_FMTi__ "lli" // I386-LINUX:#define __INT_FAST64_MAX__ 9223372036854775807LL // I386-LINUX:#define __INT_FAST64_TYPE__ long long int // I386-LINUX:#define __INT_FAST8_FMTd__ "hhd" // I386-LINUX:#define __INT_FAST8_FMTi__ "hhi" // I386-LINUX:#define __INT_FAST8_MAX__ 127 // I386-LINUX:#define __INT_FAST8_TYPE__ signed char // I386-LINUX:#define __INT_LEAST16_FMTd__ "hd" // I386-LINUX:#define __INT_LEAST16_FMTi__ "hi" // I386-LINUX:#define __INT_LEAST16_MAX__ 32767 // I386-LINUX:#define __INT_LEAST16_TYPE__ short // I386-LINUX:#define __INT_LEAST32_FMTd__ "d" // I386-LINUX:#define __INT_LEAST32_FMTi__ "i" // I386-LINUX:#define __INT_LEAST32_MAX__ 2147483647 // I386-LINUX:#define __INT_LEAST32_TYPE__ int // I386-LINUX:#define __INT_LEAST64_FMTd__ "lld" // I386-LINUX:#define __INT_LEAST64_FMTi__ "lli" // I386-LINUX:#define __INT_LEAST64_MAX__ 9223372036854775807LL // I386-LINUX:#define __INT_LEAST64_TYPE__ long long int // I386-LINUX:#define __INT_LEAST8_FMTd__ "hhd" // I386-LINUX:#define __INT_LEAST8_FMTi__ "hhi" // I386-LINUX:#define __INT_LEAST8_MAX__ 127 // I386-LINUX:#define __INT_LEAST8_TYPE__ signed char // I386-LINUX:#define __INT_MAX__ 2147483647 // I386-LINUX:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // I386-LINUX:#define __LDBL_DIG__ 18 // I386-LINUX:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // I386-LINUX:#define __LDBL_HAS_DENORM__ 1 // I386-LINUX:#define __LDBL_HAS_INFINITY__ 1 // I386-LINUX:#define __LDBL_HAS_QUIET_NAN__ 1 // I386-LINUX:#define __LDBL_MANT_DIG__ 64 // I386-LINUX:#define __LDBL_MAX_10_EXP__ 4932 // I386-LINUX:#define __LDBL_MAX_EXP__ 16384 // I386-LINUX:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // I386-LINUX:#define __LDBL_MIN_10_EXP__ (-4931) // I386-LINUX:#define __LDBL_MIN_EXP__ (-16381) // I386-LINUX:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // I386-LINUX:#define __LITTLE_ENDIAN__ 1 // I386-LINUX:#define __LONG_LONG_MAX__ 9223372036854775807LL // I386-LINUX:#define __LONG_MAX__ 2147483647L // I386-LINUX-NOT:#define __LP64__ // I386-LINUX:#define __NO_MATH_INLINES 1 // I386-LINUX:#define __POINTER_WIDTH__ 32 // I386-LINUX:#define __PTRDIFF_TYPE__ int // I386-LINUX:#define __PTRDIFF_WIDTH__ 32 // I386-LINUX:#define __REGISTER_PREFIX__ // I386-LINUX:#define __SCHAR_MAX__ 127 // I386-LINUX:#define __SHRT_MAX__ 32767 // I386-LINUX:#define __SIG_ATOMIC_MAX__ 2147483647 // I386-LINUX:#define __SIG_ATOMIC_WIDTH__ 32 // I386-LINUX:#define __SIZEOF_DOUBLE__ 8 // I386-LINUX:#define __SIZEOF_FLOAT__ 4 // I386-LINUX:#define __SIZEOF_INT__ 4 // I386-LINUX:#define __SIZEOF_LONG_DOUBLE__ 12 // I386-LINUX:#define __SIZEOF_LONG_LONG__ 8 // I386-LINUX:#define __SIZEOF_LONG__ 4 // I386-LINUX:#define __SIZEOF_POINTER__ 4 // I386-LINUX:#define __SIZEOF_PTRDIFF_T__ 4 // I386-LINUX:#define __SIZEOF_SHORT__ 2 // I386-LINUX:#define __SIZEOF_SIZE_T__ 4 // I386-LINUX:#define __SIZEOF_WCHAR_T__ 4 // I386-LINUX:#define __SIZEOF_WINT_T__ 4 // I386-LINUX:#define __SIZE_MAX__ 4294967295U // I386-LINUX:#define __SIZE_TYPE__ unsigned int // I386-LINUX:#define __SIZE_WIDTH__ 32 // I386-LINUX-CXX:#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 8U // I386-LINUX:#define __UINT16_C_SUFFIX__ // I386-LINUX:#define __UINT16_MAX__ 65535 // I386-LINUX:#define __UINT16_TYPE__ unsigned short // I386-LINUX:#define __UINT32_C_SUFFIX__ U // I386-LINUX:#define __UINT32_MAX__ 4294967295U // I386-LINUX:#define __UINT32_TYPE__ unsigned int // I386-LINUX:#define __UINT64_C_SUFFIX__ ULL // I386-LINUX:#define __UINT64_MAX__ 18446744073709551615ULL // I386-LINUX:#define __UINT64_TYPE__ long long unsigned int // I386-LINUX:#define __UINT8_C_SUFFIX__ // I386-LINUX:#define __UINT8_MAX__ 255 // I386-LINUX:#define __UINT8_TYPE__ unsigned char // I386-LINUX:#define __UINTMAX_C_SUFFIX__ ULL // I386-LINUX:#define __UINTMAX_MAX__ 18446744073709551615ULL // I386-LINUX:#define __UINTMAX_TYPE__ long long unsigned int // I386-LINUX:#define __UINTMAX_WIDTH__ 64 // I386-LINUX:#define __UINTPTR_MAX__ 4294967295U // I386-LINUX:#define __UINTPTR_TYPE__ unsigned int // I386-LINUX:#define __UINTPTR_WIDTH__ 32 // I386-LINUX:#define __UINT_FAST16_MAX__ 65535 // I386-LINUX:#define __UINT_FAST16_TYPE__ unsigned short // I386-LINUX:#define __UINT_FAST32_MAX__ 4294967295U // I386-LINUX:#define __UINT_FAST32_TYPE__ unsigned int // I386-LINUX:#define __UINT_FAST64_MAX__ 18446744073709551615ULL // I386-LINUX:#define __UINT_FAST64_TYPE__ long long unsigned int // I386-LINUX:#define __UINT_FAST8_MAX__ 255 // I386-LINUX:#define __UINT_FAST8_TYPE__ unsigned char // I386-LINUX:#define __UINT_LEAST16_MAX__ 65535 // I386-LINUX:#define __UINT_LEAST16_TYPE__ unsigned short // I386-LINUX:#define __UINT_LEAST32_MAX__ 4294967295U // I386-LINUX:#define __UINT_LEAST32_TYPE__ unsigned int // I386-LINUX:#define __UINT_LEAST64_MAX__ 18446744073709551615ULL // I386-LINUX:#define __UINT_LEAST64_TYPE__ long long unsigned int // I386-LINUX:#define __UINT_LEAST8_MAX__ 255 // I386-LINUX:#define __UINT_LEAST8_TYPE__ unsigned char // I386-LINUX:#define __USER_LABEL_PREFIX__ // I386-LINUX:#define __WCHAR_MAX__ 2147483647 // I386-LINUX:#define __WCHAR_TYPE__ int // I386-LINUX:#define __WCHAR_WIDTH__ 32 // I386-LINUX:#define __WINT_TYPE__ unsigned int // I386-LINUX:#define __WINT_WIDTH__ 32 // I386-LINUX:#define __i386 1 // I386-LINUX:#define __i386__ 1 // I386-LINUX:#define i386 1 // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=i386-netbsd -target-cpu i486 < /dev/null | FileCheck -match-full-lines -check-prefix I386-NETBSD %s // RUN: %clang_cc1 -x c++ -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=i386-netbsd -target-cpu i486 < /dev/null | FileCheck -match-full-lines -check-prefix I386-NETBSD -check-prefix I386-NETBSD-CXX %s // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=i386-netbsd -target-cpu i486 -malign-double < /dev/null | FileCheck -match-full-lines -check-prefix I386-NETBSD %s // // // I386-NETBSD-NOT:#define _LP64 // I386-NETBSD:#define __BIGGEST_ALIGNMENT__ 16 // I386-NETBSD:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // I386-NETBSD:#define __CHAR16_TYPE__ unsigned short // I386-NETBSD:#define __CHAR32_TYPE__ unsigned int // I386-NETBSD:#define __CHAR_BIT__ 8 // I386-NETBSD:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // I386-NETBSD:#define __DBL_DIG__ 15 // I386-NETBSD:#define __DBL_EPSILON__ 2.2204460492503131e-16 // I386-NETBSD:#define __DBL_HAS_DENORM__ 1 // I386-NETBSD:#define __DBL_HAS_INFINITY__ 1 // I386-NETBSD:#define __DBL_HAS_QUIET_NAN__ 1 // I386-NETBSD:#define __DBL_MANT_DIG__ 53 // I386-NETBSD:#define __DBL_MAX_10_EXP__ 308 // I386-NETBSD:#define __DBL_MAX_EXP__ 1024 // I386-NETBSD:#define __DBL_MAX__ 1.7976931348623157e+308 // I386-NETBSD:#define __DBL_MIN_10_EXP__ (-307) // I386-NETBSD:#define __DBL_MIN_EXP__ (-1021) // I386-NETBSD:#define __DBL_MIN__ 2.2250738585072014e-308 // I386-NETBSD:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // I386-NETBSD:#define __FLT_DENORM_MIN__ 1.40129846e-45F // I386-NETBSD:#define __FLT_DIG__ 6 // I386-NETBSD:#define __FLT_EPSILON__ 1.19209290e-7F // I386-NETBSD:#define __FLT_HAS_DENORM__ 1 // I386-NETBSD:#define __FLT_HAS_INFINITY__ 1 // I386-NETBSD:#define __FLT_HAS_QUIET_NAN__ 1 // I386-NETBSD:#define __FLT_MANT_DIG__ 24 // I386-NETBSD:#define __FLT_MAX_10_EXP__ 38 // I386-NETBSD:#define __FLT_MAX_EXP__ 128 // I386-NETBSD:#define __FLT_MAX__ 3.40282347e+38F // I386-NETBSD:#define __FLT_MIN_10_EXP__ (-37) // I386-NETBSD:#define __FLT_MIN_EXP__ (-125) // I386-NETBSD:#define __FLT_MIN__ 1.17549435e-38F // I386-NETBSD:#define __FLT_RADIX__ 2 // I386-NETBSD:#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_INT_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_LLONG_LOCK_FREE 1 // I386-NETBSD:#define __GCC_ATOMIC_LONG_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 // I386-NETBSD:#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 // I386-NETBSD:#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 // I386-NETBSD:#define __INT16_C_SUFFIX__ // I386-NETBSD:#define __INT16_FMTd__ "hd" // I386-NETBSD:#define __INT16_FMTi__ "hi" // I386-NETBSD:#define __INT16_MAX__ 32767 // I386-NETBSD:#define __INT16_TYPE__ short // I386-NETBSD:#define __INT32_C_SUFFIX__ // I386-NETBSD:#define __INT32_FMTd__ "d" // I386-NETBSD:#define __INT32_FMTi__ "i" // I386-NETBSD:#define __INT32_MAX__ 2147483647 // I386-NETBSD:#define __INT32_TYPE__ int // I386-NETBSD:#define __INT64_C_SUFFIX__ LL // I386-NETBSD:#define __INT64_FMTd__ "lld" // I386-NETBSD:#define __INT64_FMTi__ "lli" // I386-NETBSD:#define __INT64_MAX__ 9223372036854775807LL // I386-NETBSD:#define __INT64_TYPE__ long long int // I386-NETBSD:#define __INT8_C_SUFFIX__ // I386-NETBSD:#define __INT8_FMTd__ "hhd" // I386-NETBSD:#define __INT8_FMTi__ "hhi" // I386-NETBSD:#define __INT8_MAX__ 127 // I386-NETBSD:#define __INT8_TYPE__ signed char // I386-NETBSD:#define __INTMAX_C_SUFFIX__ LL // I386-NETBSD:#define __INTMAX_FMTd__ "lld" // I386-NETBSD:#define __INTMAX_FMTi__ "lli" // I386-NETBSD:#define __INTMAX_MAX__ 9223372036854775807LL // I386-NETBSD:#define __INTMAX_TYPE__ long long int // I386-NETBSD:#define __INTMAX_WIDTH__ 64 // I386-NETBSD:#define __INTPTR_FMTd__ "d" // I386-NETBSD:#define __INTPTR_FMTi__ "i" // I386-NETBSD:#define __INTPTR_MAX__ 2147483647 // I386-NETBSD:#define __INTPTR_TYPE__ int // I386-NETBSD:#define __INTPTR_WIDTH__ 32 // I386-NETBSD:#define __INT_FAST16_FMTd__ "hd" // I386-NETBSD:#define __INT_FAST16_FMTi__ "hi" // I386-NETBSD:#define __INT_FAST16_MAX__ 32767 // I386-NETBSD:#define __INT_FAST16_TYPE__ short // I386-NETBSD:#define __INT_FAST32_FMTd__ "d" // I386-NETBSD:#define __INT_FAST32_FMTi__ "i" // I386-NETBSD:#define __INT_FAST32_MAX__ 2147483647 // I386-NETBSD:#define __INT_FAST32_TYPE__ int // I386-NETBSD:#define __INT_FAST64_FMTd__ "lld" // I386-NETBSD:#define __INT_FAST64_FMTi__ "lli" // I386-NETBSD:#define __INT_FAST64_MAX__ 9223372036854775807LL // I386-NETBSD:#define __INT_FAST64_TYPE__ long long int // I386-NETBSD:#define __INT_FAST8_FMTd__ "hhd" // I386-NETBSD:#define __INT_FAST8_FMTi__ "hhi" // I386-NETBSD:#define __INT_FAST8_MAX__ 127 // I386-NETBSD:#define __INT_FAST8_TYPE__ signed char // I386-NETBSD:#define __INT_LEAST16_FMTd__ "hd" // I386-NETBSD:#define __INT_LEAST16_FMTi__ "hi" // I386-NETBSD:#define __INT_LEAST16_MAX__ 32767 // I386-NETBSD:#define __INT_LEAST16_TYPE__ short // I386-NETBSD:#define __INT_LEAST32_FMTd__ "d" // I386-NETBSD:#define __INT_LEAST32_FMTi__ "i" // I386-NETBSD:#define __INT_LEAST32_MAX__ 2147483647 // I386-NETBSD:#define __INT_LEAST32_TYPE__ int // I386-NETBSD:#define __INT_LEAST64_FMTd__ "lld" // I386-NETBSD:#define __INT_LEAST64_FMTi__ "lli" // I386-NETBSD:#define __INT_LEAST64_MAX__ 9223372036854775807LL // I386-NETBSD:#define __INT_LEAST64_TYPE__ long long int // I386-NETBSD:#define __INT_LEAST8_FMTd__ "hhd" // I386-NETBSD:#define __INT_LEAST8_FMTi__ "hhi" // I386-NETBSD:#define __INT_LEAST8_MAX__ 127 // I386-NETBSD:#define __INT_LEAST8_TYPE__ signed char // I386-NETBSD:#define __INT_MAX__ 2147483647 // I386-NETBSD:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // I386-NETBSD:#define __LDBL_DIG__ 18 // I386-NETBSD:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // I386-NETBSD:#define __LDBL_HAS_DENORM__ 1 // I386-NETBSD:#define __LDBL_HAS_INFINITY__ 1 // I386-NETBSD:#define __LDBL_HAS_QUIET_NAN__ 1 // I386-NETBSD:#define __LDBL_MANT_DIG__ 64 // I386-NETBSD:#define __LDBL_MAX_10_EXP__ 4932 // I386-NETBSD:#define __LDBL_MAX_EXP__ 16384 // I386-NETBSD:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // I386-NETBSD:#define __LDBL_MIN_10_EXP__ (-4931) // I386-NETBSD:#define __LDBL_MIN_EXP__ (-16381) // I386-NETBSD:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // I386-NETBSD:#define __LITTLE_ENDIAN__ 1 // I386-NETBSD:#define __LONG_LONG_MAX__ 9223372036854775807LL // I386-NETBSD:#define __LONG_MAX__ 2147483647L // I386-NETBSD-NOT:#define __LP64__ // I386-NETBSD:#define __NO_MATH_INLINES 1 // I386-NETBSD:#define __POINTER_WIDTH__ 32 // I386-NETBSD:#define __PTRDIFF_TYPE__ int // I386-NETBSD:#define __PTRDIFF_WIDTH__ 32 // I386-NETBSD:#define __REGISTER_PREFIX__ // I386-NETBSD:#define __SCHAR_MAX__ 127 // I386-NETBSD:#define __SHRT_MAX__ 32767 // I386-NETBSD:#define __SIG_ATOMIC_MAX__ 2147483647 // I386-NETBSD:#define __SIG_ATOMIC_WIDTH__ 32 // I386-NETBSD:#define __SIZEOF_DOUBLE__ 8 // I386-NETBSD:#define __SIZEOF_FLOAT__ 4 // I386-NETBSD:#define __SIZEOF_INT__ 4 // I386-NETBSD:#define __SIZEOF_LONG_DOUBLE__ 12 // I386-NETBSD:#define __SIZEOF_LONG_LONG__ 8 // I386-NETBSD:#define __SIZEOF_LONG__ 4 // I386-NETBSD:#define __SIZEOF_POINTER__ 4 // I386-NETBSD:#define __SIZEOF_PTRDIFF_T__ 4 // I386-NETBSD:#define __SIZEOF_SHORT__ 2 // I386-NETBSD:#define __SIZEOF_SIZE_T__ 4 // I386-NETBSD:#define __SIZEOF_WCHAR_T__ 4 // I386-NETBSD:#define __SIZEOF_WINT_T__ 4 // I386-NETBSD:#define __SIZE_MAX__ 4294967295U // I386-NETBSD:#define __SIZE_TYPE__ unsigned int // I386-NETBSD:#define __SIZE_WIDTH__ 32 // I386-NETBSD-CXX:#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 4U // I386-NETBSD:#define __UINT16_C_SUFFIX__ // I386-NETBSD:#define __UINT16_MAX__ 65535 // I386-NETBSD:#define __UINT16_TYPE__ unsigned short // I386-NETBSD:#define __UINT32_C_SUFFIX__ U // I386-NETBSD:#define __UINT32_MAX__ 4294967295U // I386-NETBSD:#define __UINT32_TYPE__ unsigned int // I386-NETBSD:#define __UINT64_C_SUFFIX__ ULL // I386-NETBSD:#define __UINT64_MAX__ 18446744073709551615ULL // I386-NETBSD:#define __UINT64_TYPE__ long long unsigned int // I386-NETBSD:#define __UINT8_C_SUFFIX__ // I386-NETBSD:#define __UINT8_MAX__ 255 // I386-NETBSD:#define __UINT8_TYPE__ unsigned char // I386-NETBSD:#define __UINTMAX_C_SUFFIX__ ULL // I386-NETBSD:#define __UINTMAX_MAX__ 18446744073709551615ULL // I386-NETBSD:#define __UINTMAX_TYPE__ long long unsigned int // I386-NETBSD:#define __UINTMAX_WIDTH__ 64 // I386-NETBSD:#define __UINTPTR_MAX__ 4294967295U // I386-NETBSD:#define __UINTPTR_TYPE__ unsigned int // I386-NETBSD:#define __UINTPTR_WIDTH__ 32 // I386-NETBSD:#define __UINT_FAST16_MAX__ 65535 // I386-NETBSD:#define __UINT_FAST16_TYPE__ unsigned short // I386-NETBSD:#define __UINT_FAST32_MAX__ 4294967295U // I386-NETBSD:#define __UINT_FAST32_TYPE__ unsigned int // I386-NETBSD:#define __UINT_FAST64_MAX__ 18446744073709551615ULL // I386-NETBSD:#define __UINT_FAST64_TYPE__ long long unsigned int // I386-NETBSD:#define __UINT_FAST8_MAX__ 255 // I386-NETBSD:#define __UINT_FAST8_TYPE__ unsigned char // I386-NETBSD:#define __UINT_LEAST16_MAX__ 65535 // I386-NETBSD:#define __UINT_LEAST16_TYPE__ unsigned short // I386-NETBSD:#define __UINT_LEAST32_MAX__ 4294967295U // I386-NETBSD:#define __UINT_LEAST32_TYPE__ unsigned int // I386-NETBSD:#define __UINT_LEAST64_MAX__ 18446744073709551615ULL // I386-NETBSD:#define __UINT_LEAST64_TYPE__ long long unsigned int // I386-NETBSD:#define __UINT_LEAST8_MAX__ 255 // I386-NETBSD:#define __UINT_LEAST8_TYPE__ unsigned char // I386-NETBSD:#define __USER_LABEL_PREFIX__ // I386-NETBSD:#define __WCHAR_MAX__ 2147483647 // I386-NETBSD:#define __WCHAR_TYPE__ int // I386-NETBSD:#define __WCHAR_WIDTH__ 32 // I386-NETBSD:#define __WINT_TYPE__ int // I386-NETBSD:#define __WINT_WIDTH__ 32 // I386-NETBSD:#define __i386 1 // I386-NETBSD:#define __i386__ 1 // I386-NETBSD:#define i386 1 // RUN: %clang_cc1 -E -dM -triple=i686-pc-mingw32 < /dev/null | FileCheck -match-full-lines -check-prefix I386-DECLSPEC %s // RUN: %clang_cc1 -E -dM -fms-extensions -triple=i686-pc-mingw32 < /dev/null | FileCheck -match-full-lines -check-prefix I386-DECLSPEC %s // RUN: %clang_cc1 -E -dM -triple=i686-unknown-cygwin < /dev/null | FileCheck -match-full-lines -check-prefix I386-DECLSPEC %s // RUN: %clang_cc1 -E -dM -fms-extensions -triple=i686-unknown-cygwin < /dev/null | FileCheck -match-full-lines -check-prefix I386-DECLSPEC %s // I386-DECLSPEC: #define __declspec{{.*}} // // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-none-none < /dev/null | FileCheck -match-full-lines -check-prefix X86_64 %s // RUN: %clang_cc1 -x c++ -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-none-none < /dev/null | FileCheck -match-full-lines -check-prefix X86_64 -check-prefix X86_64-CXX %s // // X86_64:#define _LP64 1 // X86_64-NOT:#define _LP32 1 // X86_64:#define __BIGGEST_ALIGNMENT__ 16 // X86_64:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // X86_64:#define __CHAR16_TYPE__ unsigned short // X86_64:#define __CHAR32_TYPE__ unsigned int // X86_64:#define __CHAR_BIT__ 8 // X86_64:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // X86_64:#define __DBL_DIG__ 15 // X86_64:#define __DBL_EPSILON__ 2.2204460492503131e-16 // X86_64:#define __DBL_HAS_DENORM__ 1 // X86_64:#define __DBL_HAS_INFINITY__ 1 // X86_64:#define __DBL_HAS_QUIET_NAN__ 1 // X86_64:#define __DBL_MANT_DIG__ 53 // X86_64:#define __DBL_MAX_10_EXP__ 308 // X86_64:#define __DBL_MAX_EXP__ 1024 // X86_64:#define __DBL_MAX__ 1.7976931348623157e+308 // X86_64:#define __DBL_MIN_10_EXP__ (-307) // X86_64:#define __DBL_MIN_EXP__ (-1021) // X86_64:#define __DBL_MIN__ 2.2250738585072014e-308 // X86_64:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // X86_64:#define __FLT_DENORM_MIN__ 1.40129846e-45F // X86_64:#define __FLT_DIG__ 6 // X86_64:#define __FLT_EPSILON__ 1.19209290e-7F // X86_64:#define __FLT_HAS_DENORM__ 1 // X86_64:#define __FLT_HAS_INFINITY__ 1 // X86_64:#define __FLT_HAS_QUIET_NAN__ 1 // X86_64:#define __FLT_MANT_DIG__ 24 // X86_64:#define __FLT_MAX_10_EXP__ 38 // X86_64:#define __FLT_MAX_EXP__ 128 // X86_64:#define __FLT_MAX__ 3.40282347e+38F // X86_64:#define __FLT_MIN_10_EXP__ (-37) // X86_64:#define __FLT_MIN_EXP__ (-125) // X86_64:#define __FLT_MIN__ 1.17549435e-38F // X86_64:#define __FLT_RADIX__ 2 // X86_64:#define __INT16_C_SUFFIX__ // X86_64:#define __INT16_FMTd__ "hd" // X86_64:#define __INT16_FMTi__ "hi" // X86_64:#define __INT16_MAX__ 32767 // X86_64:#define __INT16_TYPE__ short // X86_64:#define __INT32_C_SUFFIX__ // X86_64:#define __INT32_FMTd__ "d" // X86_64:#define __INT32_FMTi__ "i" // X86_64:#define __INT32_MAX__ 2147483647 // X86_64:#define __INT32_TYPE__ int // X86_64:#define __INT64_C_SUFFIX__ L // X86_64:#define __INT64_FMTd__ "ld" // X86_64:#define __INT64_FMTi__ "li" // X86_64:#define __INT64_MAX__ 9223372036854775807L // X86_64:#define __INT64_TYPE__ long int // X86_64:#define __INT8_C_SUFFIX__ // X86_64:#define __INT8_FMTd__ "hhd" // X86_64:#define __INT8_FMTi__ "hhi" // X86_64:#define __INT8_MAX__ 127 // X86_64:#define __INT8_TYPE__ signed char // X86_64:#define __INTMAX_C_SUFFIX__ L // X86_64:#define __INTMAX_FMTd__ "ld" // X86_64:#define __INTMAX_FMTi__ "li" // X86_64:#define __INTMAX_MAX__ 9223372036854775807L // X86_64:#define __INTMAX_TYPE__ long int // X86_64:#define __INTMAX_WIDTH__ 64 // X86_64:#define __INTPTR_FMTd__ "ld" // X86_64:#define __INTPTR_FMTi__ "li" // X86_64:#define __INTPTR_MAX__ 9223372036854775807L // X86_64:#define __INTPTR_TYPE__ long int // X86_64:#define __INTPTR_WIDTH__ 64 // X86_64:#define __INT_FAST16_FMTd__ "hd" // X86_64:#define __INT_FAST16_FMTi__ "hi" // X86_64:#define __INT_FAST16_MAX__ 32767 // X86_64:#define __INT_FAST16_TYPE__ short // X86_64:#define __INT_FAST32_FMTd__ "d" // X86_64:#define __INT_FAST32_FMTi__ "i" // X86_64:#define __INT_FAST32_MAX__ 2147483647 // X86_64:#define __INT_FAST32_TYPE__ int // X86_64:#define __INT_FAST64_FMTd__ "ld" // X86_64:#define __INT_FAST64_FMTi__ "li" // X86_64:#define __INT_FAST64_MAX__ 9223372036854775807L // X86_64:#define __INT_FAST64_TYPE__ long int // X86_64:#define __INT_FAST8_FMTd__ "hhd" // X86_64:#define __INT_FAST8_FMTi__ "hhi" // X86_64:#define __INT_FAST8_MAX__ 127 // X86_64:#define __INT_FAST8_TYPE__ signed char // X86_64:#define __INT_LEAST16_FMTd__ "hd" // X86_64:#define __INT_LEAST16_FMTi__ "hi" // X86_64:#define __INT_LEAST16_MAX__ 32767 // X86_64:#define __INT_LEAST16_TYPE__ short // X86_64:#define __INT_LEAST32_FMTd__ "d" // X86_64:#define __INT_LEAST32_FMTi__ "i" // X86_64:#define __INT_LEAST32_MAX__ 2147483647 // X86_64:#define __INT_LEAST32_TYPE__ int // X86_64:#define __INT_LEAST64_FMTd__ "ld" // X86_64:#define __INT_LEAST64_FMTi__ "li" // X86_64:#define __INT_LEAST64_MAX__ 9223372036854775807L // X86_64:#define __INT_LEAST64_TYPE__ long int // X86_64:#define __INT_LEAST8_FMTd__ "hhd" // X86_64:#define __INT_LEAST8_FMTi__ "hhi" // X86_64:#define __INT_LEAST8_MAX__ 127 // X86_64:#define __INT_LEAST8_TYPE__ signed char // X86_64:#define __INT_MAX__ 2147483647 // X86_64:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // X86_64:#define __LDBL_DIG__ 18 // X86_64:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // X86_64:#define __LDBL_HAS_DENORM__ 1 // X86_64:#define __LDBL_HAS_INFINITY__ 1 // X86_64:#define __LDBL_HAS_QUIET_NAN__ 1 // X86_64:#define __LDBL_MANT_DIG__ 64 // X86_64:#define __LDBL_MAX_10_EXP__ 4932 // X86_64:#define __LDBL_MAX_EXP__ 16384 // X86_64:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // X86_64:#define __LDBL_MIN_10_EXP__ (-4931) // X86_64:#define __LDBL_MIN_EXP__ (-16381) // X86_64:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // X86_64:#define __LITTLE_ENDIAN__ 1 // X86_64:#define __LONG_LONG_MAX__ 9223372036854775807LL // X86_64:#define __LONG_MAX__ 9223372036854775807L // X86_64:#define __LP64__ 1 // X86_64-NOT:#define __ILP32__ 1 // X86_64:#define __MMX__ 1 // X86_64:#define __NO_MATH_INLINES 1 // X86_64:#define __POINTER_WIDTH__ 64 // X86_64:#define __PTRDIFF_TYPE__ long int // X86_64:#define __PTRDIFF_WIDTH__ 64 // X86_64:#define __REGISTER_PREFIX__ // X86_64:#define __SCHAR_MAX__ 127 // X86_64:#define __SHRT_MAX__ 32767 // X86_64:#define __SIG_ATOMIC_MAX__ 2147483647 // X86_64:#define __SIG_ATOMIC_WIDTH__ 32 // X86_64:#define __SIZEOF_DOUBLE__ 8 // X86_64:#define __SIZEOF_FLOAT__ 4 // X86_64:#define __SIZEOF_INT__ 4 // X86_64:#define __SIZEOF_LONG_DOUBLE__ 16 // X86_64:#define __SIZEOF_LONG_LONG__ 8 // X86_64:#define __SIZEOF_LONG__ 8 // X86_64:#define __SIZEOF_POINTER__ 8 // X86_64:#define __SIZEOF_PTRDIFF_T__ 8 // X86_64:#define __SIZEOF_SHORT__ 2 // X86_64:#define __SIZEOF_SIZE_T__ 8 // X86_64:#define __SIZEOF_WCHAR_T__ 4 // X86_64:#define __SIZEOF_WINT_T__ 4 // X86_64:#define __SIZE_MAX__ 18446744073709551615UL // X86_64:#define __SIZE_TYPE__ long unsigned int // X86_64:#define __SIZE_WIDTH__ 64 // X86_64:#define __SSE2_MATH__ 1 // X86_64:#define __SSE2__ 1 // X86_64:#define __SSE_MATH__ 1 // X86_64:#define __SSE__ 1 // X86_64-CXX:#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16UL // X86_64:#define __UINT16_C_SUFFIX__ // X86_64:#define __UINT16_MAX__ 65535 // X86_64:#define __UINT16_TYPE__ unsigned short // X86_64:#define __UINT32_C_SUFFIX__ U // X86_64:#define __UINT32_MAX__ 4294967295U // X86_64:#define __UINT32_TYPE__ unsigned int // X86_64:#define __UINT64_C_SUFFIX__ UL // X86_64:#define __UINT64_MAX__ 18446744073709551615UL // X86_64:#define __UINT64_TYPE__ long unsigned int // X86_64:#define __UINT8_C_SUFFIX__ // X86_64:#define __UINT8_MAX__ 255 // X86_64:#define __UINT8_TYPE__ unsigned char // X86_64:#define __UINTMAX_C_SUFFIX__ UL // X86_64:#define __UINTMAX_MAX__ 18446744073709551615UL // X86_64:#define __UINTMAX_TYPE__ long unsigned int // X86_64:#define __UINTMAX_WIDTH__ 64 // X86_64:#define __UINTPTR_MAX__ 18446744073709551615UL // X86_64:#define __UINTPTR_TYPE__ long unsigned int // X86_64:#define __UINTPTR_WIDTH__ 64 // X86_64:#define __UINT_FAST16_MAX__ 65535 // X86_64:#define __UINT_FAST16_TYPE__ unsigned short // X86_64:#define __UINT_FAST32_MAX__ 4294967295U // X86_64:#define __UINT_FAST32_TYPE__ unsigned int // X86_64:#define __UINT_FAST64_MAX__ 18446744073709551615UL // X86_64:#define __UINT_FAST64_TYPE__ long unsigned int // X86_64:#define __UINT_FAST8_MAX__ 255 // X86_64:#define __UINT_FAST8_TYPE__ unsigned char // X86_64:#define __UINT_LEAST16_MAX__ 65535 // X86_64:#define __UINT_LEAST16_TYPE__ unsigned short // X86_64:#define __UINT_LEAST32_MAX__ 4294967295U // X86_64:#define __UINT_LEAST32_TYPE__ unsigned int // X86_64:#define __UINT_LEAST64_MAX__ 18446744073709551615UL // X86_64:#define __UINT_LEAST64_TYPE__ long unsigned int // X86_64:#define __UINT_LEAST8_MAX__ 255 // X86_64:#define __UINT_LEAST8_TYPE__ unsigned char // X86_64:#define __USER_LABEL_PREFIX__ // X86_64:#define __WCHAR_MAX__ 2147483647 // X86_64:#define __WCHAR_TYPE__ int // X86_64:#define __WCHAR_WIDTH__ 32 // X86_64:#define __WINT_TYPE__ int // X86_64:#define __WINT_WIDTH__ 32 // X86_64:#define __amd64 1 // X86_64:#define __amd64__ 1 // X86_64:#define __code_model_small__ 1 // X86_64:#define __x86_64 1 // X86_64:#define __x86_64__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -triple=x86_64h-none-none < /dev/null | FileCheck -match-full-lines -check-prefix X86_64H %s // // X86_64H:#define __x86_64 1 // X86_64H:#define __x86_64__ 1 // X86_64H:#define __x86_64h 1 // X86_64H:#define __x86_64h__ 1 // RUN: %clang -xc - -E -dM -mcmodel=medium --target=i386-unknown-linux < /dev/null | FileCheck -match-full-lines -check-prefix X86_MEDIUM %s // X86_MEDIUM:#define __code_model_medium__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-none-none-gnux32 < /dev/null | FileCheck -match-full-lines -check-prefix X32 %s // RUN: %clang_cc1 -x c++ -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-none-none-gnux32 < /dev/null | FileCheck -match-full-lines -check-prefix X32 -check-prefix X32-CXX %s // // X32:#define _ILP32 1 // X32-NOT:#define _LP64 1 // X32:#define __BIGGEST_ALIGNMENT__ 16 // X32:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // X32:#define __CHAR16_TYPE__ unsigned short // X32:#define __CHAR32_TYPE__ unsigned int // X32:#define __CHAR_BIT__ 8 // X32:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // X32:#define __DBL_DIG__ 15 // X32:#define __DBL_EPSILON__ 2.2204460492503131e-16 // X32:#define __DBL_HAS_DENORM__ 1 // X32:#define __DBL_HAS_INFINITY__ 1 // X32:#define __DBL_HAS_QUIET_NAN__ 1 // X32:#define __DBL_MANT_DIG__ 53 // X32:#define __DBL_MAX_10_EXP__ 308 // X32:#define __DBL_MAX_EXP__ 1024 // X32:#define __DBL_MAX__ 1.7976931348623157e+308 // X32:#define __DBL_MIN_10_EXP__ (-307) // X32:#define __DBL_MIN_EXP__ (-1021) // X32:#define __DBL_MIN__ 2.2250738585072014e-308 // X32:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // X32:#define __FLT_DENORM_MIN__ 1.40129846e-45F // X32:#define __FLT_DIG__ 6 // X32:#define __FLT_EPSILON__ 1.19209290e-7F // X32:#define __FLT_HAS_DENORM__ 1 // X32:#define __FLT_HAS_INFINITY__ 1 // X32:#define __FLT_HAS_QUIET_NAN__ 1 // X32:#define __FLT_MANT_DIG__ 24 // X32:#define __FLT_MAX_10_EXP__ 38 // X32:#define __FLT_MAX_EXP__ 128 // X32:#define __FLT_MAX__ 3.40282347e+38F // X32:#define __FLT_MIN_10_EXP__ (-37) // X32:#define __FLT_MIN_EXP__ (-125) // X32:#define __FLT_MIN__ 1.17549435e-38F // X32:#define __FLT_RADIX__ 2 // X32:#define __ILP32__ 1 // X32-NOT:#define __LP64__ 1 // X32:#define __INT16_C_SUFFIX__ // X32:#define __INT16_FMTd__ "hd" // X32:#define __INT16_FMTi__ "hi" // X32:#define __INT16_MAX__ 32767 // X32:#define __INT16_TYPE__ short // X32:#define __INT32_C_SUFFIX__ // X32:#define __INT32_FMTd__ "d" // X32:#define __INT32_FMTi__ "i" // X32:#define __INT32_MAX__ 2147483647 // X32:#define __INT32_TYPE__ int // X32:#define __INT64_C_SUFFIX__ LL // X32:#define __INT64_FMTd__ "lld" // X32:#define __INT64_FMTi__ "lli" // X32:#define __INT64_MAX__ 9223372036854775807LL // X32:#define __INT64_TYPE__ long long int // X32:#define __INT8_C_SUFFIX__ // X32:#define __INT8_FMTd__ "hhd" // X32:#define __INT8_FMTi__ "hhi" // X32:#define __INT8_MAX__ 127 // X32:#define __INT8_TYPE__ signed char // X32:#define __INTMAX_C_SUFFIX__ LL // X32:#define __INTMAX_FMTd__ "lld" // X32:#define __INTMAX_FMTi__ "lli" // X32:#define __INTMAX_MAX__ 9223372036854775807LL // X32:#define __INTMAX_TYPE__ long long int // X32:#define __INTMAX_WIDTH__ 64 // X32:#define __INTPTR_FMTd__ "d" // X32:#define __INTPTR_FMTi__ "i" // X32:#define __INTPTR_MAX__ 2147483647 // X32:#define __INTPTR_TYPE__ int // X32:#define __INTPTR_WIDTH__ 32 // X32:#define __INT_FAST16_FMTd__ "hd" // X32:#define __INT_FAST16_FMTi__ "hi" // X32:#define __INT_FAST16_MAX__ 32767 // X32:#define __INT_FAST16_TYPE__ short // X32:#define __INT_FAST32_FMTd__ "d" // X32:#define __INT_FAST32_FMTi__ "i" // X32:#define __INT_FAST32_MAX__ 2147483647 // X32:#define __INT_FAST32_TYPE__ int // X32:#define __INT_FAST64_FMTd__ "lld" // X32:#define __INT_FAST64_FMTi__ "lli" // X32:#define __INT_FAST64_MAX__ 9223372036854775807LL // X32:#define __INT_FAST64_TYPE__ long long int // X32:#define __INT_FAST8_FMTd__ "hhd" // X32:#define __INT_FAST8_FMTi__ "hhi" // X32:#define __INT_FAST8_MAX__ 127 // X32:#define __INT_FAST8_TYPE__ signed char // X32:#define __INT_LEAST16_FMTd__ "hd" // X32:#define __INT_LEAST16_FMTi__ "hi" // X32:#define __INT_LEAST16_MAX__ 32767 // X32:#define __INT_LEAST16_TYPE__ short // X32:#define __INT_LEAST32_FMTd__ "d" // X32:#define __INT_LEAST32_FMTi__ "i" // X32:#define __INT_LEAST32_MAX__ 2147483647 // X32:#define __INT_LEAST32_TYPE__ int // X32:#define __INT_LEAST64_FMTd__ "lld" // X32:#define __INT_LEAST64_FMTi__ "lli" // X32:#define __INT_LEAST64_MAX__ 9223372036854775807LL // X32:#define __INT_LEAST64_TYPE__ long long int // X32:#define __INT_LEAST8_FMTd__ "hhd" // X32:#define __INT_LEAST8_FMTi__ "hhi" // X32:#define __INT_LEAST8_MAX__ 127 // X32:#define __INT_LEAST8_TYPE__ signed char // X32:#define __INT_MAX__ 2147483647 // X32:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // X32:#define __LDBL_DIG__ 18 // X32:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // X32:#define __LDBL_HAS_DENORM__ 1 // X32:#define __LDBL_HAS_INFINITY__ 1 // X32:#define __LDBL_HAS_QUIET_NAN__ 1 // X32:#define __LDBL_MANT_DIG__ 64 // X32:#define __LDBL_MAX_10_EXP__ 4932 // X32:#define __LDBL_MAX_EXP__ 16384 // X32:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // X32:#define __LDBL_MIN_10_EXP__ (-4931) // X32:#define __LDBL_MIN_EXP__ (-16381) // X32:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // X32:#define __LITTLE_ENDIAN__ 1 // X32:#define __LONG_LONG_MAX__ 9223372036854775807LL // X32:#define __LONG_MAX__ 2147483647L // X32:#define __MMX__ 1 // X32:#define __NO_MATH_INLINES 1 // X32:#define __POINTER_WIDTH__ 32 // X32:#define __PTRDIFF_TYPE__ int // X32:#define __PTRDIFF_WIDTH__ 32 // X32:#define __REGISTER_PREFIX__ // X32:#define __SCHAR_MAX__ 127 // X32:#define __SHRT_MAX__ 32767 // X32:#define __SIG_ATOMIC_MAX__ 2147483647 // X32:#define __SIG_ATOMIC_WIDTH__ 32 // X32:#define __SIZEOF_DOUBLE__ 8 // X32:#define __SIZEOF_FLOAT__ 4 // X32:#define __SIZEOF_INT__ 4 // X32:#define __SIZEOF_LONG_DOUBLE__ 16 // X32:#define __SIZEOF_LONG_LONG__ 8 // X32:#define __SIZEOF_LONG__ 4 // X32:#define __SIZEOF_POINTER__ 4 // X32:#define __SIZEOF_PTRDIFF_T__ 4 // X32:#define __SIZEOF_SHORT__ 2 // X32:#define __SIZEOF_SIZE_T__ 4 // X32:#define __SIZEOF_WCHAR_T__ 4 // X32:#define __SIZEOF_WINT_T__ 4 // X32:#define __SIZE_MAX__ 4294967295U // X32:#define __SIZE_TYPE__ unsigned int // X32:#define __SIZE_WIDTH__ 32 // X32:#define __SSE2_MATH__ 1 // X32:#define __SSE2__ 1 // X32:#define __SSE_MATH__ 1 // X32:#define __SSE__ 1 // X32-CXX:#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16U // X32:#define __UINT16_C_SUFFIX__ // X32:#define __UINT16_MAX__ 65535 // X32:#define __UINT16_TYPE__ unsigned short // X32:#define __UINT32_C_SUFFIX__ U // X32:#define __UINT32_MAX__ 4294967295U // X32:#define __UINT32_TYPE__ unsigned int // X32:#define __UINT64_C_SUFFIX__ ULL // X32:#define __UINT64_MAX__ 18446744073709551615ULL // X32:#define __UINT64_TYPE__ long long unsigned int // X32:#define __UINT8_C_SUFFIX__ // X32:#define __UINT8_MAX__ 255 // X32:#define __UINT8_TYPE__ unsigned char // X32:#define __UINTMAX_C_SUFFIX__ ULL // X32:#define __UINTMAX_MAX__ 18446744073709551615ULL // X32:#define __UINTMAX_TYPE__ long long unsigned int // X32:#define __UINTMAX_WIDTH__ 64 // X32:#define __UINTPTR_MAX__ 4294967295U // X32:#define __UINTPTR_TYPE__ unsigned int // X32:#define __UINTPTR_WIDTH__ 32 // X32:#define __UINT_FAST16_MAX__ 65535 // X32:#define __UINT_FAST16_TYPE__ unsigned short // X32:#define __UINT_FAST32_MAX__ 4294967295U // X32:#define __UINT_FAST32_TYPE__ unsigned int // X32:#define __UINT_FAST64_MAX__ 18446744073709551615ULL // X32:#define __UINT_FAST64_TYPE__ long long unsigned int // X32:#define __UINT_FAST8_MAX__ 255 // X32:#define __UINT_FAST8_TYPE__ unsigned char // X32:#define __UINT_LEAST16_MAX__ 65535 // X32:#define __UINT_LEAST16_TYPE__ unsigned short // X32:#define __UINT_LEAST32_MAX__ 4294967295U // X32:#define __UINT_LEAST32_TYPE__ unsigned int // X32:#define __UINT_LEAST64_MAX__ 18446744073709551615ULL // X32:#define __UINT_LEAST64_TYPE__ long long unsigned int // X32:#define __UINT_LEAST8_MAX__ 255 // X32:#define __UINT_LEAST8_TYPE__ unsigned char // X32:#define __USER_LABEL_PREFIX__ // X32:#define __WCHAR_MAX__ 2147483647 // X32:#define __WCHAR_TYPE__ int // X32:#define __WCHAR_WIDTH__ 32 // X32:#define __WINT_TYPE__ int // X32:#define __WINT_WIDTH__ 32 // X32:#define __amd64 1 // X32:#define __amd64__ 1 // X32:#define __x86_64 1 // X32:#define __x86_64__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-unknown-cloudabi < /dev/null | FileCheck -match-full-lines -check-prefix X86_64-CLOUDABI %s // // X86_64-CLOUDABI:#define _LP64 1 // X86_64-CLOUDABI:#define __ATOMIC_ACQUIRE 2 // X86_64-CLOUDABI:#define __ATOMIC_ACQ_REL 4 // X86_64-CLOUDABI:#define __ATOMIC_CONSUME 1 // X86_64-CLOUDABI:#define __ATOMIC_RELAXED 0 // X86_64-CLOUDABI:#define __ATOMIC_RELEASE 3 // X86_64-CLOUDABI:#define __ATOMIC_SEQ_CST 5 // X86_64-CLOUDABI:#define __BIGGEST_ALIGNMENT__ 16 // X86_64-CLOUDABI:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // X86_64-CLOUDABI:#define __CHAR16_TYPE__ unsigned short // X86_64-CLOUDABI:#define __CHAR32_TYPE__ unsigned int // X86_64-CLOUDABI:#define __CHAR_BIT__ 8 // X86_64-CLOUDABI:#define __CONSTANT_CFSTRINGS__ 1 // X86_64-CLOUDABI:#define __CloudABI__ 1 // X86_64-CLOUDABI:#define __DBL_DECIMAL_DIG__ 17 // X86_64-CLOUDABI:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // X86_64-CLOUDABI:#define __DBL_DIG__ 15 // X86_64-CLOUDABI:#define __DBL_EPSILON__ 2.2204460492503131e-16 // X86_64-CLOUDABI:#define __DBL_HAS_DENORM__ 1 // X86_64-CLOUDABI:#define __DBL_HAS_INFINITY__ 1 // X86_64-CLOUDABI:#define __DBL_HAS_QUIET_NAN__ 1 // X86_64-CLOUDABI:#define __DBL_MANT_DIG__ 53 // X86_64-CLOUDABI:#define __DBL_MAX_10_EXP__ 308 // X86_64-CLOUDABI:#define __DBL_MAX_EXP__ 1024 // X86_64-CLOUDABI:#define __DBL_MAX__ 1.7976931348623157e+308 // X86_64-CLOUDABI:#define __DBL_MIN_10_EXP__ (-307) // X86_64-CLOUDABI:#define __DBL_MIN_EXP__ (-1021) // X86_64-CLOUDABI:#define __DBL_MIN__ 2.2250738585072014e-308 // X86_64-CLOUDABI:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // X86_64-CLOUDABI:#define __ELF__ 1 // X86_64-CLOUDABI:#define __FINITE_MATH_ONLY__ 0 // X86_64-CLOUDABI:#define __FLT_DECIMAL_DIG__ 9 // X86_64-CLOUDABI:#define __FLT_DENORM_MIN__ 1.40129846e-45F // X86_64-CLOUDABI:#define __FLT_DIG__ 6 // X86_64-CLOUDABI:#define __FLT_EPSILON__ 1.19209290e-7F // X86_64-CLOUDABI:#define __FLT_HAS_DENORM__ 1 // X86_64-CLOUDABI:#define __FLT_HAS_INFINITY__ 1 // X86_64-CLOUDABI:#define __FLT_HAS_QUIET_NAN__ 1 // X86_64-CLOUDABI:#define __FLT_MANT_DIG__ 24 // X86_64-CLOUDABI:#define __FLT_MAX_10_EXP__ 38 // X86_64-CLOUDABI:#define __FLT_MAX_EXP__ 128 // X86_64-CLOUDABI:#define __FLT_MAX__ 3.40282347e+38F // X86_64-CLOUDABI:#define __FLT_MIN_10_EXP__ (-37) // X86_64-CLOUDABI:#define __FLT_MIN_EXP__ (-125) // X86_64-CLOUDABI:#define __FLT_MIN__ 1.17549435e-38F // X86_64-CLOUDABI:#define __FLT_RADIX__ 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_INT_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_LONG_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 // X86_64-CLOUDABI:#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 // X86_64-CLOUDABI:#define __GNUC_MINOR__ 2 // X86_64-CLOUDABI:#define __GNUC_PATCHLEVEL__ 1 // X86_64-CLOUDABI:#define __GNUC_STDC_INLINE__ 1 // X86_64-CLOUDABI:#define __GNUC__ 4 // X86_64-CLOUDABI:#define __GXX_ABI_VERSION 1002 // X86_64-CLOUDABI:#define __INT16_C_SUFFIX__ // X86_64-CLOUDABI:#define __INT16_FMTd__ "hd" // X86_64-CLOUDABI:#define __INT16_FMTi__ "hi" // X86_64-CLOUDABI:#define __INT16_MAX__ 32767 // X86_64-CLOUDABI:#define __INT16_TYPE__ short // X86_64-CLOUDABI:#define __INT32_C_SUFFIX__ // X86_64-CLOUDABI:#define __INT32_FMTd__ "d" // X86_64-CLOUDABI:#define __INT32_FMTi__ "i" // X86_64-CLOUDABI:#define __INT32_MAX__ 2147483647 // X86_64-CLOUDABI:#define __INT32_TYPE__ int // X86_64-CLOUDABI:#define __INT64_C_SUFFIX__ L // X86_64-CLOUDABI:#define __INT64_FMTd__ "ld" // X86_64-CLOUDABI:#define __INT64_FMTi__ "li" // X86_64-CLOUDABI:#define __INT64_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __INT64_TYPE__ long int // X86_64-CLOUDABI:#define __INT8_C_SUFFIX__ // X86_64-CLOUDABI:#define __INT8_FMTd__ "hhd" // X86_64-CLOUDABI:#define __INT8_FMTi__ "hhi" // X86_64-CLOUDABI:#define __INT8_MAX__ 127 // X86_64-CLOUDABI:#define __INT8_TYPE__ signed char // X86_64-CLOUDABI:#define __INTMAX_C_SUFFIX__ L // X86_64-CLOUDABI:#define __INTMAX_FMTd__ "ld" // X86_64-CLOUDABI:#define __INTMAX_FMTi__ "li" // X86_64-CLOUDABI:#define __INTMAX_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __INTMAX_TYPE__ long int // X86_64-CLOUDABI:#define __INTMAX_WIDTH__ 64 // X86_64-CLOUDABI:#define __INTPTR_FMTd__ "ld" // X86_64-CLOUDABI:#define __INTPTR_FMTi__ "li" // X86_64-CLOUDABI:#define __INTPTR_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __INTPTR_TYPE__ long int // X86_64-CLOUDABI:#define __INTPTR_WIDTH__ 64 // X86_64-CLOUDABI:#define __INT_FAST16_FMTd__ "hd" // X86_64-CLOUDABI:#define __INT_FAST16_FMTi__ "hi" // X86_64-CLOUDABI:#define __INT_FAST16_MAX__ 32767 // X86_64-CLOUDABI:#define __INT_FAST16_TYPE__ short // X86_64-CLOUDABI:#define __INT_FAST32_FMTd__ "d" // X86_64-CLOUDABI:#define __INT_FAST32_FMTi__ "i" // X86_64-CLOUDABI:#define __INT_FAST32_MAX__ 2147483647 // X86_64-CLOUDABI:#define __INT_FAST32_TYPE__ int // X86_64-CLOUDABI:#define __INT_FAST64_FMTd__ "ld" // X86_64-CLOUDABI:#define __INT_FAST64_FMTi__ "li" // X86_64-CLOUDABI:#define __INT_FAST64_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __INT_FAST64_TYPE__ long int // X86_64-CLOUDABI:#define __INT_FAST8_FMTd__ "hhd" // X86_64-CLOUDABI:#define __INT_FAST8_FMTi__ "hhi" // X86_64-CLOUDABI:#define __INT_FAST8_MAX__ 127 // X86_64-CLOUDABI:#define __INT_FAST8_TYPE__ signed char // X86_64-CLOUDABI:#define __INT_LEAST16_FMTd__ "hd" // X86_64-CLOUDABI:#define __INT_LEAST16_FMTi__ "hi" // X86_64-CLOUDABI:#define __INT_LEAST16_MAX__ 32767 // X86_64-CLOUDABI:#define __INT_LEAST16_TYPE__ short // X86_64-CLOUDABI:#define __INT_LEAST32_FMTd__ "d" // X86_64-CLOUDABI:#define __INT_LEAST32_FMTi__ "i" // X86_64-CLOUDABI:#define __INT_LEAST32_MAX__ 2147483647 // X86_64-CLOUDABI:#define __INT_LEAST32_TYPE__ int // X86_64-CLOUDABI:#define __INT_LEAST64_FMTd__ "ld" // X86_64-CLOUDABI:#define __INT_LEAST64_FMTi__ "li" // X86_64-CLOUDABI:#define __INT_LEAST64_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __INT_LEAST64_TYPE__ long int // X86_64-CLOUDABI:#define __INT_LEAST8_FMTd__ "hhd" // X86_64-CLOUDABI:#define __INT_LEAST8_FMTi__ "hhi" // X86_64-CLOUDABI:#define __INT_LEAST8_MAX__ 127 // X86_64-CLOUDABI:#define __INT_LEAST8_TYPE__ signed char // X86_64-CLOUDABI:#define __INT_MAX__ 2147483647 // X86_64-CLOUDABI:#define __LDBL_DECIMAL_DIG__ 21 // X86_64-CLOUDABI:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // X86_64-CLOUDABI:#define __LDBL_DIG__ 18 // X86_64-CLOUDABI:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // X86_64-CLOUDABI:#define __LDBL_HAS_DENORM__ 1 // X86_64-CLOUDABI:#define __LDBL_HAS_INFINITY__ 1 // X86_64-CLOUDABI:#define __LDBL_HAS_QUIET_NAN__ 1 // X86_64-CLOUDABI:#define __LDBL_MANT_DIG__ 64 // X86_64-CLOUDABI:#define __LDBL_MAX_10_EXP__ 4932 // X86_64-CLOUDABI:#define __LDBL_MAX_EXP__ 16384 // X86_64-CLOUDABI:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // X86_64-CLOUDABI:#define __LDBL_MIN_10_EXP__ (-4931) // X86_64-CLOUDABI:#define __LDBL_MIN_EXP__ (-16381) // X86_64-CLOUDABI:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // X86_64-CLOUDABI:#define __LITTLE_ENDIAN__ 1 // X86_64-CLOUDABI:#define __LONG_LONG_MAX__ 9223372036854775807LL // X86_64-CLOUDABI:#define __LONG_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __LP64__ 1 // X86_64-CLOUDABI:#define __MMX__ 1 // X86_64-CLOUDABI:#define __NO_INLINE__ 1 // X86_64-CLOUDABI:#define __NO_MATH_INLINES 1 // X86_64-CLOUDABI:#define __ORDER_BIG_ENDIAN__ 4321 // X86_64-CLOUDABI:#define __ORDER_LITTLE_ENDIAN__ 1234 // X86_64-CLOUDABI:#define __ORDER_PDP_ENDIAN__ 3412 // X86_64-CLOUDABI:#define __POINTER_WIDTH__ 64 // X86_64-CLOUDABI:#define __PRAGMA_REDEFINE_EXTNAME 1 // X86_64-CLOUDABI:#define __PTRDIFF_FMTd__ "ld" // X86_64-CLOUDABI:#define __PTRDIFF_FMTi__ "li" // X86_64-CLOUDABI:#define __PTRDIFF_MAX__ 9223372036854775807L // X86_64-CLOUDABI:#define __PTRDIFF_TYPE__ long int // X86_64-CLOUDABI:#define __PTRDIFF_WIDTH__ 64 // X86_64-CLOUDABI:#define __REGISTER_PREFIX__ // X86_64-CLOUDABI:#define __SCHAR_MAX__ 127 // X86_64-CLOUDABI:#define __SHRT_MAX__ 32767 // X86_64-CLOUDABI:#define __SIG_ATOMIC_MAX__ 2147483647 // X86_64-CLOUDABI:#define __SIG_ATOMIC_WIDTH__ 32 // X86_64-CLOUDABI:#define __SIZEOF_DOUBLE__ 8 // X86_64-CLOUDABI:#define __SIZEOF_FLOAT__ 4 // X86_64-CLOUDABI:#define __SIZEOF_INT128__ 16 // X86_64-CLOUDABI:#define __SIZEOF_INT__ 4 // X86_64-CLOUDABI:#define __SIZEOF_LONG_DOUBLE__ 16 // X86_64-CLOUDABI:#define __SIZEOF_LONG_LONG__ 8 // X86_64-CLOUDABI:#define __SIZEOF_LONG__ 8 // X86_64-CLOUDABI:#define __SIZEOF_POINTER__ 8 // X86_64-CLOUDABI:#define __SIZEOF_PTRDIFF_T__ 8 // X86_64-CLOUDABI:#define __SIZEOF_SHORT__ 2 // X86_64-CLOUDABI:#define __SIZEOF_SIZE_T__ 8 // X86_64-CLOUDABI:#define __SIZEOF_WCHAR_T__ 4 // X86_64-CLOUDABI:#define __SIZEOF_WINT_T__ 4 // X86_64-CLOUDABI:#define __SIZE_FMTX__ "lX" // X86_64-CLOUDABI:#define __SIZE_FMTo__ "lo" // X86_64-CLOUDABI:#define __SIZE_FMTu__ "lu" // X86_64-CLOUDABI:#define __SIZE_FMTx__ "lx" // X86_64-CLOUDABI:#define __SIZE_MAX__ 18446744073709551615UL // X86_64-CLOUDABI:#define __SIZE_TYPE__ long unsigned int // X86_64-CLOUDABI:#define __SIZE_WIDTH__ 64 // X86_64-CLOUDABI:#define __SSE2_MATH__ 1 // X86_64-CLOUDABI:#define __SSE2__ 1 // X86_64-CLOUDABI:#define __SSE_MATH__ 1 // X86_64-CLOUDABI:#define __SSE__ 1 // X86_64-CLOUDABI:#define __STDC_HOSTED__ 0 // X86_64-CLOUDABI:#define __STDC_ISO_10646__ 201206L // X86_64-CLOUDABI:#define __STDC_UTF_16__ 1 // X86_64-CLOUDABI:#define __STDC_UTF_32__ 1 // X86_64-CLOUDABI:#define __STDC_VERSION__ 201710L // X86_64-CLOUDABI:#define __STDC__ 1 // X86_64-CLOUDABI:#define __UINT16_C_SUFFIX__ // X86_64-CLOUDABI:#define __UINT16_FMTX__ "hX" // X86_64-CLOUDABI:#define __UINT16_FMTo__ "ho" // X86_64-CLOUDABI:#define __UINT16_FMTu__ "hu" // X86_64-CLOUDABI:#define __UINT16_FMTx__ "hx" // X86_64-CLOUDABI:#define __UINT16_MAX__ 65535 // X86_64-CLOUDABI:#define __UINT16_TYPE__ unsigned short // X86_64-CLOUDABI:#define __UINT32_C_SUFFIX__ U // X86_64-CLOUDABI:#define __UINT32_FMTX__ "X" // X86_64-CLOUDABI:#define __UINT32_FMTo__ "o" // X86_64-CLOUDABI:#define __UINT32_FMTu__ "u" // X86_64-CLOUDABI:#define __UINT32_FMTx__ "x" // X86_64-CLOUDABI:#define __UINT32_MAX__ 4294967295U // X86_64-CLOUDABI:#define __UINT32_TYPE__ unsigned int // X86_64-CLOUDABI:#define __UINT64_C_SUFFIX__ UL // X86_64-CLOUDABI:#define __UINT64_FMTX__ "lX" // X86_64-CLOUDABI:#define __UINT64_FMTo__ "lo" // X86_64-CLOUDABI:#define __UINT64_FMTu__ "lu" // X86_64-CLOUDABI:#define __UINT64_FMTx__ "lx" // X86_64-CLOUDABI:#define __UINT64_MAX__ 18446744073709551615UL // X86_64-CLOUDABI:#define __UINT64_TYPE__ long unsigned int // X86_64-CLOUDABI:#define __UINT8_C_SUFFIX__ // X86_64-CLOUDABI:#define __UINT8_FMTX__ "hhX" // X86_64-CLOUDABI:#define __UINT8_FMTo__ "hho" // X86_64-CLOUDABI:#define __UINT8_FMTu__ "hhu" // X86_64-CLOUDABI:#define __UINT8_FMTx__ "hhx" // X86_64-CLOUDABI:#define __UINT8_MAX__ 255 // X86_64-CLOUDABI:#define __UINT8_TYPE__ unsigned char // X86_64-CLOUDABI:#define __UINTMAX_C_SUFFIX__ UL // X86_64-CLOUDABI:#define __UINTMAX_FMTX__ "lX" // X86_64-CLOUDABI:#define __UINTMAX_FMTo__ "lo" // X86_64-CLOUDABI:#define __UINTMAX_FMTu__ "lu" // X86_64-CLOUDABI:#define __UINTMAX_FMTx__ "lx" // X86_64-CLOUDABI:#define __UINTMAX_MAX__ 18446744073709551615UL // X86_64-CLOUDABI:#define __UINTMAX_TYPE__ long unsigned int // X86_64-CLOUDABI:#define __UINTMAX_WIDTH__ 64 // X86_64-CLOUDABI:#define __UINTPTR_FMTX__ "lX" // X86_64-CLOUDABI:#define __UINTPTR_FMTo__ "lo" // X86_64-CLOUDABI:#define __UINTPTR_FMTu__ "lu" // X86_64-CLOUDABI:#define __UINTPTR_FMTx__ "lx" // X86_64-CLOUDABI:#define __UINTPTR_MAX__ 18446744073709551615UL // X86_64-CLOUDABI:#define __UINTPTR_TYPE__ long unsigned int // X86_64-CLOUDABI:#define __UINTPTR_WIDTH__ 64 // X86_64-CLOUDABI:#define __UINT_FAST16_FMTX__ "hX" // X86_64-CLOUDABI:#define __UINT_FAST16_FMTo__ "ho" // X86_64-CLOUDABI:#define __UINT_FAST16_FMTu__ "hu" // X86_64-CLOUDABI:#define __UINT_FAST16_FMTx__ "hx" // X86_64-CLOUDABI:#define __UINT_FAST16_MAX__ 65535 // X86_64-CLOUDABI:#define __UINT_FAST16_TYPE__ unsigned short // X86_64-CLOUDABI:#define __UINT_FAST32_FMTX__ "X" // X86_64-CLOUDABI:#define __UINT_FAST32_FMTo__ "o" // X86_64-CLOUDABI:#define __UINT_FAST32_FMTu__ "u" // X86_64-CLOUDABI:#define __UINT_FAST32_FMTx__ "x" // X86_64-CLOUDABI:#define __UINT_FAST32_MAX__ 4294967295U // X86_64-CLOUDABI:#define __UINT_FAST32_TYPE__ unsigned int // X86_64-CLOUDABI:#define __UINT_FAST64_FMTX__ "lX" // X86_64-CLOUDABI:#define __UINT_FAST64_FMTo__ "lo" // X86_64-CLOUDABI:#define __UINT_FAST64_FMTu__ "lu" // X86_64-CLOUDABI:#define __UINT_FAST64_FMTx__ "lx" // X86_64-CLOUDABI:#define __UINT_FAST64_MAX__ 18446744073709551615UL // X86_64-CLOUDABI:#define __UINT_FAST64_TYPE__ long unsigned int // X86_64-CLOUDABI:#define __UINT_FAST8_FMTX__ "hhX" // X86_64-CLOUDABI:#define __UINT_FAST8_FMTo__ "hho" // X86_64-CLOUDABI:#define __UINT_FAST8_FMTu__ "hhu" // X86_64-CLOUDABI:#define __UINT_FAST8_FMTx__ "hhx" // X86_64-CLOUDABI:#define __UINT_FAST8_MAX__ 255 // X86_64-CLOUDABI:#define __UINT_FAST8_TYPE__ unsigned char // X86_64-CLOUDABI:#define __UINT_LEAST16_FMTX__ "hX" // X86_64-CLOUDABI:#define __UINT_LEAST16_FMTo__ "ho" // X86_64-CLOUDABI:#define __UINT_LEAST16_FMTu__ "hu" // X86_64-CLOUDABI:#define __UINT_LEAST16_FMTx__ "hx" // X86_64-CLOUDABI:#define __UINT_LEAST16_MAX__ 65535 // X86_64-CLOUDABI:#define __UINT_LEAST16_TYPE__ unsigned short // X86_64-CLOUDABI:#define __UINT_LEAST32_FMTX__ "X" // X86_64-CLOUDABI:#define __UINT_LEAST32_FMTo__ "o" // X86_64-CLOUDABI:#define __UINT_LEAST32_FMTu__ "u" // X86_64-CLOUDABI:#define __UINT_LEAST32_FMTx__ "x" // X86_64-CLOUDABI:#define __UINT_LEAST32_MAX__ 4294967295U // X86_64-CLOUDABI:#define __UINT_LEAST32_TYPE__ unsigned int // X86_64-CLOUDABI:#define __UINT_LEAST64_FMTX__ "lX" // X86_64-CLOUDABI:#define __UINT_LEAST64_FMTo__ "lo" // X86_64-CLOUDABI:#define __UINT_LEAST64_FMTu__ "lu" // X86_64-CLOUDABI:#define __UINT_LEAST64_FMTx__ "lx" // X86_64-CLOUDABI:#define __UINT_LEAST64_MAX__ 18446744073709551615UL // X86_64-CLOUDABI:#define __UINT_LEAST64_TYPE__ long unsigned int // X86_64-CLOUDABI:#define __UINT_LEAST8_FMTX__ "hhX" // X86_64-CLOUDABI:#define __UINT_LEAST8_FMTo__ "hho" // X86_64-CLOUDABI:#define __UINT_LEAST8_FMTu__ "hhu" // X86_64-CLOUDABI:#define __UINT_LEAST8_FMTx__ "hhx" // X86_64-CLOUDABI:#define __UINT_LEAST8_MAX__ 255 // X86_64-CLOUDABI:#define __UINT_LEAST8_TYPE__ unsigned char // X86_64-CLOUDABI:#define __USER_LABEL_PREFIX__ // X86_64-CLOUDABI:#define __VERSION__ "{{.*}}Clang{{.*}} // X86_64-CLOUDABI:#define __WCHAR_MAX__ 2147483647 // X86_64-CLOUDABI:#define __WCHAR_TYPE__ int // X86_64-CLOUDABI:#define __WCHAR_WIDTH__ 32 // X86_64-CLOUDABI:#define __WINT_MAX__ 2147483647 // X86_64-CLOUDABI:#define __WINT_TYPE__ int // X86_64-CLOUDABI:#define __WINT_WIDTH__ 32 // X86_64-CLOUDABI:#define __amd64 1 // X86_64-CLOUDABI:#define __amd64__ 1 // X86_64-CLOUDABI:#define __clang__ 1 // X86_64-CLOUDABI:#define __clang_literal_encoding__ {{.*}} // X86_64-CLOUDABI:#define __clang_major__ {{.*}} // X86_64-CLOUDABI:#define __clang_minor__ {{.*}} // X86_64-CLOUDABI:#define __clang_patchlevel__ {{.*}} // X86_64-CLOUDABI:#define __clang_version__ {{.*}} // X86_64-CLOUDABI:#define __clang_wide_literal_encoding__ {{.*}} // X86_64-CLOUDABI:#define __llvm__ 1 // X86_64-CLOUDABI:#define __x86_64 1 // X86_64-CLOUDABI:#define __x86_64__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-pc-linux-gnu < /dev/null | FileCheck -match-full-lines -check-prefix X86_64-LINUX %s // // X86_64-LINUX:#define _LP64 1 // X86_64-LINUX:#define __BIGGEST_ALIGNMENT__ 16 // X86_64-LINUX:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // X86_64-LINUX:#define __CHAR16_TYPE__ unsigned short // X86_64-LINUX:#define __CHAR32_TYPE__ unsigned int // X86_64-LINUX:#define __CHAR_BIT__ 8 // X86_64-LINUX:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // X86_64-LINUX:#define __DBL_DIG__ 15 // X86_64-LINUX:#define __DBL_EPSILON__ 2.2204460492503131e-16 // X86_64-LINUX:#define __DBL_HAS_DENORM__ 1 // X86_64-LINUX:#define __DBL_HAS_INFINITY__ 1 // X86_64-LINUX:#define __DBL_HAS_QUIET_NAN__ 1 // X86_64-LINUX:#define __DBL_MANT_DIG__ 53 // X86_64-LINUX:#define __DBL_MAX_10_EXP__ 308 // X86_64-LINUX:#define __DBL_MAX_EXP__ 1024 // X86_64-LINUX:#define __DBL_MAX__ 1.7976931348623157e+308 // X86_64-LINUX:#define __DBL_MIN_10_EXP__ (-307) // X86_64-LINUX:#define __DBL_MIN_EXP__ (-1021) // X86_64-LINUX:#define __DBL_MIN__ 2.2250738585072014e-308 // X86_64-LINUX:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // X86_64-LINUX:#define __FLT_DENORM_MIN__ 1.40129846e-45F // X86_64-LINUX:#define __FLT_DIG__ 6 // X86_64-LINUX:#define __FLT_EPSILON__ 1.19209290e-7F // X86_64-LINUX:#define __FLT_HAS_DENORM__ 1 // X86_64-LINUX:#define __FLT_HAS_INFINITY__ 1 // X86_64-LINUX:#define __FLT_HAS_QUIET_NAN__ 1 // X86_64-LINUX:#define __FLT_MANT_DIG__ 24 // X86_64-LINUX:#define __FLT_MAX_10_EXP__ 38 // X86_64-LINUX:#define __FLT_MAX_EXP__ 128 // X86_64-LINUX:#define __FLT_MAX__ 3.40282347e+38F // X86_64-LINUX:#define __FLT_MIN_10_EXP__ (-37) // X86_64-LINUX:#define __FLT_MIN_EXP__ (-125) // X86_64-LINUX:#define __FLT_MIN__ 1.17549435e-38F // X86_64-LINUX:#define __FLT_RADIX__ 2 // X86_64-LINUX:#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_INT_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_LONG_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 // X86_64-LINUX:#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 // X86_64-LINUX:#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 // X86_64-LINUX:#define __INT16_C_SUFFIX__ // X86_64-LINUX:#define __INT16_FMTd__ "hd" // X86_64-LINUX:#define __INT16_FMTi__ "hi" // X86_64-LINUX:#define __INT16_MAX__ 32767 // X86_64-LINUX:#define __INT16_TYPE__ short // X86_64-LINUX:#define __INT32_C_SUFFIX__ // X86_64-LINUX:#define __INT32_FMTd__ "d" // X86_64-LINUX:#define __INT32_FMTi__ "i" // X86_64-LINUX:#define __INT32_MAX__ 2147483647 // X86_64-LINUX:#define __INT32_TYPE__ int // X86_64-LINUX:#define __INT64_C_SUFFIX__ L // X86_64-LINUX:#define __INT64_FMTd__ "ld" // X86_64-LINUX:#define __INT64_FMTi__ "li" // X86_64-LINUX:#define __INT64_MAX__ 9223372036854775807L // X86_64-LINUX:#define __INT64_TYPE__ long int // X86_64-LINUX:#define __INT8_C_SUFFIX__ // X86_64-LINUX:#define __INT8_FMTd__ "hhd" // X86_64-LINUX:#define __INT8_FMTi__ "hhi" // X86_64-LINUX:#define __INT8_MAX__ 127 // X86_64-LINUX:#define __INT8_TYPE__ signed char // X86_64-LINUX:#define __INTMAX_C_SUFFIX__ L // X86_64-LINUX:#define __INTMAX_FMTd__ "ld" // X86_64-LINUX:#define __INTMAX_FMTi__ "li" // X86_64-LINUX:#define __INTMAX_MAX__ 9223372036854775807L // X86_64-LINUX:#define __INTMAX_TYPE__ long int // X86_64-LINUX:#define __INTMAX_WIDTH__ 64 // X86_64-LINUX:#define __INTPTR_FMTd__ "ld" // X86_64-LINUX:#define __INTPTR_FMTi__ "li" // X86_64-LINUX:#define __INTPTR_MAX__ 9223372036854775807L // X86_64-LINUX:#define __INTPTR_TYPE__ long int // X86_64-LINUX:#define __INTPTR_WIDTH__ 64 // X86_64-LINUX:#define __INT_FAST16_FMTd__ "hd" // X86_64-LINUX:#define __INT_FAST16_FMTi__ "hi" // X86_64-LINUX:#define __INT_FAST16_MAX__ 32767 // X86_64-LINUX:#define __INT_FAST16_TYPE__ short // X86_64-LINUX:#define __INT_FAST32_FMTd__ "d" // X86_64-LINUX:#define __INT_FAST32_FMTi__ "i" // X86_64-LINUX:#define __INT_FAST32_MAX__ 2147483647 // X86_64-LINUX:#define __INT_FAST32_TYPE__ int // X86_64-LINUX:#define __INT_FAST64_FMTd__ "ld" // X86_64-LINUX:#define __INT_FAST64_FMTi__ "li" // X86_64-LINUX:#define __INT_FAST64_MAX__ 9223372036854775807L // X86_64-LINUX:#define __INT_FAST64_TYPE__ long int // X86_64-LINUX:#define __INT_FAST8_FMTd__ "hhd" // X86_64-LINUX:#define __INT_FAST8_FMTi__ "hhi" // X86_64-LINUX:#define __INT_FAST8_MAX__ 127 // X86_64-LINUX:#define __INT_FAST8_TYPE__ signed char // X86_64-LINUX:#define __INT_LEAST16_FMTd__ "hd" // X86_64-LINUX:#define __INT_LEAST16_FMTi__ "hi" // X86_64-LINUX:#define __INT_LEAST16_MAX__ 32767 // X86_64-LINUX:#define __INT_LEAST16_TYPE__ short // X86_64-LINUX:#define __INT_LEAST32_FMTd__ "d" // X86_64-LINUX:#define __INT_LEAST32_FMTi__ "i" // X86_64-LINUX:#define __INT_LEAST32_MAX__ 2147483647 // X86_64-LINUX:#define __INT_LEAST32_TYPE__ int // X86_64-LINUX:#define __INT_LEAST64_FMTd__ "ld" // X86_64-LINUX:#define __INT_LEAST64_FMTi__ "li" // X86_64-LINUX:#define __INT_LEAST64_MAX__ 9223372036854775807L // X86_64-LINUX:#define __INT_LEAST64_TYPE__ long int // X86_64-LINUX:#define __INT_LEAST8_FMTd__ "hhd" // X86_64-LINUX:#define __INT_LEAST8_FMTi__ "hhi" // X86_64-LINUX:#define __INT_LEAST8_MAX__ 127 // X86_64-LINUX:#define __INT_LEAST8_TYPE__ signed char // X86_64-LINUX:#define __INT_MAX__ 2147483647 // X86_64-LINUX:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // X86_64-LINUX:#define __LDBL_DIG__ 18 // X86_64-LINUX:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // X86_64-LINUX:#define __LDBL_HAS_DENORM__ 1 // X86_64-LINUX:#define __LDBL_HAS_INFINITY__ 1 // X86_64-LINUX:#define __LDBL_HAS_QUIET_NAN__ 1 // X86_64-LINUX:#define __LDBL_MANT_DIG__ 64 // X86_64-LINUX:#define __LDBL_MAX_10_EXP__ 4932 // X86_64-LINUX:#define __LDBL_MAX_EXP__ 16384 // X86_64-LINUX:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // X86_64-LINUX:#define __LDBL_MIN_10_EXP__ (-4931) // X86_64-LINUX:#define __LDBL_MIN_EXP__ (-16381) // X86_64-LINUX:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // X86_64-LINUX:#define __LITTLE_ENDIAN__ 1 // X86_64-LINUX:#define __LONG_LONG_MAX__ 9223372036854775807LL // X86_64-LINUX:#define __LONG_MAX__ 9223372036854775807L // X86_64-LINUX:#define __LP64__ 1 // X86_64-LINUX:#define __MMX__ 1 // X86_64-LINUX:#define __NO_MATH_INLINES 1 // X86_64-LINUX:#define __POINTER_WIDTH__ 64 // X86_64-LINUX:#define __PTRDIFF_TYPE__ long int // X86_64-LINUX:#define __PTRDIFF_WIDTH__ 64 // X86_64-LINUX:#define __REGISTER_PREFIX__ // X86_64-LINUX:#define __SCHAR_MAX__ 127 // X86_64-LINUX:#define __SHRT_MAX__ 32767 // X86_64-LINUX:#define __SIG_ATOMIC_MAX__ 2147483647 // X86_64-LINUX:#define __SIG_ATOMIC_WIDTH__ 32 // X86_64-LINUX:#define __SIZEOF_DOUBLE__ 8 // X86_64-LINUX:#define __SIZEOF_FLOAT__ 4 // X86_64-LINUX:#define __SIZEOF_INT__ 4 // X86_64-LINUX:#define __SIZEOF_LONG_DOUBLE__ 16 // X86_64-LINUX:#define __SIZEOF_LONG_LONG__ 8 // X86_64-LINUX:#define __SIZEOF_LONG__ 8 // X86_64-LINUX:#define __SIZEOF_POINTER__ 8 // X86_64-LINUX:#define __SIZEOF_PTRDIFF_T__ 8 // X86_64-LINUX:#define __SIZEOF_SHORT__ 2 // X86_64-LINUX:#define __SIZEOF_SIZE_T__ 8 // X86_64-LINUX:#define __SIZEOF_WCHAR_T__ 4 // X86_64-LINUX:#define __SIZEOF_WINT_T__ 4 // X86_64-LINUX:#define __SIZE_MAX__ 18446744073709551615UL // X86_64-LINUX:#define __SIZE_TYPE__ long unsigned int // X86_64-LINUX:#define __SIZE_WIDTH__ 64 // X86_64-LINUX:#define __SSE2_MATH__ 1 // X86_64-LINUX:#define __SSE2__ 1 // X86_64-LINUX:#define __SSE_MATH__ 1 // X86_64-LINUX:#define __SSE__ 1 // X86_64-LINUX:#define __UINT16_C_SUFFIX__ // X86_64-LINUX:#define __UINT16_MAX__ 65535 // X86_64-LINUX:#define __UINT16_TYPE__ unsigned short // X86_64-LINUX:#define __UINT32_C_SUFFIX__ U // X86_64-LINUX:#define __UINT32_MAX__ 4294967295U // X86_64-LINUX:#define __UINT32_TYPE__ unsigned int // X86_64-LINUX:#define __UINT64_C_SUFFIX__ UL // X86_64-LINUX:#define __UINT64_MAX__ 18446744073709551615UL // X86_64-LINUX:#define __UINT64_TYPE__ long unsigned int // X86_64-LINUX:#define __UINT8_C_SUFFIX__ // X86_64-LINUX:#define __UINT8_MAX__ 255 // X86_64-LINUX:#define __UINT8_TYPE__ unsigned char // X86_64-LINUX:#define __UINTMAX_C_SUFFIX__ UL // X86_64-LINUX:#define __UINTMAX_MAX__ 18446744073709551615UL // X86_64-LINUX:#define __UINTMAX_TYPE__ long unsigned int // X86_64-LINUX:#define __UINTMAX_WIDTH__ 64 // X86_64-LINUX:#define __UINTPTR_MAX__ 18446744073709551615UL // X86_64-LINUX:#define __UINTPTR_TYPE__ long unsigned int // X86_64-LINUX:#define __UINTPTR_WIDTH__ 64 // X86_64-LINUX:#define __UINT_FAST16_MAX__ 65535 // X86_64-LINUX:#define __UINT_FAST16_TYPE__ unsigned short // X86_64-LINUX:#define __UINT_FAST32_MAX__ 4294967295U // X86_64-LINUX:#define __UINT_FAST32_TYPE__ unsigned int // X86_64-LINUX:#define __UINT_FAST64_MAX__ 18446744073709551615UL // X86_64-LINUX:#define __UINT_FAST64_TYPE__ long unsigned int // X86_64-LINUX:#define __UINT_FAST8_MAX__ 255 // X86_64-LINUX:#define __UINT_FAST8_TYPE__ unsigned char // X86_64-LINUX:#define __UINT_LEAST16_MAX__ 65535 // X86_64-LINUX:#define __UINT_LEAST16_TYPE__ unsigned short // X86_64-LINUX:#define __UINT_LEAST32_MAX__ 4294967295U // X86_64-LINUX:#define __UINT_LEAST32_TYPE__ unsigned int // X86_64-LINUX:#define __UINT_LEAST64_MAX__ 18446744073709551615UL // X86_64-LINUX:#define __UINT_LEAST64_TYPE__ long unsigned int // X86_64-LINUX:#define __UINT_LEAST8_MAX__ 255 // X86_64-LINUX:#define __UINT_LEAST8_TYPE__ unsigned char // X86_64-LINUX:#define __USER_LABEL_PREFIX__ // X86_64-LINUX:#define __WCHAR_MAX__ 2147483647 // X86_64-LINUX:#define __WCHAR_TYPE__ int // X86_64-LINUX:#define __WCHAR_WIDTH__ 32 // X86_64-LINUX:#define __WINT_TYPE__ unsigned int // X86_64-LINUX:#define __WINT_WIDTH__ 32 // X86_64-LINUX:#define __amd64 1 // X86_64-LINUX:#define __amd64__ 1 // X86_64-LINUX:#define __x86_64 1 // X86_64-LINUX:#define __x86_64__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -triple=x86_64-unknown-freebsd9.1 < /dev/null | FileCheck -match-full-lines -check-prefix X86_64-FREEBSD %s // // X86_64-FREEBSD:#define __DBL_DECIMAL_DIG__ 17 // X86_64-FREEBSD:#define __FLT_DECIMAL_DIG__ 9 // X86_64-FREEBSD:#define __FreeBSD__ 9 // X86_64-FREEBSD:#define __FreeBSD_cc_version 900001 // X86_64-FREEBSD:#define __LDBL_DECIMAL_DIG__ 21 // X86_64-FREEBSD:#define __STDC_MB_MIGHT_NEQ_WC__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -fgnuc-version=4.2.1 -triple=x86_64-netbsd < /dev/null | FileCheck -match-full-lines -check-prefix X86_64-NETBSD %s // // X86_64-NETBSD:#define _LP64 1 // X86_64-NETBSD:#define __BIGGEST_ALIGNMENT__ 16 // X86_64-NETBSD:#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ // X86_64-NETBSD:#define __CHAR16_TYPE__ unsigned short // X86_64-NETBSD:#define __CHAR32_TYPE__ unsigned int // X86_64-NETBSD:#define __CHAR_BIT__ 8 // X86_64-NETBSD:#define __DBL_DENORM_MIN__ 4.9406564584124654e-324 // X86_64-NETBSD:#define __DBL_DIG__ 15 // X86_64-NETBSD:#define __DBL_EPSILON__ 2.2204460492503131e-16 // X86_64-NETBSD:#define __DBL_HAS_DENORM__ 1 // X86_64-NETBSD:#define __DBL_HAS_INFINITY__ 1 // X86_64-NETBSD:#define __DBL_HAS_QUIET_NAN__ 1 // X86_64-NETBSD:#define __DBL_MANT_DIG__ 53 // X86_64-NETBSD:#define __DBL_MAX_10_EXP__ 308 // X86_64-NETBSD:#define __DBL_MAX_EXP__ 1024 // X86_64-NETBSD:#define __DBL_MAX__ 1.7976931348623157e+308 // X86_64-NETBSD:#define __DBL_MIN_10_EXP__ (-307) // X86_64-NETBSD:#define __DBL_MIN_EXP__ (-1021) // X86_64-NETBSD:#define __DBL_MIN__ 2.2250738585072014e-308 // X86_64-NETBSD:#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__ // X86_64-NETBSD:#define __FLT_DENORM_MIN__ 1.40129846e-45F // X86_64-NETBSD:#define __FLT_DIG__ 6 // X86_64-NETBSD:#define __FLT_EPSILON__ 1.19209290e-7F // X86_64-NETBSD:#define __FLT_HAS_DENORM__ 1 // X86_64-NETBSD:#define __FLT_HAS_INFINITY__ 1 // X86_64-NETBSD:#define __FLT_HAS_QUIET_NAN__ 1 // X86_64-NETBSD:#define __FLT_MANT_DIG__ 24 // X86_64-NETBSD:#define __FLT_MAX_10_EXP__ 38 // X86_64-NETBSD:#define __FLT_MAX_EXP__ 128 // X86_64-NETBSD:#define __FLT_MAX__ 3.40282347e+38F // X86_64-NETBSD:#define __FLT_MIN_10_EXP__ (-37) // X86_64-NETBSD:#define __FLT_MIN_EXP__ (-125) // X86_64-NETBSD:#define __FLT_MIN__ 1.17549435e-38F // X86_64-NETBSD:#define __FLT_RADIX__ 2 // X86_64-NETBSD:#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_INT_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_LONG_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 // X86_64-NETBSD:#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 // X86_64-NETBSD:#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 // X86_64-NETBSD:#define __INT16_C_SUFFIX__ // X86_64-NETBSD:#define __INT16_FMTd__ "hd" // X86_64-NETBSD:#define __INT16_FMTi__ "hi" // X86_64-NETBSD:#define __INT16_MAX__ 32767 // X86_64-NETBSD:#define __INT16_TYPE__ short // X86_64-NETBSD:#define __INT32_C_SUFFIX__ // X86_64-NETBSD:#define __INT32_FMTd__ "d" // X86_64-NETBSD:#define __INT32_FMTi__ "i" // X86_64-NETBSD:#define __INT32_MAX__ 2147483647 // X86_64-NETBSD:#define __INT32_TYPE__ int // X86_64-NETBSD:#define __INT64_C_SUFFIX__ L // X86_64-NETBSD:#define __INT64_FMTd__ "ld" // X86_64-NETBSD:#define __INT64_FMTi__ "li" // X86_64-NETBSD:#define __INT64_MAX__ 9223372036854775807L // X86_64-NETBSD:#define __INT64_TYPE__ long int // X86_64-NETBSD:#define __INT8_C_SUFFIX__ // X86_64-NETBSD:#define __INT8_FMTd__ "hhd" // X86_64-NETBSD:#define __INT8_FMTi__ "hhi" // X86_64-NETBSD:#define __INT8_MAX__ 127 // X86_64-NETBSD:#define __INT8_TYPE__ signed char // X86_64-NETBSD:#define __INTMAX_C_SUFFIX__ L // X86_64-NETBSD:#define __INTMAX_FMTd__ "ld" // X86_64-NETBSD:#define __INTMAX_FMTi__ "li" // X86_64-NETBSD:#define __INTMAX_MAX__ 9223372036854775807L // X86_64-NETBSD:#define __INTMAX_TYPE__ long int // X86_64-NETBSD:#define __INTMAX_WIDTH__ 64 // X86_64-NETBSD:#define __INTPTR_FMTd__ "ld" // X86_64-NETBSD:#define __INTPTR_FMTi__ "li" // X86_64-NETBSD:#define __INTPTR_MAX__ 9223372036854775807L // X86_64-NETBSD:#define __INTPTR_TYPE__ long int // X86_64-NETBSD:#define __INTPTR_WIDTH__ 64 // X86_64-NETBSD:#define __INT_FAST16_FMTd__ "hd" // X86_64-NETBSD:#define __INT_FAST16_FMTi__ "hi" // X86_64-NETBSD:#define __INT_FAST16_MAX__ 32767 // X86_64-NETBSD:#define __INT_FAST16_TYPE__ short // X86_64-NETBSD:#define __INT_FAST32_FMTd__ "d" // X86_64-NETBSD:#define __INT_FAST32_FMTi__ "i" // X86_64-NETBSD:#define __INT_FAST32_MAX__ 2147483647 // X86_64-NETBSD:#define __INT_FAST32_TYPE__ int // X86_64-NETBSD:#define __INT_FAST64_FMTd__ "ld" // X86_64-NETBSD:#define __INT_FAST64_FMTi__ "li" // X86_64-NETBSD:#define __INT_FAST64_MAX__ 9223372036854775807L // X86_64-NETBSD:#define __INT_FAST64_TYPE__ long int // X86_64-NETBSD:#define __INT_FAST8_FMTd__ "hhd" // X86_64-NETBSD:#define __INT_FAST8_FMTi__ "hhi" // X86_64-NETBSD:#define __INT_FAST8_MAX__ 127 // X86_64-NETBSD:#define __INT_FAST8_TYPE__ signed char // X86_64-NETBSD:#define __INT_LEAST16_FMTd__ "hd" // X86_64-NETBSD:#define __INT_LEAST16_FMTi__ "hi" // X86_64-NETBSD:#define __INT_LEAST16_MAX__ 32767 // X86_64-NETBSD:#define __INT_LEAST16_TYPE__ short // X86_64-NETBSD:#define __INT_LEAST32_FMTd__ "d" // X86_64-NETBSD:#define __INT_LEAST32_FMTi__ "i" // X86_64-NETBSD:#define __INT_LEAST32_MAX__ 2147483647 // X86_64-NETBSD:#define __INT_LEAST32_TYPE__ int // X86_64-NETBSD:#define __INT_LEAST64_FMTd__ "ld" // X86_64-NETBSD:#define __INT_LEAST64_FMTi__ "li" // X86_64-NETBSD:#define __INT_LEAST64_MAX__ 9223372036854775807L // X86_64-NETBSD:#define __INT_LEAST64_TYPE__ long int // X86_64-NETBSD:#define __INT_LEAST8_FMTd__ "hhd" // X86_64-NETBSD:#define __INT_LEAST8_FMTi__ "hhi" // X86_64-NETBSD:#define __INT_LEAST8_MAX__ 127 // X86_64-NETBSD:#define __INT_LEAST8_TYPE__ signed char // X86_64-NETBSD:#define __INT_MAX__ 2147483647 // X86_64-NETBSD:#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L // X86_64-NETBSD:#define __LDBL_DIG__ 18 // X86_64-NETBSD:#define __LDBL_EPSILON__ 1.08420217248550443401e-19L // X86_64-NETBSD:#define __LDBL_HAS_DENORM__ 1 // X86_64-NETBSD:#define __LDBL_HAS_INFINITY__ 1 // X86_64-NETBSD:#define __LDBL_HAS_QUIET_NAN__ 1 // X86_64-NETBSD:#define __LDBL_MANT_DIG__ 64 // X86_64-NETBSD:#define __LDBL_MAX_10_EXP__ 4932 // X86_64-NETBSD:#define __LDBL_MAX_EXP__ 16384 // X86_64-NETBSD:#define __LDBL_MAX__ 1.18973149535723176502e+4932L // X86_64-NETBSD:#define __LDBL_MIN_10_EXP__ (-4931) // X86_64-NETBSD:#define __LDBL_MIN_EXP__ (-16381) // X86_64-NETBSD:#define __LDBL_MIN__ 3.36210314311209350626e-4932L // X86_64-NETBSD:#define __LITTLE_ENDIAN__ 1 // X86_64-NETBSD:#define __LONG_LONG_MAX__ 9223372036854775807LL // X86_64-NETBSD:#define __LONG_MAX__ 9223372036854775807L // X86_64-NETBSD:#define __LP64__ 1 // X86_64-NETBSD:#define __MMX__ 1 // X86_64-NETBSD:#define __NO_MATH_INLINES 1 // X86_64-NETBSD:#define __POINTER_WIDTH__ 64 // X86_64-NETBSD:#define __PTRDIFF_TYPE__ long int // X86_64-NETBSD:#define __PTRDIFF_WIDTH__ 64 // X86_64-NETBSD:#define __REGISTER_PREFIX__ // X86_64-NETBSD:#define __SCHAR_MAX__ 127 // X86_64-NETBSD:#define __SHRT_MAX__ 32767 // X86_64-NETBSD:#define __SIG_ATOMIC_MAX__ 2147483647 // X86_64-NETBSD:#define __SIG_ATOMIC_WIDTH__ 32 // X86_64-NETBSD:#define __SIZEOF_DOUBLE__ 8 // X86_64-NETBSD:#define __SIZEOF_FLOAT__ 4 // X86_64-NETBSD:#define __SIZEOF_INT__ 4 // X86_64-NETBSD:#define __SIZEOF_LONG_DOUBLE__ 16 // X86_64-NETBSD:#define __SIZEOF_LONG_LONG__ 8 // X86_64-NETBSD:#define __SIZEOF_LONG__ 8 // X86_64-NETBSD:#define __SIZEOF_POINTER__ 8 // X86_64-NETBSD:#define __SIZEOF_PTRDIFF_T__ 8 // X86_64-NETBSD:#define __SIZEOF_SHORT__ 2 // X86_64-NETBSD:#define __SIZEOF_SIZE_T__ 8 // X86_64-NETBSD:#define __SIZEOF_WCHAR_T__ 4 // X86_64-NETBSD:#define __SIZEOF_WINT_T__ 4 // X86_64-NETBSD:#define __SIZE_MAX__ 18446744073709551615UL // X86_64-NETBSD:#define __SIZE_TYPE__ long unsigned int // X86_64-NETBSD:#define __SIZE_WIDTH__ 64 // X86_64-NETBSD:#define __SSE2_MATH__ 1 // X86_64-NETBSD:#define __SSE2__ 1 // X86_64-NETBSD:#define __SSE_MATH__ 1 // X86_64-NETBSD:#define __SSE__ 1 // X86_64-NETBSD:#define __UINT16_C_SUFFIX__ // X86_64-NETBSD:#define __UINT16_MAX__ 65535 // X86_64-NETBSD:#define __UINT16_TYPE__ unsigned short // X86_64-NETBSD:#define __UINT32_C_SUFFIX__ U // X86_64-NETBSD:#define __UINT32_MAX__ 4294967295U // X86_64-NETBSD:#define __UINT32_TYPE__ unsigned int // X86_64-NETBSD:#define __UINT64_C_SUFFIX__ UL // X86_64-NETBSD:#define __UINT64_MAX__ 18446744073709551615UL // X86_64-NETBSD:#define __UINT64_TYPE__ long unsigned int // X86_64-NETBSD:#define __UINT8_C_SUFFIX__ // X86_64-NETBSD:#define __UINT8_MAX__ 255 // X86_64-NETBSD:#define __UINT8_TYPE__ unsigned char // X86_64-NETBSD:#define __UINTMAX_C_SUFFIX__ UL // X86_64-NETBSD:#define __UINTMAX_MAX__ 18446744073709551615UL // X86_64-NETBSD:#define __UINTMAX_TYPE__ long unsigned int // X86_64-NETBSD:#define __UINTMAX_WIDTH__ 64 // X86_64-NETBSD:#define __UINTPTR_MAX__ 18446744073709551615UL // X86_64-NETBSD:#define __UINTPTR_TYPE__ long unsigned int // X86_64-NETBSD:#define __UINTPTR_WIDTH__ 64 // X86_64-NETBSD:#define __UINT_FAST16_MAX__ 65535 // X86_64-NETBSD:#define __UINT_FAST16_TYPE__ unsigned short // X86_64-NETBSD:#define __UINT_FAST32_MAX__ 4294967295U // X86_64-NETBSD:#define __UINT_FAST32_TYPE__ unsigned int // X86_64-NETBSD:#define __UINT_FAST64_MAX__ 18446744073709551615UL // X86_64-NETBSD:#define __UINT_FAST64_TYPE__ long unsigned int // X86_64-NETBSD:#define __UINT_FAST8_MAX__ 255 // X86_64-NETBSD:#define __UINT_FAST8_TYPE__ unsigned char // X86_64-NETBSD:#define __UINT_LEAST16_MAX__ 65535 // X86_64-NETBSD:#define __UINT_LEAST16_TYPE__ unsigned short // X86_64-NETBSD:#define __UINT_LEAST32_MAX__ 4294967295U // X86_64-NETBSD:#define __UINT_LEAST32_TYPE__ unsigned int // X86_64-NETBSD:#define __UINT_LEAST64_MAX__ 18446744073709551615UL // X86_64-NETBSD:#define __UINT_LEAST64_TYPE__ long unsigned int // X86_64-NETBSD:#define __UINT_LEAST8_MAX__ 255 // X86_64-NETBSD:#define __UINT_LEAST8_TYPE__ unsigned char // X86_64-NETBSD:#define __USER_LABEL_PREFIX__ // X86_64-NETBSD:#define __WCHAR_MAX__ 2147483647 // X86_64-NETBSD:#define __WCHAR_TYPE__ int // X86_64-NETBSD:#define __WCHAR_WIDTH__ 32 // X86_64-NETBSD:#define __WINT_TYPE__ int // X86_64-NETBSD:#define __WINT_WIDTH__ 32 // X86_64-NETBSD:#define __amd64 1 // X86_64-NETBSD:#define __amd64__ 1 // X86_64-NETBSD:#define __x86_64 1 // X86_64-NETBSD:#define __x86_64__ 1
the_stack_data/237642126.c
#include <stdio.h> int main(void) { int top, score; top = score = - (2 + 5) * 6 + (4 + 3 * (2 + 3)); printf("top = %d, score = %d\n", top, score); return 0; }
the_stack_data/62637655.c
#include <stdio.h> #define MAXLINE 1000 /*最大输入行长度*/ int getLine(char line[], int max); int strIndex(char source[], char searchFor[]); char pattern[] = "ould"; /*待查找的模式*/ /* 找出所有与模式匹配的行 */ int main(){ char line[MAXLINE]; int found = 0; while (getLine(line, MAXLINE) >0) if (strIndex(line, pattern) >=0) { printf("%s", line); found++; } printf("end %d", found); return found; } /* getLine函数: 将行保存到s中,并返回该行的长度 */ int getLine(char s[], int lim) { int c, i; i = 0; while (--lim >0 && (c=getchar()) != EOF && c != '\n') s[i++] = c; if (c == '\n') s[i++] = c; s[i] = '\n'; return i; } /* strIndex 函数: 返回t在s中的位置,若未找到则返回-1 */ int strIndex(char s[], char t[]) { int i, j, k; for (i=0; s[i] != '\n'; i++) { for (j=i, k=0; t[k]!='\0' && s[j]==t[k]; j++, k++); if (k>0 && t[k]=='\0') return i; } return -1; }
the_stack_data/77668.c
#ifndef __PROGTEST__ #include <stdio.h> #include <assert.h> #endif /* __PROGTEST__ */ int dateToIndex(int day, int month, int year, int *idx) { int prestup=0, i; /* 0 = neprestup ; 1 = prestup */ int pocetDnu[11]; pocetDnu[0] = 31; pocetDnu[2] = 31; pocetDnu[3] = 30; pocetDnu[4] = 31; pocetDnu[5] = 30; pocetDnu[6] = 31; pocetDnu[7] = 31; pocetDnu[8] = 30; pocetDnu[9] = 31; pocetDnu[10] = 30; pocetDnu[11] = 31; if ( year % 4 == 0 ){ if ( year % 100 == 0 ){ if ( year % 400 == 0 ){ if ( year % 4000 == 0 ){ prestup = 0; }else { prestup = 1; } }else { prestup = 0; } }else { prestup = 1; }; }else { prestup = 0; }; if (prestup == 1){ pocetDnu[1] = 29; }else { pocetDnu[1] = 28; }; if ( year < 2000 ) { return 0; }; if ( (month < 1) || (month > 12) ){ return 0; }; if ( (day < 1) || (day > pocetDnu[month-1]) ){ return 0; }; *idx=0; for (i=0; i<(month-1); i++){ *idx += pocetDnu[i]; }; *idx += day; return 1; } #ifndef __PROGTEST__ int main (int argc, char * argv []) { int idx; assert(dateToIndex( 1, 1, 2000, &idx) == 1 && idx == 1); assert(dateToIndex( 1, 2, 2000, &idx) == 1 && idx == 32); assert(dateToIndex(29, 2, 2000, &idx) == 1 && idx == 60); assert(dateToIndex(29, 2, 2001, &idx) == 0); assert(dateToIndex( 1, 12, 2000, &idx) == 1 && idx == 336); assert(dateToIndex(31, 12, 2000, &idx) == 1 && idx == 366); assert(dateToIndex( 1, 1, 1999, &idx) == 0); assert(dateToIndex( 6, 7, 3600, &idx) == 1 && idx == 188); assert(dateToIndex(29, 2, 3600, &idx) == 1 && idx == 60); assert(dateToIndex(29, 2, 4000, &idx) == 0); return 0; } #endif /* __PROGTEST__ */
the_stack_data/220456687.c
#include <stdio.h> #include <stdlib.h> typedef struct { char nome[40]; int idade; union { long int cep; char cidade[40]; } endereco; } cadastro; int main() { cadastro pessoa; int op; setbuf(stdin, NULL); printf(" - Digite seu nome: "); fgets(pessoa.nome, 40, stdin); printf(" - Digite sua idade: "); scanf(" %d", &pessoa.idade); printf(" - Tipo de endereco: \n [1] cep \n [2] cidade \n escolha: "); scanf(" %d", &op); if (op == 1) { printf(" - Digite seu cep: "); scanf(" %d", &pessoa.endereco.cep); } else { setbuf(stdin, NULL); printf(" - Digite a cidade: "); fgets(pessoa.endereco.cidade, 40, stdin); } return 0; }
the_stack_data/944436.c
#include <stdio.h> int main() { int i, nc; nc = 0; i = getchar(); while ( i != EOF ) { nc = nc + 1; i = getchar(); } printf("Number of characters in file = %d\n", nc); return 0; }
the_stack_data/8029.c
#include<stdio.h> int main() { int num,j,lim_up,lim_down,i; printf("enter upper and lower limits"); scanf("%d%d",&lim_up,&lim_down); j=2; while(num<=lim_up) { i=num%j; j=j++; if(i==0) { printf("%d\n",num); } } return 0; }
the_stack_data/154827534.c
/* PR target/39545 */ /* { dg-do compile } */ /* { dg-require-effective-target lp64 } */ /* { dg-options "-O2" } */ struct flex { int i; int flex []; }; int foo (struct flex s) { return s.i; } struct flex bar (int x) { /* { dg-message "note: the ABI of passing struct with a flexible array member has changed in GCC 4.4" } */ struct flex s; s.i = x; return s; }
the_stack_data/798269.c
/* { dg-do compile } */ /* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "cmp" } } */ extern void abort (void); int c; #define PLUSCC1(T, t, C) \ T pluscc##t##C (T a, T b) \ { \ T sum = a + b; \ if (sum < C) \ abort (); \ return sum; \ } #define PLUSCC(T, t) PLUSCC1(T, t, a) PLUSCC1(T, t, b) #define INCCC1(T, t, C) \ T inccc##t##C (T a, T b) \ { \ T sum = a + b; \ if (sum < C) \ c ++; \ return sum; \ } #define INCCC(T, t) INCCC1(T, t, a) INCCC1(T, t, b) #define PLUSCCONLY1(T, t, C) \ void pluscconly##t##C (T a, T b) \ { \ T sum = a + b; \ if (sum < C) \ abort (); \ } #define PLUSCCONLY(T, t) PLUSCCONLY1(T, t, a) PLUSCCONLY1(T, t, b) #define TEST(T, t) \ PLUSCC(T, t) \ PLUSCCONLY(T, t) \ INCCC(T, t) TEST (unsigned long, l) TEST (unsigned int, i) TEST (unsigned short, s) TEST (unsigned char, c) #define PLUSCCZEXT(C) \ unsigned long pluscczext##C (unsigned int a, unsigned int b) \ { \ unsigned int sum = a + b; \ if (sum < C) \ abort (); \ return sum; \ } PLUSCCZEXT(a) PLUSCCZEXT(b)
the_stack_data/690194.c
/* { dg-require-effective-target untyped_assembly } */ extern void abort (void); struct type { int *a; int b:16; unsigned int p:9; } t; unsigned int foo () { return t.p; } int main (void) { t.p = 8; if (foo (t) != 8) abort (); return 0; }
the_stack_data/170452543.c
// //Unicode String Pack Definition // unsigned char UefiShellLevel2CommandsLibStrings[] = { // STRGATHER_OUTPUT_HEADER 0xF5, 0x38, 0x01, 0x00, // PACKAGE HEADER 0xF1, 0x38, 0x01, 0x04, 0x34, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x65, 0x6E, 0x2D, 0x55, 0x53, 0x00, // PACKAGE DATA // 0x0001: $PRINTABLE_LANGUAGE_NAME:0x0001 0x14, 0x65, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x68, 0x00, 0x00, 0x00, // 0x0002: STR_GEN_NO_MEM:0x0002 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0003: STR_GEN_TOO_MANY:0x0003 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0004: STR_GEN_TOO_FEW:0x0004 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x66, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0005: STR_GEN_PARAM_INV:0x0005 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0006: STR_GEN_PROBLEM:0x0006 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x55, 0x00, 0x6E, 0x00, 0x6B, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0007: STR_GEN_PROBLEM_VAL:0x0007 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x42, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0008: STR_GEN_ATTRIBUTE:0x0008 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0009: STR_GEN_NO_VALUE:0x0009 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x69, 0x00, 0x73, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x000A: STR_GEN_ERR_AD:0x000A 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x41, 0x00, 0x63, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x000B: STR_GEN_ERR_FILE:0x000B 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x000C: STR_GEN_ERR_UK:0x000C 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00, 0x61, 0x00, 0x74, 0x00, 0x75, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x000D: STR_GEN_PARAM_CON:0x000D 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x50, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x000E: STR_GEN_PARAM_CONFLICT:0x000E 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x000F: STR_GEN_FILE_OPEN_FAIL:0x000F 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0010: STR_GEN_FILE_CLOSE_FAIL:0x0010 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0011: STR_GEN_FILE_AD:0x0011 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0012: STR_GEN_FILE_NF:0x0012 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0013: STR_GEN_CRLF:0x0013 0x14, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0014: STR_GEN_NO_CWD:0x0014 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x43, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0015: STR_GEN_DIR_NF:0x0015 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0016: STR_GEN_RES_OK:0x0016 0x14, 0x2D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x6F, 0x00, 0x6B, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0017: STR_GEN_NOT_DIR:0x0017 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0018: STR_GEN_NOT_FILE:0x0018 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0019: STR_GEN_SFO_HEADER:0x0019 0x14, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x001A: STR_GEN_MARG_ERROR:0x001A 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x69, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x001B: STR_GEN_FILE_ERROR:0x001B 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x001C: STR_GEN_UEFI_FUNC_ERROR:0x001C 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x74, 0x00, 0x75, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x25, 0x00, 0x78, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x001D: STR_GEN_UEFI_FUNC_WARN:0x001D 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x74, 0x00, 0x75, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x001E: STR_GEN_DEST_EXIST_OVR:0x001E 0x14, 0x44, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x79, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x65, 0x00, 0x3F, 0x00, 0x20, 0x00, 0x25, 0x00, 0x42, 0x00, 0x59, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x25, 0x00, 0x42, 0x00, 0x4E, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x25, 0x00, 0x42, 0x00, 0x41, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x25, 0x00, 0x42, 0x00, 0x43, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x00, 0x00, // 0x001F: STR_GEN_CPY_FAIL:0x001F 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x72, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x75, 0x00, 0x66, 0x00, 0x66, 0x00, 0x69, 0x00, 0x63, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0020: STR_GEN_CPY_READ_ERROR:0x0020 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x20, 0x00, 0x45, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0021: STR_GEN_CPY_WRITE_ERROR:0x0021 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x20, 0x00, 0x45, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0022: STR_GEN_OUT_MEM:0x0022 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x63, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0023: STR_SET_DISP:0x0023 0x14, 0x25, 0x00, 0x56, 0x00, 0x25, 0x00, 0x38, 0x00, 0x73, 0x00, 0x20, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3D, 0x00, 0x20, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0024: STR_SET_NF:0x0024 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x45, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x56, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0025: STR_SET_ND:0x0025 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x45, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x56, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0026: STR_SET_ERROR_SET:0x0026 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x55, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0027: STR_CD_PRINT:0x0027 0x14, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0028: STR_CD_NF:0x0028 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0029: STR_MAP_NF:0x0029 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x002A: STR_MAP_NOF:0x002A 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x002B: STR_MAP_SFO_MAPPINGS:0x002B 0x14, 0x4D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x002C: STR_MAP_HEADER:0x002C 0x14, 0x25, 0x00, 0x45, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x002D: STR_MAP_ENTRY:0x002D 0x14, 0x25, 0x00, 0x45, 0x00, 0x25, 0x00, 0x31, 0x00, 0x30, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x25, 0x00, 0x48, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x61, 0x00, 0x73, 0x00, 0x28, 0x00, 0x73, 0x00, 0x29, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x002E: STR_MAP_ENTRY_VERBOSE:0x002E 0x14, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x48, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x78, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x20, 0x00, 0x54, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x43, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x002F: STR_ATTRIB_OUTPUT_LINE:0x002F 0x14, 0x41, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x31, 0x00, 0x63, 0x00, 0x25, 0x00, 0x31, 0x00, 0x63, 0x00, 0x25, 0x00, 0x31, 0x00, 0x63, 0x00, 0x25, 0x00, 0x31, 0x00, 0x63, 0x00, 0x25, 0x00, 0x31, 0x00, 0x63, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0030: STR_MAP_MEDIA_FLOPPY:0x0030 0x14, 0x46, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x70, 0x00, 0x79, 0x00, 0x00, 0x00, // 0x0031: STR_MAP_MEDIA_UNKNOWN:0x0031 0x14, 0x55, 0x00, 0x6E, 0x00, 0x6B, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x00, 0x00, // 0x0032: STR_MAP_MEDIA_HARDDISK:0x0032 0x14, 0x48, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x00, 0x00, // 0x0033: STR_MAP_MEDIA_CDROM:0x0033 0x14, 0x43, 0x00, 0x44, 0x00, 0x2D, 0x00, 0x52, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x00, 0x00, // 0x0034: STR_MKDIR_ALREADY:0x0034 0x14, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x79, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0035: STR_MKDIR_CREATEFAIL:0x0035 0x14, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0036: STR_DATE_FORMAT:0x0036 0x14, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2F, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2F, 0x00, 0x25, 0x00, 0x30, 0x00, 0x34, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0037: STR_DATE_SFO_FORMAT:0x0037 0x14, 0x44, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x34, 0x00, 0x64, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0038: STR_TIME_FORMAT:0x0038 0x14, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x20, 0x00, 0x28, 0x00, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x25, 0x00, 0x31, 0x00, 0x73, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x29, 0x00, 0x00, 0x00, // 0x0039: STR_TIME_FORMAT_LOCAL:0x0039 0x14, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x20, 0x00, 0x28, 0x00, 0x4C, 0x00, 0x4F, 0x00, 0x43, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x29, 0x00, 0x00, 0x00, // 0x003A: STR_TIME_DST0:0x003A 0x14, 0x20, 0x00, 0x44, 0x00, 0x53, 0x00, 0x54, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x41, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x003B: STR_TIME_DST1:0x003B 0x14, 0x20, 0x00, 0x44, 0x00, 0x53, 0x00, 0x54, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x41, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x003C: STR_TIME_DST2:0x003C 0x14, 0x20, 0x00, 0x44, 0x00, 0x53, 0x00, 0x54, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x41, 0x00, 0x64, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x003D: STR_TIME_DST3:0x003D 0x14, 0x20, 0x00, 0x44, 0x00, 0x53, 0x00, 0x54, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x41, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x41, 0x00, 0x64, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x003E: STR_TIMEZONE_M12:0x003E 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x31, 0x00, 0x32, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x44, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x57, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x003F: STR_TIMEZONE_M11:0x003F 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x31, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x69, 0x00, 0x64, 0x00, 0x77, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0040: STR_TIMEZONE_M10:0x0040 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x31, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x48, 0x00, 0x61, 0x00, 0x77, 0x00, 0x61, 0x00, 0x69, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0041: STR_TIMEZONE_M9:0x0041 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0042: STR_TIMEZONE_M8:0x0042 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x50, 0x00, 0x61, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x28, 0x00, 0x55, 0x00, 0x53, 0x00, 0x20, 0x00, 0x26, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x64, 0x00, 0x61, 0x00, 0x29, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x50, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0043: STR_TIMEZONE_M7:0x0043 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x72, 0x00, 0x69, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x68, 0x00, 0x69, 0x00, 0x68, 0x00, 0x75, 0x00, 0x61, 0x00, 0x68, 0x00, 0x75, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x61, 0x00, 0x20, 0x00, 0x50, 0x00, 0x61, 0x00, 0x7A, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x7A, 0x00, 0x61, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x55, 0x00, 0x53, 0x00, 0x20, 0x00, 0x26, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x64, 0x00, 0x61, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0044: STR_TIMEZONE_M6:0x0044 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x28, 0x00, 0x55, 0x00, 0x53, 0x00, 0x20, 0x00, 0x26, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x64, 0x00, 0x61, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0045: STR_TIMEZONE_M5:0x0045 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x35, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x67, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x51, 0x00, 0x75, 0x00, 0x69, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x45, 0x00, 0x61, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x28, 0x00, 0x55, 0x00, 0x53, 0x00, 0x20, 0x00, 0x26, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x64, 0x00, 0x61, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0046: STR_TIMEZONE_M430:0x0046 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x61, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0047: STR_TIMEZONE_M4:0x0047 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x28, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x64, 0x00, 0x61, 0x00, 0x29, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x61, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x61, 0x00, 0x67, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0048: STR_TIMEZONE_M330:0x0048 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x33, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0049: STR_TIMEZONE_M3:0x0049 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x33, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x72, 0x00, 0x61, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x75, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x20, 0x00, 0x41, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x47, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x47, 0x00, 0x72, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x004A: STR_TIMEZONE_M2:0x004A 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x32, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x69, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x41, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x004B: STR_TIMEZONE_M1:0x004B 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x70, 0x00, 0x65, 0x00, 0x20, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x004C: STR_TIMEZONE_0:0x004C 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x47, 0x00, 0x72, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x77, 0x00, 0x69, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x73, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x44, 0x00, 0x75, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x004D: STR_TIMEZONE_P1:0x004D 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x64, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x52, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x50, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x57, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x43, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x66, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x004E: STR_TIMEZONE_P2:0x004E 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x32, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x62, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x75, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4A, 0x00, 0x65, 0x00, 0x72, 0x00, 0x75, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x004F: STR_TIMEZONE_P3:0x004F 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x33, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x61, 0x00, 0x67, 0x00, 0x68, 0x00, 0x64, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x75, 0x00, 0x77, 0x00, 0x61, 0x00, 0x69, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x52, 0x00, 0x69, 0x00, 0x79, 0x00, 0x61, 0x00, 0x64, 0x00, 0x68, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x61, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x62, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0050: STR_TIMEZONE_P330:0x0050 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x33, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x68, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0051: STR_TIMEZONE_P4:0x0051 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x62, 0x00, 0x75, 0x00, 0x20, 0x00, 0x44, 0x00, 0x68, 0x00, 0x61, 0x00, 0x62, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x63, 0x00, 0x61, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x75, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x62, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x59, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0052: STR_TIMEZONE_P430:0x0052 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x61, 0x00, 0x62, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0053: STR_TIMEZONE_P5:0x0053 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x35, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x45, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x62, 0x00, 0x75, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x62, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x61, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0054: STR_TIMEZONE_P530:0x0054 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x35, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x61, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x68, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0055: STR_TIMEZONE_P545:0x0055 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x35, 0x00, 0x3A, 0x00, 0x34, 0x00, 0x35, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x75, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0056: STR_TIMEZONE_P6:0x0056 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x69, 0x00, 0x62, 0x00, 0x69, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x44, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x72, 0x00, 0x69, 0x00, 0x20, 0x00, 0x4A, 0x00, 0x61, 0x00, 0x79, 0x00, 0x61, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x70, 0x00, 0x75, 0x00, 0x72, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0057: STR_TIMEZONE_P630:0x0057 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x52, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0058: STR_TIMEZONE_P7:0x0058 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x6B, 0x00, 0x6F, 0x00, 0x6B, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x48, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4A, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x72, 0x00, 0x61, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x79, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0059: STR_TIMEZONE_P8:0x0059 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x42, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6A, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x71, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x48, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x55, 0x00, 0x72, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x71, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x61, 0x00, 0x69, 0x00, 0x70, 0x00, 0x65, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x50, 0x00, 0x65, 0x00, 0x72, 0x00, 0x74, 0x00, 0x68, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x005A: STR_TIMEZONE_P9:0x005A 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6B, 0x00, 0x79, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x59, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x75, 0x00, 0x74, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x005B: STR_TIMEZONE_P930:0x005B 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x69, 0x00, 0x64, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x44, 0x00, 0x61, 0x00, 0x72, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x005C: STR_TIMEZONE_P10:0x005C 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x31, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x79, 0x00, 0x64, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x47, 0x00, 0x75, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x48, 0x00, 0x6F, 0x00, 0x62, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x56, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x64, 0x00, 0x69, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x6B, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x005D: STR_TIMEZONE_P11:0x005D 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x31, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x61, 0x00, 0x64, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x53, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x005E: STR_TIMEZONE_P12:0x005E 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x31, 0x00, 0x32, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x41, 0x00, 0x75, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x57, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6A, 0x00, 0x69, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4B, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x6B, 0x00, 0x61, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x005F: STR_TIMEZONE_P13:0x005F 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x31, 0x00, 0x33, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x75, 0x00, 0x6B, 0x00, 0x75, 0x00, 0x27, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0060: STR_TIMEZONE_P14:0x0060 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x31, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0061: STR_TIMEZONE_LOCAL:0x0061 0x14, 0x4C, 0x00, 0x4F, 0x00, 0x43, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0062: STR_TIMEZONE_SIMPLE:0x0062 0x14, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x25, 0x00, 0x31, 0x00, 0x73, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0063: STR_TIMEZONE_SIMPLE_LOCAL:0x0063 0x14, 0x4C, 0x00, 0x4F, 0x00, 0x43, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0064: STR_TIMEZONE_NI:0x0064 0x14, 0x4E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x69, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6B, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, 0x00, // 0x0065: STR_LOAD_NOT_IMAGE:0x0065 0x14, 0x49, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x73, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0066: STR_LOAD_NOT_DRIVER:0x0066 0x14, 0x49, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x73, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0067: STR_LOAD_LOADED:0x0067 0x14, 0x49, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x73, 0x00, 0x27, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25, 0x00, 0x78, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0068: STR_LOAD_ERROR:0x0068 0x14, 0x49, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x73, 0x00, 0x27, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x49, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0069: STR_LS_LINE_START_ALL:0x0069 0x14, 0x25, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25, 0x00, 0x35, 0x00, 0x73, 0x00, 0x20, 0x00, 0x25, 0x00, 0x31, 0x00, 0x63, 0x00, 0x20, 0x00, 0x25, 0x00, 0x20, 0x00, 0x2C, 0x00, 0x4C, 0x00, 0x31, 0x00, 0x31, 0x00, 0x64, 0x00, 0x20, 0x00, 0x20, 0x00, 0x00, 0x00, // 0x006A: STR_LS_LINE_END_FILE:0x006A 0x14, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x006B: STR_LS_LINE_END_EXE:0x006B 0x14, 0x25, 0x00, 0x56, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x006C: STR_LS_LINE_END_DIR:0x006C 0x14, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x006D: STR_LS_FOOTER_LINE:0x006D 0x14, 0x25, 0x00, 0x20, 0x00, 0x2C, 0x00, 0x4C, 0x00, 0x31, 0x00, 0x31, 0x00, 0x64, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x28, 0x00, 0x73, 0x00, 0x29, 0x00, 0x20, 0x00, 0x25, 0x00, 0x20, 0x00, 0x2C, 0x00, 0x4C, 0x00, 0x31, 0x00, 0x31, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x25, 0x00, 0x20, 0x00, 0x2C, 0x00, 0x4C, 0x00, 0x31, 0x00, 0x31, 0x00, 0x64, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x28, 0x00, 0x73, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x006E: STR_LS_HEADER_LINE1:0x006E 0x14, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x006F: STR_LS_FILE_NOT_FOUND:0x006F 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0070: STR_LS_SFO_VOLINFO:0x0070 0x14, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x35, 0x00, 0x73, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0071: STR_LS_SFO_FILEINFO:0x0071 0x14, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x73, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x25, 0x00, 0x30, 0x00, 0x34, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x25, 0x00, 0x30, 0x00, 0x34, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x3A, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x25, 0x00, 0x30, 0x00, 0x32, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x25, 0x00, 0x30, 0x00, 0x34, 0x00, 0x64, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0072: STR_VOL_VOLINFO:0x0072 0x14, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x25, 0x00, 0x73, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x25, 0x00, 0x4C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x25, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0073: STR_RM_LOG_DELETE_CONF:0x0073 0x14, 0x52, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x75, 0x00, 0x62, 0x00, 0x74, 0x00, 0x72, 0x00, 0x65, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x79, 0x00, 0x2F, 0x00, 0x6E, 0x00, 0x5D, 0x00, 0x3F, 0x00, 0x00, 0x00, // 0x0074: STR_RM_LOG_DELETE:0x0074 0x14, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0075: STR_RM_LOG_DELETE_ERR:0x0075 0x14, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0076: STR_RM_LOG_DELETE_ERR2:0x0076 0x14, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x6E, 0x00, 0x27, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x25, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0077: STR_RM_LOG_DELETE_ERR3:0x0077 0x14, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0078: STR_RM_LOG_DELETE_COMP:0x0078 0x14, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x63, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0079: STR_RM_LOG_DETELE_RO:0x0079 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x007A: STR_MV_OUTPUT:0x007A 0x14, 0x4D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x007B: STR_MV_INV_SUB:0x007B 0x14, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x007C: STR_MV_INV_RO:0x007C 0x14, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x007D: STR_MV_INV_CWD:0x007D 0x14, 0x43, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x007E: STR_CP_OUTPUT:0x007E 0x14, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x25, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x007F: STR_CP_DIR_REQ:0x007F 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0080: STR_CP_DIR_WNF:0x0080 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0081: STR_CP_SD_SAME:0x0081 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0082: STR_CP_SD_PARENT:0x0082 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0083: STR_CP_DEST_ERROR:0x0083 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0084: STR_CP_DEST_OPEN_FAIL:0x0084 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0085: STR_CP_DEST_DIR_FAIL:0x0085 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0086: STR_CP_SRC_OPEN_FAIL:0x0086 0x14, 0x25, 0x00, 0x48, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x25, 0x00, 0x42, 0x00, 0x25, 0x00, 0x73, 0x00, 0x25, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0087: STR_GET_HELP_ATTRIB:0x0087 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x41, 0x00, 0x54, 0x00, 0x54, 0x00, 0x52, 0x00, 0x49, 0x00, 0x42, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2B, 0x00, 0x61, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2B, 0x00, 0x73, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2B, 0x00, 0x68, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x68, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2B, 0x00, 0x72, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x61, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x61, 0x00, 0x72, 0x00, 0x63, 0x00, 0x68, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x73, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x68, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x68, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x68, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x72, 0x00, 0x7C, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x41, 0x00, 0x72, 0x00, 0x63, 0x00, 0x68, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x41, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x53, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x48, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x48, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x52, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x67, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x29, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x44, 0x00, 0x5D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x35, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x57, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x43, 0x00, 0x54, 0x00, 0x45, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0088: STR_GET_HELP_CD:0x0088 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x43, 0x00, 0x44, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x77, 0x00, 0x69, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x28, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x29, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x66, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x66, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x27, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x66, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x27, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x27, 0x00, 0x5C, 0x00, 0x27, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x66, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x25, 0x00, 0x63, 0x00, 0x77, 0x00, 0x64, 0x00, 0x25, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x27, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x28, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x29, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x27, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x29, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x5C, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0089: STR_GET_HELP_CP:0x0089 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x63, 0x00, 0x70, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x43, 0x00, 0x50, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x71, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x71, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x71, 0x00, 0x75, 0x00, 0x69, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x27, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x43, 0x00, 0x50, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x31, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x32, 0x00, 0x20, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x27, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x31, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x32, 0x00, 0x27, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x31, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x32, 0x00, 0x27, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x27, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x35, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x36, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x57, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x27, 0x00, 0x63, 0x00, 0x70, 0x00, 0x27, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x77, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x71, 0x00, 0x75, 0x00, 0x69, 0x00, 0x65, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x67, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x65, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2D, 0x00, 0x71, 0x00, 0x27, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x37, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x79, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x70, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x70, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x42, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x20, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x70, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x31, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x32, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x46, 0x00, 0x5F, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x52, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x75, 0x00, 0x66, 0x00, 0x66, 0x00, 0x69, 0x00, 0x63, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x57, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x43, 0x00, 0x54, 0x00, 0x45, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x008A: STR_GET_HELP_MAP:0x008A 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4D, 0x00, 0x41, 0x00, 0x50, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4D, 0x00, 0x41, 0x00, 0x50, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x63, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x66, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x75, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x74, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x5B, 0x00, 0x2C, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x3E, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4D, 0x00, 0x41, 0x00, 0x50, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x61, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x75, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x41, 0x00, 0x64, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x63, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x66, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x74, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x75, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x70, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x70, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x48, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x43, 0x00, 0x44, 0x00, 0x2D, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x4D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x55, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x64, 0x00, 0x68, 0x00, 0x27, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x69, 0x00, 0x67, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x41, 0x00, 0x66, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x70, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x61, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x67, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x69, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x79, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x69, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x65, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x61, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x69, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x69, 0x00, 0x67, 0x00, 0x75, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x35, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x75, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x55, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x41, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x69, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x36, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x45, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x69, 0x00, 0x67, 0x00, 0x75, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x27, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x69, 0x00, 0x67, 0x00, 0x75, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x27, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x55, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x63, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x37, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x67, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x59, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x48, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x79, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x69, 0x00, 0x67, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x62, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x69, 0x00, 0x67, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x70, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x70, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x70, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x27, 0x00, 0x66, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x70, 0x00, 0x20, 0x00, 0x66, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x008B: STR_GET_HELP_MKDIR:0x008B 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x43, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x43, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4D, 0x00, 0x4B, 0x00, 0x44, 0x00, 0x49, 0x00, 0x52, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x28, 0x00, 0x57, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x79, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x72, 0x00, 0x61, 0x00, 0x66, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x32, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x46, 0x00, 0x5F, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x52, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x75, 0x00, 0x66, 0x00, 0x66, 0x00, 0x69, 0x00, 0x63, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x57, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x43, 0x00, 0x54, 0x00, 0x45, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x008C: STR_GET_HELP_MV:0x008C 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4D, 0x00, 0x56, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x59, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x41, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x35, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x59, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x36, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x59, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x37, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x61, 0x00, 0x42, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x20, 0x00, 0x42, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6B, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x31, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x31, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x31, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x32, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x69, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x72, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x72, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x44, 0x00, 0x41, 0x00, 0x20, 0x00, 0x20, 0x00, 0x52, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x32, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x46, 0x00, 0x5F, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x52, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x75, 0x00, 0x66, 0x00, 0x66, 0x00, 0x69, 0x00, 0x63, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x65, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x57, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x43, 0x00, 0x54, 0x00, 0x45, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x008D: STR_GET_HELP_PARSE:0x008D 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x50, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x65, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x53, 0x00, 0x45, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x3E, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x3E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x62, 0x00, 0x61, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x78, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x69, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x74, 0x00, 0x75, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x79, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x53, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x77, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6B, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x61, 0x00, 0x73, 0x00, 0x79, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x67, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x61, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x29, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x4D, 0x00, 0x69, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x73, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x34, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x46, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x53, 0x00, 0x45, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x33, 0x00, 0x32, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x31, 0x00, 0x36, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x46, 0x00, 0x53, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x34, 0x00, 0x35, 0x00, 0x39, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x68, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x31, 0x00, 0x32, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x31, 0x00, 0x32, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x46, 0x00, 0x53, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x73, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x31, 0x00, 0x32, 0x00, 0x35, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x31, 0x00, 0x32, 0x00, 0x38, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x61, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x31, 0x00, 0x32, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x31, 0x00, 0x32, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x46, 0x00, 0x53, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x37, 0x00, 0x39, 0x00, 0x35, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x39, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x61, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x31, 0x00, 0x32, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x31, 0x00, 0x32, 0x00, 0x22, 0x00, 0x2C, 0x00, 0x22, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x32, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x20, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x32, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x69, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x73, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x33, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x33, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x33, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x20, 0x00, 0x33, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x37, 0x00, 0x39, 0x00, 0x35, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x008E: STR_GET_HELP_RESET:0x008E 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x52, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x45, 0x00, 0x54, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x77, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x45, 0x00, 0x54, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x45, 0x00, 0x54, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x63, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x50, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x75, 0x00, 0x74, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x77, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x50, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x63, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x50, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x61, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x77, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x28, 0x00, 0x29, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x008F: STR_GET_HELP_RM:0x008F 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x4D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x71, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x71, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x71, 0x00, 0x75, 0x00, 0x69, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x44, 0x00, 0x6F, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x28, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x29, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x72, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x35, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x28, 0x00, 0x73, 0x00, 0x29, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x72, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x36, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x59, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x79, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x37, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x32, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x2A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x69, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x72, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x72, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x41, 0x00, 0x20, 0x00, 0x52, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x57, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x43, 0x00, 0x54, 0x00, 0x45, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0090: STR_GET_HELP_SET:0x0090 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x53, 0x00, 0x45, 0x00, 0x54, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x53, 0x00, 0x45, 0x00, 0x54, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x43, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x43, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x59, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x79, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x61, 0x00, 0x67, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x50, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x67, 0x00, 0x3B, 0x00, 0x66, 0x00, 0x73, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x61, 0x00, 0x67, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x72, 0x00, 0x63, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x69, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x25, 0x00, 0x70, 0x00, 0x61, 0x00, 0x74, 0x00, 0x68, 0x00, 0x25, 0x00, 0x3B, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x3B, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x5C, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x3B, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x78, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x20, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x52, 0x00, 0x43, 0x00, 0x45, 0x00, 0x20, 0x00, 0x63, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6A, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x5C, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x46, 0x00, 0x5F, 0x00, 0x52, 0x00, 0x45, 0x00, 0x53, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x52, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x41, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x73, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0091: STR_GET_HELP_DATE:0x0091 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x41, 0x00, 0x54, 0x00, 0x45, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x64, 0x00, 0x2F, 0x00, 0x5B, 0x00, 0x79, 0x00, 0x79, 0x00, 0x5D, 0x00, 0x79, 0x00, 0x79, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x28, 0x00, 0x31, 0x00, 0x2D, 0x00, 0x31, 0x00, 0x32, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x64, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x28, 0x00, 0x31, 0x00, 0x2D, 0x00, 0x33, 0x00, 0x31, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x79, 0x00, 0x79, 0x00, 0x2F, 0x00, 0x79, 0x00, 0x79, 0x00, 0x79, 0x00, 0x79, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x39, 0x00, 0x78, 0x00, 0x20, 0x00, 0x3D, 0x00, 0x20, 0x00, 0x31, 0x00, 0x39, 0x00, 0x39, 0x00, 0x78, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x77, 0x00, 0x69, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x78, 0x00, 0x78, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2F, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x68, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x27, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x70, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x72, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x45, 0x00, 0x78, 0x00, 0x63, 0x00, 0x65, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2F, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x68, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x41, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x66, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x70, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x34, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x39, 0x00, 0x37, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x34, 0x00, 0x2F, 0x00, 0x32, 0x00, 0x30, 0x00, 0x39, 0x00, 0x37, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x67, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x31, 0x00, 0x39, 0x00, 0x39, 0x00, 0x38, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x20, 0x00, 0x39, 0x00, 0x38, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x67, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x78, 0x00, 0x78, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x39, 0x00, 0x38, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x67, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x39, 0x00, 0x78, 0x00, 0x78, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x30, 0x00, 0x30, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x34, 0x00, 0x2F, 0x00, 0x39, 0x00, 0x37, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x34, 0x00, 0x2F, 0x00, 0x32, 0x00, 0x30, 0x00, 0x39, 0x00, 0x37, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x34, 0x00, 0x2F, 0x00, 0x39, 0x00, 0x38, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x30, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x34, 0x00, 0x2F, 0x00, 0x31, 0x00, 0x39, 0x00, 0x39, 0x00, 0x38, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x31, 0x00, 0x39, 0x00, 0x39, 0x00, 0x38, 0x00, 0x2D, 0x00, 0x32, 0x00, 0x30, 0x00, 0x39, 0x00, 0x39, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2F, 0x00, 0x32, 0x00, 0x30, 0x00, 0x35, 0x00, 0x30, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x79, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x36, 0x00, 0x2F, 0x00, 0x31, 0x00, 0x38, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x44, 0x00, 0x45, 0x00, 0x56, 0x00, 0x49, 0x00, 0x43, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x45, 0x00, 0x52, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0092: STR_GET_HELP_TIME:0x0092 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x68, 0x00, 0x68, 0x00, 0x3A, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x5B, 0x00, 0x3A, 0x00, 0x73, 0x00, 0x73, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x74, 0x00, 0x7A, 0x00, 0x20, 0x00, 0x74, 0x00, 0x7A, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x74, 0x00, 0x7A, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x61, 0x00, 0x73, 0x00, 0x75, 0x00, 0x72, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x66, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x74, 0x00, 0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x30, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x30, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x34, 0x00, 0x37, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x34, 0x00, 0x37, 0x00, 0x2C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x68, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x20, 0x00, 0x28, 0x00, 0x30, 0x00, 0x2D, 0x00, 0x32, 0x00, 0x33, 0x00, 0x29, 0x00, 0x20, 0x00, 0x28, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x28, 0x00, 0x30, 0x00, 0x2D, 0x00, 0x35, 0x00, 0x39, 0x00, 0x29, 0x00, 0x20, 0x00, 0x28, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x73, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x28, 0x00, 0x30, 0x00, 0x2D, 0x00, 0x35, 0x00, 0x39, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x75, 0x00, 0x70, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x72, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x45, 0x00, 0x78, 0x00, 0x63, 0x00, 0x65, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x2F, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x66, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x63, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x70, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x37, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x37, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x34, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x20, 0x00, 0x28, 0x00, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2B, 0x00, 0x30, 0x00, 0x38, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x29, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x35, 0x00, 0x31, 0x00, 0x3A, 0x00, 0x33, 0x00, 0x30, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x44, 0x00, 0x45, 0x00, 0x56, 0x00, 0x49, 0x00, 0x43, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x45, 0x00, 0x52, 0x00, 0x52, 0x00, 0x4F, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x65, 0x00, 0x72, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0093: STR_GET_HELP_TIMEZONE:0x0093 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x5A, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x45, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x68, 0x00, 0x68, 0x00, 0x3A, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x7C, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6C, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x62, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x66, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x69, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x68, 0x00, 0x68, 0x00, 0x3A, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x66, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x55, 0x00, 0x54, 0x00, 0x43, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x66, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x68, 0x00, 0x68, 0x00, 0x3A, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x76, 0x00, 0x69, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x70, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x3A, 0x00, 0x30, 0x00, 0x30, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x7A, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x66, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0094: STR_GET_HELP_LS:0x0094 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4C, 0x00, 0x53, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x5B, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x5D, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x5D, 0x00, 0x5B, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x28, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x68, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x70, 0x00, 0x75, 0x00, 0x74, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x41, 0x00, 0x72, 0x00, 0x63, 0x00, 0x68, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x48, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x73, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x68, 0x00, 0x65, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x5B, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x68, 0x00, 0x61, 0x00, 0x76, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x67, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x63, 0x00, 0x65, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x68, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x68, 0x00, 0x69, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x68, 0x00, 0x69, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x68, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x65, 0x00, 0x78, 0x00, 0x63, 0x00, 0x65, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x27, 0x00, 0x68, 0x00, 0x27, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x27, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x72, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x27, 0x00, 0x73, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x62, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x61, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x62, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0095: STR_GET_HELP_LOAD:0x0095 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x4C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4C, 0x00, 0x4F, 0x00, 0x41, 0x00, 0x44, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x62, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x55, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x28, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x75, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x67, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x73, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x69, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x55, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x27, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x4C, 0x00, 0x4F, 0x00, 0x41, 0x00, 0x44, 0x00, 0x27, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x61, 0x00, 0x62, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x61, 0x00, 0x62, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x61, 0x00, 0x53, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x69, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x63, 0x00, 0x61, 0x00, 0x72, 0x00, 0x64, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x61, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x72, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x61, 0x00, 0x64, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x20, 0x00, 0x49, 0x00, 0x73, 0x00, 0x61, 0x00, 0x42, 0x00, 0x75, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, // 0x0096: STR_GET_HELP_VOL:0x0096 0x14, 0x2E, 0x00, 0x54, 0x00, 0x48, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x30, 0x00, 0x20, 0x00, 0x22, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x6B, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x53, 0x00, 0x59, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x53, 0x00, 0x49, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x56, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x66, 0x00, 0x73, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x4C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x56, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x66, 0x00, 0x73, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x5D, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x74, 0x00, 0x79, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x4C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x20, 0x00, 0x53, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x44, 0x00, 0x45, 0x00, 0x53, 0x00, 0x43, 0x00, 0x52, 0x00, 0x49, 0x00, 0x50, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x25, 0x00, 0x20, 0x00, 0x5E, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x2B, 0x00, 0x20, 0x00, 0x3D, 0x00, 0x20, 0x00, 0x5B, 0x00, 0x20, 0x00, 0x5D, 0x00, 0x20, 0x00, 0x7C, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x3B, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x3C, 0x00, 0x20, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x3F, 0x00, 0x20, 0x00, 0x2F, 0x00, 0x20, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x66, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x65, 0x00, 0x63, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x56, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x4C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x35, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x78, 0x00, 0x69, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x31, 0x00, 0x31, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x45, 0x00, 0x58, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x50, 0x00, 0x4C, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x70, 0x00, 0x5F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x20, 0x00, 0x54, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x5C, 0x00, 0x3E, 0x00, 0x20, 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x66, 0x00, 0x73, 0x00, 0x30, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x64, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x48, 0x00, 0x20, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x52, 0x00, 0x45, 0x00, 0x54, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x55, 0x00, 0x45, 0x00, 0x53, 0x00, 0x3A, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x55, 0x00, 0x43, 0x00, 0x43, 0x00, 0x45, 0x00, 0x53, 0x00, 0x53, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x71, 0x00, 0x75, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x56, 0x00, 0x41, 0x00, 0x4C, 0x00, 0x49, 0x00, 0x44, 0x00, 0x5F, 0x00, 0x50, 0x00, 0x41, 0x00, 0x52, 0x00, 0x41, 0x00, 0x4D, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x52, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2D, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x76, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x74, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x53, 0x00, 0x45, 0x00, 0x43, 0x00, 0x55, 0x00, 0x52, 0x00, 0x49, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4C, 0x00, 0x41, 0x00, 0x54, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x75, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x63, 0x00, 0x75, 0x00, 0x72, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x76, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x20, 0x00, 0x53, 0x00, 0x48, 0x00, 0x45, 0x00, 0x4C, 0x00, 0x4C, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x5F, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x55, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, };
the_stack_data/167330239.c
/* ** 2016-03-13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file implements a C-language subroutine that converts the content ** of an SQLite database into UTF-8 text SQL statements that can be used ** to exactly recreate the original database. ROWID values are preserved. ** ** A prototype of the implemented subroutine is this: ** ** int sqlite3_db_dump( ** sqlite3 *db, ** const char *zSchema, ** const char *zTable, ** void (*xCallback)(void*, const char*), ** void *pArg ** ); ** ** The db parameter is the database connection. zSchema is the schema within ** that database which is to be dumped. Usually the zSchema is "main" but ** can also be "temp" or any ATTACH-ed database. If zTable is not NULL, then ** only the content of that one table is dumped. If zTable is NULL, then all ** tables are dumped. ** ** The generate text is passed to xCallback() in multiple calls. The second ** argument to xCallback() is a copy of the pArg parameter. The first ** argument is some of the output text that this routine generates. The ** signature to xCallback() is designed to make it compatible with fputs(). ** ** The sqlite3_db_dump() subroutine returns SQLITE_OK on success or some error ** code if it encounters a problem. ** ** If this file is compiled with -DDBDUMP_STANDALONE then a "main()" routine ** is included so that this routine becomes a command-line utility. The ** command-line utility takes two or three arguments which are the name ** of the database file, the schema, and optionally the table, forming the ** first three arguments of a single call to the library routine. */ #include "sqlite3.h" #include <stdarg.h> #include <string.h> #include <ctype.h> /* ** The state of the dump process. */ typedef struct DState DState; struct DState { sqlite3 *db; /* The database connection */ int nErr; /* Number of errors seen so far */ int rc; /* Error code */ int writableSchema; /* True if in writable_schema mode */ int (*xCallback)(const char*,void*); /* Send output here */ void *pArg; /* Argument to xCallback() */ }; /* ** A variable length string to which one can append text. */ typedef struct DText DText; struct DText { char *z; /* The text */ int n; /* Number of bytes of content in z[] */ int nAlloc; /* Number of bytes allocated to z[] */ }; /* ** Initialize and destroy a DText object */ static void initText(DText *p){ memset(p, 0, sizeof(*p)); } static void freeText(DText *p){ sqlite3_free(p->z); initText(p); } /* zIn is either a pointer to a NULL-terminated string in memory obtained ** from malloc(), or a NULL pointer. The string pointed to by zAppend is ** added to zIn, and the result returned in memory obtained from malloc(). ** zIn, if it was not NULL, is freed. ** ** If the third argument, quote, is not '\0', then it is used as a ** quote character for zAppend. */ static void appendText(DText *p, char const *zAppend, char quote){ int len; int i; int nAppend = (int)(strlen(zAppend) & 0x3fffffff); len = nAppend+p->n+1; if( quote ){ len += 2; for(i=0; i<nAppend; i++){ if( zAppend[i]==quote ) len++; } } if( p->n+len>=p->nAlloc ){ char *zNew; p->nAlloc = p->nAlloc*2 + len + 20; zNew = sqlite3_realloc(p->z, p->nAlloc); if( zNew==0 ){ freeText(p); return; } p->z = zNew; } if( quote ){ char *zCsr = p->z+p->n; *zCsr++ = quote; for(i=0; i<nAppend; i++){ *zCsr++ = zAppend[i]; if( zAppend[i]==quote ) *zCsr++ = quote; } *zCsr++ = quote; p->n = (int)(zCsr - p->z); *zCsr = '\0'; }else{ memcpy(p->z+p->n, zAppend, nAppend); p->n += nAppend; p->z[p->n] = '\0'; } } /* ** Attempt to determine if identifier zName needs to be quoted, either ** because it contains non-alphanumeric characters, or because it is an ** SQLite keyword. Be conservative in this estimate: When in doubt assume ** that quoting is required. ** ** Return '"' if quoting is required. Return 0 if no quoting is required. */ static char quoteChar(const char *zName){ /* All SQLite keywords, in alphabetical order */ static const char *azKeywords[] = { "ABORT", "ACTION", "ADD", "AFTER", "ALL", "ALTER", "ANALYZE", "AND", "AS", "ASC", "ATTACH", "AUTOINCREMENT", "BEFORE", "BEGIN", "BETWEEN", "BY", "CASCADE", "CASE", "CAST", "CHECK", "COLLATE", "COLUMN", "COMMIT", "CONFLICT", "CONSTRAINT", "CREATE", "CROSS", "CURRENT_DATE", "CURRENT_TIME", "CURRENT_TIMESTAMP", "DATABASE", "DEFAULT", "DEFERRABLE", "DEFERRED", "DELETE", "DESC", "DETACH", "DISTINCT", "DROP", "EACH", "ELSE", "END", "ESCAPE", "EXCEPT", "EXCLUSIVE", "EXISTS", "EXPLAIN", "FAIL", "FOR", "FOREIGN", "FROM", "FULL", "GLOB", "GROUP", "HAVING", "IF", "IGNORE", "IMMEDIATE", "IN", "INDEX", "INDEXED", "INITIALLY", "INNER", "INSERT", "INSTEAD", "INTERSECT", "INTO", "IS", "ISNULL", "JOIN", "KEY", "LEFT", "LIKE", "LIMIT", "MATCH", "NATURAL", "NO", "NOT", "NOTNULL", "NULL", "OF", "OFFSET", "ON", "OR", "ORDER", "OUTER", "PLAN", "PRAGMA", "PRIMARY", "QUERY", "RAISE", "RECURSIVE", "REFERENCES", "REGEXP", "REINDEX", "RELEASE", "RENAME", "REPLACE", "RESTRICT", "RIGHT", "ROLLBACK", "ROW", "SAVEPOINT", "SELECT", "SET", "TABLE", "TEMP", "TEMPORARY", "THEN", "TO", "TRANSACTION", "TRIGGER", "UNION", "UNIQUE", "UPDATE", "USING", "VACUUM", "VALUES", "VIEW", "VIRTUAL", "WHEN", "WHERE", "WITH", "WITHOUT", }; int i, lwr, upr, mid, c; if( !isalpha((unsigned char)zName[0]) && zName[0]!='_' ) return '"'; for(i=0; zName[i]; i++){ if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"'; } lwr = 0; upr = sizeof(azKeywords)/sizeof(azKeywords[0]) - 1; while( lwr<=upr ){ mid = (lwr+upr)/2; c = sqlite3_stricmp(azKeywords[mid], zName); if( c==0 ) return '"'; if( c<0 ){ lwr = mid+1; }else{ upr = mid-1; } } return 0; } /* ** Release memory previously allocated by tableColumnList(). */ static void freeColumnList(char **azCol){ int i; for(i=1; azCol[i]; i++){ sqlite3_free(azCol[i]); } /* azCol[0] is a static string */ sqlite3_free(azCol); } /* ** Return a list of pointers to strings which are the names of all ** columns in table zTab. The memory to hold the names is dynamically ** allocated and must be released by the caller using a subsequent call ** to freeColumnList(). ** ** The azCol[0] entry is usually NULL. However, if zTab contains a rowid ** value that needs to be preserved, then azCol[0] is filled in with the ** name of the rowid column. ** ** The first regular column in the table is azCol[1]. The list is terminated ** by an entry with azCol[i]==0. */ static char **tableColumnList(DState *p, const char *zTab){ char **azCol = 0; sqlite3_stmt *pStmt = 0; char *zSql; int nCol = 0; int nAlloc = 0; int nPK = 0; /* Number of PRIMARY KEY columns seen */ int isIPK = 0; /* True if one PRIMARY KEY column of type INTEGER */ int preserveRowid = 1; int rc; zSql = sqlite3_mprintf("PRAGMA table_info=%Q", zTab); if( zSql==0 ) return 0; rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); if( rc ) return 0; while( sqlite3_step(pStmt)==SQLITE_ROW ){ if( nCol>=nAlloc-2 ){ char **azNew; nAlloc = nAlloc*2 + nCol + 10; azNew = sqlite3_realloc(azCol, nAlloc*sizeof(azCol[0])); if( azNew==0 ) goto col_oom; azCol = azNew; azCol[0] = 0; } azCol[++nCol] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 1)); if( azCol[nCol]==0 ) goto col_oom; if( sqlite3_column_int(pStmt, 5) ){ nPK++; if( nPK==1 && sqlite3_stricmp((const char*)sqlite3_column_text(pStmt,2), "INTEGER")==0 ){ isIPK = 1; }else{ isIPK = 0; } } } sqlite3_finalize(pStmt); pStmt = 0; azCol[nCol+1] = 0; /* The decision of whether or not a rowid really needs to be preserved ** is tricky. We never need to preserve a rowid for a WITHOUT ROWID table ** or a table with an INTEGER PRIMARY KEY. We are unable to preserve ** rowids on tables where the rowid is inaccessible because there are other ** columns in the table named "rowid", "_rowid_", and "oid". */ if( isIPK ){ /* If a single PRIMARY KEY column with type INTEGER was seen, then it ** might be an alise for the ROWID. But it might also be a WITHOUT ROWID ** table or a INTEGER PRIMARY KEY DESC column, neither of which are ** ROWID aliases. To distinguish these cases, check to see if ** there is a "pk" entry in "PRAGMA index_list". There will be ** no "pk" index if the PRIMARY KEY really is an alias for the ROWID. */ zSql = sqlite3_mprintf("SELECT 1 FROM pragma_index_list(%Q)" " WHERE origin='pk'", zTab); if( zSql==0 ) goto col_oom; rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); if( rc ){ freeColumnList(azCol); return 0; } rc = sqlite3_step(pStmt); sqlite3_finalize(pStmt); pStmt = 0; preserveRowid = rc==SQLITE_ROW; } if( preserveRowid ){ /* Only preserve the rowid if we can find a name to use for the ** rowid */ static char *azRowid[] = { "rowid", "_rowid_", "oid" }; int i, j; for(j=0; j<3; j++){ for(i=1; i<=nCol; i++){ if( sqlite3_stricmp(azRowid[j],azCol[i])==0 ) break; } if( i>nCol ){ /* At this point, we know that azRowid[j] is not the name of any ** ordinary column in the table. Verify that azRowid[j] is a valid ** name for the rowid before adding it to azCol[0]. WITHOUT ROWID ** tables will fail this last check */ rc = sqlite3_table_column_metadata(p->db,0,zTab,azRowid[j],0,0,0,0,0); if( rc==SQLITE_OK ) azCol[0] = azRowid[j]; break; } } } return azCol; col_oom: sqlite3_finalize(pStmt); freeColumnList(azCol); p->nErr++; p->rc = SQLITE_NOMEM; return 0; } /* ** Send mprintf-formatted content to the output callback. */ static void output_formatted(DState *p, const char *zFormat, ...){ va_list ap; char *z; va_start(ap, zFormat); z = sqlite3_vmprintf(zFormat, ap); va_end(ap); p->xCallback(z, p->pArg); sqlite3_free(z); } /* ** Find a string that is not found anywhere in z[]. Return a pointer ** to that string. ** ** Try to use zA and zB first. If both of those are already found in z[] ** then make up some string and store it in the buffer zBuf. */ static const char *unused_string( const char *z, /* Result must not appear anywhere in z */ const char *zA, const char *zB, /* Try these first */ char *zBuf /* Space to store a generated string */ ){ unsigned i = 0; if( strstr(z, zA)==0 ) return zA; if( strstr(z, zB)==0 ) return zB; do{ sqlite3_snprintf(20,zBuf,"(%s%u)", zA, i++); }while( strstr(z,zBuf)!=0 ); return zBuf; } /* ** Output the given string as a quoted string using SQL quoting conventions. ** Additionallly , escape the "\n" and "\r" characters so that they do not ** get corrupted by end-of-line translation facilities in some operating ** systems. */ static void output_quoted_escaped_string(DState *p, const char *z){ int i; char c; for(i=0; (c = z[i])!=0 && c!='\'' && c!='\n' && c!='\r'; i++){} if( c==0 ){ output_formatted(p,"'%s'",z); }else{ const char *zNL = 0; const char *zCR = 0; int nNL = 0; int nCR = 0; char zBuf1[20], zBuf2[20]; for(i=0; z[i]; i++){ if( z[i]=='\n' ) nNL++; if( z[i]=='\r' ) nCR++; } if( nNL ){ p->xCallback("replace(", p->pArg); zNL = unused_string(z, "\\n", "\\012", zBuf1); } if( nCR ){ p->xCallback("replace(", p->pArg); zCR = unused_string(z, "\\r", "\\015", zBuf2); } p->xCallback("'", p->pArg); while( *z ){ for(i=0; (c = z[i])!=0 && c!='\n' && c!='\r' && c!='\''; i++){} if( c=='\'' ) i++; if( i ){ output_formatted(p, "%.*s", i, z); z += i; } if( c=='\'' ){ p->xCallback("'", p->pArg); continue; } if( c==0 ){ break; } z++; if( c=='\n' ){ p->xCallback(zNL, p->pArg); continue; } p->xCallback(zCR, p->pArg); } p->xCallback("'", p->pArg); if( nCR ){ output_formatted(p, ",'%s',char(13))", zCR); } if( nNL ){ output_formatted(p, ",'%s',char(10))", zNL); } } } /* ** This is an sqlite3_exec callback routine used for dumping the database. ** Each row received by this callback consists of a table name, ** the table type ("index" or "table") and SQL to create the table. ** This routine should print text sufficient to recreate the table. */ static int dump_callback(void *pArg, int nArg, char **azArg, char **azCol){ int rc; const char *zTable; const char *zType; const char *zSql; DState *p = (DState*)pArg; sqlite3_stmt *pStmt; (void)azCol; if( nArg!=3 ) return 1; zTable = azArg[0]; zType = azArg[1]; zSql = azArg[2]; if( strcmp(zTable, "sqlite_sequence")==0 ){ p->xCallback("DELETE FROM sqlite_sequence;\n", p->pArg); }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 ){ p->xCallback("ANALYZE sqlite_master;\n", p->pArg); }else if( strncmp(zTable, "sqlite_", 7)==0 ){ return 0; }else if( strncmp(zSql, "CREATE VIRTUAL TABLE", 20)==0 ){ if( !p->writableSchema ){ p->xCallback("PRAGMA writable_schema=ON;\n", p->pArg); p->writableSchema = 1; } output_formatted(p, "INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)" "VALUES('table','%q','%q',0,'%q');", zTable, zTable, zSql); return 0; }else{ if( sqlite3_strglob("CREATE TABLE ['\"]*", zSql)==0 ){ p->xCallback("CREATE TABLE IF NOT EXISTS ", p->pArg); p->xCallback(zSql+13, p->pArg); }else{ p->xCallback(zSql, p->pArg); } p->xCallback(";\n", p->pArg); } if( strcmp(zType, "table")==0 ){ DText sSelect; DText sTable; char **azTCol; int i; int nCol; azTCol = tableColumnList(p, zTable); if( azTCol==0 ) return 0; initText(&sTable); appendText(&sTable, "INSERT INTO ", 0); /* Always quote the table name, even if it appears to be pure ascii, ** in case it is a keyword. Ex: INSERT INTO "table" ... */ appendText(&sTable, zTable, quoteChar(zTable)); /* If preserving the rowid, add a column list after the table name. ** In other words: "INSERT INTO tab(rowid,a,b,c,...) VALUES(...)" ** instead of the usual "INSERT INTO tab VALUES(...)". */ if( azTCol[0] ){ appendText(&sTable, "(", 0); appendText(&sTable, azTCol[0], 0); for(i=1; azTCol[i]; i++){ appendText(&sTable, ",", 0); appendText(&sTable, azTCol[i], quoteChar(azTCol[i])); } appendText(&sTable, ")", 0); } appendText(&sTable, " VALUES(", 0); /* Build an appropriate SELECT statement */ initText(&sSelect); appendText(&sSelect, "SELECT ", 0); if( azTCol[0] ){ appendText(&sSelect, azTCol[0], 0); appendText(&sSelect, ",", 0); } for(i=1; azTCol[i]; i++){ appendText(&sSelect, azTCol[i], quoteChar(azTCol[i])); if( azTCol[i+1] ){ appendText(&sSelect, ",", 0); } } nCol = i; if( azTCol[0]==0 ) nCol--; freeColumnList(azTCol); appendText(&sSelect, " FROM ", 0); appendText(&sSelect, zTable, quoteChar(zTable)); rc = sqlite3_prepare_v2(p->db, sSelect.z, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ p->nErr++; if( p->rc==SQLITE_OK ) p->rc = rc; }else{ while( SQLITE_ROW==sqlite3_step(pStmt) ){ p->xCallback(sTable.z, p->pArg); for(i=0; i<nCol; i++){ if( i ) p->xCallback(",", p->pArg); switch( sqlite3_column_type(pStmt,i) ){ case SQLITE_INTEGER: { output_formatted(p, "%lld", sqlite3_column_int64(pStmt,i)); break; } case SQLITE_FLOAT: { double r = sqlite3_column_double(pStmt,i); output_formatted(p, "%!.20g", r); break; } case SQLITE_NULL: { p->xCallback("NULL", p->pArg); break; } case SQLITE_TEXT: { output_quoted_escaped_string(p, (const char*)sqlite3_column_text(pStmt,i)); break; } case SQLITE_BLOB: { int nByte = sqlite3_column_bytes(pStmt,i); unsigned char *a = (unsigned char*)sqlite3_column_blob(pStmt,i); int j; p->xCallback("x'", p->pArg); for(j=0; j<nByte; j++){ char zWord[3]; zWord[0] = "0123456789abcdef"[(a[j]>>4)&15]; zWord[1] = "0123456789abcdef"[a[j]&15]; zWord[2] = 0; p->xCallback(zWord, p->pArg); } p->xCallback("'", p->pArg); break; } } } p->xCallback(");\n", p->pArg); } } sqlite3_finalize(pStmt); freeText(&sTable); freeText(&sSelect); } return 0; } /* ** Execute a query statement that will generate SQL output. Print ** the result columns, comma-separated, on a line and then add a ** semicolon terminator to the end of that line. ** ** If the number of columns is 1 and that column contains text "--" ** then write the semicolon on a separate line. That way, if a ** "--" comment occurs at the end of the statement, the comment ** won't consume the semicolon terminator. */ static void output_sql_from_query( DState *p, /* Query context */ const char *zSelect, /* SELECT statement to extract content */ ... ){ sqlite3_stmt *pSelect; int rc; int nResult; int i; const char *z; char *zSql; va_list ap; va_start(ap, zSelect); zSql = sqlite3_vmprintf(zSelect, ap); va_end(ap); if( zSql==0 ){ p->rc = SQLITE_NOMEM; p->nErr++; return; } rc = sqlite3_prepare_v2(p->db, zSql, -1, &pSelect, 0); sqlite3_free(zSql); if( rc!=SQLITE_OK || !pSelect ){ output_formatted(p, "/**** ERROR: (%d) %s *****/\n", rc, sqlite3_errmsg(p->db)); p->nErr++; return; } rc = sqlite3_step(pSelect); nResult = sqlite3_column_count(pSelect); while( rc==SQLITE_ROW ){ z = (const char*)sqlite3_column_text(pSelect, 0); p->xCallback(z, p->pArg); for(i=1; i<nResult; i++){ p->xCallback(",", p->pArg); p->xCallback((const char*)sqlite3_column_text(pSelect,i), p->pArg); } if( z==0 ) z = ""; while( z[0] && (z[0]!='-' || z[1]!='-') ) z++; if( z[0] ){ p->xCallback("\n;\n", p->pArg); }else{ p->xCallback(";\n", p->pArg); } rc = sqlite3_step(pSelect); } rc = sqlite3_finalize(pSelect); if( rc!=SQLITE_OK ){ output_formatted(p, "/**** ERROR: (%d) %s *****/\n", rc, sqlite3_errmsg(p->db)); if( (rc&0xff)!=SQLITE_CORRUPT ) p->nErr++; } } /* ** Run zQuery. Use dump_callback() as the callback routine so that ** the contents of the query are output as SQL statements. ** ** If we get a SQLITE_CORRUPT error, rerun the query after appending ** "ORDER BY rowid DESC" to the end. */ static void run_schema_dump_query( DState *p, const char *zQuery, ... ){ char *zErr = 0; char *z; va_list ap; va_start(ap, zQuery); z = sqlite3_vmprintf(zQuery, ap); va_end(ap); sqlite3_exec(p->db, z, dump_callback, p, &zErr); sqlite3_free(z); if( zErr ){ output_formatted(p, "/****** %s ******/\n", zErr); sqlite3_free(zErr); p->nErr++; zErr = 0; } } /* ** Convert an SQLite database into SQL statements that will recreate that ** database. */ int sqlite3_db_dump( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which schema to dump. Usually "main". */ const char *zTable, /* Which table to dump. NULL means everything. */ int (*xCallback)(const char*,void*), /* Output sent to this callback */ void *pArg /* Second argument of the callback */ ){ DState x; memset(&x, 0, sizeof(x)); x.rc = sqlite3_exec(db, "BEGIN", 0, 0, 0); if( x.rc ) return x.rc; x.db = db; x.xCallback = xCallback; x.pArg = pArg; xCallback("PRAGMA foreign_keys=OFF;\nBEGIN TRANSACTION;\n", pArg); if( zTable==0 ){ run_schema_dump_query(&x, "SELECT name, type, sql FROM \"%w\".sqlite_master " "WHERE sql NOT NULL AND type=='table' AND name!='sqlite_sequence'", zSchema ); run_schema_dump_query(&x, "SELECT name, type, sql FROM \"%w\".sqlite_master " "WHERE name=='sqlite_sequence'", zSchema ); output_sql_from_query(&x, "SELECT sql FROM sqlite_master " "WHERE sql NOT NULL AND type IN ('index','trigger','view')", 0 ); }else{ run_schema_dump_query(&x, "SELECT name, type, sql FROM \"%w\".sqlite_master " "WHERE tbl_name=%Q COLLATE nocase AND type=='table'" " AND sql NOT NULL", zSchema, zTable ); output_sql_from_query(&x, "SELECT sql FROM \"%w\".sqlite_master " "WHERE sql NOT NULL" " AND type IN ('index','trigger','view')" " AND tbl_name=%Q COLLATE nocase", zSchema, zTable ); } if( x.writableSchema ){ xCallback("PRAGMA writable_schema=OFF;\n", pArg); } xCallback(x.nErr ? "ROLLBACK; -- due to errors\n" : "COMMIT;\n", pArg); sqlite3_exec(db, "COMMIT", 0, 0, 0); return x.rc; } /* The generic subroutine is above. The code the follows implements ** the command-line interface. */ #ifdef DBDUMP_STANDALONE #include <stdio.h> /* ** Command-line interface */ int main(int argc, char **argv){ sqlite3 *db; const char *zDb; const char *zSchema; const char *zTable = 0; int rc; if( argc<2 || argc>4 ){ fprintf(stderr, "Usage: %s DATABASE ?SCHEMA? ?TABLE?\n", argv[0]); return 1; } zDb = argv[1]; zSchema = argc>=3 ? argv[2] : "main"; zTable = argc==4 ? argv[3] : 0; rc = sqlite3_open(zDb, &db); if( rc ){ fprintf(stderr, "Cannot open \"%s\": %s\n", zDb, sqlite3_errmsg(db)); sqlite3_close(db); return 1; } rc = sqlite3_db_dump(db, zSchema, zTable, (int(*)(const char*,void*))fputs, (void*)stdout); if( rc ){ fprintf(stderr, "Error: sqlite3_db_dump() returns %d\n", rc); } sqlite3_close(db); return rc!=SQLITE_OK; } #endif /* DBDUMP_STANDALONE */
the_stack_data/735778.c
/* * $QNXLicenseC: * Copyright 2008, QNX Software Systems. * * Licensed under the Apache License, Version 2.0 (the "License"). You * may not reproduce, modify or distribute this software 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 OF ANY KIND, either express or implied. * * This file may contain contributions from others, either as * contributors under the License or as licensors under other terms. * Please review this entire file for other proprietary rights or license * notices, as well as the QNX Development Suite License Guide at * http://licensing.qnx.com/license-guide/ for other information. * $ */ /* * Keep the GNU compiler happy with this - used for C++ initialization * in another world. */ void __main(void) { } #if defined(__QNXNTO__) && defined(__USESRCVERSION) #include <sys/srcversion.h> __SRCVERSION("$URL: http://svn.ott.qnx.com/product/branches/7.0.0/trunk/hardware/startup/lib/__main.c $ $Rev: 680332 $") #endif
the_stack_data/150141315.c
#include <unistd.h> #include "syscall.h" int dup(int fd) { return syscall(SYS_dup, fd); }
the_stack_data/200144359.c
#include <stdio.h> #include <stdlib.h> int main() { printf("PILHA!\n"); converte_dec_para_bin(527); converte_dec_para_bin(14); return 0; }
the_stack_data/133006.c
/* $Id: pr.c,v 1.1 2003/12/24 10:52:24 dvd Exp $ */ #include <stdlib.h> #include <stdio.h> int main(int argc,char **argv) { int *primes; int N,i,step; primes=calloc(N=atoi(*(++argv)),sizeof(int)); for(i=0;i!=N;++i) primes[i]=1; for(step=2;step!=256;++step) { i=step+step; for(;;) { if(i>=N) break; primes[i]=0; i+=step; } } for(i=0;i!=N;++i) if(primes[i]) printf("%x\n",i); }
the_stack_data/114740.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int expression) { if (!expression) { ERROR: __VERIFIER_error(); }; return; } int __global_lock; void __VERIFIER_atomic_begin() { __VERIFIER_assume(__global_lock==0); __global_lock=1; return; } void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; } #include <assert.h> #include <pthread.h> #ifndef TRUE #define TRUE (_Bool)1 #endif #ifndef FALSE #define FALSE (_Bool)0 #endif #ifndef NULL #define NULL ((void*)0) #endif #ifndef FENCE #define FENCE(x) ((void)0) #endif #ifndef IEEE_FLOAT_EQUAL #define IEEE_FLOAT_EQUAL(x,y) (x==y) #endif #ifndef IEEE_FLOAT_NOTEQUAL #define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y) #endif void * P0(void *arg); void * P1(void *arg); void fence(); void isync(); void lwfence(); int __unbuffered_cnt; int __unbuffered_cnt = 0; int __unbuffered_p0_EAX; int __unbuffered_p0_EAX = 0; int __unbuffered_p1_EAX; int __unbuffered_p1_EAX = 0; _Bool main$tmp_guard0; _Bool main$tmp_guard1; int x; int x = 0; int y; int y = 0; void * P0(void *arg) { __VERIFIER_atomic_begin(); y = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p0_EAX = x; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P1(void *arg) { __VERIFIER_atomic_begin(); x = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p1_EAX = y; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void fence() { } void isync() { } void lwfence() { } int main() { pthread_create(NULL, NULL, P0, NULL); pthread_create(NULL, NULL, P1, NULL); __VERIFIER_atomic_begin(); main$tmp_guard0 = __unbuffered_cnt == 2; __VERIFIER_atomic_end(); __VERIFIER_assume(main$tmp_guard0); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); /* Program was expected to be safe for X86, model checker should have said NO. This likely is a bug in the tool chain. */ main$tmp_guard1 = !(__unbuffered_p0_EAX == 0 && __unbuffered_p1_EAX == 0); __VERIFIER_atomic_end(); /* Program was expected to be safe for X86, model checker should have said NO. This likely is a bug in the tool chain. */ __VERIFIER_assert(main$tmp_guard1); return 0; }
the_stack_data/354512.c
#include <stdio.h> int main(int argc, char **argv) { printf("Hello, World! \n"); }
the_stack_data/23576235.c
#include <stdint.h> uint32_t midi_table [128] = { 75, /* 21 - A0 */ 80, /* 22 - A#0 */ 84, /* 23 - B0 */ 89, /* 24 - C1 */ 95, /* 25 - C#1 */ 100, /* 26 - D1 */ 106, /* 27 - D#1 */ 113, /* 28 - E1 */ 119, /* 29 - F1 */ 126, /* 30 - F#1 */ 134, /* 31 - G1 */ 142, /* 32 - G#1 */ 150, /* 33 - A1 */ 159, /* 34 - A#1 */ 169, /* 35 - B1 */ 179, /* 36 - C2 */ 189, /* 37 - C#2 */ 200, /* 38 - D2 */ 212, /* 39 - D#2 */ 225, /* 40 - E2 */ 238, /* 41 - F2 */ 253, /* 42 - F#2 */ 268, /* 43 - G2 */ 284, /* 44 - G#2 */ 300, /* 45 - A2 */ 318, /* 46 - A#2 */ 337, /* 47 - B2 */ 357, /* 48 - C3 */ 378, /* 49 - C#3 */ 401, /* 50 - D3 */ 425, /* 51 - D#3 */ 450, /* 52 - E3 */ 477, /* 53 - F3 */ 505, /* 54 - F#3 */ 535, /* 55 - G3 */ 567, /* 56 - G#3 */ 601, /* 57 - A3 */ 636, /* 58 - A#3 */ 674, /* 59 - B3 */ 714, /* 60 - C4 */ 757, /* 61 - C#4 */ 802, /* 62 - D4 */ 850, /* 63 - D#4 */ 900, /* 64 - E4 */ 954, /* 65 - F4 */ 1010, /* 66 - F#4 */ 1070, /* 67 - G4 */ 1134, /* 68 - G#4 */ 1201, /* 69 - A4 */ 1273, /* 70 - A#4 */ 1349, /* 71 - B4 */ 1429, /* 72 - C5 */ 1514, /* 73 - C#5 */ 1604, /* 74 - D5 */ 1699, /* 75 - D#5 */ 1800, /* 76 - E5 */ 1907, /* 77 - F5 */ 2021, /* 78 - F#5 */ 2141, /* 79 - G5 */ 2268, /* 80 - G#5 */ 2403, /* 81 - A5 */ 2546, /* 82 - A#5 */ 2697, /* 83 - B5 */ 2858, /* 84 - C6 */ 3028, /* 85 - C#6 */ 3208, /* 86 - D6 */ 3398, /* 87 - D#6 */ 3600, /* 88 - E6 */ 3815, /* 89 - F6 */ 4041, /* 90 - F#6 */ 4282, /* 91 - G6 */ 4536, /* 92 - G#6 */ 4806, /* 93 - A6 */ 5092, /* 94 - A#6 */ 5395, /* 95 - B6 */ 5715, /* 96 - C7 */ 6055, /* 97 - C#7 */ 6415, /* 98 - D7 */ 6797, /* 99 - D#7 */ 7201, /* 100 - E7 */ 7629, /* 101 - F7 */ 8083, /* 102 - F#7 */ 8563, /* 103 - G7 */ 9072, /* 104 - G#7 */ 9612, /* 105 - A7 */ 10184, /* 106 - A#7 */ 10789, /* 107 - B7 */ 11431, /* 108 - C8 */ };
the_stack_data/89199259.c
extern void exit (int); typedef struct { long int p_x, p_y; } Point; int f (Point basePt, Point pt1, Point pt2) { long long vector; vector = (long long) (pt1.p_x - basePt.p_x) * (long long) (pt2.p_y - basePt.p_y) - (long long) (pt1.p_y - basePt.p_y) * (long long) (pt2.p_x - basePt.p_x); if (vector > (long long) 0) return 0; else if (vector < (long long) 0) return 1; else return 2; } main () { Point b, p1, p2; int answer; b.p_x = -23250; b.p_y = 23250; p1.p_x = 23250; p1.p_y = -23250; p2.p_x = -23250; p2.p_y = -23250; answer = f (b, p1, p2); if (answer != 1) abort (); exit (0); }
the_stack_data/45450125.c
#include <stdio.h> int main(){ float capital; int tipo_de_investimento; printf("digite o seu capital : "); scanf("%f",&capital); printf("escolha as opcaoes de investimento :\n [1] poupanca\n [2] fundos de renda fixa\n digite um numero da escolha : "); scanf("%d",&tipo_de_investimento); if(tipo_de_investimento == 1){ capital = capital + ( capital * 0.005); printf("o investimento da poupanca rendem %.2f",capital); }else if (tipo_de_investimento == 2 ){ capital = capital + ( capital * 0.04); printf("o investimento em fundos de renda fixa rendem %.2f",capital); }else { printf("opcao invalida ! "); } return 0 ; }
the_stack_data/145880.c
#include <stdio.h> #include <stdarg.h> static int errors = 0; int get_errors() { return errors; } void reset_errors() { errors = 0; } void error(const char* fmt, ...) { printf("syntax error: "); va_list(args); va_start(args, fmt); vprintf(fmt, args); va_end(args); printf("\n"); errors++; } extern int verbose; void msg(int level, const char* fmt, ...) { if(verbose >= level) { printf("msg: "); va_list(args); va_start(args, fmt); vprintf(fmt, args); va_end(args); printf("\n"); } }
the_stack_data/178264556.c
#include <stdio.h> typedef struct _object { long ob_size; long *ob_type; long ob_ival; } PyObject; #define N_INTOBJECTS 41 struct _intblock { PyObject objects[N_INTOBJECTS]; }; typedef struct _intblock PyIntBlock; int main(){ PyObject *p; p = (PyObject *) malloc(sizeof(PyIntBlock)); p = &((PyIntBlock *)p)->objects[0]; printf("block size address @%d\n", sizeof(PyIntBlock)); printf("p address @%x\n", p); p += 1; printf("p + 1 address @%x\n", p); p += 1; printf("p + 2 address @%x\n", p); return 0; }
the_stack_data/26700896.c
/* Copyright (C) 2003 Free Software Foundation. Ensure builtin mempcpy performs correctly. Written by Kaveh Ghazi, 4/11/2003. */ extern void abort (void); typedef __SIZE_TYPE__ size_t; extern size_t strlen(const char *); extern void *memcpy (void *, const void *, size_t); extern void *mempcpy (void *, const void *, size_t); extern int memcmp (const void *, const void *, size_t); extern int inside_main; const char s1[] = "123"; char p[32] = ""; char *s2 = "defg"; char *s3 = "FGH"; size_t l1 = 1; void main_test (void) { int i; #if !defined __i386__ && !defined __x86_64__ /* The functions below might not be optimized into direct stores on all arches. It depends on how many instructions would be generated and what limits the architecture chooses in STORE_BY_PIECES_P. */ inside_main = 0; #endif if (mempcpy (p, "ABCDE", 6) != p + 6 || memcmp (p, "ABCDE", 6)) abort (); if (mempcpy (p + 16, "VWX" + 1, 2) != p + 16 + 2 || memcmp (p + 16, "WX\0\0", 5)) abort (); if (mempcpy (p + 1, "", 1) != p + 1 + 1 || memcmp (p, "A\0CDE", 6)) abort (); if (mempcpy (p + 3, "FGHI", 4) != p + 3 + 4 || memcmp (p, "A\0CFGHI", 8)) abort (); i = 8; memcpy (p + 20, "qrstu", 6); memcpy (p + 25, "QRSTU", 6); if (mempcpy (p + 25 + 1, s1, 3) != (p + 25 + 1 + 3) || memcmp (p + 25, "Q123U", 6)) abort (); if (mempcpy (mempcpy (p, "abcdEFG", 4), "efg", 4) != p + 8 || memcmp (p, "abcdefg", 8)) abort(); /* Test at least one instance of the __builtin_ style. We do this to ensure that it works and that the prototype is correct. */ if (__builtin_mempcpy (p, "ABCDE", 6) != p + 6 || memcmp (p, "ABCDE", 6)) abort (); /* If the result of mempcpy is ignored, gcc should use memcpy. This should be optimized always, so set inside_main again. */ inside_main = 1; mempcpy (p + 5, s3, 1); if (memcmp (p, "ABCDEFg", 8)) abort (); mempcpy (p + 6, s1 + 1, l1); if (memcmp (p, "ABCDEF2", 8)) abort (); }
the_stack_data/25773.c
#include <stdint.h> int64_t select(int64_t a, int64_t b) { int64_t res = 5; void* targets[] = {&&case1, &&case2, &&case3}; // This stack array (and its use later) are included to make sure that the // compiler uses some stack space for this function (even when optimizing). // Without stack use, macaw eagerly identifies the indirect jump as a tail // call, preventing the refinement code from firing. int stackArray[100]; int idx = 0; if(a > 10) idx = 1; if(a < -5) idx = 2; goto *targets[idx]; case1: res = res + b; case2: res = res - b; case3: res = res * b; return res + stackArray[res]; } void _start() { int64_t r = select(3, 4); return; }
the_stack_data/180698.c
#ifdef STM32F3xx #include "stm32f3xx_hal_sdadc.c" #endif
the_stack_data/306542.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <stdint.h> uint32_t MAX=2000000; uint32_t *sieve; void init() { int mask= 0xaaaaaaaa; /* Mask for even numbers to be marked composite*/ size_t size=(MAX%(sizeof(uint32_t)*8)) ? ( (MAX/(sizeof(uint32_t)*8)+1)*sizeof(uint32_t) ) : ( (MAX/(sizeof(uint32_t)*8))*sizeof(uint32_t) ); sieve=(uint32_t *)malloc(size); /* Bit array rounded up to multiple of sizeof(uint32_t)*/ memset((void *)sieve, mask, size); /* mark even numbers composite */ } uint32_t isComposite(uint32_t x) { size_t index =(--x)/(sizeof(uint32_t)*8); size_t offset=(x)%(sizeof(uint32_t)*8); return(sieve[index]&(0x01<<offset)); } uint32_t isCompositeIO(size_t index, size_t offset) { return(sieve[index]&(0x01<<offset)); } void setComposite(uint32_t x) { size_t index =(--x)/(sizeof(uint32_t)*8); size_t offset=(x)%(sizeof(uint32_t)*8); sieve[index]|=(0x01<<offset); } int main(int argc, char * argv[]) { uint32_t root_max=0; uint32_t begin=3; uint32_t index; uint32_t temp; if(argc==2) MAX=atoi(argv[1]); init(); root_max=(uint32_t)(sqrt(MAX))+1; printf("2 "); while(begin<root_max) { printf("%d ", begin); /* One */ index=begin*begin; while(index <=MAX) { setComposite(index); index+=begin*2; } /* two temp=begin; index=temp*begin; while(index <=MAX) { setComposite(index); do { temp+=2; } while(isComposite(temp) && temp <root_max); index=temp*begin; } * done */ do { begin+=2; } while(isComposite(begin) && begin <root_max); } for(begin=root_max; begin<=MAX ; ++ begin) if(!isComposite(begin)) printf("%d ", begin); return(0); }
the_stack_data/111078266.c
extern void __VERIFIER_error(); #include <pthread.h> #include <stdio.h> #define TRUE (1) #define FALSE (0) #define SIZE (800) #define OVERFLOW (-1) #define UNDERFLOW (-2) unsigned int __VERIFIER_nondet_uint(); static int top = 0; static unsigned int arr[800]; pthread_mutex_t m; _Bool flag = 0; void error(void) { ERROR: __VERIFIER_error(); return; } void inc_top(void) { top++; } void dec_top(void) { top--; } int get_top(void) { return top; } int stack_empty(void) { top == 0 ? 1 : 0; } int push(unsigned int *stack, int x) { if (top == 800) { printf("stack overflow\n"); return -1; } else { stack[get_top()] = x; inc_top(); } return 0; } int pop(unsigned int *stack) { if (get_top() == 0) { printf("stack underflow\n"); return -2; } else { dec_top(); return stack[get_top()]; } return 0; } void *t1(void *arg) { int i; unsigned int tmp; for (i = 0; i < 800; i++) { __CPROVER_assume(((800 - i) >= 0) && (i >= 0)); { pthread_mutex_lock(&m); tmp = __VERIFIER_nondet_uint() % 800; if (push(arr, tmp) == (-1)) error(); flag = 1; pthread_mutex_unlock(&m); } } } void *t2(void *arg) { int i; for (i = 0; i < 800; i++) { __CPROVER_assume(((800 - i) >= 0) && (i >= 0)); { pthread_mutex_lock(&m); if (flag) { if (!(pop(arr) != (-2))) error(); } pthread_mutex_unlock(&m); } } } int main(void) { pthread_t id1; pthread_t id2; pthread_mutex_init(&m, 0); pthread_create(&id1, 0, t1, 0); pthread_create(&id2, 0, t2, 0); pthread_join(id1, 0); pthread_join(id2, 0); return 0; }
the_stack_data/31386991.c
/** ****************************************************************************** * @file stm32l4xx_ll_spi.c * @author MCD Application Team * @version V1.6.0 * @date 28-October-2016 * @brief SPI LL module driver. ****************************************************************************** * @attention * * <h2><center>&copy; COPYRIGHT(c) 2016 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 "stm32l4xx_ll_spi.h" #include "stm32l4xx_ll_bus.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /** @addtogroup STM32L4xx_LL_Driver * @{ */ #if defined (SPI1) || defined (SPI2) || defined (SPI3) /** @addtogroup SPI_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /** @defgroup SPI_LL_Private_Constants SPI Private Constants * @{ */ /* SPI registers Masks */ #define SPI_CR1_CLEAR_MASK (SPI_CR1_CPHA | SPI_CR1_CPOL | SPI_CR1_MSTR | \ SPI_CR1_BR | SPI_CR1_LSBFIRST | SPI_CR1_SSI | \ SPI_CR1_SSM | SPI_CR1_RXONLY | SPI_CR1_CRCL | \ SPI_CR1_CRCNEXT | SPI_CR1_CRCEN | SPI_CR1_BIDIOE | \ SPI_CR1_BIDIMODE) /** * @} */ /* Private macros ------------------------------------------------------------*/ /** @defgroup SPI_LL_Private_Macros SPI Private Macros * @{ */ #define IS_LL_SPI_TRANSFER_DIRECTION(__VALUE__) (((__VALUE__) == LL_SPI_FULL_DUPLEX) \ || ((__VALUE__) == LL_SPI_SIMPLEX_RX) \ || ((__VALUE__) == LL_SPI_HALF_DUPLEX_RX) \ || ((__VALUE__) == LL_SPI_HALF_DUPLEX_TX)) #define IS_LL_SPI_MODE(__VALUE__) (((__VALUE__) == LL_SPI_MODE_MASTER) \ || ((__VALUE__) == LL_SPI_MODE_SLAVE)) #define IS_LL_SPI_DATAWIDTH(__VALUE__) (((__VALUE__) == LL_SPI_DATAWIDTH_4BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_5BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_6BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_7BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_8BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_9BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_10BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_11BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_12BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_13BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_14BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_15BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_16BIT)) #define IS_LL_SPI_POLARITY(__VALUE__) (((__VALUE__) == LL_SPI_POLARITY_LOW) \ || ((__VALUE__) == LL_SPI_POLARITY_HIGH)) #define IS_LL_SPI_PHASE(__VALUE__) (((__VALUE__) == LL_SPI_PHASE_1EDGE) \ || ((__VALUE__) == LL_SPI_PHASE_2EDGE)) #define IS_LL_SPI_NSS(__VALUE__) (((__VALUE__) == LL_SPI_NSS_SOFT) \ || ((__VALUE__) == LL_SPI_NSS_HARD_INPUT) \ || ((__VALUE__) == LL_SPI_NSS_HARD_OUTPUT)) #define IS_LL_SPI_BAUDRATE(__VALUE__) (((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV2) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV4) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV8) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV16) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV32) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV64) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV128) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV256)) #define IS_LL_SPI_BITORDER(__VALUE__) (((__VALUE__) == LL_SPI_LSB_FIRST) \ || ((__VALUE__) == LL_SPI_MSB_FIRST)) #define IS_LL_SPI_CRCCALCULATION(__VALUE__) (((__VALUE__) == LL_SPI_CRCCALCULATION_ENABLE) \ || ((__VALUE__) == LL_SPI_CRCCALCULATION_DISABLE)) #define IS_LL_SPI_CRC_POLYNOMIAL(__VALUE__) ((__VALUE__) >= 0x1U) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup SPI_LL_Exported_Functions * @{ */ /** @addtogroup SPI_LL_EF_Init * @{ */ /** * @brief De-initialize the SPI registers to their default reset values. * @param SPIx SPI Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: SPI registers are de-initialized * - ERROR: SPI registers are not de-initialized */ ErrorStatus LL_SPI_DeInit(SPI_TypeDef *SPIx) { ErrorStatus status = ERROR; /* Check the parameters */ assert_param(IS_SPI_ALL_INSTANCE(SPIx)); #if defined(SPI1) if (SPIx == SPI1) { /* Force reset of SPI clock */ LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI1); /* Release reset of SPI clock */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI1); status = SUCCESS; } #endif /* SPI1 */ #if defined(SPI2) if (SPIx == SPI2) { /* Force reset of SPI clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI2); /* Release reset of SPI clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI2); status = SUCCESS; } #endif /* SPI2 */ #if defined(SPI3) if (SPIx == SPI3) { /* Force reset of SPI clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI3); /* Release reset of SPI clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI3); status = SUCCESS; } #endif /* SPI3 */ return status; } /** * @brief Initialize the SPI registers according to the specified parameters in SPI_InitStruct. * @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0), * SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned. * @param SPIx SPI Instance * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure * @retval An ErrorStatus enumeration value. (Return always SUCCESS) */ ErrorStatus LL_SPI_Init(SPI_TypeDef *SPIx, LL_SPI_InitTypeDef *SPI_InitStruct) { ErrorStatus status = ERROR; /* Check the SPI Instance SPIx*/ assert_param(IS_SPI_ALL_INSTANCE(SPIx)); /* Check the SPI parameters from SPI_InitStruct*/ assert_param(IS_LL_SPI_TRANSFER_DIRECTION(SPI_InitStruct->TransferDirection)); assert_param(IS_LL_SPI_MODE(SPI_InitStruct->Mode)); assert_param(IS_LL_SPI_DATAWIDTH(SPI_InitStruct->DataWidth)); assert_param(IS_LL_SPI_POLARITY(SPI_InitStruct->ClockPolarity)); assert_param(IS_LL_SPI_PHASE(SPI_InitStruct->ClockPhase)); assert_param(IS_LL_SPI_NSS(SPI_InitStruct->NSS)); assert_param(IS_LL_SPI_BAUDRATE(SPI_InitStruct->BaudRate)); assert_param(IS_LL_SPI_BITORDER(SPI_InitStruct->BitOrder)); assert_param(IS_LL_SPI_CRCCALCULATION(SPI_InitStruct->CRCCalculation)); if (LL_SPI_IsEnabled(SPIx) == 0x00000000U) { /*---------------------------- SPIx CR1 Configuration ------------------------ * Configure SPIx CR1 with parameters: * - TransferDirection: SPI_CR1_BIDIMODE, SPI_CR1_BIDIOE and SPI_CR1_RXONLY bits * - Master/Slave Mode: SPI_CR1_MSTR bit * - ClockPolarity: SPI_CR1_CPOL bit * - ClockPhase: SPI_CR1_CPHA bit * - NSS management: SPI_CR1_SSM bit * - BaudRate prescaler: SPI_CR1_BR[2:0] bits * - BitOrder: SPI_CR1_LSBFIRST bit * - CRCCalculation: SPI_CR1_CRCEN bit */ MODIFY_REG(SPIx->CR1, SPI_CR1_CLEAR_MASK, SPI_InitStruct->TransferDirection | SPI_InitStruct->Mode | SPI_InitStruct->ClockPolarity | SPI_InitStruct->ClockPhase | SPI_InitStruct->NSS | SPI_InitStruct->BaudRate | SPI_InitStruct->BitOrder | SPI_InitStruct->CRCCalculation); /*---------------------------- SPIx CR2 Configuration ------------------------ * Configure SPIx CR2 with parameters: * - DataWidth: DS[3:0] bits * - NSS management: SSOE bit */ MODIFY_REG(SPIx->CR2, SPI_CR2_DS | SPI_CR2_SSOE, SPI_InitStruct->DataWidth | (SPI_InitStruct->NSS >> 16U)); /*---------------------------- SPIx CRCPR Configuration ---------------------- * Configure SPIx CRCPR with parameters: * - CRCPoly: CRCPOLY[15:0] bits */ if (SPI_InitStruct->CRCCalculation == LL_SPI_CRCCALCULATION_ENABLE) { assert_param(IS_LL_SPI_CRC_POLYNOMIAL(SPI_InitStruct->CRCPoly)); LL_SPI_SetCRCPolynomial(SPIx, SPI_InitStruct->CRCPoly); } status = SUCCESS; } return status; } /** * @brief Set each @ref LL_SPI_InitTypeDef field to default value. * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_SPI_StructInit(LL_SPI_InitTypeDef *SPI_InitStruct) { /* Set SPI_InitStruct fields to default values */ SPI_InitStruct->TransferDirection = LL_SPI_FULL_DUPLEX; SPI_InitStruct->Mode = LL_SPI_MODE_SLAVE; SPI_InitStruct->DataWidth = LL_SPI_DATAWIDTH_8BIT; SPI_InitStruct->ClockPolarity = LL_SPI_POLARITY_LOW; SPI_InitStruct->ClockPhase = LL_SPI_PHASE_1EDGE; SPI_InitStruct->NSS = LL_SPI_NSS_HARD_INPUT; SPI_InitStruct->BaudRate = LL_SPI_BAUDRATEPRESCALER_DIV2; SPI_InitStruct->BitOrder = LL_SPI_MSB_FIRST; SPI_InitStruct->CRCCalculation = LL_SPI_CRCCALCULATION_DISABLE; SPI_InitStruct->CRCPoly = 7U; } /** * @} */ /** * @} */ /** * @} */ #endif /* defined (SPI1) || defined (SPI2) || defined (SPI3) */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/88329.c
struct s { unsigned int bit1 :1; unsigned int bit4 :4;}; union u { struct s ans; int i; }; typedef union u bits; int callee (bits b){ return b.ans.bit1 ? 3 : 4; } int main (int argc, int *argv[]){ bits b; b.i = 5; return callee(b); }
the_stack_data/146710.c
//Write a program to input a number and check it to be even or odd using if statement #include<stdio.h> main() { int n; printf("Enter the number : "); scanf("%d",&n);//input a number if(n%2) { printf("Number is odd"); } else { printf("Number is even"); } } /*Output Enter the number:24 Number is even*/
the_stack_data/240833.c
#include<stdio.h> //using standard input output header file // This function takes an integer and returns its reverse number // Ex: 12345 -> 54321 | 20055002 -> 20055002 int reverseNum(int num){ // Lets take num = 105 int rev = 0; //the rev or reverse is initially kept 0 while(num>0){ // num = 105 num = 10 num = 1 int rem = num%10; // rem = 105%10 = 5 rem = 10%10 = 0 rem = 1%10 = 1 rev = 10*rev + rem; // rev = 10*0 + 5 = 0+5 = 5 , the last digit of num is now first digit of rev rev = 10*5 + 0 = 50 rev = 10*50+1 = 501(expected reverse output) num/=10; // num = 105/10 = 10 (int / int gives int result) num = 10/10 = 1 num = 1/10 = 0 (while loop will terminate) } return rev; // rev = 501 is returned } // This function takes the original number and reverse and // checks if they are equal or not and // outputs answer accordingly void isPalindrome(int num, int rev){ if(num == rev) printf("true"); // In case of single line after if, curly braces can be omitted else printf("false"); } // Start of main function // main function is the entry point of the program int main(){ int num, reverse; printf("Enter the number: "); scanf("%d",&num); reverse = reverseNum(num); isPalindrome(num, reverse); return 0; }
the_stack_data/25136879.c
#if (NGX_DEBUG) void ndk_debug_helper (const char *func, const char *fmt, ...) { size_t len, flen, tlen; char *s, *p, *e; // check to see if the format is empty flen = strlen (fmt); p = // build func name len = strlen (func); if (flen == 0) tlen = len + 1; else char func_name [len + flen + 1]; s = func_name; e = s + len; memcpy (s, func, len); // remove initial ngx_ if (strncmp (s, "ngx_", 4) == 0) s += 4; // replace '_' with ' ' for (p=s; p<e; p++) { if (*p == '_') *p = ' '; } vfprintf (stderr, const char *format, va_list ap) } void ndk_debug_request_helper (const char *func, ngx_http_request_t *r) { ngx_http_posted_request_t *pr; // TODO : improve the format fprintf (stderr, "%s %.*s %.*s?%.*s c:%d m:%p r:%p ar:%p pr:%p", func, (int) r->method_name.len, r->method_name.data, (int) r->uri.len, r->uri.data, (int) r->args.len, r->args.data, 0/*(int) r->main->count*/, r->main, r, r->connection->data, r->parent); if (r->posted_requests) { fprintf(stderr, " posted:"); for (pr = r->posted_requests; pr; pr = pr->next) { fprintf (stderr, "%p,", pr); } } fprintf (stderr, "\n"); } #endif
the_stack_data/147498.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strcmp.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fmessina <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/06 19:46:26 by fmessina #+# #+# */ /* Updated: 2016/11/06 20:59:25 by fmessina ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strcmp(char const *s1, char const *s2) { int i; i = 0; while (s1[i] == s2[i] && s1[i] && s2[i]) i++; return ((unsigned char)s1[i] - (unsigned char)s2[i]); }
the_stack_data/167330372.c
#include <stdio.h> int main() { int age = 10; if (age < 18 && age >= 0) { printf("幼儿\n"); } else if (age > 18 && age < 28) { printf("青年\n"); } else if (age >= 28 && age < 50) { printf("老年\n"); } else { printf("太老了\n"); } return 0; }
the_stack_data/97265.c
// from https://git.musl-libc.org/cgit/libc-testsuite/ #define _BSD_SOURCE #include <stdio.h> #include <string.h> /* r = place to store result * f = function call to test (or any expression) * x = expected result * m = message to print on failure (with formats for r & x) **/ #define TEST(r, f, x, m) ( \ ((r) = (f)) == (x) || \ (printf(__FILE__ ":%d: %s failed (" m ")\n", __LINE__, #f, r, x), err++, 0) ) #define TEST_S(s, x, m) ( \ !strcmp((s),(x)) || \ (printf(__FILE__ ":%d: [%s] != [%s] (%s)\n", __LINE__, s, x, m), err++, 0) ) int main(void) { char b[32]; char *s; int i; int err=0; b[16]='a'; b[17]='b'; b[18]='c'; b[19]=0; TEST(s, strcpy(b, b+16), b, "wrong return %p != %p"); TEST_S(s, "abc", "strcpy gave incorrect string"); TEST(s, strcpy(b+1, b+16), b+1, "wrong return %p != %p"); TEST_S(s, "abc", "strcpy gave incorrect string"); TEST(s, strcpy(b+2, b+16), b+2, "wrong return %p != %p"); TEST_S(s, "abc", "strcpy gave incorrect string"); TEST(s, strcpy(b+3, b+16), b+3, "wrong return %p != %p"); TEST_S(s, "abc", "strcpy gave incorrect string"); TEST(s, strcpy(b+1, b+17), b+1, "wrong return %p != %p"); TEST_S(s, "bc", "strcpy gave incorrect string"); TEST(s, strcpy(b+2, b+18), b+2, "wrong return %p != %p"); TEST_S(s, "c", "strcpy gave incorrect string"); TEST(s, strcpy(b+3, b+19), b+3, "wrong return %p != %p"); TEST_S(s, "", "strcpy gave incorrect string"); TEST(s, memset(b, 'x', sizeof b), b, "wrong return %p != %p"); TEST(s, strncpy(b, "abc", sizeof b - 1), b, "wrong return %p != %p"); TEST(i, memcmp(b, "abc\0\0\0\0", 8), 0, "strncpy fails to zero-pad dest"); TEST(i, b[sizeof b - 1], 'x', "strncpy overruns buffer when n > strlen(src)"); b[3] = 'x'; b[4] = 0; strncpy(b, "abc", 3); TEST(i, b[2], 'c', "strncpy fails to copy last byte: %hhu != %hhu"); TEST(i, b[3], 'x', "strncpy overruns buffer to null-terminate: %hhu != %hhu"); TEST(i, !strncmp("abcd", "abce", 3), 1, "strncmp compares past n"); TEST(i, !!strncmp("abc", "abd", 3), 1, "strncmp fails to compare n-1st byte"); strcpy(b, "abc"); TEST(s, strncat(b, "123456", 3), b, "%p != %p"); TEST(i, b[6], 0, "strncat failed to null-terminate (%d)"); TEST_S(s, "abc123", "strncat gave incorrect string"); strcpy(b, "aaababccdd0001122223"); TEST(s, strchr(b, 'b'), b+3, "%p != %p"); TEST(s, strrchr(b, 'b'), b+5, "%p != %p"); TEST(i, strspn(b, "abcd"), 10, "%d != %d"); strcspn(b, "0123"); TEST(i, strcspn(b, "0123"), 10, "%d != %d"); TEST(s, strpbrk(b, "0123"), b+10, "%d != %d"); strcpy(b, "abc 123; xyz; foo"); TEST(s, strtok(b, " "), b, "%p != %p"); TEST_S(s, "abc", "strtok result"); TEST(s, strtok(NULL, ";"), b+4, "%p != %p"); TEST_S(s, " 123", "strtok result"); TEST(s, strtok(NULL, "; "), b+11, "%p != %p"); TEST_S(s, "xyz", "strtok result"); TEST(s, strtok(NULL, " ;"), b+16, "%p != %p"); TEST_S(s, "foo", "strtok result"); return err; }
the_stack_data/170452408.c
#include <stdio.h> int Sum(int s) { int i,sum=0; for(i=1;i<=s;i++) { sum += i; } return sum; } int main() { int n; scanf("%d",&n); printf("%d",Sum(n)); return 0; }
the_stack_data/62636496.c
#include <stdio.h> int factor(int n) { int i; int cnt = 0; for (i = 1; i <= n; i++) { if(n%i==0) { cnt++; } } return cnt; } int prime(int a) { int x; x = factor(a); { if(x==2) { return 1; } else { return 0; } } } void main() { int i, res, a; printf("please enter the number till which you want to have prime number\n"); scanf("%d", &a); for (i = 1; i <= a; ++i) { res = prime(i); if(res==1) { printf("%d ",i); } } }
the_stack_data/1168889.c
/* * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. * See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Header$ */ #if defined(_POSIX_SOURCE) #include <sys/types.h> #endif #include <stdlib.h> #include <signal.h> extern pid_t _fork(void); extern pid_t _wait(int *); extern void _exit(int); extern void _execve(const char *path, const char ** argv, const char ** envp); extern int _close(int); #define FAIL 127 extern const char ***_penviron; static const char *exec_tab[] = { "sh", /* argv[0] */ "-c", /* argument to the shell */ NULL, /* to be filled with user command */ NULL /* terminating NULL */ }; int system(const char *str) { int pid, exitstatus, waitval; int i; if ((pid = _fork()) < 0) return str ? -1 : 0; if (pid == 0) { for (i = 3; i <= 20; i++) _close(i); if (!str) str = "cd ."; /* just testing for a shell */ exec_tab[2] = str; /* fill in command */ _execve("/bin/sh", exec_tab, *_penviron); /* get here if execve fails ... */ _exit(FAIL); /* see manual page */ } while ((waitval = _wait(&exitstatus)) != pid) { if (waitval == -1) break; } if (waitval == -1) { /* no child ??? or maybe interrupted ??? */ exitstatus = -1; } if (!str) { if (exitstatus == FAIL << 8) /* execve() failed */ exitstatus = 0; else exitstatus = 1; /* /bin/sh exists */ } return exitstatus; }
the_stack_data/40763967.c
#include <stdio.h> #include <stdbool.h> #include <string.h> #define n 5 // Lista 02 - Questão 5 // Aluno: Rodrigo Matos Aguiar - Rudigus typedef struct contato { char nome[256]; char endereco[256]; char telefone[32]; char situacao; } contato; // Agenda de contatos contato agenda[n]; void printarRegistroContato(contato contato) { printf("\nContato %s\n{\n Endereço: %s\n Telefone: %s\n Situação: %c\n}\n", contato.nome, contato.endereco, contato.telefone, contato.situacao); } void inserirRegistros() { for(int i = 0; i < n; i++) { printf("\nInforme o nome, endereço, telefone e situação (L – Livre, X – Ocupado e * - Apagado) do %dº contato, separados por 1 (um) espaço: ", i + 1); scanf("%s %s %s %c", agenda[i].nome, agenda[i].endereco, agenda[i].telefone, &agenda[i].situacao); } for(int i = 0; i < n; i++) { printarRegistroContato(agenda[i]); } } void pesquisarRegistros() { printf("\nInforme o nome do contato que deseja pesquisar: "); char nome[256]; scanf("%s", nome); for(int i = 0; i < n; i++) { if(strcmp(agenda[i].nome, nome) == 0) { printf("\nO contato com o nome fornecido foi encontrado:\n"); printarRegistroContato(agenda[i]); return; } } printf("\nNão foi encontrado nenhum contato com o nome fornecido.\n"); } contato alterarRegistros() { for(int i = 0; i < n; i++) { printf("\n%d - %s\n", i, agenda[i].nome); } int contatoEscolhido; printf("\nInforme o contato cujos campos se deseja alterar: "); scanf("%d", &contatoEscolhido); printf("\n1 - Nome\n\n2 - Endereço\n\n3 - Telefone\n\n4 - Situação\n"); int campoEscolhido; printf("\nInforme o campo que deseja alterar: "); scanf("%d", &campoEscolhido); printf("\nInforme o valor do campo: "); switch(campoEscolhido) { case 1: scanf("%s", agenda[contatoEscolhido].nome); break; case 2: scanf("%s", agenda[contatoEscolhido].endereco); break; case 3: scanf("%s", agenda[contatoEscolhido].telefone); break; case 4: scanf("%c", &agenda[contatoEscolhido].situacao); break; default: printf("\nOpção inválida. Alteração abortada.\n"); } printarRegistroContato(agenda[contatoEscolhido]); } int main() { int opcao = -1; bool contatosRegistrados = false; while(opcao != 4) { printf("\nMenu\n\nInforme a opção desejada:\n\n1 - Inserir Registros\n\n2 - Pesquisar Registros\n\n3 - Alterar Registros\n\n4 - Sair\n"); scanf("%d", &opcao); switch(opcao) { case 1: inserirRegistros(); contatosRegistrados = true; break; case 2: if(contatosRegistrados) { pesquisarRegistros(agenda); } else { printf("\nOperação cancelada. Primeiro, registre os 5 contatos.\n"); } break; case 3: if(contatosRegistrados) { alterarRegistros(); } else { printf("\nOperação cancelada. Primeiro, registre os 5 contatos.\n"); } break; case 4: printf("\nFinalizando o programa...\n"); break; default: printf("\nOpção inválida. Tente novamente.\n"); break; } } }