blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
357
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
58
| license_type
stringclasses 2
values | repo_name
stringlengths 4
115
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-14 21:31:45
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-01 00:00:00
2023-09-05 23:26:37
| committer_date
timestamp[ns]date 1970-01-01 00:00:00
2023-09-05 23:26:37
| github_id
int64 966
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 24
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-02-03 21:17:16
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 180
values | src_encoding
stringclasses 35
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 6
10.4M
| extension
stringclasses 121
values | filename
stringlengths 1
148
| content
stringlengths 6
10.4M
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3e48f4ad39b0aac5f17de7bc11b4924a5651eee6
|
b10352f69aa27d9af9dd0dad225657575a50a7f9
|
/33_inet/5_inet_udp/client.c
|
ca32aa8bf97aaa1d11498392d32c10c342d66d86
|
[] |
no_license
|
xiangfeng1215/my_learn_code
|
5820a4914fa5a579a5df37508eba1296c7ceacd0
|
5546a7f755c329d4488d5df46f9285fae5f8b125
|
refs/heads/master
| 2021-10-21T09:03:31.965923 | 2019-03-04T01:44:47 | 2019-03-04T01:44:47 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,593 |
c
|
client.c
|
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <strings.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <time.h>
#include <errno.h>
#include <signal.h>
int main(int argc,char **argv)
{
if(argc < 3){
fprintf(stderr," %s too few argument; linke < ip > < port > \n",argv[0]);
printf("FILE %s \n",__FILE__);
printf("line %d \n",__LINE__);
printf("data %s \n",__DATE__);
printf("time %s \n",__TIME__);
exit(EXIT_FAILURE);
}//if
int client_sockfd;
struct sockaddr_in client_address;
struct sockaddr_in server_address;
int client_addrlen = sizeof(client_address);
int server_addrlen = sizeof(server_address);
char send_buf[BUFSIZ];
client_sockfd = socket(AF_INET,SOCK_DGRAM,0);
if(client_sockfd < 0 ){
perror("client_sockfd");
exit(EXIT_FAILURE);
}//if
server_address.sin_family = AF_INET;
server_address.sin_port = htons(atoi(argv[2]));
server_address.sin_addr.s_addr = inet_addr(argv[1]);
client_address.sin_family = AF_INET;
client_address.sin_port = htons(atoi(argv[2]));
client_address.sin_addr.s_addr = inet_addr(argv[1]);
bzero(send_buf,sizeof(send_buf));
while(1){
printf("Enter data : \n");
scanf("%s",send_buf);
getchar();
if(sendto(client_sockfd,send_buf,sizeof(send_buf),0,(struct sockaddr*)&server_address,(socklen_t)server_addrlen) < 0 ){
perror("sendto ");
exit(EXIT_FAILURE);
}
if(strncmp(send_buf,"quit",4) == 0){
break;
}//if
}//while
close(client_sockfd);
return 0;
}
|
8dfc6bed92bdeb0a77bcd7f74657f172f3670da1
|
ab27bc0561affe7ffaf3b1709084af3ada4003ee
|
/lab11/task1/src/lib.h
|
1dd0f739d851f2fc0792616cffaf62a30e913411
|
[] |
no_license
|
zerodeusx/programing_Gladkov
|
5e27552774d02d448de4c935427bcb0785048e12
|
a2affee103a7399f6d8004961dd6499ac89ed0db
|
refs/heads/main
| 2023-05-06T16:13:00.895239 | 2021-06-01T17:45:01 | 2021-06-01T17:45:01 | 313,441,282 | 0 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 394 |
h
|
lib.h
|
/**
* @file lib.h
* @brief Прототипи функцій
*
*
* @author Gladkov K.
* @date 11-dec-2020
* @version 1.0
*/
#pragma once
#include <stdlib.h>
/**
* Кiлькiсть елементiв у масивi
*/
#define N 6
/**
* підрахунок відповідних елементів
*/
int* counter(int* arr);
/**
* Довжина масиву
*/
int size(int* arr);
|
ea05e230436593c4b1af640ed870293db67d6d98
|
d1c801bd626aa0e540d5a234caf1c2f73441785a
|
/code.c
|
2c506be7a1324e248bfd0a84f7336c59aa169f25
|
[] |
no_license
|
ManoramaHC/Self-Learning-path
|
0e2aa962c3ebae327ed4c8d5396d80b2414974a6
|
334e30e434ca92de2d73ca9e132e8dbc129d9584
|
refs/heads/master
| 2022-08-25T16:41:33.405138 | 2020-05-11T16:36:44 | 2020-05-11T16:36:44 | 263,067,461 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 127 |
c
|
code.c
|
#include <stdio.h>
int main(void)
{
int i=get_int("Integer:");
printf("hello,%i\n");
}
*// Integer: 23
hello
//*
|
16bc48280417fdd5d04c658baf91fb0111ebdc7b
|
efbcd8d8cbe304de7803c84cdf0633138e53acae
|
/Exe5/src/main.c
|
1328cb8e194cd635a034bae614101c717ed9ddfe
|
[
"Unlicense"
] |
permissive
|
HenriqueBuzin/stack-chained-list
|
2b3fe8fceff836fa242e457eab00a24b3c1933af
|
bcdfcdaefd6738eee1be55c3d751441f4a1f0c6d
|
refs/heads/master
| 2020-09-23T01:35:59.446019 | 2019-12-02T12:19:54 | 2019-12-02T12:19:54 | 225,368,204 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 203 |
c
|
main.c
|
#include <stdio.h>
#include "dados.h"
#include "pilha.h"
int main(){
pilha_t *pilha = ler_dados_csv_pilha("camera_temp.csv");
mostrar_pilha(pilha);
liberar_dados(pilha);
return 0;
}
|
79502fccd1ac6126e7649710c51de68317e97fdf
|
55131cd0b451db15f03d9570836265af44bd9449
|
/chapter4/stringf.c
|
d532cd21a548e470ef638eaea8cf6d90b4923ef7
|
[] |
no_license
|
Firkraag/c_primer_plus_solution
|
5bcbf7e3afb3a188c1b6fbd7b53f3562bcb5953a
|
8f5a469d178972553f60e728ee90a7bd47c78ef4
|
refs/heads/master
| 2022-06-20T12:37:44.938161 | 2022-06-04T16:52:12 | 2022-06-04T16:52:12 | 172,002,897 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 443 |
c
|
stringf.c
|
/*************************************************************************
> File Name: stringf.c
> Author:
> Mail:
> Created Time: Thu Feb 21 12:10:07 2019
************************************************************************/
#include <stdio.h>
#define BLURB "Authentic imitation!"
int main(void) {
printf("[%2s]\n", BLURB);
printf("[%24s]\n", BLURB);
printf("[%24.5s]\n", BLURB);
printf("[%-24.5s]\n", BLURB);
}
|
e65bafcbacf3593d1325feeb1183d2b2978a95fb
|
91a882547e393d4c4946a6c2c99186b5f72122dd
|
/Source/XPSP1/NT/base/hals/halsp/i386/spsproc.c
|
0f5afb34c772468f101b9fb25e952ff800f150ef
|
[] |
no_license
|
IAmAnubhavSaini/cryptoAlgorithm-nt5src
|
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
|
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
|
refs/heads/master
| 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 7,612 |
c
|
spsproc.c
|
/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
spsproc.c
Abstract:
SystemPro Start Next Processor c code.
This module implements the initialization of the system dependent
functions that define the Hardware Architecture Layer (HAL) for an
MP Compaq SystemPro
Author:
Ken Reneris (kenr) 22-Jan-1991
Environment:
Kernel mode only.
Revision History:
--*/
#include "halp.h"
const UCHAR HalName[] = "SystemPro or compatible MP Hal"; // This is placed in .text for debugging
#define HalName L"SystemPro or compatible MP Hal"
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg("INITCONST")
#endif // ALLOC_DATA_PRAGMA
WCHAR HalHardwareIdString[] = L"syspro_mp\0";
ADDRESS_USAGE HalpSystemProIoSpace = {
NULL, CmResourceTypePort, InternalUsage,
{
0xC70, 1, // WhoAmI
0xC6A, 1, // P0 Processor control register
0xFC6A, 1, // P1 Processor control register
0xFC67, 2, // P1 cache control, interrupt vector
0,0
}
};
ADDRESS_USAGE HalpAcerIoSpace = {
NULL, CmResourceTypePort, InternalUsage,
{
0xCC67, 2, // P2 cache control, interrupt vector
0xCC6A, 1, // P2 Processor control register
0xDC67, 2, // P3 cache control, interrupt vector
0xDC6A, 1, // P3 Processor control register
0,0
}
};
ADDRESS_USAGE HalpBelizeIoSpace = {
NULL, CmResourceTypePort, InternalUsage,
{
0xC67, 1, // Mode Select
0xC71, 6, // CPU assignment, reserverd[2], CPU index, address, data
0xCB0, 36, // IRQx Control/Status
0xCC9, 1, // INT13 Extended control/status port
0,0
}
};
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg()
#endif // ALLOC_DATA_PRAGMA
VOID
HalpNonPrimaryClockInterrupt(
VOID
);
BOOLEAN
HalpInitMP (
IN ULONG Phase,
IN PLOADER_PARAMETER_BLOCK LoaderBlock
);
VOID HalpInitOtherBuses (VOID);
VOID HalpInitializePciBus (VOID);
VOID HalpInitializePciStubs (VOID);
#define LOW_MEMORY 0x000100000
#define MAX_PT 8
extern VOID StartPx_PMStub(VOID);
#ifdef ALLOC_PRAGMA
#pragma alloc_text(INIT,HalpInitMP)
#pragma alloc_text(INIT,HalAllProcessorsStarted)
#pragma alloc_text(INIT,HalReportResourceUsage)
#pragma alloc_text(INIT,HalReportResourceUsage)
#pragma alloc_text(INIT,HalpInitOtherBuses)
#endif
ULONG MpCount; // zero based. 0 = 1, 1 = 2, ...
PUCHAR MpLowStub; // pointer to low memory bootup stub
PVOID MpLowStubPhysicalAddress; // pointer to low memory bootup stub
PUCHAR MppIDT; // pointer to physical memory 0:0
extern ULONG HalpIpiClock; // bitmask of processors to ipi
extern UCHAR SpCpuCount;
extern UCHAR Sp8259PerProcessorMode;
extern UCHAR SpType;
extern PKPCR HalpProcessorPCR[];
BOOLEAN
HalpInitMP (
IN ULONG Phase,
IN PLOADER_PARAMETER_BLOCK LoaderBlock
)
/*++
Routine Description:
Allows MP initialization from HalInitSystem.
Arguments:
Same as HalInitSystem
Return Value:
none.
--*/
{
ULONG paddress;
ULONG adjust;
PKPCR pPCR;
pPCR = KeGetPcr();
if (Phase == 0) {
//
// Register the IO space used by the SystemPro
//
HalpRegisterAddressUsage (&HalpSystemProIoSpace);
switch (SpType) {
case 2:
HalpRegisterAddressUsage (&HalpBelizeIoSpace);
break;
case 3:
HalpRegisterAddressUsage (&HalpAcerIoSpace);
break;
}
#if 0
//
// Register IPI vector
//
HalpRegisterVector (
DeviceUsage,
13,
13 + PRIMARY_VECTOR_BASE,
IPI_LEVEL );
#endif
//
// Get pointer to real-mode idt table
//
MppIDT = HalpMapPhysicalMemory (0, 1);
//
// Allocate some low memory for processor bootup stub
//
MpLowStubPhysicalAddress = (PVOID)HalpAllocPhysicalMemory (LoaderBlock,
LOW_MEMORY, 1, FALSE);
if (!MpLowStubPhysicalAddress)
return TRUE;
MpLowStub = (PCHAR) HalpMapPhysicalMemory (MpLowStubPhysicalAddress, 1);
MpCount = SpCpuCount-1;
return TRUE;
} else {
//
// Phase 1 for another processor
//
if (pPCR->Prcb->Number != 0) {
if (Sp8259PerProcessorMode & 1) {
//
// Each processor has it's own pics - we broadcast profile
// interrupts to each processor by enabling it on each
// processor
//
HalpInitializeStallExecution( pPCR->Prcb->Number );
HalpEnableInterruptHandler (
DeviceUsage, // Report as device vector
V2I (PROFILE_VECTOR), // Bus interrupt level
PROFILE_VECTOR, // System IDT
PROFILE_LEVEL, // System Irql
HalpProfileInterrupt, // ISR
Latched );
} else {
//
// Without a profile interrupt we can not callibrate
// KeStallExecutionProcessor, so we inherrit the value from P0.
//
pPCR->StallScaleFactor = HalpProcessorPCR[0]->StallScaleFactor;
}
if (Sp8259PerProcessorMode & 4) {
//
// Each processor can get it's own clock device - we
// program each processor's 8254 and enable to interrupt
// on each processor
//
HalpInitializeClock ();
HalpEnableInterruptHandler (
DeviceUsage, // Report as device vector
V2I (CLOCK_VECTOR), // Bus interrupt level
CLOCK_VECTOR, // System IDT
CLOCK2_LEVEL, // System Irql
HalpNonPrimaryClockInterrupt, // ISR
Latched );
} else {
//
// This processor doesn't have a clock, so we emulate it by
// sending an ipi at clock intervals.
//
HalpIpiClock |= 1 << pPCR->Prcb->Number;
}
}
}
return TRUE;
}
BOOLEAN
HalAllProcessorsStarted (
VOID
)
{
if (HalpFeatureBits & HAL_NO_SPECULATION) {
//
// Processor doesn't perform speculative execeution,
// remove fences in critical code paths
//
HalpRemoveFences ();
}
return TRUE;
}
VOID
HalReportResourceUsage (
VOID
)
/*++
Routine Description:
The registery is now enabled - time to report resources which are
used by the HAL.
Arguments:
Return Value:
--*/
{
UNICODE_STRING UHalName;
HalInitSystemPhase2();
RtlInitUnicodeString (&UHalName, HalName);
HalpReportResourceUsage (
&UHalName, // descriptive name
Eisa // SystemPro's are Eisa machines
);
//
// Turn on MCA support if present
//
HalpMcaInit();
//
// Registry is now intialized, see if there are any PCI buses
//
HalpInitializePciBus ();
HalpInitializePciStubs ();
}
VOID
HalpInitOtherBuses (
VOID
)
{
// no other buses
}
|
f99e5fb263fb8921ff7c1e8b64f3a13b3d52f5d8
|
e1278d31843dd01d9468e5a2dde16d37fd6a31a5
|
/BinarySearch.c
|
73ef24111b9c882a9948b5a2faa63588ef62f4cf
|
[] |
no_license
|
NikhilMudgal/Data-Structures-and-Algorithms-Programs
|
8cfb764354138f8633efc34b8803ff4da8498455
|
15d9edd78e52d5e6da63a4b4f2761f19c5198f02
|
refs/heads/master
| 2020-03-22T17:40:35.333388 | 2018-07-10T09:41:54 | 2018-07-10T09:41:54 | 140,408,676 | 1 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 580 |
c
|
BinarySearch.c
|
include<stdio.h>
#include<conio.h>
void bserc(int A[],int N,int x)
{int first=0,last=N-1,mid;
while(first<=last&&x!=A[mid])
{
mid=(first+last)/2;
if(A[mid]==x)
printf("The position of the element is %d\n",mid+1);
else if(x>A[mid])
first=mid+1;
else
last=mid-1;
}
}
int main()
{ int A[10],N,i,x;
printf("Enter the no. of elements to be taken\n");
scanf("%d",&N);
printf("Enter %d elements of array\n",N);
for(i=0;i<N;i++)
scanf("%d",&A[i]);
printf("Enter the element to be searched\n");
scanf("%d",&x);
bserc(A,N,x);
getch();
return 0;
}
|
4c159a94e05b209ec035e09583658a4edacc89b0
|
84bc09fbb816f479bb679ba3fc536404663d5e57
|
/PointerDifference.c
|
f54139ffc26daeafa5165cdb22d919c6e42daa1d
|
[] |
no_license
|
ZJ-x/Nonsense-C-pratice
|
9b37000ab0f203eb539b632087dc21d39c24b1f0
|
2e03f247a9bb4a2ca73c96073068361b4b6f59e5
|
refs/heads/master
| 2022-08-29T00:26:48.435328 | 2020-05-27T05:34:47 | 2020-05-27T05:34:47 | 266,249,377 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 246 |
c
|
PointerDifference.c
|
# include <stdio.h>
int main(void)
{
int n[5],i,*p1,*p2;
p1=n;
for(i=0;i<5;i++)
{
p2=&n[i];
printf("The difference is: %d\n",p2-(p1+1));
printf("The address of n[i] is: %d\n:",&n[i]);
}
}
|
c324a13a3f405fe0fcdd1ea2cce4dc3ffa9f654f
|
f94ff4230d529a0f104d366d558685405b5c6cbf
|
/EE214/Module_11/Module_11.sim/sim_1/behav/xsim/xsim.dir/test_SERIAL_ADDER_behav/obj/xsim_1.c
|
5f1cfabbb5e5029579812c3b0a9e7b6561b58c45
|
[] |
no_license
|
Necryotiks/WSU-CPTE
|
db1df165cd6ada58c4785470f25a80be732ae7da
|
e0daa0ee500b15eba8d19af0590d229d1efbfc96
|
refs/heads/master
| 2022-03-15T17:43:52.918045 | 2019-12-03T00:06:13 | 2019-12-03T00:06:13 | 140,038,004 | 0 | 2 | null | null | null | null |
UTF-8
|
C
| false | false | 21,150 |
c
|
xsim_1.c
|
/**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ */
/* \ \ Copyright (c) 2003-2013 Xilinx, Inc. */
/* / / All Right Reserved. */
/* /---/ /\ */
/* \ \ / \ */
/* \___\/\___\ */
/**********************************************************************/
#include "iki.h"
#include <string.h>
#include <math.h>
#ifdef __GNUC__
#include <stdlib.h>
#else
#include <malloc.h>
#define alloca _alloca
#endif
/**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ */
/* \ \ Copyright (c) 2003-2013 Xilinx, Inc. */
/* / / All Right Reserved. */
/* /---/ /\ */
/* \ \ / \ */
/* \___\/\___\ */
/**********************************************************************/
#include "iki.h"
#include <string.h>
#include <math.h>
#ifdef __GNUC__
#include <stdlib.h>
#else
#include <malloc.h>
#define alloca _alloca
#endif
typedef void (*funcp)(char *, char *);
extern int main(int, char**);
extern void execute_2(char*, char *);
extern void execute_3(char*, char *);
extern void execute_4(char*, char *);
extern void execute_5(char*, char *);
extern void execute_6(char*, char *);
extern void execute_7(char*, char *);
extern void execute_8(char*, char *);
extern void execute_9(char*, char *);
<<<<<<< HEAD
extern void execute_249(char*, char *);
extern void execute_250(char*, char *);
extern void execute_251(char*, char *);
extern void execute_254(char*, char *);
extern void execute_255(char*, char *);
extern void execute_256(char*, char *);
extern void execute_257(char*, char *);
extern void vlog_simple_process_execute_0_fast_no_reg_no_agg(char*, char*, char*);
extern void execute_259(char*, char *);
extern void execute_268(char*, char *);
extern void execute_269(char*, char *);
extern void execute_270(char*, char *);
extern void execute_26(char*, char *);
extern void execute_260(char*, char *);
extern void execute_32(char*, char *);
extern void execute_35(char*, char *);
extern void execute_36(char*, char *);
extern void execute_265(char*, char *);
extern void execute_266(char*, char *);
extern void execute_267(char*, char *);
extern void execute_39(char*, char *);
extern void execute_61(char*, char *);
extern void execute_74(char*, char *);
extern void execute_52(char*, char *);
extern void execute_53(char*, char *);
extern void execute_54(char*, char *);
extern void execute_64(char*, char *);
extern void execute_65(char*, char *);
extern void execute_66(char*, char *);
extern void execute_91(char*, char *);
extern void execute_98(char*, char *);
extern void execute_99(char*, char *);
extern void execute_100(char*, char *);
extern void execute_224(char*, char *);
extern void execute_232(char*, char *);
extern void execute_103(char*, char *);
extern void execute_162(char*, char *);
extern void execute_218(char*, char *);
extern void execute_220(char*, char *);
extern void execute_222(char*, char *);
extern void execute_226(char*, char *);
extern void execute_228(char*, char *);
extern void execute_230(char*, char *);
extern void execute_111(char*, char *);
extern void execute_112(char*, char *);
extern void execute_109(char*, char *);
extern void execute_110(char*, char *);
extern void execute_116(char*, char *);
extern void execute_117(char*, char *);
extern void execute_120(char*, char *);
extern void execute_155(char*, char *);
extern void execute_94(char*, char *);
extern void execute_95(char*, char *);
extern void execute_96(char*, char *);
extern void execute_97(char*, char *);
extern void execute_234(char*, char *);
extern void execute_235(char*, char *);
extern void execute_236(char*, char *);
extern void execute_237(char*, char *);
extern void execute_241(char*, char *);
extern void execute_242(char*, char *);
extern void execute_243(char*, char *);
extern void execute_244(char*, char *);
extern void execute_245(char*, char *);
extern void execute_246(char*, char *);
extern void execute_247(char*, char *);
extern void execute_248(char*, char *);
extern void execute_239(char*, char *);
extern void execute_240(char*, char *);
=======
extern void execute_237(char*, char *);
extern void execute_238(char*, char *);
extern void execute_239(char*, char *);
extern void execute_242(char*, char *);
extern void vlog_simple_process_execute_0_fast_no_reg_no_agg(char*, char*, char*);
extern void execute_245(char*, char *);
extern void execute_246(char*, char *);
extern void execute_247(char*, char *);
extern void execute_250(char*, char *);
extern void execute_251(char*, char *);
extern void execute_252(char*, char *);
extern void execute_29(char*, char *);
extern void execute_30(char*, char *);
extern void execute_248(char*, char *);
extern void execute_249(char*, char *);
extern void execute_49(char*, char *);
extern void execute_62(char*, char *);
extern void execute_40(char*, char *);
extern void execute_41(char*, char *);
extern void execute_42(char*, char *);
extern void execute_52(char*, char *);
extern void execute_53(char*, char *);
extern void execute_54(char*, char *);
extern void execute_79(char*, char *);
extern void execute_86(char*, char *);
extern void execute_87(char*, char *);
extern void execute_88(char*, char *);
extern void execute_212(char*, char *);
extern void execute_220(char*, char *);
extern void execute_91(char*, char *);
extern void execute_150(char*, char *);
extern void execute_206(char*, char *);
extern void execute_208(char*, char *);
extern void execute_210(char*, char *);
extern void execute_214(char*, char *);
extern void execute_216(char*, char *);
extern void execute_218(char*, char *);
extern void execute_99(char*, char *);
extern void execute_100(char*, char *);
extern void execute_97(char*, char *);
extern void execute_98(char*, char *);
extern void execute_104(char*, char *);
extern void execute_105(char*, char *);
extern void execute_108(char*, char *);
extern void execute_143(char*, char *);
extern void execute_82(char*, char *);
extern void execute_83(char*, char *);
extern void execute_84(char*, char *);
extern void execute_85(char*, char *);
extern void execute_222(char*, char *);
extern void execute_223(char*, char *);
extern void execute_224(char*, char *);
extern void execute_225(char*, char *);
extern void execute_229(char*, char *);
extern void execute_230(char*, char *);
extern void execute_231(char*, char *);
extern void execute_232(char*, char *);
extern void execute_233(char*, char *);
extern void execute_234(char*, char *);
extern void execute_235(char*, char *);
extern void execute_236(char*, char *);
extern void execute_227(char*, char *);
extern void execute_228(char*, char *);
>>>>>>> 8c676840f2d6ed352e8a720fb7e570aabcf8c2b5
extern void vlog_transfunc_eventcallback(char*, char*, unsigned, unsigned, unsigned, char *);
extern void transaction_32(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_33(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_34(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_35(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_36(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_37(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_38(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_39(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_40(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_41(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_42(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_43(char*, char*, unsigned, unsigned, unsigned);
<<<<<<< HEAD
extern void transaction_49(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_51(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_55(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_56(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_57(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_58(char*, char*, unsigned, unsigned, unsigned);
extern void vhdl_transfunc_eventcallback(char*, char*, unsigned, unsigned, unsigned, char *);
extern void transaction_72(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_121(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_130(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_139(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_148(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_157(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_181(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_204(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_212(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_220(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_228(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_236(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_244(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_270(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_278(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_286(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_294(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_302(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_310(char*, char*, unsigned, unsigned, unsigned);
funcp funcTab[116] = {(funcp)execute_2, (funcp)execute_3, (funcp)execute_4, (funcp)execute_5, (funcp)execute_6, (funcp)execute_7, (funcp)execute_8, (funcp)execute_9, (funcp)execute_249, (funcp)execute_250, (funcp)execute_251, (funcp)execute_254, (funcp)execute_255, (funcp)execute_256, (funcp)execute_257, (funcp)vlog_simple_process_execute_0_fast_no_reg_no_agg, (funcp)execute_259, (funcp)execute_268, (funcp)execute_269, (funcp)execute_270, (funcp)execute_26, (funcp)execute_260, (funcp)execute_32, (funcp)execute_35, (funcp)execute_36, (funcp)execute_265, (funcp)execute_266, (funcp)execute_267, (funcp)execute_39, (funcp)execute_61, (funcp)execute_74, (funcp)execute_52, (funcp)execute_53, (funcp)execute_54, (funcp)execute_64, (funcp)execute_65, (funcp)execute_66, (funcp)execute_91, (funcp)execute_98, (funcp)execute_99, (funcp)execute_100, (funcp)execute_224, (funcp)execute_232, (funcp)execute_103, (funcp)execute_162, (funcp)execute_218, (funcp)execute_220, (funcp)execute_222, (funcp)execute_226, (funcp)execute_228, (funcp)execute_230, (funcp)execute_111, (funcp)execute_112, (funcp)execute_109, (funcp)execute_110, (funcp)execute_116, (funcp)execute_117, (funcp)execute_120, (funcp)execute_155, (funcp)execute_94, (funcp)execute_95, (funcp)execute_96, (funcp)execute_97, (funcp)execute_234, (funcp)execute_235, (funcp)execute_236, (funcp)execute_237, (funcp)execute_241, (funcp)execute_242, (funcp)execute_243, (funcp)execute_244, (funcp)execute_245, (funcp)execute_246, (funcp)execute_247, (funcp)execute_248, (funcp)execute_239, (funcp)execute_240, (funcp)vlog_transfunc_eventcallback, (funcp)transaction_32, (funcp)transaction_33, (funcp)transaction_34, (funcp)transaction_35, (funcp)transaction_36, (funcp)transaction_37, (funcp)transaction_38, (funcp)transaction_39, (funcp)transaction_40, (funcp)transaction_41, (funcp)transaction_42, (funcp)transaction_43, (funcp)transaction_49, (funcp)transaction_51, (funcp)transaction_55, (funcp)transaction_56, (funcp)transaction_57, (funcp)transaction_58, (funcp)vhdl_transfunc_eventcallback, (funcp)transaction_72, (funcp)transaction_121, (funcp)transaction_130, (funcp)transaction_139, (funcp)transaction_148, (funcp)transaction_157, (funcp)transaction_181, (funcp)transaction_204, (funcp)transaction_212, (funcp)transaction_220, (funcp)transaction_228, (funcp)transaction_236, (funcp)transaction_244, (funcp)transaction_270, (funcp)transaction_278, (funcp)transaction_286, (funcp)transaction_294, (funcp)transaction_302, (funcp)transaction_310};
const int NumRelocateId= 116;
void relocate(char *dp)
{
iki_relocate(dp, "xsim.dir/test_SERIAL_ADDER_behav/xsim.reloc", (void **)funcTab, 116);
iki_vhdl_file_variable_register(dp + 66080);
iki_vhdl_file_variable_register(dp + 66136);
=======
extern void transaction_46(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_49(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_50(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_51(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_52(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_53(char*, char*, unsigned, unsigned, unsigned);
extern void vhdl_transfunc_eventcallback(char*, char*, unsigned, unsigned, unsigned, char *);
extern void transaction_61(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_110(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_119(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_128(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_137(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_146(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_170(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_193(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_201(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_209(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_217(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_225(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_233(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_259(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_267(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_275(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_283(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_291(char*, char*, unsigned, unsigned, unsigned);
extern void transaction_299(char*, char*, unsigned, unsigned, unsigned);
funcp funcTab[110] = {(funcp)execute_2, (funcp)execute_3, (funcp)execute_4, (funcp)execute_5, (funcp)execute_6, (funcp)execute_7, (funcp)execute_8, (funcp)execute_9, (funcp)execute_237, (funcp)execute_238, (funcp)execute_239, (funcp)execute_242, (funcp)vlog_simple_process_execute_0_fast_no_reg_no_agg, (funcp)execute_245, (funcp)execute_246, (funcp)execute_247, (funcp)execute_250, (funcp)execute_251, (funcp)execute_252, (funcp)execute_29, (funcp)execute_30, (funcp)execute_248, (funcp)execute_249, (funcp)execute_49, (funcp)execute_62, (funcp)execute_40, (funcp)execute_41, (funcp)execute_42, (funcp)execute_52, (funcp)execute_53, (funcp)execute_54, (funcp)execute_79, (funcp)execute_86, (funcp)execute_87, (funcp)execute_88, (funcp)execute_212, (funcp)execute_220, (funcp)execute_91, (funcp)execute_150, (funcp)execute_206, (funcp)execute_208, (funcp)execute_210, (funcp)execute_214, (funcp)execute_216, (funcp)execute_218, (funcp)execute_99, (funcp)execute_100, (funcp)execute_97, (funcp)execute_98, (funcp)execute_104, (funcp)execute_105, (funcp)execute_108, (funcp)execute_143, (funcp)execute_82, (funcp)execute_83, (funcp)execute_84, (funcp)execute_85, (funcp)execute_222, (funcp)execute_223, (funcp)execute_224, (funcp)execute_225, (funcp)execute_229, (funcp)execute_230, (funcp)execute_231, (funcp)execute_232, (funcp)execute_233, (funcp)execute_234, (funcp)execute_235, (funcp)execute_236, (funcp)execute_227, (funcp)execute_228, (funcp)vlog_transfunc_eventcallback, (funcp)transaction_32, (funcp)transaction_33, (funcp)transaction_34, (funcp)transaction_35, (funcp)transaction_36, (funcp)transaction_37, (funcp)transaction_38, (funcp)transaction_39, (funcp)transaction_40, (funcp)transaction_41, (funcp)transaction_42, (funcp)transaction_43, (funcp)transaction_46, (funcp)transaction_49, (funcp)transaction_50, (funcp)transaction_51, (funcp)transaction_52, (funcp)transaction_53, (funcp)vhdl_transfunc_eventcallback, (funcp)transaction_61, (funcp)transaction_110, (funcp)transaction_119, (funcp)transaction_128, (funcp)transaction_137, (funcp)transaction_146, (funcp)transaction_170, (funcp)transaction_193, (funcp)transaction_201, (funcp)transaction_209, (funcp)transaction_217, (funcp)transaction_225, (funcp)transaction_233, (funcp)transaction_259, (funcp)transaction_267, (funcp)transaction_275, (funcp)transaction_283, (funcp)transaction_291, (funcp)transaction_299};
const int NumRelocateId= 110;
void relocate(char *dp)
{
iki_relocate(dp, "xsim.dir/test_SERIAL_ADDER_behav/xsim.reloc", (void **)funcTab, 110);
<<<<<<< HEAD
iki_vhdl_file_variable_register(dp + 64296);
iki_vhdl_file_variable_register(dp + 64352);
=======
iki_vhdl_file_variable_register(dp + 64248);
iki_vhdl_file_variable_register(dp + 64304);
>>>>>>> 8c676840f2d6ed352e8a720fb7e570aabcf8c2b5
>>>>>>> f5b32d4ca83d31785747b52779843e931249981e
/*Populate the transaction function pointer field in the whole net structure */
}
void sensitize(char *dp)
{
iki_sensitize(dp, "xsim.dir/test_SERIAL_ADDER_behav/xsim.reloc");
}
void simulate(char *dp)
{
iki_schedule_processes_at_time_zero(dp, "xsim.dir/test_SERIAL_ADDER_behav/xsim.reloc");
// Initialize Verilog nets in mixed simulation, for the cases when the value at time 0 should be propagated from the mixed language Vhdl net
<<<<<<< HEAD
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 79040, dp + 79992, 0, 0, 0, 0, 1, 1);
=======
<<<<<<< HEAD
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 80824, dp + 81696, 0, 0, 0, 0, 1, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 80880, dp + 81752, 0, 7, 0, 7, 8, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 80920, dp + 81808, 0, 7, 0, 7, 8, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 80960, dp + 81864, 0, 0, 0, 0, 1, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 81016, dp + 81920, 0, 0, 0, 0, 1, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 91496, dp + 82648, 0, 0, 0, 0, 1, 1);
=======
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 78992, dp + 79880, 0, 0, 0, 0, 1, 1);
>>>>>>> f5b32d4ca83d31785747b52779843e931249981e
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 79096, dp + 80048, 0, 0, 0, 0, 1, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 79152, dp + 80104, 0, 0, 0, 0, 1, 1);
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 79320, dp + 80272, 0, 0, 0, 0, 1, 1);
<<<<<<< HEAD
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 85064, dp + 80664, 0, 0, 0, 0, 1, 1);
=======
iki_vlog_schedule_transaction_signal_fast_vhdl_value_time_0(dp + 84952, dp + 80552, 0, 0, 0, 0, 1, 1);
>>>>>>> 8c676840f2d6ed352e8a720fb7e570aabcf8c2b5
>>>>>>> f5b32d4ca83d31785747b52779843e931249981e
iki_execute_processes();
// Schedule resolution functions for the multiply driven Verilog nets that have strength
// Schedule transaction functions for the singly driven Verilog nets that have strength
}
#include "iki_bridge.h"
void relocate(char *);
void sensitize(char *);
void simulate(char *);
extern SYSTEMCLIB_IMP_DLLSPEC void local_register_implicit_channel(int, char*);
extern void implicit_HDL_SCinstatiate();
extern SYSTEMCLIB_IMP_DLLSPEC int xsim_argc_copy ;
extern SYSTEMCLIB_IMP_DLLSPEC char** xsim_argv_copy ;
int main(int argc, char **argv)
{
iki_heap_initialize("ms", "isimmm", 0, 2147483648) ;
iki_set_sv_type_file_path_name("xsim.dir/test_SERIAL_ADDER_behav/xsim.svtype");
iki_set_crvs_dump_file_path_name("xsim.dir/test_SERIAL_ADDER_behav/xsim.crvsdump");
void* design_handle = iki_create_design("xsim.dir/test_SERIAL_ADDER_behav/xsim.mem", (void *)relocate, (void *)sensitize, (void *)simulate, 0, isimBridge_getWdbWriter(), 0, argc, argv);
iki_set_rc_trial_count(100);
(void) design_handle;
return iki_simulate_design();
}
|
469b3217195dcd81f027ca86554ec40ebe16f715
|
88c0e520e2389e676fea559f944109e1ee7e157b
|
/include/wiamindr_xp_88303db0.h
|
e1b1adf3d7ba90908ce1b085e59ae218956346d2
|
[] |
no_license
|
jchoi2022/NtFuzz-HeaderData
|
fb4ecbd5399f4fac6a4982a0fb516dd7f9368118
|
6adc3d339e6cac072cde6cfef07eccafbc6b204c
|
refs/heads/main
| 2023-08-03T02:26:10.666986 | 2021-09-17T13:35:26 | 2021-09-17T13:35:26 | 407,547,359 | 4 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 20,606 |
h
|
wiamindr_xp_88303db0.h
|
#include "rpc.h"
#include "rpcndr.h"
#error this stub requires an updated version of <rpcndr.h>
#include "windows.h"
#include "ole2.h"
typedef interface IWiaMiniDrv IWiaMiniDrv;
typedef interface IWiaMiniDrvCallBack IWiaMiniDrvCallBack;
typedef interface IWiaDrvItem IWiaDrvItem;
#include "unknwn.h"
#include "oaidl.h"
#include "propidl.h"
#include "wia_xp.h"
extern "C"{
#include <winapifamily.h>
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
typedef struct _MINIDRV_TRANSFER_CONTEXT
{
LONG lSize;
LONG lWidthInPixels;
LONG lLines;
LONG lDepth;
LONG lXRes;
LONG lYRes;
LONG lCompression;
GUID guidFormatID;
LONG tymed;
LONG_PTR hFile;
LONG cbOffset;
LONG lBufferSize;
LONG lActiveBuffer;
LONG lNumBuffers;
BYTE *pBaseBuffer;
BYTE *pTransferBuffer;
BOOL bTransferDataCB;
BOOL bClassDrvAllocBuf;
LONG_PTR lClientAddress;
IWiaMiniDrvCallBack *pIWiaMiniDrvCallBack;
LONG lImageSize;
LONG lHeaderSize;
LONG lItemSize;
LONG cbWidthInBytes;
LONG lPage;
LONG lCurIfdOffset;
LONG lPrevIfdOffset;
} MINIDRV_TRANSFER_CONTEXT;
typedef struct _MINIDRV_TRANSFER_CONTEXT *PMINIDRV_TRANSFER_CONTEXT;
typedef struct _WIA_DEV_CAP_DRV
{
GUID *guid;
ULONG ulFlags;
LPOLESTR wszName;
LPOLESTR wszDescription;
LPOLESTR wszIcon;
} WIA_DEV_CAP_DRV;
typedef struct _WIA_DEV_CAP_DRV *PWIA_DEV_CAP_DRV;
extern RPC_IF_HANDLE __MIDL_itf_wiamindr_xp_0000_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_wiamindr_xp_0000_0000_v0_0_s_ifspec;
EXTERN_C const IID IID_IWiaMiniDrv;
typedef struct IWiaMiniDrvVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
__RPC__in IWiaMiniDrv * This,
__RPC__in REFIID riid,
_COM_Outptr_ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
__RPC__in IWiaMiniDrv * This);
ULONG ( STDMETHODCALLTYPE *Release )(
__RPC__in IWiaMiniDrv * This);
HRESULT ( STDMETHODCALLTYPE *drvInitializeWia )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0000,
LONG __MIDL__IWiaMiniDrv0001,
__RPC__in BSTR __MIDL__IWiaMiniDrv0002,
__RPC__in BSTR __MIDL__IWiaMiniDrv0003,
__RPC__in_opt IUnknown *__MIDL__IWiaMiniDrv0004,
__RPC__in_opt IUnknown *__MIDL__IWiaMiniDrv0005,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaMiniDrv0006,
__RPC__deref_out_opt IUnknown **__MIDL__IWiaMiniDrv0007,
__RPC__out LONG *__MIDL__IWiaMiniDrv0008);
HRESULT ( STDMETHODCALLTYPE *drvAcquireItemData )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0009,
LONG __MIDL__IWiaMiniDrv0010,
__RPC__inout PMINIDRV_TRANSFER_CONTEXT __MIDL__IWiaMiniDrv0011,
__RPC__out LONG *__MIDL__IWiaMiniDrv0012);
HRESULT ( STDMETHODCALLTYPE *drvInitItemProperties )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0013,
LONG __MIDL__IWiaMiniDrv0014,
__RPC__out LONG *__MIDL__IWiaMiniDrv0015);
HRESULT ( STDMETHODCALLTYPE *drvValidateItemProperties )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0016,
LONG __MIDL__IWiaMiniDrv0017,
ULONG __MIDL__IWiaMiniDrv0018,
__RPC__in const PROPSPEC *__MIDL__IWiaMiniDrv0019,
__RPC__out LONG *__MIDL__IWiaMiniDrv0020);
HRESULT ( STDMETHODCALLTYPE *drvWriteItemProperties )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0021,
LONG __MIDL__IWiaMiniDrv0022,
__RPC__in PMINIDRV_TRANSFER_CONTEXT __MIDL__IWiaMiniDrv0023,
__RPC__out LONG *__MIDL__IWiaMiniDrv0024);
HRESULT ( STDMETHODCALLTYPE *drvReadItemProperties )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0025,
LONG __MIDL__IWiaMiniDrv0026,
ULONG __MIDL__IWiaMiniDrv0027,
__RPC__in const PROPSPEC *__MIDL__IWiaMiniDrv0028,
__RPC__out LONG *__MIDL__IWiaMiniDrv0029);
HRESULT ( STDMETHODCALLTYPE *drvLockWiaDevice )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0030,
LONG __MIDL__IWiaMiniDrv0031,
__RPC__out LONG *__MIDL__IWiaMiniDrv0032);
HRESULT ( STDMETHODCALLTYPE *drvUnLockWiaDevice )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0033,
LONG __MIDL__IWiaMiniDrv0034,
__RPC__out LONG *__MIDL__IWiaMiniDrv0035);
HRESULT ( STDMETHODCALLTYPE *drvAnalyzeItem )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0036,
LONG __MIDL__IWiaMiniDrv0037,
__RPC__in LONG *__MIDL__IWiaMiniDrv0038);
HRESULT ( STDMETHODCALLTYPE *drvGetDeviceErrorStr )(
__RPC__in IWiaMiniDrv * This,
LONG __MIDL__IWiaMiniDrv0039,
LONG __MIDL__IWiaMiniDrv0040,
__RPC__deref_out_opt LPOLESTR *__MIDL__IWiaMiniDrv0041,
__RPC__out LONG *__MIDL__IWiaMiniDrv0042);
HRESULT ( STDMETHODCALLTYPE *drvDeviceCommand )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0043,
LONG __MIDL__IWiaMiniDrv0044,
__RPC__in const GUID *__MIDL__IWiaMiniDrv0045,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaMiniDrv0046,
__RPC__out LONG *__MIDL__IWiaMiniDrv0047);
HRESULT ( STDMETHODCALLTYPE *drvGetCapabilities )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0048,
LONG __MIDL__IWiaMiniDrv0049,
__RPC__out LONG *__MIDL__IWiaMiniDrv0050,
__RPC__deref_out_opt WIA_DEV_CAP_DRV **__MIDL__IWiaMiniDrv0051,
__RPC__out LONG *__MIDL__IWiaMiniDrv0052);
HRESULT ( STDMETHODCALLTYPE *drvDeleteItem )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0053,
LONG __MIDL__IWiaMiniDrv0054,
__RPC__out LONG *__MIDL__IWiaMiniDrv0055);
HRESULT ( STDMETHODCALLTYPE *drvFreeDrvItemContext )(
__RPC__in IWiaMiniDrv * This,
LONG __MIDL__IWiaMiniDrv0056,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0057,
__RPC__out LONG *__MIDL__IWiaMiniDrv0058);
HRESULT ( STDMETHODCALLTYPE *drvGetWiaFormatInfo )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0059,
LONG __MIDL__IWiaMiniDrv0060,
__RPC__out LONG *__MIDL__IWiaMiniDrv0061,
__RPC__deref_out_opt WIA_FORMAT_INFO **__MIDL__IWiaMiniDrv0062,
__RPC__out LONG *__MIDL__IWiaMiniDrv0063);
HRESULT ( STDMETHODCALLTYPE *drvNotifyPnpEvent )(
__RPC__in IWiaMiniDrv * This,
__RPC__in const GUID *pEventGUID,
__RPC__in BSTR bstrDeviceID,
ULONG ulReserved);
HRESULT ( STDMETHODCALLTYPE *drvUnInitializeWia )(
__RPC__in IWiaMiniDrv * This,
__RPC__in BYTE *__MIDL__IWiaMiniDrv0064);
END_INTERFACE
} IWiaMiniDrvVtbl;
interface IWiaMiniDrv
{
CONST_VTBL struct IWiaMiniDrvVtbl *lpVtbl;
};
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
( (This)->lpVtbl -> AddRef(This) )
( (This)->lpVtbl -> Release(This) )
( (This)->lpVtbl -> drvInitializeWia(This,__MIDL__IWiaMiniDrv0000,__MIDL__IWiaMiniDrv0001,__MIDL__IWiaMiniDrv0002,__MIDL__IWiaMiniDrv0003,__MIDL__IWiaMiniDrv0004,__MIDL__IWiaMiniDrv0005,__MIDL__IWiaMiniDrv0006,__MIDL__IWiaMiniDrv0007,__MIDL__IWiaMiniDrv0008) )
( (This)->lpVtbl -> drvAcquireItemData(This,__MIDL__IWiaMiniDrv0009,__MIDL__IWiaMiniDrv0010,__MIDL__IWiaMiniDrv0011,__MIDL__IWiaMiniDrv0012) )
( (This)->lpVtbl -> drvInitItemProperties(This,__MIDL__IWiaMiniDrv0013,__MIDL__IWiaMiniDrv0014,__MIDL__IWiaMiniDrv0015) )
( (This)->lpVtbl -> drvValidateItemProperties(This,__MIDL__IWiaMiniDrv0016,__MIDL__IWiaMiniDrv0017,__MIDL__IWiaMiniDrv0018,__MIDL__IWiaMiniDrv0019,__MIDL__IWiaMiniDrv0020) )
( (This)->lpVtbl -> drvWriteItemProperties(This,__MIDL__IWiaMiniDrv0021,__MIDL__IWiaMiniDrv0022,__MIDL__IWiaMiniDrv0023,__MIDL__IWiaMiniDrv0024) )
( (This)->lpVtbl -> drvReadItemProperties(This,__MIDL__IWiaMiniDrv0025,__MIDL__IWiaMiniDrv0026,__MIDL__IWiaMiniDrv0027,__MIDL__IWiaMiniDrv0028,__MIDL__IWiaMiniDrv0029) )
( (This)->lpVtbl -> drvLockWiaDevice(This,__MIDL__IWiaMiniDrv0030,__MIDL__IWiaMiniDrv0031,__MIDL__IWiaMiniDrv0032) )
( (This)->lpVtbl -> drvUnLockWiaDevice(This,__MIDL__IWiaMiniDrv0033,__MIDL__IWiaMiniDrv0034,__MIDL__IWiaMiniDrv0035) )
( (This)->lpVtbl -> drvAnalyzeItem(This,__MIDL__IWiaMiniDrv0036,__MIDL__IWiaMiniDrv0037,__MIDL__IWiaMiniDrv0038) )
( (This)->lpVtbl -> drvGetDeviceErrorStr(This,__MIDL__IWiaMiniDrv0039,__MIDL__IWiaMiniDrv0040,__MIDL__IWiaMiniDrv0041,__MIDL__IWiaMiniDrv0042) )
( (This)->lpVtbl -> drvDeviceCommand(This,__MIDL__IWiaMiniDrv0043,__MIDL__IWiaMiniDrv0044,__MIDL__IWiaMiniDrv0045,__MIDL__IWiaMiniDrv0046,__MIDL__IWiaMiniDrv0047) )
( (This)->lpVtbl -> drvGetCapabilities(This,__MIDL__IWiaMiniDrv0048,__MIDL__IWiaMiniDrv0049,__MIDL__IWiaMiniDrv0050,__MIDL__IWiaMiniDrv0051,__MIDL__IWiaMiniDrv0052) )
( (This)->lpVtbl -> drvDeleteItem(This,__MIDL__IWiaMiniDrv0053,__MIDL__IWiaMiniDrv0054,__MIDL__IWiaMiniDrv0055) )
( (This)->lpVtbl -> drvFreeDrvItemContext(This,__MIDL__IWiaMiniDrv0056,__MIDL__IWiaMiniDrv0057,__MIDL__IWiaMiniDrv0058) )
( (This)->lpVtbl -> drvGetWiaFormatInfo(This,__MIDL__IWiaMiniDrv0059,__MIDL__IWiaMiniDrv0060,__MIDL__IWiaMiniDrv0061,__MIDL__IWiaMiniDrv0062,__MIDL__IWiaMiniDrv0063) )
( (This)->lpVtbl -> drvNotifyPnpEvent(This,pEventGUID,bstrDeviceID,ulReserved) )
( (This)->lpVtbl -> drvUnInitializeWia(This,__MIDL__IWiaMiniDrv0064) )
EXTERN_C const IID IID_IWiaMiniDrvCallBack;
typedef struct IWiaMiniDrvCallBackVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
__RPC__in IWiaMiniDrvCallBack * This,
__RPC__in REFIID riid,
_COM_Outptr_ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
__RPC__in IWiaMiniDrvCallBack * This);
ULONG ( STDMETHODCALLTYPE *Release )(
__RPC__in IWiaMiniDrvCallBack * This);
HRESULT ( STDMETHODCALLTYPE *MiniDrvCallback )(
__RPC__in IWiaMiniDrvCallBack * This,
LONG lReason,
LONG lStatus,
LONG lPercentComplete,
LONG lOffset,
LONG lLength,
__RPC__in PMINIDRV_TRANSFER_CONTEXT pTranCtx,
LONG lReserved);
END_INTERFACE
} IWiaMiniDrvCallBackVtbl;
interface IWiaMiniDrvCallBack
{
CONST_VTBL struct IWiaMiniDrvCallBackVtbl *lpVtbl;
};
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
( (This)->lpVtbl -> AddRef(This) )
( (This)->lpVtbl -> Release(This) )
( (This)->lpVtbl -> MiniDrvCallback(This,lReason,lStatus,lPercentComplete,lOffset,lLength,pTranCtx,lReserved) )
EXTERN_C const IID IID_IWiaDrvItem;
typedef struct IWiaDrvItemVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
__RPC__in IWiaDrvItem * This,
__RPC__in REFIID riid,
_COM_Outptr_ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
__RPC__in IWiaDrvItem * This);
ULONG ( STDMETHODCALLTYPE *Release )(
__RPC__in IWiaDrvItem * This);
HRESULT ( STDMETHODCALLTYPE *GetItemFlags )(
__RPC__in IWiaDrvItem * This,
__RPC__out LONG *__MIDL__IWiaDrvItem0000);
HRESULT ( STDMETHODCALLTYPE *GetDeviceSpecContext )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt BYTE **__MIDL__IWiaDrvItem0001);
HRESULT ( STDMETHODCALLTYPE *GetFullItemName )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt BSTR *__MIDL__IWiaDrvItem0002);
HRESULT ( STDMETHODCALLTYPE *GetItemName )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt BSTR *__MIDL__IWiaDrvItem0003);
HRESULT ( STDMETHODCALLTYPE *AddItemToFolder )(
__RPC__in IWiaDrvItem * This,
__RPC__in_opt IWiaDrvItem *__MIDL__IWiaDrvItem0004);
HRESULT ( STDMETHODCALLTYPE *UnlinkItemTree )(
__RPC__in IWiaDrvItem * This,
LONG __MIDL__IWiaDrvItem0005);
HRESULT ( STDMETHODCALLTYPE *RemoveItemFromFolder )(
__RPC__in IWiaDrvItem * This,
LONG __MIDL__IWiaDrvItem0006);
HRESULT ( STDMETHODCALLTYPE *FindItemByName )(
__RPC__in IWiaDrvItem * This,
LONG __MIDL__IWiaDrvItem0007,
__RPC__in BSTR __MIDL__IWiaDrvItem0008,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaDrvItem0009);
HRESULT ( STDMETHODCALLTYPE *FindChildItemByName )(
__RPC__in IWiaDrvItem * This,
__RPC__in BSTR __MIDL__IWiaDrvItem0010,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaDrvItem0011);
HRESULT ( STDMETHODCALLTYPE *GetParentItem )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaDrvItem0012);
HRESULT ( STDMETHODCALLTYPE *GetFirstChildItem )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaDrvItem0013);
HRESULT ( STDMETHODCALLTYPE *GetNextSiblingItem )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt IWiaDrvItem **__MIDL__IWiaDrvItem0014);
HRESULT ( STDMETHODCALLTYPE *DumpItemData )(
__RPC__in IWiaDrvItem * This,
__RPC__deref_out_opt BSTR *__MIDL__IWiaDrvItem0015);
END_INTERFACE
} IWiaDrvItemVtbl;
interface IWiaDrvItem
{
CONST_VTBL struct IWiaDrvItemVtbl *lpVtbl;
};
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
( (This)->lpVtbl -> AddRef(This) )
( (This)->lpVtbl -> Release(This) )
( (This)->lpVtbl -> GetItemFlags(This,__MIDL__IWiaDrvItem0000) )
( (This)->lpVtbl -> GetDeviceSpecContext(This,__MIDL__IWiaDrvItem0001) )
( (This)->lpVtbl -> GetFullItemName(This,__MIDL__IWiaDrvItem0002) )
( (This)->lpVtbl -> GetItemName(This,__MIDL__IWiaDrvItem0003) )
( (This)->lpVtbl -> AddItemToFolder(This,__MIDL__IWiaDrvItem0004) )
( (This)->lpVtbl -> UnlinkItemTree(This,__MIDL__IWiaDrvItem0005) )
( (This)->lpVtbl -> RemoveItemFromFolder(This,__MIDL__IWiaDrvItem0006) )
( (This)->lpVtbl -> FindItemByName(This,__MIDL__IWiaDrvItem0007,__MIDL__IWiaDrvItem0008,__MIDL__IWiaDrvItem0009) )
( (This)->lpVtbl -> FindChildItemByName(This,__MIDL__IWiaDrvItem0010,__MIDL__IWiaDrvItem0011) )
( (This)->lpVtbl -> GetParentItem(This,__MIDL__IWiaDrvItem0012) )
( (This)->lpVtbl -> GetFirstChildItem(This,__MIDL__IWiaDrvItem0013) )
( (This)->lpVtbl -> GetNextSiblingItem(This,__MIDL__IWiaDrvItem0014) )
( (This)->lpVtbl -> DumpItemData(This,__MIDL__IWiaDrvItem0015) )
typedef struct _WIA_PROPERTY_INFO
{
ULONG lAccessFlags;
VARTYPE vt;
union
{
struct
{
LONG Min;
LONG Nom;
LONG Max;
LONG Inc;
} Range;
struct
{
DOUBLE Min;
DOUBLE Nom;
DOUBLE Max;
DOUBLE Inc;
} RangeFloat;
struct
{
LONG cNumList;
LONG Nom;
BYTE *pList;
} List;
struct
{
LONG cNumList;
DOUBLE Nom;
BYTE *pList;
} ListFloat;
struct
{
LONG cNumList;
GUID Nom;
GUID *pList;
} ListGuid;
struct
{
LONG cNumList;
BSTR Nom;
BSTR *pList;
} ListBStr;
struct
{
LONG Nom;
LONG ValidBits;
} Flag;
struct
{
LONG Dummy;
} None;
} ValidVal;
} WIA_PROPERTY_INFO;
typedef struct _WIA_PROPERTY_INFO *PWIA_PROPERTY_INFO;
typedef struct _WIA_PROPERTY_CONTEXT
{
ULONG cProps;
PROPID *pProps;
BOOL *pChanged;
} WIA_PROPERTY_CONTEXT;
typedef struct _WIA_PROPERTY_CONTEXT *PWIA_PROPERTY_CONTEXT;
typedef struct _WIAS_CHANGED_VALUE_INFO
{
BOOL bChanged;
LONG vt;
union
{
LONG lVal;
FLOAT fltVal;
BSTR bstrVal;
GUID guidVal;
} Old;
union
{
LONG lVal;
FLOAT fltVal;
BSTR bstrVal;
GUID guidVal;
} Current;
} WIAS_CHANGED_VALUE_INFO;
typedef struct _WIAS_CHANGED_VALUE_INFO *PWIAS_CHANGED_VALUE_INFO;
typedef struct _WIAS_DOWN_SAMPLE_INFO
{
ULONG ulOriginalWidth;
ULONG ulOriginalHeight;
ULONG ulBitsPerPixel;
ULONG ulXRes;
ULONG ulYRes;
ULONG ulDownSampledWidth;
ULONG ulDownSampledHeight;
ULONG ulActualSize;
ULONG ulDestBufSize;
ULONG ulSrcBufSize;
BYTE *pSrcBuffer;
BYTE *pDestBuffer;
} WIAS_DOWN_SAMPLE_INFO;
typedef struct _WIAS_DOWN_SAMPLE_INFO *PWIAS_DOWN_SAMPLE_INFO;
typedef struct _WIAS_ENDORSER_VALUE
{
LPWSTR wszTokenName;
LPWSTR wszValue;
} WIAS_ENDORSER_VALUE;
typedef struct _WIAS_ENDORSER_VALUE *PWIAS_ENDORSER_VALUE;
typedef struct _WIAS_ENDORSER_INFO
{
ULONG ulPageCount;
ULONG ulNumEndorserValues;
WIAS_ENDORSER_VALUE *pEndorserValues;
} WIAS_ENDORSER_INFO;
typedef struct _WIAS_ENDORSER_INFO *PWIAS_ENDORSER_INFO;
#include "wiamdef.h"
#endif
#pragma endregion
extern RPC_IF_HANDLE __MIDL_itf_wiamindr_xp_0000_0003_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_wiamindr_xp_0000_0003_v0_0_s_ifspec;
unsigned long __RPC_USER BSTR_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in BSTR * );
unsigned char * __RPC_USER BSTR_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in BSTR * );
unsigned char * __RPC_USER BSTR_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out BSTR * );
void __RPC_USER BSTR_UserFree( __RPC__in unsigned long *, __RPC__in BSTR * );
unsigned long __RPC_USER BSTR_UserSize64( __RPC__in unsigned long *, unsigned long , __RPC__in BSTR * );
unsigned char * __RPC_USER BSTR_UserMarshal64( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in BSTR * );
unsigned char * __RPC_USER BSTR_UserUnmarshal64(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out BSTR * );
void __RPC_USER BSTR_UserFree64( __RPC__in unsigned long *, __RPC__in BSTR * );
}
|
f2675fbf3ab93a912ebee018773d836615c1f1eb
|
c4b71980c495918c7301680b6432585766f7f1db
|
/algebra.h
|
3bb865326d2cb6755aecb3e620fa897655660e3e
|
[] |
no_license
|
albertgumi/tracking
|
14087e1af1d83dc77cb118719ee51b414a95bc52
|
6cd5e5f21a1d641900b2c637614dd4b656ca0862
|
refs/heads/master
| 2020-06-04T07:28:47.109931 | 2013-08-21T13:15:48 | 2013-08-21T13:15:48 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 494 |
h
|
algebra.h
|
#ifndef ALGEBRA_H
#define ALGEBRA_H
typedef struct matrix {
float* mat;
int rows;
int cols;
} matrix;
void printMat(matrix *M);
inline void matInv(matrix* I, matrix* M);
inline void matSub(matrix* res, matrix* A, matrix* B);
inline void matAdd(matrix* res, matrix* A, matrix* B);
inline void matMul(matrix* res, matrix* A, matrix* B);
inline void matMul3(matrix* res, matrix* A, matrix* B, matrix* C);
inline void matMul3bis(matrix* res, matrix* A, matrix* B, matrix* C);
#endif
|
c0cff80ca9027ed7a17a14f2a97b70ff144457e7
|
28d0f8c01599f8f6c711bdde0b59f9c2cd221203
|
/sys/ufs/ffs/ffs_wapbl.c
|
250a43b29d86d7eb1421f0de57bd04ecfe0a5e96
|
[] |
no_license
|
NetBSD/src
|
1a9cbc22ed778be638b37869ed4fb5c8dd616166
|
23ee83f7c0aea0777bd89d8ebd7f0cde9880d13c
|
refs/heads/trunk
| 2023-08-31T13:24:58.105962 | 2023-08-27T15:50:47 | 2023-08-27T15:50:47 | 88,439,547 | 656 | 348 | null | 2023-07-20T20:07:24 | 2017-04-16T20:03:43 | null |
UTF-8
|
C
| false | false | 25,924 |
c
|
ffs_wapbl.c
|
/* $NetBSD: ffs_wapbl.c,v 1.48 2022/05/22 11:27:36 andvar Exp $ */
/*-
* Copyright (c) 2003,2006,2008 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Wasabi Systems, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ffs_wapbl.c,v 1.48 2022/05/22 11:27:36 andvar Exp $");
#define WAPBL_INTERNAL
#if defined(_KERNEL_OPT)
#include "opt_ffs.h"
#endif
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/vnode.h>
#include <sys/mount.h>
#include <sys/file.h>
#include <sys/disk.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/kauth.h>
#include <sys/wapbl.h>
#include <ufs/ufs/inode.h>
#include <ufs/ufs/quota.h>
#include <ufs/ufs/ufsmount.h>
#include <ufs/ufs/ufs_bswap.h>
#include <ufs/ufs/ufs_extern.h>
#include <ufs/ufs/ufs_wapbl.h>
#include <ufs/ffs/fs.h>
#include <ufs/ffs/ffs_extern.h>
#undef WAPBL_DEBUG
#ifdef WAPBL_DEBUG
int ffs_wapbl_debug = 1;
#define DPRINTF(fmt, args...) \
do { \
if (ffs_wapbl_debug) \
printf("%s:%d "fmt, __func__ , __LINE__, ##args); \
} while (/* CONSTCOND */0)
#else
#define DPRINTF(fmt, args...) \
do { \
/* nothing */ \
} while (/* CONSTCOND */0)
#endif
static int ffs_superblock_layout(struct fs *);
static int wapbl_log_position(struct mount *, struct fs *, struct vnode *,
daddr_t *, size_t *, size_t *, uint64_t *);
static int wapbl_create_infs_log(struct mount *, struct fs *, struct vnode *,
daddr_t *, size_t *, uint64_t *);
static void wapbl_find_log_start(struct mount *, struct vnode *, off_t,
daddr_t *, daddr_t *, size_t *);
static int wapbl_remove_log(struct mount *);
static int wapbl_allocate_log_file(struct mount *, struct vnode *,
daddr_t *, size_t *, uint64_t *);
/*
* Return the super block layout format - UFS1 or UFS2.
* WAPBL only works with UFS2 layout (which is still available
* with FFSv1).
*
* XXX Should this be in ufs/ffs/fs.h? Same style of check is
* also used in ffs_alloc.c in a few places.
*/
static int
ffs_superblock_layout(struct fs *fs)
{
if ((fs->fs_magic == FS_UFS1_MAGIC) &&
((fs->fs_old_flags & FS_FLAGS_UPDATED) == 0))
return 1;
else
return 2;
}
/*
* This function is invoked after a log is replayed to
* disk to perform logical cleanup actions as described by
* the log
*/
void
ffs_wapbl_replay_finish(struct mount *mp)
{
struct wapbl_replay *wr = mp->mnt_wapbl_replay;
int i;
int error;
if (!wr)
return;
KDASSERT((mp->mnt_flag & MNT_RDONLY) == 0);
for (i = 0; i < wr->wr_inodescnt; i++) {
struct vnode *vp;
struct inode *ip;
error = VFS_VGET(mp, wr->wr_inodes[i].wr_inumber,
LK_EXCLUSIVE, &vp);
if (error) {
printf("%s: %s: unable to cleanup inode %" PRIu32 "\n",
__func__, VFSTOUFS(mp)->um_fs->fs_fsmnt,
wr->wr_inodes[i].wr_inumber);
continue;
}
ip = VTOI(vp);
KDASSERT(wr->wr_inodes[i].wr_inumber == ip->i_number);
#ifdef WAPBL_DEBUG
printf("%s%s: %s: cleaning inode %" PRIu64 " size=%" PRIu64
" mode=%o nlink=%d\n",
__func__, VFSTOUFS(mp)->um_fs->fs_fsmnt,
ip->i_number, ip->i_size, ip->i_mode, ip->i_nlink);
#endif
KASSERT(ip->i_nlink == 0);
/*
* The journal may have left partially allocated inodes in mode
* zero. This may occur if a crash occurs between the node
* allocation in ffs_nodeallocg and when the node is properly
* initialized in ufs_makeinode. If so, just deallocate them.
*/
if (ip->i_mode == 0) {
error = UFS_WAPBL_BEGIN(mp);
if (error) {
printf("%s: %s: "
"unable to cleanup inode %" PRIu32 "\n",
__func__, VFSTOUFS(mp)->um_fs->fs_fsmnt,
wr->wr_inodes[i].wr_inumber);
} else {
ffs_vfree(vp, ip->i_number,
wr->wr_inodes[i].wr_imode);
UFS_WAPBL_END(mp);
}
}
vput(vp);
}
wapbl_replay_stop(wr);
wapbl_replay_free(wr);
mp->mnt_wapbl_replay = NULL;
}
/* Callback for wapbl */
void
ffs_wapbl_sync_metadata(struct mount *mp, struct wapbl_dealloc *fdealloc)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
int error __diagused;
struct wapbl_dealloc *wd;
UFS_WAPBL_JLOCK_ASSERT(ump->um_mountp);
for (wd = fdealloc; wd != NULL; wd = TAILQ_NEXT(wd, wd_entries)) {
/*
* blkfree errors are unreported, might silently fail
* if it cannot read the cylinder group block
*/
ffs_blkfree(fs, ump->um_devvp,
FFS_DBTOFSB(fs, wd->wd_blkno), wd->wd_len, -1);
}
if (fs->fs_fmod != 0) {
fs->fs_fmod = 0;
fs->fs_time = time_second;
error = ffs_cgupdate(ump, 0);
KASSERT(error == 0);
}
}
void
ffs_wapbl_abort_sync_metadata(struct mount *mp, struct wapbl_dealloc *fdealloc)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
struct wapbl_dealloc *wd;
for (wd = fdealloc; wd != NULL; wd = TAILQ_NEXT(wd, wd_entries)) {
/*
* Since the above blkfree may have failed, this blkalloc might
* fail as well, so don't check its error. Note that if the
* blkfree succeeded above, then this shouldn't fail because
* the buffer will be locked in the current transaction.
*/
ffs_blkalloc_ump(ump, FFS_DBTOFSB(fs, wd->wd_blkno),
wd->wd_len);
}
}
static int
wapbl_remove_log(struct mount *mp)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
struct vnode *vp;
struct inode *ip;
ino_t log_ino;
int error;
/* If super block layout is too old to support WAPBL, return */
if (ffs_superblock_layout(fs) < 2)
return 0;
/* If all the log locators are 0, just clean up */
if (fs->fs_journallocs[0] == 0 &&
fs->fs_journallocs[1] == 0 &&
fs->fs_journallocs[2] == 0 &&
fs->fs_journallocs[3] == 0) {
DPRINTF("empty locators, just clear\n");
goto done;
}
switch (fs->fs_journal_location) {
case UFS_WAPBL_JOURNALLOC_NONE:
/* nothing! */
DPRINTF("no log\n");
break;
case UFS_WAPBL_JOURNALLOC_IN_FILESYSTEM:
log_ino = fs->fs_journallocs[UFS_WAPBL_INFS_INO];
DPRINTF("in-fs log, ino = %" PRId64 "\n",log_ino);
/* if no existing log inode, just clear all fields and bail */
if (log_ino == 0)
goto done;
error = VFS_VGET(mp, log_ino, LK_EXCLUSIVE, &vp);
if (error != 0) {
printf("%s: %s: vget failed %d\n", __func__,
fs->fs_fsmnt, error);
/* clear out log info on error */
goto done;
}
ip = VTOI(vp);
KASSERT(log_ino == ip->i_number);
if ((ip->i_flags & SF_LOG) == 0) {
printf("%s: %s: try to clear non-log inode "
"%" PRId64 "\n", __func__, fs->fs_fsmnt, log_ino);
vput(vp);
/* clear out log info on error */
goto done;
}
/*
* remove the log inode by setting its link count back
* to zero and bail.
*/
ip->i_nlink = 0;
DIP_ASSIGN(ip, nlink, 0);
vput(vp);
break;
case UFS_WAPBL_JOURNALLOC_END_PARTITION:
DPRINTF("end-of-partition log\n");
/* no extra work required */
break;
default:
printf("%s: %s: unknown journal type %d\n", __func__,
fs->fs_fsmnt, fs->fs_journal_location);
break;
}
done:
/* Clear out all previous knowledge of journal */
fs->fs_journal_version = 0;
fs->fs_journal_location = 0;
fs->fs_journal_flags = 0;
fs->fs_journallocs[0] = 0;
fs->fs_journallocs[1] = 0;
fs->fs_journallocs[2] = 0;
fs->fs_journallocs[3] = 0;
(void) ffs_sbupdate(ump, MNT_WAIT);
return 0;
}
int
ffs_wapbl_start(struct mount *mp)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
struct vnode *devvp = ump->um_devvp;
daddr_t off;
size_t count;
size_t blksize;
uint64_t extradata;
int error;
if (mp->mnt_wapbl == NULL) {
if (fs->fs_journal_flags & UFS_WAPBL_FLAGS_CLEAR_LOG) {
/* Clear out any existing journal file */
error = wapbl_remove_log(mp);
if (error != 0)
return error;
}
if (mp->mnt_flag & MNT_LOG) {
KDASSERT(fs->fs_ronly == 0);
/* WAPBL needs UFS2 format super block */
if (ffs_superblock_layout(fs) < 2) {
printf("%s: %s: fs superblock in old format, "
"not journaling\n", __func__,
VFSTOUFS(mp)->um_fs->fs_fsmnt);
mp->mnt_flag &= ~MNT_LOG;
return EINVAL;
}
error = wapbl_log_position(mp, fs, devvp, &off,
&count, &blksize, &extradata);
if (error)
return error;
/*
* Make sure we don't carry over any delayed write
* buffers when updating to log. Need to turn off
* async termporarily, to prevent ffs_sync() writes
* themselves being turned into delayed writes.
*/
if (mp->mnt_flag & MNT_UPDATE) {
int saveflag = mp->mnt_flag & MNT_ASYNC;
mp->mnt_flag &= ~MNT_ASYNC;
ffs_sync(mp, MNT_WAIT, FSCRED);
mp->mnt_flag |= saveflag;
}
error = wapbl_start(&mp->mnt_wapbl, mp, devvp, off,
count, blksize, mp->mnt_wapbl_replay,
ffs_wapbl_sync_metadata,
ffs_wapbl_abort_sync_metadata);
if (error)
return error;
mp->mnt_wapbl_op = &wapbl_ops;
#ifdef WAPBL_DEBUG
printf("%s: %s: enabling logging\n", __func__,
fs->fs_fsmnt);
#endif
if ((fs->fs_flags & FS_DOWAPBL) == 0) {
fs->fs_flags |= FS_DOWAPBL;
if ((error = UFS_WAPBL_BEGIN(mp)) != 0)
goto out;
error = ffs_sbupdate(ump, MNT_WAIT);
if (error) {
UFS_WAPBL_END(mp);
goto out;
}
UFS_WAPBL_END(mp);
error = wapbl_flush(mp->mnt_wapbl, 1);
if (error)
goto out;
}
/*
* XXX discard interferes with block deallocation
* registration and hence log consistency
*/
if (mp->mnt_flag & MNT_DISCARD) {
CLR(mp->mnt_flag, MNT_DISCARD);
printf("%s: %s: disabling discard to preserve log consistency\n", __func__,
fs->fs_fsmnt);
if (ump->um_discarddata != NULL) {
ffs_discard_finish(ump->um_discarddata,
0);
ump->um_discarddata = NULL;
}
}
} else if (fs->fs_flags & FS_DOWAPBL) {
fs->fs_fmod = 1;
fs->fs_flags &= ~FS_DOWAPBL;
}
}
/*
* It is recommended that you finish replay with logging enabled.
* However, even if logging is not enabled, the remaining log
* replay should be safely recoverable with an fsck, so perform
* it anyway.
*/
if ((fs->fs_ronly == 0) && mp->mnt_wapbl_replay) {
int saveflag = mp->mnt_flag & MNT_RDONLY;
/*
* Make sure MNT_RDONLY is not set so that the inode
* cleanup in ufs_inactive will actually do its work.
*/
mp->mnt_flag &= ~MNT_RDONLY;
ffs_wapbl_replay_finish(mp);
mp->mnt_flag |= saveflag;
KASSERT(fs->fs_ronly == 0);
}
return 0;
out:
ffs_wapbl_stop(mp, MNT_FORCE);
return error;
}
int
ffs_wapbl_stop(struct mount *mp, int force)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
int error;
if (mp->mnt_wapbl) {
KDASSERT(fs->fs_ronly == 0);
/*
* Make sure turning off FS_DOWAPBL is only removed
* as the only change in the final flush since otherwise
* a transaction may reorder writes.
*/
error = wapbl_flush(mp->mnt_wapbl, 1);
if (error && !force)
return error;
if (error && force)
goto forceout;
error = UFS_WAPBL_BEGIN(mp);
if (error && !force)
return error;
if (error && force)
goto forceout;
KASSERT(fs->fs_flags & FS_DOWAPBL);
fs->fs_flags &= ~FS_DOWAPBL;
error = ffs_sbupdate(ump, MNT_WAIT);
KASSERT(error == 0); /* XXX a bit drastic! */
UFS_WAPBL_END(mp);
forceout:
error = wapbl_stop(mp->mnt_wapbl, force);
if (error) {
KASSERT(!force);
fs->fs_flags |= FS_DOWAPBL;
return error;
}
fs->fs_flags &= ~FS_DOWAPBL; /* Repeat in case of forced error */
mp->mnt_wapbl = NULL;
#ifdef WAPBL_DEBUG
printf("%s: %s: disabled logging\n", __func__, fs->fs_fsmnt);
#endif
}
return 0;
}
int
ffs_wapbl_replay_start(struct mount *mp, struct fs *fs, struct vnode *devvp)
{
int error;
daddr_t off;
size_t count;
size_t blksize;
uint64_t extradata;
/*
* WAPBL needs UFS2 format super block, if we got here with a
* UFS1 format super block something is amiss...
*/
if (ffs_superblock_layout(fs) < 2)
return EINVAL;
error = wapbl_log_position(mp, fs, devvp, &off, &count, &blksize,
&extradata);
if (error)
return error;
error = wapbl_replay_start(&mp->mnt_wapbl_replay, devvp, off,
count, blksize);
if (error)
return error;
mp->mnt_wapbl_op = &wapbl_ops;
return 0;
}
/*
* If the superblock doesn't already have a recorded journal location
* then we allocate the journal in one of two positions:
*
* - At the end of the partition after the filesystem if there's
* enough space. "Enough space" is defined as >= 1MB of journal
* per 1GB of filesystem or 64MB, whichever is smaller.
*
* - Inside the filesystem. We try to allocate a contiguous journal
* based on the total filesystem size - the target is 1MB of journal
* per 1GB of filesystem, up to a maximum journal size of 64MB. As
* a worst case allowing for fragmentation, we'll allocate a journal
* 1/4 of the desired size but never smaller than 1MB.
*
* XXX In the future if we allow for non-contiguous journal files we
* can tighten the above restrictions.
*
* XXX
* These seems like a lot of duplication both here and in some of
* the userland tools (fsck_ffs, dumpfs, tunefs) with similar
* "switch (fs_journal_location)" constructs. Can we centralise
* this sort of code somehow/somewhere?
*/
static int
wapbl_log_position(struct mount *mp, struct fs *fs, struct vnode *devvp,
daddr_t *startp, size_t *countp, size_t *blksizep, uint64_t *extradatap)
{
struct ufsmount *ump = VFSTOUFS(mp);
daddr_t logstart, logend, desired_logsize;
uint64_t numsecs;
unsigned secsize;
int error, location;
if (fs->fs_journal_version == UFS_WAPBL_VERSION) {
switch (fs->fs_journal_location) {
case UFS_WAPBL_JOURNALLOC_END_PARTITION:
DPRINTF("found existing end-of-partition log\n");
*startp = fs->fs_journallocs[UFS_WAPBL_EPART_ADDR];
*countp = fs->fs_journallocs[UFS_WAPBL_EPART_COUNT];
*blksizep = fs->fs_journallocs[UFS_WAPBL_EPART_BLKSZ];
DPRINTF(" start = %" PRId64 ", size = %zu, "
"blksize = %zu\n", *startp, *countp, *blksizep);
return 0;
case UFS_WAPBL_JOURNALLOC_IN_FILESYSTEM:
DPRINTF("found existing in-filesystem log\n");
*startp = fs->fs_journallocs[UFS_WAPBL_INFS_ADDR];
*countp = fs->fs_journallocs[UFS_WAPBL_INFS_COUNT];
*blksizep = fs->fs_journallocs[UFS_WAPBL_INFS_BLKSZ];
DPRINTF(" start = %" PRId64 ", size = %zu, "
"blksize = %zu\n", *startp, *countp, *blksizep);
return 0;
default:
printf("%s: %s: unknown journal type %d\n", __func__,
fs->fs_fsmnt, fs->fs_journal_location);
return EINVAL;
}
}
desired_logsize =
ffs_lfragtosize(fs, fs->fs_size) / UFS_WAPBL_JOURNAL_SCALE;
DPRINTF("desired log size = %" PRId64 " kB\n", desired_logsize / 1024);
desired_logsize = uimax(desired_logsize, UFS_WAPBL_MIN_JOURNAL_SIZE);
desired_logsize = uimin(desired_logsize, UFS_WAPBL_MAX_JOURNAL_SIZE);
DPRINTF("adjusted desired log size = %" PRId64 " kB\n",
desired_logsize / 1024);
/* Is there space after after filesystem on partition for log? */
logstart = FFS_FSBTODB(fs, fs->fs_size);
error = getdisksize(devvp, &numsecs, &secsize);
if (error)
return error;
KDASSERT(secsize != 0);
logend = btodb(numsecs * secsize);
if (dbtob(logend - logstart) >= desired_logsize) {
DPRINTF("enough space, use end-of-partition log\n");
location = UFS_WAPBL_JOURNALLOC_END_PARTITION;
*blksizep = secsize;
*startp = logstart;
*countp = (logend - logstart);
*extradatap = 0;
/* convert to physical block numbers */
*startp = dbtob(*startp) / secsize;
*countp = dbtob(*countp) / secsize;
fs->fs_journallocs[UFS_WAPBL_EPART_ADDR] = *startp;
fs->fs_journallocs[UFS_WAPBL_EPART_COUNT] = *countp;
fs->fs_journallocs[UFS_WAPBL_EPART_BLKSZ] = *blksizep;
fs->fs_journallocs[UFS_WAPBL_EPART_UNUSED] = *extradatap;
} else {
DPRINTF("end-of-partition has only %" PRId64 " free\n",
logend - logstart);
location = UFS_WAPBL_JOURNALLOC_IN_FILESYSTEM;
*blksizep = secsize;
error = wapbl_create_infs_log(mp, fs, devvp,
startp, countp, extradatap);
ffs_sync(mp, MNT_WAIT, FSCRED);
/* convert to physical block numbers */
*startp = dbtob(*startp) / secsize;
*countp = dbtob(*countp) / secsize;
fs->fs_journallocs[UFS_WAPBL_INFS_ADDR] = *startp;
fs->fs_journallocs[UFS_WAPBL_INFS_COUNT] = *countp;
fs->fs_journallocs[UFS_WAPBL_INFS_BLKSZ] = *blksizep;
fs->fs_journallocs[UFS_WAPBL_INFS_INO] = *extradatap;
}
if (error == 0) {
/* update superblock with log location */
fs->fs_journal_version = UFS_WAPBL_VERSION;
fs->fs_journal_location = location;
fs->fs_journal_flags = 0;
error = ffs_sbupdate(ump, MNT_WAIT);
}
return error;
}
/*
* Try to create a journal log inside the filesystem.
*/
static int
wapbl_create_infs_log(struct mount *mp, struct fs *fs, struct vnode *devvp,
daddr_t *startp, size_t *countp, uint64_t *extradatap)
{
struct vnode *vp, *rvp;
struct vattr va;
struct inode *ip;
int error;
if ((error = VFS_ROOT(mp, LK_EXCLUSIVE, &rvp)) != 0)
return error;
vattr_null(&va);
va.va_type = VREG;
va.va_mode = 0;
error = vcache_new(mp, rvp, &va, NOCRED, NULL, &vp);
vput(rvp);
if (error)
return error;
error = vn_lock(vp, LK_EXCLUSIVE);
if (error) {
vrele(vp);
return error;
}
ip = VTOI(vp);
ip->i_flags = SF_LOG;
DIP_ASSIGN(ip, flags, ip->i_flags);
ip->i_nlink = 1;
DIP_ASSIGN(ip, nlink, 1);
ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
ffs_update(vp, NULL, NULL, UPDATE_WAIT);
if ((error = wapbl_allocate_log_file(mp, vp,
startp, countp, extradatap)) != 0) {
/*
* If we couldn't allocate the space for the log file,
* remove the inode by setting its link count back to
* zero and bail.
*/
ip->i_nlink = 0;
DIP_ASSIGN(ip, nlink, 0);
vput(vp);
return error;
}
/*
* Now that we have the place-holder inode for the journal,
* we don't need the vnode ever again.
*/
vput(vp);
return 0;
}
int
wapbl_allocate_log_file(struct mount *mp, struct vnode *vp,
daddr_t *startp, size_t *countp, uint64_t *extradatap)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
daddr_t addr, indir_addr;
off_t logsize;
size_t size;
int error;
logsize = 0;
/* check if there's a suggested log size */
if (fs->fs_journal_flags & UFS_WAPBL_FLAGS_CREATE_LOG &&
fs->fs_journal_location == UFS_WAPBL_JOURNALLOC_IN_FILESYSTEM)
logsize = fs->fs_journallocs[UFS_WAPBL_INFS_COUNT];
if (vp->v_size > 0) {
printf("%s: %s: file size (%" PRId64 ") non zero\n", __func__,
fs->fs_fsmnt, vp->v_size);
return EEXIST;
}
wapbl_find_log_start(mp, vp, logsize, &addr, &indir_addr, &size);
if (addr == 0) {
printf("%s: %s: log not allocated, largest extent is "
"%" PRId64 "MB\n", __func__, fs->fs_fsmnt,
ffs_lblktosize(fs, size) / (1024 * 1024));
return ENOSPC;
}
logsize = ffs_lblktosize(fs, size); /* final log size */
VTOI(vp)->i_ffs_first_data_blk = addr;
VTOI(vp)->i_ffs_first_indir_blk = indir_addr;
error = GOP_ALLOC(vp, 0, logsize, B_CONTIG, FSCRED);
if (error) {
printf("%s: %s: GOP_ALLOC error %d\n", __func__, fs->fs_fsmnt,
error);
return error;
}
*startp = FFS_FSBTODB(fs, addr);
*countp = btodb(logsize);
*extradatap = VTOI(vp)->i_number;
return 0;
}
/*
* Find a suitable location for the journal in the filesystem.
*
* Our strategy here is to look for a contiguous block of free space
* at least "logfile" MB in size (plus room for any indirect blocks).
* We start at the middle of the filesystem and check each cylinder
* group working outwards. If "logfile" MB is not available as a
* single contigous chunk, then return the address and size of the
* largest chunk found.
*
* XXX
* At what stage does the search fail? Is if the largest space we could
* find is less than a quarter the requested space reasonable? If the
* search fails entirely, return a block address if "0" it indicate this.
*/
static void
wapbl_find_log_start(struct mount *mp, struct vnode *vp, off_t logsize,
daddr_t *addr, daddr_t *indir_addr, size_t *size)
{
struct ufsmount *ump = VFSTOUFS(mp);
struct fs *fs = ump->um_fs;
struct vnode *devvp = ump->um_devvp;
struct cg *cgp;
struct buf *bp;
uint8_t *blksfree;
daddr_t blkno, best_addr, start_addr;
daddr_t desired_blks, min_desired_blks;
daddr_t freeblks, best_blks;
int bpcg, cg, error, fixedsize, indir_blks, n, s;
const int needswap = UFS_FSNEEDSWAP(fs);
if (logsize == 0) {
fixedsize = 0; /* We can adjust the size if tight */
logsize = ffs_lfragtosize(fs, fs->fs_dsize) /
UFS_WAPBL_JOURNAL_SCALE;
DPRINTF("suggested log size = %" PRId64 "\n", logsize);
logsize = uimax(logsize, UFS_WAPBL_MIN_JOURNAL_SIZE);
logsize = uimin(logsize, UFS_WAPBL_MAX_JOURNAL_SIZE);
DPRINTF("adjusted log size = %" PRId64 "\n", logsize);
} else {
fixedsize = 1;
DPRINTF("fixed log size = %" PRId64 "\n", logsize);
}
desired_blks = logsize / fs->fs_bsize;
DPRINTF("desired blocks = %" PRId64 "\n", desired_blks);
/* add in number of indirect blocks needed */
indir_blks = 0;
if (desired_blks >= UFS_NDADDR) {
struct indir indirs[UFS_NIADDR + 2];
int num;
error = ufs_getlbns(vp, desired_blks, indirs, &num);
if (error) {
printf("%s: %s: ufs_getlbns failed, error %d!\n",
__func__, fs->fs_fsmnt, error);
goto bad;
}
switch (num) {
case 2:
indir_blks = 1; /* 1st level indirect */
break;
case 3:
indir_blks = 1 + /* 1st level indirect */
1 + /* 2nd level indirect */
indirs[1].in_off + 1; /* extra 1st level indirect */
break;
default:
printf("%s: %s: unexpected numlevels %d from "
"ufs_getlbns\n", __func__, fs->fs_fsmnt, num);
*size = 0;
goto bad;
}
desired_blks += indir_blks;
}
DPRINTF("desired blocks = %" PRId64 " (including indirect)\n",
desired_blks);
/*
* If a specific size wasn't requested, allow for a smaller log
* if we're really tight for space...
*/
min_desired_blks = desired_blks;
if (!fixedsize)
min_desired_blks = desired_blks / 4;
/* Look at number of blocks per CG. If it's too small, bail early. */
bpcg = ffs_fragstoblks(fs, fs->fs_fpg);
if (min_desired_blks > bpcg) {
printf("%s: %s: cylinder group size of %" PRId64 " MB "
" is not big enough for journal\n", __func__, fs->fs_fsmnt,
ffs_lblktosize(fs, bpcg) / (1024 * 1024));
goto bad;
}
/*
* Start with the middle cylinder group, and search outwards in
* both directions until we either find the requested log size
* or reach the start/end of the file system. If we reach the
* start/end without finding enough space for the full requested
* log size, use the largest extent found if it is large enough
* to satisfy the our minimum size.
*
* XXX
* Can we just use the cluster contigsum stuff (esp on UFS2)
* here to simplify this search code?
*/
best_addr = 0;
best_blks = 0;
for (cg = fs->fs_ncg / 2, s = 0, n = 1;
best_blks < desired_blks && cg >= 0 && cg < fs->fs_ncg;
s++, n = -n, cg += n * s) {
DPRINTF("check cg %d of %d\n", cg, fs->fs_ncg);
error = bread(devvp, FFS_FSBTODB(fs, cgtod(fs, cg)),
fs->fs_cgsize, 0, &bp);
if (error) {
continue;
}
cgp = (struct cg *)bp->b_data;
if (!cg_chkmagic(cgp, UFS_FSNEEDSWAP(fs))) {
brelse(bp, 0);
continue;
}
blksfree = cg_blksfree(cgp, needswap);
for (blkno = 0; blkno < bpcg;) {
/* look for next free block */
/* XXX use scanc() and fragtbl[] here? */
for (; blkno < bpcg - min_desired_blks; blkno++)
if (ffs_isblock(fs, blksfree, blkno))
break;
/* past end of search space in this CG? */
if (blkno >= bpcg - min_desired_blks)
break;
/* count how many free blocks in this extent */
start_addr = blkno;
for (freeblks = 0; blkno < bpcg; blkno++, freeblks++)
if (!ffs_isblock(fs, blksfree, blkno))
break;
if (freeblks > best_blks) {
best_blks = freeblks;
best_addr = ffs_blkstofrags(fs, start_addr) +
cgbase(fs, cg);
if (freeblks >= desired_blks) {
DPRINTF("found len %" PRId64
" at offset %" PRId64 " in gc\n",
freeblks, start_addr);
break;
}
}
}
brelse(bp, 0);
}
DPRINTF("best found len = %" PRId64 ", wanted %" PRId64
" at addr %" PRId64 "\n", best_blks, desired_blks, best_addr);
if (best_blks < min_desired_blks) {
*addr = 0;
*indir_addr = 0;
} else {
/* put indirect blocks at start, and data blocks after */
*addr = best_addr + ffs_blkstofrags(fs, indir_blks);
*indir_addr = best_addr;
}
*size = uimin(desired_blks, best_blks) - indir_blks;
return;
bad:
*addr = 0;
*indir_addr = 0;
*size = 0;
return;
}
|
58fce700cbfc32664c855f27742d900e567bce65
|
f11228d235947e0b6ffce0374b26d62e921c02e8
|
/MOCK/src/connectivity.h
|
19ce6df97434b38ca7f9d1298557e7adb483a7c7
|
[] |
no_license
|
Malano1988/MOCK
|
9044d54760985c203b091ed014a0d906d12d7be1
|
0c65a68f5ac1639b18694a9f754f1f861f49569d
|
refs/heads/master
| 2020-05-04T20:45:19.463446 | 2016-07-08T09:13:57 | 2016-07-08T09:13:57 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 292 |
h
|
connectivity.h
|
// This is start of the header guard. ADD_H can be any unique name. By convention, we use the name of the header file.
#ifndef CONNECTIVITY_H
#define CONNECTIVITY_H
double connectivity(Rcpp::IntegerVector cluster, Rcpp::IntegerMatrix lNN);
// This is the end of the header guard
#endif
|
1d06b2441f629e845439c25341d2d55eb5279ff6
|
88ae8695987ada722184307301e221e1ba3cc2fa
|
/third_party/ffmpeg/libavcodec/webvttenc.c
|
4369aacb749e507c6f0591b0c7aae9388757dafa
|
[
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later",
"BSD-3-Clause",
"LGPL-2.1-only",
"LGPL-3.0-only",
"GPL-2.0-only",
"LGPL-2.1-or-later",
"GPL-3.0-or-later",
"LGPL-3.0-or-later",
"IJG",
"LicenseRef-scancode-other-permissive",
"GPL-2.0-or-later",
"GPL-3.0-only"
] |
permissive
|
iridium-browser/iridium-browser
|
71d9c5ff76e014e6900b825f67389ab0ccd01329
|
5ee297f53dc7f8e70183031cff62f37b0f19d25f
|
refs/heads/master
| 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 |
BSD-3-Clause
| 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null |
UTF-8
|
C
| false | false | 6,226 |
c
|
webvttenc.c
|
/*
* WebVTT subtitle encoder
* Copyright (c) 2010 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (c) 2014 Aman Gupta <ffmpeg@tmm1.net>
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdarg.h>
#include "avcodec.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "ass_split.h"
#include "ass.h"
#include "codec_internal.h"
#define WEBVTT_STACK_SIZE 64
typedef struct {
AVCodecContext *avctx;
ASSSplitContext *ass_ctx;
AVBPrint buffer;
unsigned timestamp_end;
int count;
char stack[WEBVTT_STACK_SIZE];
int stack_ptr;
} WebVTTContext;
#ifdef __GNUC__
__attribute__ ((__format__ (__printf__, 2, 3)))
#endif
static void webvtt_print(WebVTTContext *s, const char *str, ...)
{
va_list vargs;
va_start(vargs, str);
av_vbprintf(&s->buffer, str, vargs);
va_end(vargs);
}
static int webvtt_stack_push(WebVTTContext *s, const char c)
{
if (s->stack_ptr >= WEBVTT_STACK_SIZE)
return -1;
s->stack[s->stack_ptr++] = c;
return 0;
}
static char webvtt_stack_pop(WebVTTContext *s)
{
if (s->stack_ptr <= 0)
return 0;
return s->stack[--s->stack_ptr];
}
static int webvtt_stack_find(WebVTTContext *s, const char c)
{
int i;
for (i = s->stack_ptr-1; i >= 0; i--)
if (s->stack[i] == c)
break;
return i;
}
static void webvtt_close_tag(WebVTTContext *s, char tag)
{
webvtt_print(s, "</%c>", tag);
}
static void webvtt_stack_push_pop(WebVTTContext *s, const char c, int close)
{
if (close) {
int i = c ? webvtt_stack_find(s, c) : 0;
if (i < 0)
return;
while (s->stack_ptr != i)
webvtt_close_tag(s, webvtt_stack_pop(s));
} else if (webvtt_stack_push(s, c) < 0)
av_log(s->avctx, AV_LOG_ERROR, "tag stack overflow\n");
}
static void webvtt_style_apply(WebVTTContext *s, const char *style)
{
ASSStyle *st = ff_ass_style_get(s->ass_ctx, style);
if (st) {
if (st->bold != ASS_DEFAULT_BOLD) {
webvtt_print(s, "<b>");
webvtt_stack_push(s, 'b');
}
if (st->italic != ASS_DEFAULT_ITALIC) {
webvtt_print(s, "<i>");
webvtt_stack_push(s, 'i');
}
if (st->underline != ASS_DEFAULT_UNDERLINE) {
webvtt_print(s, "<u>");
webvtt_stack_push(s, 'u');
}
}
}
static void webvtt_text_cb(void *priv, const char *text, int len)
{
WebVTTContext *s = priv;
av_bprint_append_data(&s->buffer, text, len);
}
static void webvtt_new_line_cb(void *priv, int forced)
{
webvtt_print(priv, "\n");
}
static void webvtt_style_cb(void *priv, char style, int close)
{
if (style == 's') // strikethrough unsupported
return;
webvtt_stack_push_pop(priv, style, close);
if (!close)
webvtt_print(priv, "<%c>", style);
}
static void webvtt_cancel_overrides_cb(void *priv, const char *style)
{
webvtt_stack_push_pop(priv, 0, 1);
webvtt_style_apply(priv, style);
}
static void webvtt_end_cb(void *priv)
{
webvtt_stack_push_pop(priv, 0, 1);
}
static const ASSCodesCallbacks webvtt_callbacks = {
.text = webvtt_text_cb,
.new_line = webvtt_new_line_cb,
.style = webvtt_style_cb,
.color = NULL,
.font_name = NULL,
.font_size = NULL,
.alignment = NULL,
.cancel_overrides = webvtt_cancel_overrides_cb,
.move = NULL,
.end = webvtt_end_cb,
};
static int webvtt_encode_frame(AVCodecContext *avctx,
unsigned char *buf, int bufsize, const AVSubtitle *sub)
{
WebVTTContext *s = avctx->priv_data;
ASSDialog *dialog;
int i;
av_bprint_clear(&s->buffer);
for (i=0; i<sub->num_rects; i++) {
const char *ass = sub->rects[i]->ass;
if (sub->rects[i]->type != SUBTITLE_ASS) {
av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n");
return AVERROR(EINVAL);
}
dialog = ff_ass_split_dialog(s->ass_ctx, ass);
if (!dialog)
return AVERROR(ENOMEM);
webvtt_style_apply(s, dialog->style);
ff_ass_split_override_codes(&webvtt_callbacks, s, dialog->text);
ff_ass_free_dialog(&dialog);
}
if (!av_bprint_is_complete(&s->buffer))
return AVERROR(ENOMEM);
if (!s->buffer.len)
return 0;
if (s->buffer.len > bufsize) {
av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n");
return AVERROR_BUFFER_TOO_SMALL;
}
memcpy(buf, s->buffer.str, s->buffer.len);
return s->buffer.len;
}
static int webvtt_encode_close(AVCodecContext *avctx)
{
WebVTTContext *s = avctx->priv_data;
ff_ass_split_free(s->ass_ctx);
av_bprint_finalize(&s->buffer, NULL);
return 0;
}
static av_cold int webvtt_encode_init(AVCodecContext *avctx)
{
WebVTTContext *s = avctx->priv_data;
s->avctx = avctx;
s->ass_ctx = ff_ass_split(avctx->subtitle_header);
av_bprint_init(&s->buffer, 0, AV_BPRINT_SIZE_UNLIMITED);
return s->ass_ctx ? 0 : AVERROR_INVALIDDATA;
}
const FFCodec ff_webvtt_encoder = {
.p.name = "webvtt",
CODEC_LONG_NAME("WebVTT subtitle"),
.p.type = AVMEDIA_TYPE_SUBTITLE,
.p.id = AV_CODEC_ID_WEBVTT,
.priv_data_size = sizeof(WebVTTContext),
.init = webvtt_encode_init,
FF_CODEC_ENCODE_SUB_CB(webvtt_encode_frame),
.close = webvtt_encode_close,
};
|
e5a229101e2f96cc6f6195ebc8a6d6cac4f501eb
|
d7d803e1ebe4da2804ed604240c07b83a1d01106
|
/bk7231n_gesture_demo/src/app_driver/PAJ7620.c
|
ad51ef9f30505cb3f9a97050f2cd33397064126f
|
[] |
no_license
|
Tuya-Community/tuya-iotos-embeded-demo-wifi-ble-gesture-recognition
|
dd2fb6735cd9bdfbadfe5b66a60e500524807039
|
305f003d6573961aa1265d64c3687ae4413af754
|
refs/heads/main
| 2023-03-27T02:25:46.217506 | 2021-03-25T06:34:21 | 2021-03-25T06:34:21 | 351,332,646 | 1 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 6,804 |
c
|
PAJ7620.c
|
/*
* @file name:
* @Descripttion:
* @Author: zgw
* @email: liang.zhang@tuya.com
* @Copyright: HANGZHOU TUYA INFORMATION TECHNOLOGY CO.,LTD
* @Company: http://www.tuya.com
* @Date: 2021-03-22 10:08:33
* @LastEditors: zgw
* @LastEditTime: 2021-03-22 15:21:28
*/
#include "PAJ7620.h"
#include "soc_i2c.h"
CONST UCHAR_T PAJ7620Global_InitArray[][2] ={
{0xEF,0x00},
{0x37,0x07},
{0x38,0x17},
{0x39,0x06},
{0x41,0x00},
{0x42,0x00},
{0x46,0x2D},
{0x47,0x0F},
{0x48,0x3C},
{0x49,0x00},
{0x4A,0x1E},
{0x4C,0x20},
{0x51,0x10},
{0x5E,0x10},
{0x60,0x27},
{0x80,0x42},
{0x81,0x44},
{0x82,0x04},
{0x8B,0x01},
{0x90,0x06},
{0x95,0x0A},
{0x96,0x0C},
{0x97,0x05},
{0x9A,0x14},
{0x9C,0x3F},
{0xA5,0x19},
{0xCC,0x19},
{0xCD,0x0B},
{0xCE,0x13},
{0xCF,0x64},
{0xD0,0x21},
{0xEF,0x01},
{0x02,0x0F},
{0x03,0x10},
{0x04,0x02},
{0x25,0x01},
{0x27,0x39},
{0x28,0x7F},
{0x29,0x08},
{0x3E,0xFF},
{0x5E,0x3D},
{0x65,0x96},
{0x67,0x97},
{0x69,0xCD},
{0x6A,0x01},
{0x6D,0x2C},
{0x6E,0x01},
{0x72,0x01},
{0x73,0x35},
{0x74,0x00},
{0x77,0x01},
};
CONST UCHAR_T PAJ7620Gesture_InitArray[][2] ={
{0xEF,0x00},
{0x41,0x00},
{0x42,0x00},
{0xEF,0x00},
{0x48,0x3C},
{0x49,0x00},
{0x51,0x10},
{0x83,0x20},
{0x9F,0xF9},
{0xEF,0x01},
{0x01,0x1E},
{0x02,0x0F},
{0x03,0x10},
{0x04,0x02},
{0x41,0x40},
{0x43,0x30},
{0x65,0x96},
{0x66,0x00},
{0x67,0x97},
{0x68,0x01},
{0x69,0xCD},
{0x6A,0x01},
{0x6B,0xB0},
{0x6C,0x04},
{0x6D,0x2C},
{0x6E,0x01},
{0x74,0x00},
{0xEF,0x00},
{0x41,0xFF},
{0x42,0x01},
};
STATIC int __iic_start(VOID)
{
vI2CSDASet();
vI2CSCLSet();
vI2CDelay(5);
vI2CSDAReset();
vI2CDelay(5);
vI2CSCLReset();
return 0;
}
STATIC int __iic_stop(VOID)
{
vI2CSCLReset();
vI2CSDAReset();
vI2CDelay(5);
vI2CSCLSet();
vI2CSDASet();
vI2CDelay(5);
return 0;
}
STATIC VOID __iic_send_ack(VOID)
{
vI2CSCLReset();
vI2CSDAReset();
vI2CDelay(2);
vI2CSCLSet();
vI2CDelay(2);
vI2CSCLReset();
}
STATIC VOID __iic_send_nack(VOID)
{
vI2CSCLReset();
vI2CSDASet();
vI2CDelay(2);
vI2CSCLSet();
vI2CDelay(2);
vI2CSCLReset();
}
STATIC UINT8_T __iic_recv_ack(VOID)
{
UINT8_T ucErrTime=0;
UINT8_T recv_ack;
vI2CSDARelease();
vI2CSCLSet();
vI2CDelay(5);
while(ucI2CSDAInputRead()) {
ucErrTime++;
if(ucErrTime>250) {
__iic_stop();
PR_NOTICE("-------iic ack error-----");
return 1;
}
}
vI2CSCLReset();
return 0;
}
STATIC VOID __iic_send_byte(UCHAR_T sendbyte)
{
UCHAR_T i = 0;
vI2CSCLReset;
for(i = 0x80; i > 0; i >>= 1)
{
if((sendbyte & i) == 0) {
vI2CSDAReset();
} else {
vI2CSDASet();
}
vI2CDelay(2);
vI2CSCLSet();
vI2CDelay(2); //vI2CDelay(5);
vI2CSCLReset();
vI2CDelay(2);
}
}
STATIC UINT8_T __iic_read_byte(UCHAR_T ack)
{
UCHAR_T i = 0;
UCHAR_T readbyte = 0;
vI2CSDARelease();
for(i = 0x80; i > 0; i >>= 1)
{
vI2CSCLReset();
vI2CDelay(2);
vI2CSCLSet();
if(ucI2CSDAInputRead()) {
readbyte |= i;
}
vI2CDelay(2);
}
if(!ack) {
__iic_send_nack();
}else {
__iic_send_ack();
}
return readbyte;
}
VOID paj7620_iic_write(UINT8_T drv_addr, UINT8_T reg_addr, UINT8_T reg_data)
{
__iic_start();
__iic_send_byte((drv_addr << 1)); //发送从机地址写命令
__iic_recv_ack();
__iic_send_byte(reg_addr);
__iic_recv_ack();
__iic_send_byte(reg_data);
__iic_recv_ack();
__iic_stop();
}
VOID paj7620_iic_read(UINT8_T drv_addr, UINT8_T reg_addr, UINT8_T *p_data)
{
__iic_start();
__iic_send_byte((drv_addr << 1) | 0x00); //发送从机地址写命令
__iic_recv_ack();
__iic_send_byte(reg_addr);
__iic_recv_ack();
__iic_send_byte((drv_addr << 1) | 0x01);
__iic_recv_ack();
*p_data = __iic_read_byte(1);
__iic_stop();
}
VOID paj7620_wake_up(VOID)
{
UINT8_T data = 0x0a;
UINT8_T i =0;
__iic_start();
__iic_send_byte(PAJ7620_I2C_ADDR << 1);
__iic_stop();
vI2CDelay(1000);
__iic_start();
__iic_send_byte(PAJ7620_I2C_ADDR << 1);
__iic_stop();
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620_ADDR_BASE,PAJ7620_BANK0);
paj7620_iic_read(PAJ7620_I2C_ADDR, 0x00, &data);
if(data!= 0x20) {
PR_NOTICE("PAJ7620 init failed");
}
}
UINT16_T paj7620_get_data(UINT8_T reg_addr)
{
UINT8_T i = 0;
UINT8_T data;
__iic_start();
__iic_send_byte((PAJ7620_I2C_ADDR << 1) | 0x00); //发送从机地址写命令
__iic_recv_ack();
__iic_send_byte(reg_addr);
__iic_recv_ack();
__iic_start();
__iic_send_byte((PAJ7620_I2C_ADDR << 1) + 1);
__iic_recv_ack();
data = __iic_read_byte(0);
__iic_stop();
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620_ADDR_BASE,PAJ7620_BANK0);
return data;
}
VOID paj7620_init(PAJ7620_init_t* param)
{
UINT8_T flag;
UINT8_T i;
i2c_pin_t i2c_config = {
.ucSDA_IO = param ->SDA_PIN,
.ucSCL_IO = param ->SCL_PIN,
};
opSocI2CInit(&i2c_config); /* SDA&SCL GPIO INIT */
vI2CDelay(100);
paj7620_wake_up();
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620_ADDR_BASE,PAJ7620_BANK0);
for(i = 0; i < 51; i++) {
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620Global_InitArray[i][0], PAJ7620Global_InitArray[i][1]);
}
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620_ADDR_BASE,PAJ7620_BANK0);
paj7620_wake_up();
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620_ADDR_BASE,PAJ7620_BANK0);
for(i = 0; i < 30; i++) {
paj7620_iic_write(PAJ7620_I2C_ADDR,PAJ7620Gesture_InitArray[i][0], PAJ7620Gesture_InitArray[i][1]);
}
}
UINT8_T paj7620_read_gesture_state(VOID)
{
switch (paj7620_get_data(PAJ_GET_INT_FLAG1))
{
case GES_UP://向上
return 1;
case GES_DOWM://向下
return 2;
case GES_LEFT://向左
return 3;
case GES_RIGHT://向右
return 4;
case GES_FORWARD://向前
return 5;
case GES_BACKWARD: //向后
return 6;
case GES_CLOCKWISE://顺时针
return 7;
case GES_COUNT_CLOCKWISE://逆时针
return 8;
case GES_WAVE://挥动
return 9;
default:
return 0;
}
}
|
66a317762386646682f5c779d199362e97995ee5
|
29910f9b7431e587cb1169682189e219d1ee8204
|
/train/Pods/Headers/Private/CorePlot/ios/CPTMutableLineStyle.h
|
f84531ec3e3f682f76aae2953d329fed69a0c533
|
[] |
no_license
|
jszcl/ios-app
|
f9c37986b21abcda7930a71365fe24f565471668
|
c842ba1f5ce8b4dd51aef8a17cfc01938ea5fe4c
|
refs/heads/master
| 2021-01-12T09:11:24.189453 | 2016-12-23T02:19:31 | 2016-12-23T02:19:31 | 76,786,675 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,067 |
h
|
CPTMutableLineStyle.h
|
XSym
0059
46932a105bb8957281fbb6a2cecc676a
../../../../CorePlot/framework/Source/CPTMutableLineStyle.h
|
12d766da3e39d4ea2b6b8dedc11faca200ff3a2b
|
9ed4790f81ea623e79fe09039994023791f4dd68
|
/Data-Structures in c/Module 2 - Stack and Queue/i - practice/queue using two stacks.c
|
c4927d85c8cd44e1664b7d39351b0440bf71fe3c
|
[] |
no_license
|
aadityaguptaa/E-Box-Solutions
|
de2d51f8c77300792fe63e7e5e9a6d3b6fc33b0a
|
9a4c8a3ceda20ef75866978fccb68bcdcfd546f9
|
refs/heads/main
| 2023-01-29T13:18:45.038359 | 2020-12-11T18:40:29 | 2020-12-11T18:40:29 | 306,592,688 | 5 | 2 | null | null | null | null |
UTF-8
|
C
| false | false | 2,788 |
c
|
queue using two stacks.c
|
/* C program to implement queues using two stacks */
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
};
void push(struct node** top, int data);
int pop(struct node** top);
struct queue
{
struct node *stack1;
struct node *stack2;
};
void enqueue(struct queue *q, int x)
{
push(&q->stack1, x);
}
void dequeue(struct queue *q)
{
int x;
if (q->stack1 == NULL && q->stack2 == NULL) {
printf("queue is empty");
return;
}
if (q->stack2 == NULL) {
while (q->stack1 != NULL) {
x = pop(&q->stack1);
push(&q->stack2, x);
}
}
x = pop(&q->stack2);
printf("%d\n", x);
}
void push(struct node** top, int data)
{
struct node* newnode = (struct node*) malloc(sizeof(struct node));
if (newnode == NULL) {
printf("Stack overflow \n");
return;
}
newnode->data = data;
newnode->next = (*top);
(*top) = newnode;
}
int pop(struct node** top)
{
int buff;
struct node *t;
if (*top == NULL) {
printf("Stack underflow \n");
return 0;
}
else {
t = *top;
buff = t->data;
*top = t->next;
free(t);
return buff;
}
}
void display(struct node *top1,struct node *top2)
{
while (top1 != NULL) {
printf("%d\n", top1->data);
top1 = top1->next;
}
while (top2 != NULL) {
printf("%d\n", top2->data);
top2 = top2->next;
}
}
int main()
{
struct queue *q = (struct queue*)malloc(sizeof(struct queue));
int f = 0, a;
char ch = 'y';
q->stack1 = NULL;
q->stack2 = NULL;
while (ch == 'y'||ch == 'Y') {
printf("enter ur choice\n1.add to queue\n2.remove from queue\n3.display\n4.exit\n");
scanf("%d", &f);
switch(f) {
case 1 : printf("enter the element to be added to queue\n");
scanf("%d", &a);
enqueue(q, a);
break;
case 2 : dequeue(q);
break;
case 3 : display(q->stack1, q->stack2);
break;
case 4 : exit(1);
break;
default : printf("invalid\n");
break;
}
}
}
|
75886bf907635509a76ca7a98c6f24a1784747ad
|
082a99cab7c83ee5b762e10f5784e7682086d382
|
/lcd/lcdsr_uspace.c
|
a6bedb588672851f06f507dd50264c2aea40a25a
|
[] |
no_license
|
fanxiaohui/472final_beaglebone
|
c4e6add4a93f4d35ad30ce6fc1448e730cef72f2
|
ad58ee1a930b5df512f6deb4bf369e30f37cf8e8
|
refs/heads/master
| 2020-05-17T14:07:26.825076 | 2016-03-07T02:14:50 | 2016-03-07T02:14:50 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 6,898 |
c
|
lcdsr_uspace.c
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include "lcdsr_uspace.h"
int main() {
char buffer1[200] = "0";
int contin = 1;
initGPIO(BUTTON1);
initGPIO(BUTTON2);
initGPIO(BUTTON3);
lcdControl("11"); //clear any old LCD settings
lcdControl("2"); //turn cursor off
FILE* customChar1 = fopen("/dev/lcd_char/custom/char1", "w");
fseek(customChar1, 0, SEEK_SET);
fprintf(customChar1, "%s", ship1);
fflush(customChar1);
fclose(customChar1);
FILE* customChar2 = fopen("/dev/lcd_char/custom/char2", "w");
fseek(customChar2, 0, SEEK_SET);
fprintf(customChar2, "%s", ship0);
fflush(customChar2);
fclose(customChar2);
FILE* customChar3 = fopen("/dev/lcd_char/custom/char3", "w");
fseek(customChar3, 0, SEEK_SET);
fprintf(customChar3, "%s", enemy);
fflush(customChar3);
fclose(customChar3);
lcdPrint(" SPACE BLASTER!\n Press a key");
while(!(readGPIO(BUTTON1) || readGPIO(BUTTON2) || readGPIO(BUTTON3))) {
usleep(1);
}
while(contin){
int allow = 0;
lcdControl("0");
srand(time(NULL));
int score = 0;
contin = 0;
score = playGame();
sprintf(buffer1, " Score: %d", score);
int gameTick = 0;
int displayFlag = 0;
while(1){
gameTick++;
if(allow && readGPIO(BUTTON2)){
contin = 1;
break;
}
if(allow && (readGPIO(BUTTON1) || readGPIO(BUTTON3))){
contin = 0;
break;
}
if(gameTick % 4000 == 1){
displayFlag = !displayFlag;
lcdControl("0");
if(displayFlag){
lcdPrint(" Game Over!!!\n");
lcdPrint(buffer1);
} else{
lcdPrint("Fire to restart,\n");
lcdPrint(" Other to quit");
allow = 1;
}
}
usleep(50);
}
}
return 0;
}
void lcdPrint(char* str) {
FILE* txt = fopen("/dev/lcd_char/text", "w");
fprintf(txt, "%s", str);
fclose(txt);
}
void lcdControl(char* str) {
FILE* ctrl = fopen("/dev/lcd_char/ctrl", "w");
fprintf(ctrl, "%s", str);
fclose(ctrl);
}
//Takes a GPIO pin number and returns a handle to a file where the GPIO pin can be controlled
void initGPIO(int gpioNum) {
FILE *dir, *sys;
sys = fopen("/sys/class/gpio/export", "w");
fseek(sys, 0, SEEK_SET);
fprintf(sys, "%d", gpioNum);
fflush(sys);
fclose(sys);
char directionLoc[256];
sprintf (directionLoc, "/sys/class/gpio/gpio%d/direction", gpioNum);
dir = fopen(directionLoc, "w");
fseek(dir, 0, SEEK_SET);
fprintf(dir, "%s", "in");
fflush(dir);
fclose(dir);
}
int readGPIO(int gpioNum) {
FILE* gpio;
char strBuff[2];
char valueLoc[256];
sprintf (valueLoc, "/sys/class/gpio/gpio%d/value", gpioNum);
gpio = fopen(valueLoc, "r");
fseek(gpio, 0, SEEK_SET);
fscanf(gpio, "%s", strBuff);
fclose(gpio);
return strcmp(strBuff, "1");
}
int playGame(void){
int shipPos = 0;
int oldPos = 3;
int projectiles0[14] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
int projectiles1[14] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
int enemies0[14] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
int enemies1[14] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
int frameTick = 0;
FILE* txt, ctrl;
int buttonStatus[3];
int score = 0;
while(1) {
frameTick++;
buttonStatus[0] = readGPIO(BUTTON1);
buttonStatus[1] = readGPIO(BUTTON2);
buttonStatus[2] = readGPIO(BUTTON3);
printf("%d %d %d\b\b\b\b\b\b", //print button status to console
buttonStatus[0], //Button 1
buttonStatus[1], //Button 2
buttonStatus[2] //Button 3
);
//LCD Display Code
//button 3 is ship down
if (buttonStatus[2]) {
shipPos = 1;
}
//button 1 is ship up
if (buttonStatus[0]) {
shipPos = 0;
}
//button 2 is fire
if (buttonStatus[1]) {
if (shipPos == 0)
projectiles0[0] = 1;
else
projectiles1[0] = 1;
}
//Draw Ship
if (oldPos != shipPos) {
if (shipPos == 0) {
lcdControl("32");
lcdPrint("\1\2");
lcdControl("48");
lcdPrint(" ");
} else {
lcdControl("48");
lcdPrint("\1\2");
lcdControl("32");
lcdPrint(" ");
}
oldPos = shipPos;
}
if ((frameTick % 3) == 0) {
//draw projectiles and enemies
lcdControl("34");
txt = fopen("/dev/lcd_char/text", "w");
for (int i = 0; i < 14; i++) {
if (projectiles0[i])
fprintf(txt, "%s", "-");
else if(enemies0[i])
fprintf(txt, "%s", "\3");
else
fprintf(txt, "%s", " ");
}
fclose(txt);
lcdControl("50");
txt = fopen("/dev/lcd_char/text", "w");
for (int i = 0; i < 14; i++) {
if (projectiles1[i])
fprintf(txt, "%s", "-");
else if(enemies1[i])
fprintf(txt, "%s", "\3");
else
fprintf(txt, "%s", " ");
}
fclose(txt);
//enemies move slower than bullets
if((frameTick % 2) == 0){
//check gameOver
if(enemies0[0] || enemies1[0]){
break;
}
int randInstance = rand() % 4;
// //shift enemies, checks for hits
for (int i = 0; i <= 13; i++) {
enemies0[i] = enemies0[i+1];
enemies1[i] = enemies1[i+1];
if(projectiles0[i] && enemies0[i]){
enemies0[i] = 0;
projectiles0[i] = 0;
score++;
}
if(projectiles1[i] && enemies1[i]){
enemies1[i] = 0;
projectiles1[i] = 0;
score++;
}
}
//generate new enemies
enemies0[13] = 0;
enemies1[13] = 0;
if(randInstance == 0){
enemies0[13] = 1;
} else if(randInstance == 1){
enemies1[13] = 1;
}
}
//shift projectiles
for (int i = 13; i >= 1; i--) {
projectiles0[i] = projectiles0[i-1];
projectiles1[i] = projectiles1[i-1];
if(projectiles0[i] && enemies0[i]){
enemies0[i] = 0;
projectiles0[i] = 0;
score++;
}
if(projectiles1[i] && enemies1[i]){
enemies1[i] = 0;
projectiles1[i] = 0;
score++;
}
}
projectiles0[0] = 0;
projectiles1[0] = 0;
}
usleep(200);
}
return score;
}
|
6012fd82139fb50fccd88b5fc4184df878a21bdf
|
b2fe8e9ea1797e9d04e9245cde549a1700980ec7
|
/bcm_fake.c
|
fc31a1a21c090d4267b818178ebe907c45c85e7b
|
[] |
no_license
|
tony-mikhailov/ADS1256_da
|
42bfa29a583549ffcca2c8bd694b0b45a02784ed
|
38cc88003ef289b8e06ed72a86b9612b7c4598d9
|
refs/heads/master
| 2021-09-28T22:05:16.895881 | 2018-11-20T21:11:43 | 2018-11-20T21:11:43 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 655 |
c
|
bcm_fake.c
|
#ifndef __arm__
#include <bcm2835.h>
#include <stdint.h>
void bcm2835_gpio_write( uint8_t pin, uint8_t on ){}
uint8_t bcm2835_gpio_lev( uint8_t pin ) { return 0;}
int bcm2835_spi_begin(void) { return 0; };
void bcm2835_spi_setBitOrder( uint8_t order ) {};
void bcm2835_spi_setDataMode( uint8_t mode ) {};
void bcm2835_spi_setClockDivider( uint16_t divider ) {};
void bcm2835_gpio_fsel( uint8_t pin, uint8_t mode ) {};
void bcm2835_gpio_set_pud( uint8_t pin, uint8_t pud ) {};
uint8_t bcm2835_spi_transfer( uint8_t value ) { return 0; };
int bcm2835_init(void) { return 0; };
void bcm2835_spi_end(void) {};
int bcm2835_close(void) { return 1; };
#endif
|
2e563d2d58a40d9e514788caaafe08562c405260
|
7ee20969c9fecdf3df9848e4de7d8c8888719dd5
|
/ports/stm32f3/board_flash.c
|
8e798309b707eabc718cbfedf5f069e2ca020023
|
[
"MIT"
] |
permissive
|
LynnL4/tinyuf2
|
4cefd6d83fcb0c68ef44cf578d4891edb66a8183
|
07d415d3c47e8e77a09b0079e0f02e807c56e469
|
refs/heads/master
| 2023-07-06T02:50:05.684415 | 2023-06-22T13:36:16 | 2023-06-22T13:36:16 | 385,137,151 | 1 | 0 |
MIT
| 2021-07-12T05:43:35 | 2021-07-12T05:43:34 | null |
UTF-8
|
C
| false | false | 7,957 |
c
|
board_flash.c
|
/*
* The MIT License (MIT)
*
* Copyright (c) 2018 Ha Thach for Adafruit Industries
*
* 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.
*/
#include "board_api.h"
#ifndef BUILD_NO_TINYUSB
#include "tusb.h"
#endif
//--------------------------------------------------------------------+
// MACRO TYPEDEF CONSTANT ENUM
//--------------------------------------------------------------------+
#define FLASH_BASE_ADDR 0x08000000UL
// TinyUF2 by default resides in the first 8 flash pages on STM32F3s, therefore these are write protected
#if BOARD_FLASH_APP_START == 0x08004000
#define BOOTLOADER_PAGE_MASK (OB_WRP_PAGES0TO1 | OB_WRP_PAGES2TO3 | OB_WRP_PAGES4TO5 | OB_WRP_PAGES6TO7)
#endif
enum
{
SECTOR_COUNT = (BOARD_FLASH_SIZE / BOARD_PAGE_SIZE),
BOOTLOADER_SECTOR_COUNT = ((BOARD_FLASH_APP_START - FLASH_BASE_ADDR) / BOARD_PAGE_SIZE)
};
static uint8_t erased_sectors[SECTOR_COUNT] = { 0 };
//--------------------------------------------------------------------+
// Internal Helper
//--------------------------------------------------------------------+
static inline uint32_t flash_sector_size(uint32_t sector)
{
(void) sector;
return BOARD_PAGE_SIZE;
}
static bool is_blank(uint32_t addr, uint32_t size)
{
for ( uint32_t i = 0; i < size; i += sizeof(uint32_t) )
{
if ( *(uint32_t*) (addr + i) != 0xffffffff )
{
return false;
}
}
return true;
}
static bool flash_erase_sector(uint32_t addr)
{
#ifndef TINYUF2_SELF_UPDATE
// skip erasing bootloader if not self-update
TUF2_ASSERT(addr >= BOARD_FLASH_APP_START);
#endif
// starting address from 0x08000000
uint32_t sector_addr = FLASH_BASE_ADDR;
bool erased = false;
uint32_t size = 0;
for ( uint32_t i = 0; i < SECTOR_COUNT; i++ )
{
TUF2_ASSERT(sector_addr < FLASH_BASE_ADDR + BOARD_FLASH_SIZE);
size = flash_sector_size(i);
if ( sector_addr + size > addr )
{
erased = erased_sectors[i];
erased_sectors[i] = 1; // don't erase anymore - we will continue writing here!
break;
}
sector_addr += size;
}
if ( !erased && !is_blank(sector_addr, size))
{
TUF2_LOG1("Erase: %08lX size = %lu KB ... ", sector_addr, size / 1024);
FLASH_EraseInitTypeDef EraseInit;
EraseInit.TypeErase = FLASH_TYPEERASE_PAGES;
EraseInit.PageAddress = sector_addr;
EraseInit.NbPages = 1;
uint32_t SectorError = 0;
HAL_FLASHEx_Erase(&EraseInit, &SectorError);
FLASH_WaitForLastOperation(HAL_MAX_DELAY);
TUF2_ASSERT(SectorError == 0xFFFFFFFF);
TUF2_LOG1("OK\r\n");
}
return true;
}
static void flash_write(uint32_t dst, const uint8_t *src, int len)
{
flash_erase_sector(dst);
TUF2_LOG1("Write flash at address %08lX\r\n", dst);
for (int i = 0; i < len; i += 4)
{
uint32_t data = *( (uint32_t*) ((void*) (src + i)) );
if ( HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, dst + i, (uint64_t) data) != HAL_OK )
{
TUF2_LOG1("Failed to write flash at address %08lX\r\n", dst + i);
break;
}
if ( FLASH_WaitForLastOperation(HAL_MAX_DELAY) != HAL_OK )
{
TUF2_LOG1("Waiting on last operation failed\r\n");
return;
}
}
// verify contents
if (memcmp((void*)dst, src, len) != 0)
{
TUF2_LOG1("Failed to write\r\n");
}
}
//--------------------------------------------------------------------+
// Board API
//--------------------------------------------------------------------+
void board_flash_init(void)
{
}
uint32_t board_flash_size(void)
{
return BOARD_FLASH_SIZE;
}
void board_flash_read(uint32_t addr, void* buffer, uint32_t len)
{
memcpy(buffer, (void*) addr, len);
}
void board_flash_flush(void)
{
}
// TODO not working quite yet
void board_flash_write (uint32_t addr, void const *data, uint32_t len)
{
// TODO skip matching contents
HAL_FLASH_Unlock();
flash_write(addr, data, len);
HAL_FLASH_Lock();
}
void board_flash_erase_app(void)
{
// TODO implement later
}
bool board_flash_protect_bootloader(bool protect)
{
// F3 reset everytime Option Bytes is programmed
// skip protecting bootloader if we just reset by option byte changes
// since we want to disable protect mode for e.g self-updating
if ( board_reset_by_option_bytes() ) {
return true;
}
bool ret = true;
HAL_FLASH_Unlock();
HAL_FLASH_OB_Unlock();
FLASH_OBProgramInitTypeDef ob_current = {0};
HAL_FLASHEx_OBGetConfig(&ob_current);
// Flash sectors are protected if the bit is cleared
bool const already_protected = (ob_current.WRPPage & BOOTLOADER_PAGE_MASK) == 0;
TUF2_LOG1("Protection: current = %u, request = %u\r\n", already_protected, protect);
// request and current state mismatched --> require ob program
if (protect != already_protected)
{
FLASH_OBProgramInitTypeDef ob_update = {0};
ob_update.OptionType = OPTIONBYTE_WRP;
ob_update.WRPPage = BOOTLOADER_PAGE_MASK;
ob_update.WRPState = protect ? OB_WRPSTATE_ENABLE : OB_WRPSTATE_DISABLE;
if (HAL_FLASHEx_OBProgram(&ob_update) == HAL_OK)
{
HAL_FLASH_OB_Launch(); // will reset
}else
{
ret = false;
}
}
HAL_FLASH_OB_Lock();
HAL_FLASH_Lock();
return ret;
}
#ifdef TINYUF2_SELF_UPDATE
bool is_new_bootloader_valid(const uint8_t * bootloader_bin, uint32_t bootloader_len)
{
// at least larger than vector table
if (bootloader_len < 512 ) return false;
// similar to board_app_valid() check
if((((*(uint32_t*)bootloader_bin) - BOARD_RAM_START) <= BOARD_RAM_SIZE))
{
return true;
}
return false;
}
void board_self_update(const uint8_t * bootloader_bin, uint32_t bootloader_len)
{
// check if the bootloader payload is valid
if ( is_new_bootloader_valid(bootloader_bin, bootloader_len) )
{
#if TINYUF2_PROTECT_BOOTLOADER
// Note: Don't protect bootloader when done, leave that to the new bootloader
// since it may or may not enable protection.
board_flash_protect_bootloader(false);
#endif
// keep writing until flash contents matches new bootloader data
while( memcmp((const void*) FLASH_BASE_ADDR, bootloader_bin, bootloader_len) )
{
uint32_t sector_addr = FLASH_BASE_ADDR;
const uint8_t * data = bootloader_bin;
uint32_t len = bootloader_len;
for ( uint32_t i = 0; i < BOOTLOADER_SECTOR_COUNT && len > 0; i++ )
{
uint32_t const size = (flash_sector_size(i) < len ? flash_sector_size(i) : len);
board_flash_write(sector_addr, data, size);
sector_addr += size;
data += size;
len -= size;
}
}
}
// self-destruct: write 0 to first 2 entry of vector table
// Note: write bit from 1 to 0 does not need to erase in advance
__disable_irq();
HAL_FLASH_Unlock();
HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, BOARD_FLASH_APP_START , 0);
HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, BOARD_FLASH_APP_START+4, 0);
HAL_FLASH_Lock();
// reset to run new bootloader
NVIC_SystemReset();
}
#endif
|
c0f9e0aa0c198f2a7f735c238b8c72cae7d3f9f8
|
e9e1f38f7e65f505b6e41c5c2fd758b66bb3ee30
|
/heidenhain2015/matrize_22072015.h
|
4969e6b540b5b5c62eb9fd7abc96a16bcff36314
|
[] |
no_license
|
s-weigl-github/cnc_stuff
|
fdddc3008154b08549202262461d91cdc0b0a296
|
c5bf88c1f297fbb2b1b6121c58376a1cf472ebbf
|
refs/heads/master
| 2021-01-01T05:40:06.907167 | 2015-08-10T19:57:43 | 2015-08-10T19:57:43 | 6,803,324 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,570 |
h
|
matrize_22072015.h
|
0 BEGIN PGM MATRIZE_22072015 MM
1 BLK FORM 0.1 Z X-50 Y-50 Z-20
2 BLK FORM 0.2 X+50 Y+50 Z+0
3 CYCL DEF 247 BEZUGSPUNKT SETZEN ~
Q339=+1 ;BEZUGSPUNKT-NUMMER
4 TOOL CALL "SCHFR_DM10_SN3" Z S8912.678 F1604.282
5 L Z+100 FMAX
6 L Z+2
7 L X+0 Y+0 M13
8 ;;----zapfen DM90----;;
9 CYCL DEF 257 KREISZAPFEN ~
Q223=+90 ;FERTIGTEIL-DURCHM. ~
Q222=+100 ;ROHTEIL-DURCHMESSER ~
Q368=+0.5 ;AUFMASS SEITE ~
Q207= AUTO ;VORSCHUB FRAESEN ~
Q351=+1 ;FRAESART ~
Q201=-10 ;TIEFE ~
Q202=+10 ;ZUSTELL-TIEFE ~
Q206= AUTO ;VORSCHUB TIEFENZ. ~
Q200=+2 ;SICHERHEITS-ABST. ~
Q203=+0 ;KOOR. OBERFLAECHE ~
Q204=+10 ;2. SICHERHEITS-ABST. ~
Q370=+1 ;BAHN-UEBERLAPPUNG ~
Q376=-1 ;STARTWINKEL
10 CYCL CALL M13
11 L X+0 Y+0 FMAX M13
12 CYCL DEF 251 RECHTECKTASCHE ~
Q215=+0 ;BEARBEITUNGS-UMFANG ~
Q218=+60 ;1. SEITEN-LAENGE ~
Q219=+30 ;2. SEITEN-LAENGE ~
Q220=+5 ;ECKENRADIUS ~
Q368=+0.5 ;AUFMASS SEITE ~
Q224=+0 ;DREHLAGE ~
Q367=+0 ;TASCHENLAGE ~
Q207= AUTO ;VORSCHUB FRAESEN ~
Q351=+1 ;FRAESART ~
Q201=-5 ;TIEFE ~
Q202=+5 ;ZUSTELL-TIEFE ~
Q369=+0.2 ;AUFMASS TIEFE ~
Q206= AUTO ;VORSCHUB TIEFENZ. ~
Q338=+0 ;ZUST. SCHLICHTEN ~
Q200=+2 ;SICHERHEITS-ABST. ~
Q203=+0 ;KOOR. OBERFLAECHE ~
Q204=+10 ;2. SICHERHEITS-ABST. ~
Q370=+1 ;BAHN-UEBERLAPPUNG ~
Q366=+1 ;EINTAUCHEN ~
Q385= AUTO ;VORSCHUB SCHLICHTEN
13 CYCL CALL M13
14 L Z+100 FMAX
15 M30
16 END PGM MATRIZE_22072015 MM
|
24837d4e3a85512aff8220280c9d891423874860
|
b95141213d520c960e866b8efe226a35869f4ca7
|
/Array_Maximum_J-I.C
|
b60afed4c1c831ab0954754c471b83bd4dacb85c
|
[] |
no_license
|
sidpka/Data_Structures
|
4e09a110a3052e6a9efa7ccfc1696a8fc8eeefe2
|
0d903a65c8c76736cffb92691d8c0ffcb9a159d9
|
refs/heads/master
| 2016-09-06T09:32:53.651652 | 2015-07-01T16:56:53 | 2015-07-01T16:56:53 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,102 |
c
|
Array_Maximum_J-I.C
|
#include<stdio.h>
#include<conio.h>
#include<limits.h>
#include<stdlib.h>
int FindMaxJI(int* arr,int n){
int i;
int j;
int max=INT_MIN;
for(i=0;i<n-1;i++){
for(j=i+1;j<n;j++){
if(arr[i]<arr[j] && max<(j-i)){
max=(j-i);
}
}
}
if(max==INT_MIN){
return -1;
}else{
return max;
}
}
int max(int a,int b){
return a>b?a:b;
}
int min(int a,int b){
return a<b?a:b;
}
int FindMaxJI2(int* arr,int n){
int* leftMin=(int*)malloc(sizeof(int)*n);
int* rightMax=(int*)malloc(sizeof(int)*n);
leftMin[0]=arr[0];
int i;
for(i=1;i<n;i++){
leftMin[i]=min(leftMin[i-1],arr[i]);
}
rightMax[n-1]=arr[n-1];
for(i=n-2;i>=0;i--){
rightMax[i]=max(rightMax[i+1],arr[i]);
}
i=0;
int j=0;
int maxDiff=-1;
while(i<n && j<n){
if(leftMin[i]<rightMax[j]){
maxDiff=max(maxDiff,(j-i));
j++;
}else{
i++;
}
}
return maxDiff;
}
int main(){
int arr[]={34, 8, 10, 3, 2, 80, 30, 33, 1};
int n=sizeof(arr)/sizeof(arr[0]);
//printf("\nSize : %d",n);
/* O(n^2)
int maxJI=FindMaxJI(arr,n);
*/
//O(n)
int maxJI=FindMaxJI2(arr,n);
if(maxJI!=-1){
printf("\nMax J-I is : %d",maxJI);
}else{
printf("\nNo such index ");
}
return 0;
}
|
62a11fee86dadb2b54bc58fc782643d8f9c6f43e
|
e65246f7393f2e54bb96039179acce585c88860f
|
/externals/vixl/vixl/test/aarch32/traces/simulator-cond-rd-rn-operand-const-add-a32.h
|
76cce655b60fd1b8f811e92aab68571ce2f2c4f8
|
[
"0BSD",
"BSL-1.0",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] |
permissive
|
EmulationChannel/dynarmic
|
431539acd4bb26e0681ed5ca08b378c6e6bbae10
|
0b78139ba607a59aabc8d806a041d330d4fadc4b
|
refs/heads/master
| 2023-05-31T08:18:46.651851 | 2021-06-27T00:08:31 | 2021-06-27T00:08:31 | 380,618,313 | 0 | 0 |
0BSD
| 2021-06-27T00:08:32 | 2021-06-27T00:07:22 |
C++
|
UTF-8
|
C
| false | false | 484,192 |
h
|
simulator-cond-rd-rn-operand-const-add-a32.h
|
// Copyright 2015, VIXL authors
// 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 ARM Limited 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 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 OWNER 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.
// ---------------------------------------------------------------------
// This file is auto generated using tools/generate_simulator_traces.py.
//
// PLEASE DO NOT EDIT.
// ---------------------------------------------------------------------
#ifndef VIXL_SIMULATOR_COND_RD_RN_OPERAND_CONST_ADD_A32_H_
#define VIXL_SIMULATOR_COND_RD_RN_OPERAND_CONST_ADD_A32_H_
const Inputs kOutputs_Add_Condition_eq_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_ne_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_cs_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_cc_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_mi_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_pl_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_vs_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_vc_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_hi_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_ls_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_ge_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_lt_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_gt_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xabababab, 0xabababab },
{ 0x40000000, 0xabababab, 0xabababab },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xabababab, 0xabababab },
{ 0xc0000000, 0xabababab, 0xabababab },
{ 0xa0000000, 0xabababab, 0xabababab },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xabababab, 0xabababab },
{ 0x50000000, 0xabababab, 0xabababab },
{ 0x30000000, 0xabababab, 0xabababab },
{ 0xe0000000, 0xabababab, 0xabababab },
{ 0xd0000000, 0xabababab, 0xabababab },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xabababab, 0xabababab },
{ 0xf0000000, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Add_Condition_le_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xabababab, 0xabababab },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xabababab, 0xabababab },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xabababab, 0xabababab },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_Condition_al_r0_r0_0x000000ab[] = {
{ 0x80000000, 0xababac56, 0xababac56 },
{ 0x40000000, 0xababac56, 0xababac56 },
{ 0x20000000, 0xababac56, 0xababac56 },
{ 0x10000000, 0xababac56, 0xababac56 },
{ 0xc0000000, 0xababac56, 0xababac56 },
{ 0xa0000000, 0xababac56, 0xababac56 },
{ 0x90000000, 0xababac56, 0xababac56 },
{ 0x60000000, 0xababac56, 0xababac56 },
{ 0x50000000, 0xababac56, 0xababac56 },
{ 0x30000000, 0xababac56, 0xababac56 },
{ 0xe0000000, 0xababac56, 0xababac56 },
{ 0xd0000000, 0xababac56, 0xababac56 },
{ 0xb0000000, 0xababac56, 0xababac56 },
{ 0x70000000, 0xababac56, 0xababac56 },
{ 0xf0000000, 0xababac56, 0xababac56 },
};
const Inputs kOutputs_Add_RdIsRn_al_r4_r4_0x02ac0000[] = {
{ 0x00000000, 0x02ac0000, 0x02ac0000 },
{ 0x00000000, 0x02ac0001, 0x02ac0001 },
{ 0x00000000, 0x02ac0002, 0x02ac0002 },
{ 0x00000000, 0x02ac0020, 0x02ac0020 },
{ 0x00000000, 0x02ac007d, 0x02ac007d },
{ 0x00000000, 0x02ac007e, 0x02ac007e },
{ 0x00000000, 0x02ac007f, 0x02ac007f },
{ 0x00000000, 0x02ac7ffd, 0x02ac7ffd },
{ 0x00000000, 0x02ac7ffe, 0x02ac7ffe },
{ 0x00000000, 0x02ac7fff, 0x02ac7fff },
{ 0x00000000, 0x35df3333, 0x35df3333 },
{ 0x00000000, 0x58015555, 0x58015555 },
{ 0x00000000, 0x82abfffd, 0x82abfffd },
{ 0x00000000, 0x82abfffe, 0x82abfffe },
{ 0x00000000, 0x82abffff, 0x82abffff },
{ 0x00000000, 0x82ac0000, 0x82ac0000 },
{ 0x00000000, 0x82ac0001, 0x82ac0001 },
{ 0x00000000, 0xad56aaaa, 0xad56aaaa },
{ 0x00000000, 0xcf78cccc, 0xcf78cccc },
{ 0x00000000, 0x02ab8000, 0x02ab8000 },
{ 0x00000000, 0x02ab8001, 0x02ab8001 },
{ 0x00000000, 0x02ab8002, 0x02ab8002 },
{ 0x00000000, 0x02ab8003, 0x02ab8003 },
{ 0x00000000, 0x02abff80, 0x02abff80 },
{ 0x00000000, 0x02abff81, 0x02abff81 },
{ 0x00000000, 0x02abff82, 0x02abff82 },
{ 0x00000000, 0x02abff83, 0x02abff83 },
{ 0x00000000, 0x02abffe0, 0x02abffe0 },
{ 0x00000000, 0x02abfffd, 0x02abfffd },
{ 0x00000000, 0x02abfffe, 0x02abfffe },
{ 0x00000000, 0x02abffff, 0x02abffff },
};
const Inputs kOutputs_Add_RdIsRn_al_r0_r0_0xf000000f[] = {
{ 0x00000000, 0xf000000f, 0xf000000f },
{ 0x00000000, 0xf0000010, 0xf0000010 },
{ 0x00000000, 0xf0000011, 0xf0000011 },
{ 0x00000000, 0xf000002f, 0xf000002f },
{ 0x00000000, 0xf000008c, 0xf000008c },
{ 0x00000000, 0xf000008d, 0xf000008d },
{ 0x00000000, 0xf000008e, 0xf000008e },
{ 0x00000000, 0xf000800c, 0xf000800c },
{ 0x00000000, 0xf000800d, 0xf000800d },
{ 0x00000000, 0xf000800e, 0xf000800e },
{ 0x00000000, 0x23333342, 0x23333342 },
{ 0x00000000, 0x45555564, 0x45555564 },
{ 0x00000000, 0x7000000c, 0x7000000c },
{ 0x00000000, 0x7000000d, 0x7000000d },
{ 0x00000000, 0x7000000e, 0x7000000e },
{ 0x00000000, 0x7000000f, 0x7000000f },
{ 0x00000000, 0x70000010, 0x70000010 },
{ 0x00000000, 0x9aaaaab9, 0x9aaaaab9 },
{ 0x00000000, 0xbcccccdb, 0xbcccccdb },
{ 0x00000000, 0xefff800f, 0xefff800f },
{ 0x00000000, 0xefff8010, 0xefff8010 },
{ 0x00000000, 0xefff8011, 0xefff8011 },
{ 0x00000000, 0xefff8012, 0xefff8012 },
{ 0x00000000, 0xefffff8f, 0xefffff8f },
{ 0x00000000, 0xefffff90, 0xefffff90 },
{ 0x00000000, 0xefffff91, 0xefffff91 },
{ 0x00000000, 0xefffff92, 0xefffff92 },
{ 0x00000000, 0xefffffef, 0xefffffef },
{ 0x00000000, 0xf000000c, 0xf000000c },
{ 0x00000000, 0xf000000d, 0xf000000d },
{ 0x00000000, 0xf000000e, 0xf000000e },
};
const Inputs kOutputs_Add_RdIsRn_al_r1_r1_0x00000ff0[] = {
{ 0x00000000, 0x00000ff0, 0x00000ff0 },
{ 0x00000000, 0x00000ff1, 0x00000ff1 },
{ 0x00000000, 0x00000ff2, 0x00000ff2 },
{ 0x00000000, 0x00001010, 0x00001010 },
{ 0x00000000, 0x0000106d, 0x0000106d },
{ 0x00000000, 0x0000106e, 0x0000106e },
{ 0x00000000, 0x0000106f, 0x0000106f },
{ 0x00000000, 0x00008fed, 0x00008fed },
{ 0x00000000, 0x00008fee, 0x00008fee },
{ 0x00000000, 0x00008fef, 0x00008fef },
{ 0x00000000, 0x33334323, 0x33334323 },
{ 0x00000000, 0x55556545, 0x55556545 },
{ 0x00000000, 0x80000fed, 0x80000fed },
{ 0x00000000, 0x80000fee, 0x80000fee },
{ 0x00000000, 0x80000fef, 0x80000fef },
{ 0x00000000, 0x80000ff0, 0x80000ff0 },
{ 0x00000000, 0x80000ff1, 0x80000ff1 },
{ 0x00000000, 0xaaaaba9a, 0xaaaaba9a },
{ 0x00000000, 0xccccdcbc, 0xccccdcbc },
{ 0x00000000, 0xffff8ff0, 0xffff8ff0 },
{ 0x00000000, 0xffff8ff1, 0xffff8ff1 },
{ 0x00000000, 0xffff8ff2, 0xffff8ff2 },
{ 0x00000000, 0xffff8ff3, 0xffff8ff3 },
{ 0x00000000, 0x00000f70, 0x00000f70 },
{ 0x00000000, 0x00000f71, 0x00000f71 },
{ 0x00000000, 0x00000f72, 0x00000f72 },
{ 0x00000000, 0x00000f73, 0x00000f73 },
{ 0x00000000, 0x00000fd0, 0x00000fd0 },
{ 0x00000000, 0x00000fed, 0x00000fed },
{ 0x00000000, 0x00000fee, 0x00000fee },
{ 0x00000000, 0x00000fef, 0x00000fef },
};
const Inputs kOutputs_Add_RdIsRn_al_r9_r9_0x0ff00000[] = {
{ 0x00000000, 0x0ff00000, 0x0ff00000 },
{ 0x00000000, 0x0ff00001, 0x0ff00001 },
{ 0x00000000, 0x0ff00002, 0x0ff00002 },
{ 0x00000000, 0x0ff00020, 0x0ff00020 },
{ 0x00000000, 0x0ff0007d, 0x0ff0007d },
{ 0x00000000, 0x0ff0007e, 0x0ff0007e },
{ 0x00000000, 0x0ff0007f, 0x0ff0007f },
{ 0x00000000, 0x0ff07ffd, 0x0ff07ffd },
{ 0x00000000, 0x0ff07ffe, 0x0ff07ffe },
{ 0x00000000, 0x0ff07fff, 0x0ff07fff },
{ 0x00000000, 0x43233333, 0x43233333 },
{ 0x00000000, 0x65455555, 0x65455555 },
{ 0x00000000, 0x8feffffd, 0x8feffffd },
{ 0x00000000, 0x8feffffe, 0x8feffffe },
{ 0x00000000, 0x8fefffff, 0x8fefffff },
{ 0x00000000, 0x8ff00000, 0x8ff00000 },
{ 0x00000000, 0x8ff00001, 0x8ff00001 },
{ 0x00000000, 0xba9aaaaa, 0xba9aaaaa },
{ 0x00000000, 0xdcbccccc, 0xdcbccccc },
{ 0x00000000, 0x0fef8000, 0x0fef8000 },
{ 0x00000000, 0x0fef8001, 0x0fef8001 },
{ 0x00000000, 0x0fef8002, 0x0fef8002 },
{ 0x00000000, 0x0fef8003, 0x0fef8003 },
{ 0x00000000, 0x0fefff80, 0x0fefff80 },
{ 0x00000000, 0x0fefff81, 0x0fefff81 },
{ 0x00000000, 0x0fefff82, 0x0fefff82 },
{ 0x00000000, 0x0fefff83, 0x0fefff83 },
{ 0x00000000, 0x0fefffe0, 0x0fefffe0 },
{ 0x00000000, 0x0feffffd, 0x0feffffd },
{ 0x00000000, 0x0feffffe, 0x0feffffe },
{ 0x00000000, 0x0fefffff, 0x0fefffff },
};
const Inputs kOutputs_Add_RdIsRn_al_r14_r14_0xf000000f[] = {
{ 0x00000000, 0xf000000f, 0xf000000f },
{ 0x00000000, 0xf0000010, 0xf0000010 },
{ 0x00000000, 0xf0000011, 0xf0000011 },
{ 0x00000000, 0xf000002f, 0xf000002f },
{ 0x00000000, 0xf000008c, 0xf000008c },
{ 0x00000000, 0xf000008d, 0xf000008d },
{ 0x00000000, 0xf000008e, 0xf000008e },
{ 0x00000000, 0xf000800c, 0xf000800c },
{ 0x00000000, 0xf000800d, 0xf000800d },
{ 0x00000000, 0xf000800e, 0xf000800e },
{ 0x00000000, 0x23333342, 0x23333342 },
{ 0x00000000, 0x45555564, 0x45555564 },
{ 0x00000000, 0x7000000c, 0x7000000c },
{ 0x00000000, 0x7000000d, 0x7000000d },
{ 0x00000000, 0x7000000e, 0x7000000e },
{ 0x00000000, 0x7000000f, 0x7000000f },
{ 0x00000000, 0x70000010, 0x70000010 },
{ 0x00000000, 0x9aaaaab9, 0x9aaaaab9 },
{ 0x00000000, 0xbcccccdb, 0xbcccccdb },
{ 0x00000000, 0xefff800f, 0xefff800f },
{ 0x00000000, 0xefff8010, 0xefff8010 },
{ 0x00000000, 0xefff8011, 0xefff8011 },
{ 0x00000000, 0xefff8012, 0xefff8012 },
{ 0x00000000, 0xefffff8f, 0xefffff8f },
{ 0x00000000, 0xefffff90, 0xefffff90 },
{ 0x00000000, 0xefffff91, 0xefffff91 },
{ 0x00000000, 0xefffff92, 0xefffff92 },
{ 0x00000000, 0xefffffef, 0xefffffef },
{ 0x00000000, 0xf000000c, 0xf000000c },
{ 0x00000000, 0xf000000d, 0xf000000d },
{ 0x00000000, 0xf000000e, 0xf000000e },
};
const Inputs kOutputs_Add_RdIsRn_al_r1_r1_0x00ab0000[] = {
{ 0x00000000, 0x00ab0000, 0x00ab0000 },
{ 0x00000000, 0x00ab0001, 0x00ab0001 },
{ 0x00000000, 0x00ab0002, 0x00ab0002 },
{ 0x00000000, 0x00ab0020, 0x00ab0020 },
{ 0x00000000, 0x00ab007d, 0x00ab007d },
{ 0x00000000, 0x00ab007e, 0x00ab007e },
{ 0x00000000, 0x00ab007f, 0x00ab007f },
{ 0x00000000, 0x00ab7ffd, 0x00ab7ffd },
{ 0x00000000, 0x00ab7ffe, 0x00ab7ffe },
{ 0x00000000, 0x00ab7fff, 0x00ab7fff },
{ 0x00000000, 0x33de3333, 0x33de3333 },
{ 0x00000000, 0x56005555, 0x56005555 },
{ 0x00000000, 0x80aafffd, 0x80aafffd },
{ 0x00000000, 0x80aafffe, 0x80aafffe },
{ 0x00000000, 0x80aaffff, 0x80aaffff },
{ 0x00000000, 0x80ab0000, 0x80ab0000 },
{ 0x00000000, 0x80ab0001, 0x80ab0001 },
{ 0x00000000, 0xab55aaaa, 0xab55aaaa },
{ 0x00000000, 0xcd77cccc, 0xcd77cccc },
{ 0x00000000, 0x00aa8000, 0x00aa8000 },
{ 0x00000000, 0x00aa8001, 0x00aa8001 },
{ 0x00000000, 0x00aa8002, 0x00aa8002 },
{ 0x00000000, 0x00aa8003, 0x00aa8003 },
{ 0x00000000, 0x00aaff80, 0x00aaff80 },
{ 0x00000000, 0x00aaff81, 0x00aaff81 },
{ 0x00000000, 0x00aaff82, 0x00aaff82 },
{ 0x00000000, 0x00aaff83, 0x00aaff83 },
{ 0x00000000, 0x00aaffe0, 0x00aaffe0 },
{ 0x00000000, 0x00aafffd, 0x00aafffd },
{ 0x00000000, 0x00aafffe, 0x00aafffe },
{ 0x00000000, 0x00aaffff, 0x00aaffff },
};
const Inputs kOutputs_Add_RdIsRn_al_r10_r10_0x00002ac0[] = {
{ 0x00000000, 0x00002ac0, 0x00002ac0 },
{ 0x00000000, 0x00002ac1, 0x00002ac1 },
{ 0x00000000, 0x00002ac2, 0x00002ac2 },
{ 0x00000000, 0x00002ae0, 0x00002ae0 },
{ 0x00000000, 0x00002b3d, 0x00002b3d },
{ 0x00000000, 0x00002b3e, 0x00002b3e },
{ 0x00000000, 0x00002b3f, 0x00002b3f },
{ 0x00000000, 0x0000aabd, 0x0000aabd },
{ 0x00000000, 0x0000aabe, 0x0000aabe },
{ 0x00000000, 0x0000aabf, 0x0000aabf },
{ 0x00000000, 0x33335df3, 0x33335df3 },
{ 0x00000000, 0x55558015, 0x55558015 },
{ 0x00000000, 0x80002abd, 0x80002abd },
{ 0x00000000, 0x80002abe, 0x80002abe },
{ 0x00000000, 0x80002abf, 0x80002abf },
{ 0x00000000, 0x80002ac0, 0x80002ac0 },
{ 0x00000000, 0x80002ac1, 0x80002ac1 },
{ 0x00000000, 0xaaaad56a, 0xaaaad56a },
{ 0x00000000, 0xccccf78c, 0xccccf78c },
{ 0x00000000, 0xffffaac0, 0xffffaac0 },
{ 0x00000000, 0xffffaac1, 0xffffaac1 },
{ 0x00000000, 0xffffaac2, 0xffffaac2 },
{ 0x00000000, 0xffffaac3, 0xffffaac3 },
{ 0x00000000, 0x00002a40, 0x00002a40 },
{ 0x00000000, 0x00002a41, 0x00002a41 },
{ 0x00000000, 0x00002a42, 0x00002a42 },
{ 0x00000000, 0x00002a43, 0x00002a43 },
{ 0x00000000, 0x00002aa0, 0x00002aa0 },
{ 0x00000000, 0x00002abd, 0x00002abd },
{ 0x00000000, 0x00002abe, 0x00002abe },
{ 0x00000000, 0x00002abf, 0x00002abf },
};
const Inputs kOutputs_Add_RdIsRn_al_r6_r6_0x0002ac00[] = {
{ 0x00000000, 0x0002ac00, 0x0002ac00 },
{ 0x00000000, 0x0002ac01, 0x0002ac01 },
{ 0x00000000, 0x0002ac02, 0x0002ac02 },
{ 0x00000000, 0x0002ac20, 0x0002ac20 },
{ 0x00000000, 0x0002ac7d, 0x0002ac7d },
{ 0x00000000, 0x0002ac7e, 0x0002ac7e },
{ 0x00000000, 0x0002ac7f, 0x0002ac7f },
{ 0x00000000, 0x00032bfd, 0x00032bfd },
{ 0x00000000, 0x00032bfe, 0x00032bfe },
{ 0x00000000, 0x00032bff, 0x00032bff },
{ 0x00000000, 0x3335df33, 0x3335df33 },
{ 0x00000000, 0x55580155, 0x55580155 },
{ 0x00000000, 0x8002abfd, 0x8002abfd },
{ 0x00000000, 0x8002abfe, 0x8002abfe },
{ 0x00000000, 0x8002abff, 0x8002abff },
{ 0x00000000, 0x8002ac00, 0x8002ac00 },
{ 0x00000000, 0x8002ac01, 0x8002ac01 },
{ 0x00000000, 0xaaad56aa, 0xaaad56aa },
{ 0x00000000, 0xcccf78cc, 0xcccf78cc },
{ 0x00000000, 0x00022c00, 0x00022c00 },
{ 0x00000000, 0x00022c01, 0x00022c01 },
{ 0x00000000, 0x00022c02, 0x00022c02 },
{ 0x00000000, 0x00022c03, 0x00022c03 },
{ 0x00000000, 0x0002ab80, 0x0002ab80 },
{ 0x00000000, 0x0002ab81, 0x0002ab81 },
{ 0x00000000, 0x0002ab82, 0x0002ab82 },
{ 0x00000000, 0x0002ab83, 0x0002ab83 },
{ 0x00000000, 0x0002abe0, 0x0002abe0 },
{ 0x00000000, 0x0002abfd, 0x0002abfd },
{ 0x00000000, 0x0002abfe, 0x0002abfe },
{ 0x00000000, 0x0002abff, 0x0002abff },
};
const Inputs kOutputs_Add_RdIsRn_al_r3_r3_0xac000002[] = {
{ 0x00000000, 0xac000002, 0xac000002 },
{ 0x00000000, 0xac000003, 0xac000003 },
{ 0x00000000, 0xac000004, 0xac000004 },
{ 0x00000000, 0xac000022, 0xac000022 },
{ 0x00000000, 0xac00007f, 0xac00007f },
{ 0x00000000, 0xac000080, 0xac000080 },
{ 0x00000000, 0xac000081, 0xac000081 },
{ 0x00000000, 0xac007fff, 0xac007fff },
{ 0x00000000, 0xac008000, 0xac008000 },
{ 0x00000000, 0xac008001, 0xac008001 },
{ 0x00000000, 0xdf333335, 0xdf333335 },
{ 0x00000000, 0x01555557, 0x01555557 },
{ 0x00000000, 0x2bffffff, 0x2bffffff },
{ 0x00000000, 0x2c000000, 0x2c000000 },
{ 0x00000000, 0x2c000001, 0x2c000001 },
{ 0x00000000, 0x2c000002, 0x2c000002 },
{ 0x00000000, 0x2c000003, 0x2c000003 },
{ 0x00000000, 0x56aaaaac, 0x56aaaaac },
{ 0x00000000, 0x78ccccce, 0x78ccccce },
{ 0x00000000, 0xabff8002, 0xabff8002 },
{ 0x00000000, 0xabff8003, 0xabff8003 },
{ 0x00000000, 0xabff8004, 0xabff8004 },
{ 0x00000000, 0xabff8005, 0xabff8005 },
{ 0x00000000, 0xabffff82, 0xabffff82 },
{ 0x00000000, 0xabffff83, 0xabffff83 },
{ 0x00000000, 0xabffff84, 0xabffff84 },
{ 0x00000000, 0xabffff85, 0xabffff85 },
{ 0x00000000, 0xabffffe2, 0xabffffe2 },
{ 0x00000000, 0xabffffff, 0xabffffff },
{ 0x00000000, 0xac000000, 0xac000000 },
{ 0x00000000, 0xac000001, 0xac000001 },
};
const Inputs kOutputs_Add_RdIsRn_al_r6_r6_0x00000ab0[] = {
{ 0x00000000, 0x00000ab0, 0x00000ab0 },
{ 0x00000000, 0x00000ab1, 0x00000ab1 },
{ 0x00000000, 0x00000ab2, 0x00000ab2 },
{ 0x00000000, 0x00000ad0, 0x00000ad0 },
{ 0x00000000, 0x00000b2d, 0x00000b2d },
{ 0x00000000, 0x00000b2e, 0x00000b2e },
{ 0x00000000, 0x00000b2f, 0x00000b2f },
{ 0x00000000, 0x00008aad, 0x00008aad },
{ 0x00000000, 0x00008aae, 0x00008aae },
{ 0x00000000, 0x00008aaf, 0x00008aaf },
{ 0x00000000, 0x33333de3, 0x33333de3 },
{ 0x00000000, 0x55556005, 0x55556005 },
{ 0x00000000, 0x80000aad, 0x80000aad },
{ 0x00000000, 0x80000aae, 0x80000aae },
{ 0x00000000, 0x80000aaf, 0x80000aaf },
{ 0x00000000, 0x80000ab0, 0x80000ab0 },
{ 0x00000000, 0x80000ab1, 0x80000ab1 },
{ 0x00000000, 0xaaaab55a, 0xaaaab55a },
{ 0x00000000, 0xccccd77c, 0xccccd77c },
{ 0x00000000, 0xffff8ab0, 0xffff8ab0 },
{ 0x00000000, 0xffff8ab1, 0xffff8ab1 },
{ 0x00000000, 0xffff8ab2, 0xffff8ab2 },
{ 0x00000000, 0xffff8ab3, 0xffff8ab3 },
{ 0x00000000, 0x00000a30, 0x00000a30 },
{ 0x00000000, 0x00000a31, 0x00000a31 },
{ 0x00000000, 0x00000a32, 0x00000a32 },
{ 0x00000000, 0x00000a33, 0x00000a33 },
{ 0x00000000, 0x00000a90, 0x00000a90 },
{ 0x00000000, 0x00000aad, 0x00000aad },
{ 0x00000000, 0x00000aae, 0x00000aae },
{ 0x00000000, 0x00000aaf, 0x00000aaf },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r4_r10_0xac000002[] = {
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
{ 0x00000000, 0xac000002, 0x00000000 },
{ 0x00000000, 0xac000003, 0x00000001 },
{ 0x00000000, 0xac000004, 0x00000002 },
{ 0x00000000, 0xac000022, 0x00000020 },
{ 0x00000000, 0xac00007f, 0x0000007d },
{ 0x00000000, 0xac000080, 0x0000007e },
{ 0x00000000, 0xac000081, 0x0000007f },
{ 0x00000000, 0xac007fff, 0x00007ffd },
{ 0x00000000, 0xac008000, 0x00007ffe },
{ 0x00000000, 0xac008001, 0x00007fff },
{ 0x00000000, 0xdf333335, 0x33333333 },
{ 0x00000000, 0x01555557, 0x55555555 },
{ 0x00000000, 0x2bffffff, 0x7ffffffd },
{ 0x00000000, 0x2c000000, 0x7ffffffe },
{ 0x00000000, 0x2c000001, 0x7fffffff },
{ 0x00000000, 0x2c000002, 0x80000000 },
{ 0x00000000, 0x2c000003, 0x80000001 },
{ 0x00000000, 0x56aaaaac, 0xaaaaaaaa },
{ 0x00000000, 0x78ccccce, 0xcccccccc },
{ 0x00000000, 0xabff8002, 0xffff8000 },
{ 0x00000000, 0xabff8003, 0xffff8001 },
{ 0x00000000, 0xabff8004, 0xffff8002 },
{ 0x00000000, 0xabff8005, 0xffff8003 },
{ 0x00000000, 0xabffff82, 0xffffff80 },
{ 0x00000000, 0xabffff83, 0xffffff81 },
{ 0x00000000, 0xabffff84, 0xffffff82 },
{ 0x00000000, 0xabffff85, 0xffffff83 },
{ 0x00000000, 0xabffffe2, 0xffffffe0 },
{ 0x00000000, 0xabffffff, 0xfffffffd },
{ 0x00000000, 0xac000000, 0xfffffffe },
{ 0x00000000, 0xac000001, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r0_r4_0xc000003f[] = {
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r8_r0_0xc000003f[] = {
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
{ 0x00000000, 0xc000003f, 0x00000000 },
{ 0x00000000, 0xc0000040, 0x00000001 },
{ 0x00000000, 0xc0000041, 0x00000002 },
{ 0x00000000, 0xc000005f, 0x00000020 },
{ 0x00000000, 0xc00000bc, 0x0000007d },
{ 0x00000000, 0xc00000bd, 0x0000007e },
{ 0x00000000, 0xc00000be, 0x0000007f },
{ 0x00000000, 0xc000803c, 0x00007ffd },
{ 0x00000000, 0xc000803d, 0x00007ffe },
{ 0x00000000, 0xc000803e, 0x00007fff },
{ 0x00000000, 0xf3333372, 0x33333333 },
{ 0x00000000, 0x15555594, 0x55555555 },
{ 0x00000000, 0x4000003c, 0x7ffffffd },
{ 0x00000000, 0x4000003d, 0x7ffffffe },
{ 0x00000000, 0x4000003e, 0x7fffffff },
{ 0x00000000, 0x4000003f, 0x80000000 },
{ 0x00000000, 0x40000040, 0x80000001 },
{ 0x00000000, 0x6aaaaae9, 0xaaaaaaaa },
{ 0x00000000, 0x8ccccd0b, 0xcccccccc },
{ 0x00000000, 0xbfff803f, 0xffff8000 },
{ 0x00000000, 0xbfff8040, 0xffff8001 },
{ 0x00000000, 0xbfff8041, 0xffff8002 },
{ 0x00000000, 0xbfff8042, 0xffff8003 },
{ 0x00000000, 0xbfffffbf, 0xffffff80 },
{ 0x00000000, 0xbfffffc0, 0xffffff81 },
{ 0x00000000, 0xbfffffc1, 0xffffff82 },
{ 0x00000000, 0xbfffffc2, 0xffffff83 },
{ 0x00000000, 0xc000001f, 0xffffffe0 },
{ 0x00000000, 0xc000003c, 0xfffffffd },
{ 0x00000000, 0xc000003d, 0xfffffffe },
{ 0x00000000, 0xc000003e, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r5_r0_0x00ab0000[] = {
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
{ 0x00000000, 0x00ab0000, 0x00000000 },
{ 0x00000000, 0x00ab0001, 0x00000001 },
{ 0x00000000, 0x00ab0002, 0x00000002 },
{ 0x00000000, 0x00ab0020, 0x00000020 },
{ 0x00000000, 0x00ab007d, 0x0000007d },
{ 0x00000000, 0x00ab007e, 0x0000007e },
{ 0x00000000, 0x00ab007f, 0x0000007f },
{ 0x00000000, 0x00ab7ffd, 0x00007ffd },
{ 0x00000000, 0x00ab7ffe, 0x00007ffe },
{ 0x00000000, 0x00ab7fff, 0x00007fff },
{ 0x00000000, 0x33de3333, 0x33333333 },
{ 0x00000000, 0x56005555, 0x55555555 },
{ 0x00000000, 0x80aafffd, 0x7ffffffd },
{ 0x00000000, 0x80aafffe, 0x7ffffffe },
{ 0x00000000, 0x80aaffff, 0x7fffffff },
{ 0x00000000, 0x80ab0000, 0x80000000 },
{ 0x00000000, 0x80ab0001, 0x80000001 },
{ 0x00000000, 0xab55aaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd77cccc, 0xcccccccc },
{ 0x00000000, 0x00aa8000, 0xffff8000 },
{ 0x00000000, 0x00aa8001, 0xffff8001 },
{ 0x00000000, 0x00aa8002, 0xffff8002 },
{ 0x00000000, 0x00aa8003, 0xffff8003 },
{ 0x00000000, 0x00aaff80, 0xffffff80 },
{ 0x00000000, 0x00aaff81, 0xffffff81 },
{ 0x00000000, 0x00aaff82, 0xffffff82 },
{ 0x00000000, 0x00aaff83, 0xffffff83 },
{ 0x00000000, 0x00aaffe0, 0xffffffe0 },
{ 0x00000000, 0x00aafffd, 0xfffffffd },
{ 0x00000000, 0x00aafffe, 0xfffffffe },
{ 0x00000000, 0x00aaffff, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r8_r14_0x002ac000[] = {
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
{ 0x00000000, 0x002ac000, 0x00000000 },
{ 0x00000000, 0x002ac001, 0x00000001 },
{ 0x00000000, 0x002ac002, 0x00000002 },
{ 0x00000000, 0x002ac020, 0x00000020 },
{ 0x00000000, 0x002ac07d, 0x0000007d },
{ 0x00000000, 0x002ac07e, 0x0000007e },
{ 0x00000000, 0x002ac07f, 0x0000007f },
{ 0x00000000, 0x002b3ffd, 0x00007ffd },
{ 0x00000000, 0x002b3ffe, 0x00007ffe },
{ 0x00000000, 0x002b3fff, 0x00007fff },
{ 0x00000000, 0x335df333, 0x33333333 },
{ 0x00000000, 0x55801555, 0x55555555 },
{ 0x00000000, 0x802abffd, 0x7ffffffd },
{ 0x00000000, 0x802abffe, 0x7ffffffe },
{ 0x00000000, 0x802abfff, 0x7fffffff },
{ 0x00000000, 0x802ac000, 0x80000000 },
{ 0x00000000, 0x802ac001, 0x80000001 },
{ 0x00000000, 0xaad56aaa, 0xaaaaaaaa },
{ 0x00000000, 0xccf78ccc, 0xcccccccc },
{ 0x00000000, 0x002a4000, 0xffff8000 },
{ 0x00000000, 0x002a4001, 0xffff8001 },
{ 0x00000000, 0x002a4002, 0xffff8002 },
{ 0x00000000, 0x002a4003, 0xffff8003 },
{ 0x00000000, 0x002abf80, 0xffffff80 },
{ 0x00000000, 0x002abf81, 0xffffff81 },
{ 0x00000000, 0x002abf82, 0xffffff82 },
{ 0x00000000, 0x002abf83, 0xffffff83 },
{ 0x00000000, 0x002abfe0, 0xffffffe0 },
{ 0x00000000, 0x002abffd, 0xfffffffd },
{ 0x00000000, 0x002abffe, 0xfffffffe },
{ 0x00000000, 0x002abfff, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r2_r11_0x0002ac00[] = {
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
{ 0x00000000, 0x0002ac00, 0x00000000 },
{ 0x00000000, 0x0002ac01, 0x00000001 },
{ 0x00000000, 0x0002ac02, 0x00000002 },
{ 0x00000000, 0x0002ac20, 0x00000020 },
{ 0x00000000, 0x0002ac7d, 0x0000007d },
{ 0x00000000, 0x0002ac7e, 0x0000007e },
{ 0x00000000, 0x0002ac7f, 0x0000007f },
{ 0x00000000, 0x00032bfd, 0x00007ffd },
{ 0x00000000, 0x00032bfe, 0x00007ffe },
{ 0x00000000, 0x00032bff, 0x00007fff },
{ 0x00000000, 0x3335df33, 0x33333333 },
{ 0x00000000, 0x55580155, 0x55555555 },
{ 0x00000000, 0x8002abfd, 0x7ffffffd },
{ 0x00000000, 0x8002abfe, 0x7ffffffe },
{ 0x00000000, 0x8002abff, 0x7fffffff },
{ 0x00000000, 0x8002ac00, 0x80000000 },
{ 0x00000000, 0x8002ac01, 0x80000001 },
{ 0x00000000, 0xaaad56aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccf78cc, 0xcccccccc },
{ 0x00000000, 0x00022c00, 0xffff8000 },
{ 0x00000000, 0x00022c01, 0xffff8001 },
{ 0x00000000, 0x00022c02, 0xffff8002 },
{ 0x00000000, 0x00022c03, 0xffff8003 },
{ 0x00000000, 0x0002ab80, 0xffffff80 },
{ 0x00000000, 0x0002ab81, 0xffffff81 },
{ 0x00000000, 0x0002ab82, 0xffffff82 },
{ 0x00000000, 0x0002ab83, 0xffffff83 },
{ 0x00000000, 0x0002abe0, 0xffffffe0 },
{ 0x00000000, 0x0002abfd, 0xfffffffd },
{ 0x00000000, 0x0002abfe, 0xfffffffe },
{ 0x00000000, 0x0002abff, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r1_r0_0x0000ff00[] = {
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
{ 0x00000000, 0x0000ff00, 0x00000000 },
{ 0x00000000, 0x0000ff01, 0x00000001 },
{ 0x00000000, 0x0000ff02, 0x00000002 },
{ 0x00000000, 0x0000ff20, 0x00000020 },
{ 0x00000000, 0x0000ff7d, 0x0000007d },
{ 0x00000000, 0x0000ff7e, 0x0000007e },
{ 0x00000000, 0x0000ff7f, 0x0000007f },
{ 0x00000000, 0x00017efd, 0x00007ffd },
{ 0x00000000, 0x00017efe, 0x00007ffe },
{ 0x00000000, 0x00017eff, 0x00007fff },
{ 0x00000000, 0x33343233, 0x33333333 },
{ 0x00000000, 0x55565455, 0x55555555 },
{ 0x00000000, 0x8000fefd, 0x7ffffffd },
{ 0x00000000, 0x8000fefe, 0x7ffffffe },
{ 0x00000000, 0x8000feff, 0x7fffffff },
{ 0x00000000, 0x8000ff00, 0x80000000 },
{ 0x00000000, 0x8000ff01, 0x80000001 },
{ 0x00000000, 0xaaaba9aa, 0xaaaaaaaa },
{ 0x00000000, 0xcccdcbcc, 0xcccccccc },
{ 0x00000000, 0x00007f00, 0xffff8000 },
{ 0x00000000, 0x00007f01, 0xffff8001 },
{ 0x00000000, 0x00007f02, 0xffff8002 },
{ 0x00000000, 0x00007f03, 0xffff8003 },
{ 0x00000000, 0x0000fe80, 0xffffff80 },
{ 0x00000000, 0x0000fe81, 0xffffff81 },
{ 0x00000000, 0x0000fe82, 0xffffff82 },
{ 0x00000000, 0x0000fe83, 0xffffff83 },
{ 0x00000000, 0x0000fee0, 0xffffffe0 },
{ 0x00000000, 0x0000fefd, 0xfffffffd },
{ 0x00000000, 0x0000fefe, 0xfffffffe },
{ 0x00000000, 0x0000feff, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r1_r7_0x003fc000[] = {
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
{ 0x00000000, 0x003fc000, 0x00000000 },
{ 0x00000000, 0x003fc001, 0x00000001 },
{ 0x00000000, 0x003fc002, 0x00000002 },
{ 0x00000000, 0x003fc020, 0x00000020 },
{ 0x00000000, 0x003fc07d, 0x0000007d },
{ 0x00000000, 0x003fc07e, 0x0000007e },
{ 0x00000000, 0x003fc07f, 0x0000007f },
{ 0x00000000, 0x00403ffd, 0x00007ffd },
{ 0x00000000, 0x00403ffe, 0x00007ffe },
{ 0x00000000, 0x00403fff, 0x00007fff },
{ 0x00000000, 0x3372f333, 0x33333333 },
{ 0x00000000, 0x55951555, 0x55555555 },
{ 0x00000000, 0x803fbffd, 0x7ffffffd },
{ 0x00000000, 0x803fbffe, 0x7ffffffe },
{ 0x00000000, 0x803fbfff, 0x7fffffff },
{ 0x00000000, 0x803fc000, 0x80000000 },
{ 0x00000000, 0x803fc001, 0x80000001 },
{ 0x00000000, 0xaaea6aaa, 0xaaaaaaaa },
{ 0x00000000, 0xcd0c8ccc, 0xcccccccc },
{ 0x00000000, 0x003f4000, 0xffff8000 },
{ 0x00000000, 0x003f4001, 0xffff8001 },
{ 0x00000000, 0x003f4002, 0xffff8002 },
{ 0x00000000, 0x003f4003, 0xffff8003 },
{ 0x00000000, 0x003fbf80, 0xffffff80 },
{ 0x00000000, 0x003fbf81, 0xffffff81 },
{ 0x00000000, 0x003fbf82, 0xffffff82 },
{ 0x00000000, 0x003fbf83, 0xffffff83 },
{ 0x00000000, 0x003fbfe0, 0xffffffe0 },
{ 0x00000000, 0x003fbffd, 0xfffffffd },
{ 0x00000000, 0x003fbffe, 0xfffffffe },
{ 0x00000000, 0x003fbfff, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r11_r8_0x0ab00000[] = {
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
{ 0x00000000, 0x0ab00000, 0x00000000 },
{ 0x00000000, 0x0ab00001, 0x00000001 },
{ 0x00000000, 0x0ab00002, 0x00000002 },
{ 0x00000000, 0x0ab00020, 0x00000020 },
{ 0x00000000, 0x0ab0007d, 0x0000007d },
{ 0x00000000, 0x0ab0007e, 0x0000007e },
{ 0x00000000, 0x0ab0007f, 0x0000007f },
{ 0x00000000, 0x0ab07ffd, 0x00007ffd },
{ 0x00000000, 0x0ab07ffe, 0x00007ffe },
{ 0x00000000, 0x0ab07fff, 0x00007fff },
{ 0x00000000, 0x3de33333, 0x33333333 },
{ 0x00000000, 0x60055555, 0x55555555 },
{ 0x00000000, 0x8aaffffd, 0x7ffffffd },
{ 0x00000000, 0x8aaffffe, 0x7ffffffe },
{ 0x00000000, 0x8aafffff, 0x7fffffff },
{ 0x00000000, 0x8ab00000, 0x80000000 },
{ 0x00000000, 0x8ab00001, 0x80000001 },
{ 0x00000000, 0xb55aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xd77ccccc, 0xcccccccc },
{ 0x00000000, 0x0aaf8000, 0xffff8000 },
{ 0x00000000, 0x0aaf8001, 0xffff8001 },
{ 0x00000000, 0x0aaf8002, 0xffff8002 },
{ 0x00000000, 0x0aaf8003, 0xffff8003 },
{ 0x00000000, 0x0aafff80, 0xffffff80 },
{ 0x00000000, 0x0aafff81, 0xffffff81 },
{ 0x00000000, 0x0aafff82, 0xffffff82 },
{ 0x00000000, 0x0aafff83, 0xffffff83 },
{ 0x00000000, 0x0aafffe0, 0xffffffe0 },
{ 0x00000000, 0x0aaffffd, 0xfffffffd },
{ 0x00000000, 0x0aaffffe, 0xfffffffe },
{ 0x00000000, 0x0aafffff, 0xffffffff },
};
const Inputs kOutputs_Add_RdIsNotRn_al_r14_r12_0x3fc00000[] = {
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
{ 0x00000000, 0x3fc00000, 0x00000000 },
{ 0x00000000, 0x3fc00001, 0x00000001 },
{ 0x00000000, 0x3fc00002, 0x00000002 },
{ 0x00000000, 0x3fc00020, 0x00000020 },
{ 0x00000000, 0x3fc0007d, 0x0000007d },
{ 0x00000000, 0x3fc0007e, 0x0000007e },
{ 0x00000000, 0x3fc0007f, 0x0000007f },
{ 0x00000000, 0x3fc07ffd, 0x00007ffd },
{ 0x00000000, 0x3fc07ffe, 0x00007ffe },
{ 0x00000000, 0x3fc07fff, 0x00007fff },
{ 0x00000000, 0x72f33333, 0x33333333 },
{ 0x00000000, 0x95155555, 0x55555555 },
{ 0x00000000, 0xbfbffffd, 0x7ffffffd },
{ 0x00000000, 0xbfbffffe, 0x7ffffffe },
{ 0x00000000, 0xbfbfffff, 0x7fffffff },
{ 0x00000000, 0xbfc00000, 0x80000000 },
{ 0x00000000, 0xbfc00001, 0x80000001 },
{ 0x00000000, 0xea6aaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x0c8ccccc, 0xcccccccc },
{ 0x00000000, 0x3fbf8000, 0xffff8000 },
{ 0x00000000, 0x3fbf8001, 0xffff8001 },
{ 0x00000000, 0x3fbf8002, 0xffff8002 },
{ 0x00000000, 0x3fbf8003, 0xffff8003 },
{ 0x00000000, 0x3fbfff80, 0xffffff80 },
{ 0x00000000, 0x3fbfff81, 0xffffff81 },
{ 0x00000000, 0x3fbfff82, 0xffffff82 },
{ 0x00000000, 0x3fbfff83, 0xffffff83 },
{ 0x00000000, 0x3fbfffe0, 0xffffffe0 },
{ 0x00000000, 0x3fbffffd, 0xfffffffd },
{ 0x00000000, 0x3fbffffe, 0xfffffffe },
{ 0x00000000, 0x3fbfffff, 0xffffffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000000[] = {
{ 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000020, 0x00000020 },
{ 0x00000000, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x80000001, 0x80000001 },
{ 0x00000000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0xffffffff, 0xffffffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000000ff[] = {
{ 0x00000000, 0x000000ff, 0x000000ff },
{ 0x00000000, 0x00000100, 0x00000100 },
{ 0x00000000, 0x00000101, 0x00000101 },
{ 0x00000000, 0x0000011f, 0x0000011f },
{ 0x00000000, 0x0000017c, 0x0000017c },
{ 0x00000000, 0x0000017d, 0x0000017d },
{ 0x00000000, 0x0000017e, 0x0000017e },
{ 0x00000000, 0x000080fc, 0x000080fc },
{ 0x00000000, 0x000080fd, 0x000080fd },
{ 0x00000000, 0x000080fe, 0x000080fe },
{ 0x00000000, 0x33333432, 0x33333432 },
{ 0x00000000, 0x55555654, 0x55555654 },
{ 0x00000000, 0x800000fc, 0x800000fc },
{ 0x00000000, 0x800000fd, 0x800000fd },
{ 0x00000000, 0x800000fe, 0x800000fe },
{ 0x00000000, 0x800000ff, 0x800000ff },
{ 0x00000000, 0x80000100, 0x80000100 },
{ 0x00000000, 0xaaaaaba9, 0xaaaaaba9 },
{ 0x00000000, 0xcccccdcb, 0xcccccdcb },
{ 0x00000000, 0xffff80ff, 0xffff80ff },
{ 0x00000000, 0xffff8100, 0xffff8100 },
{ 0x00000000, 0xffff8101, 0xffff8101 },
{ 0x00000000, 0xffff8102, 0xffff8102 },
{ 0x00000000, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000080, 0x00000080 },
{ 0x00000000, 0x00000081, 0x00000081 },
{ 0x00000000, 0x00000082, 0x00000082 },
{ 0x00000000, 0x000000df, 0x000000df },
{ 0x00000000, 0x000000fc, 0x000000fc },
{ 0x00000000, 0x000000fd, 0x000000fd },
{ 0x00000000, 0x000000fe, 0x000000fe },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xc000003f[] = {
{ 0x00000000, 0xc000003f, 0xc000003f },
{ 0x00000000, 0xc0000040, 0xc0000040 },
{ 0x00000000, 0xc0000041, 0xc0000041 },
{ 0x00000000, 0xc000005f, 0xc000005f },
{ 0x00000000, 0xc00000bc, 0xc00000bc },
{ 0x00000000, 0xc00000bd, 0xc00000bd },
{ 0x00000000, 0xc00000be, 0xc00000be },
{ 0x00000000, 0xc000803c, 0xc000803c },
{ 0x00000000, 0xc000803d, 0xc000803d },
{ 0x00000000, 0xc000803e, 0xc000803e },
{ 0x00000000, 0xf3333372, 0xf3333372 },
{ 0x00000000, 0x15555594, 0x15555594 },
{ 0x00000000, 0x4000003c, 0x4000003c },
{ 0x00000000, 0x4000003d, 0x4000003d },
{ 0x00000000, 0x4000003e, 0x4000003e },
{ 0x00000000, 0x4000003f, 0x4000003f },
{ 0x00000000, 0x40000040, 0x40000040 },
{ 0x00000000, 0x6aaaaae9, 0x6aaaaae9 },
{ 0x00000000, 0x8ccccd0b, 0x8ccccd0b },
{ 0x00000000, 0xbfff803f, 0xbfff803f },
{ 0x00000000, 0xbfff8040, 0xbfff8040 },
{ 0x00000000, 0xbfff8041, 0xbfff8041 },
{ 0x00000000, 0xbfff8042, 0xbfff8042 },
{ 0x00000000, 0xbfffffbf, 0xbfffffbf },
{ 0x00000000, 0xbfffffc0, 0xbfffffc0 },
{ 0x00000000, 0xbfffffc1, 0xbfffffc1 },
{ 0x00000000, 0xbfffffc2, 0xbfffffc2 },
{ 0x00000000, 0xc000001f, 0xc000001f },
{ 0x00000000, 0xc000003c, 0xc000003c },
{ 0x00000000, 0xc000003d, 0xc000003d },
{ 0x00000000, 0xc000003e, 0xc000003e },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xf000000f[] = {
{ 0x00000000, 0xf000000f, 0xf000000f },
{ 0x00000000, 0xf0000010, 0xf0000010 },
{ 0x00000000, 0xf0000011, 0xf0000011 },
{ 0x00000000, 0xf000002f, 0xf000002f },
{ 0x00000000, 0xf000008c, 0xf000008c },
{ 0x00000000, 0xf000008d, 0xf000008d },
{ 0x00000000, 0xf000008e, 0xf000008e },
{ 0x00000000, 0xf000800c, 0xf000800c },
{ 0x00000000, 0xf000800d, 0xf000800d },
{ 0x00000000, 0xf000800e, 0xf000800e },
{ 0x00000000, 0x23333342, 0x23333342 },
{ 0x00000000, 0x45555564, 0x45555564 },
{ 0x00000000, 0x7000000c, 0x7000000c },
{ 0x00000000, 0x7000000d, 0x7000000d },
{ 0x00000000, 0x7000000e, 0x7000000e },
{ 0x00000000, 0x7000000f, 0x7000000f },
{ 0x00000000, 0x70000010, 0x70000010 },
{ 0x00000000, 0x9aaaaab9, 0x9aaaaab9 },
{ 0x00000000, 0xbcccccdb, 0xbcccccdb },
{ 0x00000000, 0xefff800f, 0xefff800f },
{ 0x00000000, 0xefff8010, 0xefff8010 },
{ 0x00000000, 0xefff8011, 0xefff8011 },
{ 0x00000000, 0xefff8012, 0xefff8012 },
{ 0x00000000, 0xefffff8f, 0xefffff8f },
{ 0x00000000, 0xefffff90, 0xefffff90 },
{ 0x00000000, 0xefffff91, 0xefffff91 },
{ 0x00000000, 0xefffff92, 0xefffff92 },
{ 0x00000000, 0xefffffef, 0xefffffef },
{ 0x00000000, 0xf000000c, 0xf000000c },
{ 0x00000000, 0xf000000d, 0xf000000d },
{ 0x00000000, 0xf000000e, 0xf000000e },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xfc000003[] = {
{ 0x00000000, 0xfc000003, 0xfc000003 },
{ 0x00000000, 0xfc000004, 0xfc000004 },
{ 0x00000000, 0xfc000005, 0xfc000005 },
{ 0x00000000, 0xfc000023, 0xfc000023 },
{ 0x00000000, 0xfc000080, 0xfc000080 },
{ 0x00000000, 0xfc000081, 0xfc000081 },
{ 0x00000000, 0xfc000082, 0xfc000082 },
{ 0x00000000, 0xfc008000, 0xfc008000 },
{ 0x00000000, 0xfc008001, 0xfc008001 },
{ 0x00000000, 0xfc008002, 0xfc008002 },
{ 0x00000000, 0x2f333336, 0x2f333336 },
{ 0x00000000, 0x51555558, 0x51555558 },
{ 0x00000000, 0x7c000000, 0x7c000000 },
{ 0x00000000, 0x7c000001, 0x7c000001 },
{ 0x00000000, 0x7c000002, 0x7c000002 },
{ 0x00000000, 0x7c000003, 0x7c000003 },
{ 0x00000000, 0x7c000004, 0x7c000004 },
{ 0x00000000, 0xa6aaaaad, 0xa6aaaaad },
{ 0x00000000, 0xc8cccccf, 0xc8cccccf },
{ 0x00000000, 0xfbff8003, 0xfbff8003 },
{ 0x00000000, 0xfbff8004, 0xfbff8004 },
{ 0x00000000, 0xfbff8005, 0xfbff8005 },
{ 0x00000000, 0xfbff8006, 0xfbff8006 },
{ 0x00000000, 0xfbffff83, 0xfbffff83 },
{ 0x00000000, 0xfbffff84, 0xfbffff84 },
{ 0x00000000, 0xfbffff85, 0xfbffff85 },
{ 0x00000000, 0xfbffff86, 0xfbffff86 },
{ 0x00000000, 0xfbffffe3, 0xfbffffe3 },
{ 0x00000000, 0xfc000000, 0xfc000000 },
{ 0x00000000, 0xfc000001, 0xfc000001 },
{ 0x00000000, 0xfc000002, 0xfc000002 },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xff000000[] = {
{ 0x00000000, 0xff000000, 0xff000000 },
{ 0x00000000, 0xff000001, 0xff000001 },
{ 0x00000000, 0xff000002, 0xff000002 },
{ 0x00000000, 0xff000020, 0xff000020 },
{ 0x00000000, 0xff00007d, 0xff00007d },
{ 0x00000000, 0xff00007e, 0xff00007e },
{ 0x00000000, 0xff00007f, 0xff00007f },
{ 0x00000000, 0xff007ffd, 0xff007ffd },
{ 0x00000000, 0xff007ffe, 0xff007ffe },
{ 0x00000000, 0xff007fff, 0xff007fff },
{ 0x00000000, 0x32333333, 0x32333333 },
{ 0x00000000, 0x54555555, 0x54555555 },
{ 0x00000000, 0x7efffffd, 0x7efffffd },
{ 0x00000000, 0x7efffffe, 0x7efffffe },
{ 0x00000000, 0x7effffff, 0x7effffff },
{ 0x00000000, 0x7f000000, 0x7f000000 },
{ 0x00000000, 0x7f000001, 0x7f000001 },
{ 0x00000000, 0xa9aaaaaa, 0xa9aaaaaa },
{ 0x00000000, 0xcbcccccc, 0xcbcccccc },
{ 0x00000000, 0xfeff8000, 0xfeff8000 },
{ 0x00000000, 0xfeff8001, 0xfeff8001 },
{ 0x00000000, 0xfeff8002, 0xfeff8002 },
{ 0x00000000, 0xfeff8003, 0xfeff8003 },
{ 0x00000000, 0xfeffff80, 0xfeffff80 },
{ 0x00000000, 0xfeffff81, 0xfeffff81 },
{ 0x00000000, 0xfeffff82, 0xfeffff82 },
{ 0x00000000, 0xfeffff83, 0xfeffff83 },
{ 0x00000000, 0xfeffffe0, 0xfeffffe0 },
{ 0x00000000, 0xfefffffd, 0xfefffffd },
{ 0x00000000, 0xfefffffe, 0xfefffffe },
{ 0x00000000, 0xfeffffff, 0xfeffffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x3fc00000[] = {
{ 0x00000000, 0x3fc00000, 0x3fc00000 },
{ 0x00000000, 0x3fc00001, 0x3fc00001 },
{ 0x00000000, 0x3fc00002, 0x3fc00002 },
{ 0x00000000, 0x3fc00020, 0x3fc00020 },
{ 0x00000000, 0x3fc0007d, 0x3fc0007d },
{ 0x00000000, 0x3fc0007e, 0x3fc0007e },
{ 0x00000000, 0x3fc0007f, 0x3fc0007f },
{ 0x00000000, 0x3fc07ffd, 0x3fc07ffd },
{ 0x00000000, 0x3fc07ffe, 0x3fc07ffe },
{ 0x00000000, 0x3fc07fff, 0x3fc07fff },
{ 0x00000000, 0x72f33333, 0x72f33333 },
{ 0x00000000, 0x95155555, 0x95155555 },
{ 0x00000000, 0xbfbffffd, 0xbfbffffd },
{ 0x00000000, 0xbfbffffe, 0xbfbffffe },
{ 0x00000000, 0xbfbfffff, 0xbfbfffff },
{ 0x00000000, 0xbfc00000, 0xbfc00000 },
{ 0x00000000, 0xbfc00001, 0xbfc00001 },
{ 0x00000000, 0xea6aaaaa, 0xea6aaaaa },
{ 0x00000000, 0x0c8ccccc, 0x0c8ccccc },
{ 0x00000000, 0x3fbf8000, 0x3fbf8000 },
{ 0x00000000, 0x3fbf8001, 0x3fbf8001 },
{ 0x00000000, 0x3fbf8002, 0x3fbf8002 },
{ 0x00000000, 0x3fbf8003, 0x3fbf8003 },
{ 0x00000000, 0x3fbfff80, 0x3fbfff80 },
{ 0x00000000, 0x3fbfff81, 0x3fbfff81 },
{ 0x00000000, 0x3fbfff82, 0x3fbfff82 },
{ 0x00000000, 0x3fbfff83, 0x3fbfff83 },
{ 0x00000000, 0x3fbfffe0, 0x3fbfffe0 },
{ 0x00000000, 0x3fbffffd, 0x3fbffffd },
{ 0x00000000, 0x3fbffffe, 0x3fbffffe },
{ 0x00000000, 0x3fbfffff, 0x3fbfffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0ff00000[] = {
{ 0x00000000, 0x0ff00000, 0x0ff00000 },
{ 0x00000000, 0x0ff00001, 0x0ff00001 },
{ 0x00000000, 0x0ff00002, 0x0ff00002 },
{ 0x00000000, 0x0ff00020, 0x0ff00020 },
{ 0x00000000, 0x0ff0007d, 0x0ff0007d },
{ 0x00000000, 0x0ff0007e, 0x0ff0007e },
{ 0x00000000, 0x0ff0007f, 0x0ff0007f },
{ 0x00000000, 0x0ff07ffd, 0x0ff07ffd },
{ 0x00000000, 0x0ff07ffe, 0x0ff07ffe },
{ 0x00000000, 0x0ff07fff, 0x0ff07fff },
{ 0x00000000, 0x43233333, 0x43233333 },
{ 0x00000000, 0x65455555, 0x65455555 },
{ 0x00000000, 0x8feffffd, 0x8feffffd },
{ 0x00000000, 0x8feffffe, 0x8feffffe },
{ 0x00000000, 0x8fefffff, 0x8fefffff },
{ 0x00000000, 0x8ff00000, 0x8ff00000 },
{ 0x00000000, 0x8ff00001, 0x8ff00001 },
{ 0x00000000, 0xba9aaaaa, 0xba9aaaaa },
{ 0x00000000, 0xdcbccccc, 0xdcbccccc },
{ 0x00000000, 0x0fef8000, 0x0fef8000 },
{ 0x00000000, 0x0fef8001, 0x0fef8001 },
{ 0x00000000, 0x0fef8002, 0x0fef8002 },
{ 0x00000000, 0x0fef8003, 0x0fef8003 },
{ 0x00000000, 0x0fefff80, 0x0fefff80 },
{ 0x00000000, 0x0fefff81, 0x0fefff81 },
{ 0x00000000, 0x0fefff82, 0x0fefff82 },
{ 0x00000000, 0x0fefff83, 0x0fefff83 },
{ 0x00000000, 0x0fefffe0, 0x0fefffe0 },
{ 0x00000000, 0x0feffffd, 0x0feffffd },
{ 0x00000000, 0x0feffffe, 0x0feffffe },
{ 0x00000000, 0x0fefffff, 0x0fefffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x03fc0000[] = {
{ 0x00000000, 0x03fc0000, 0x03fc0000 },
{ 0x00000000, 0x03fc0001, 0x03fc0001 },
{ 0x00000000, 0x03fc0002, 0x03fc0002 },
{ 0x00000000, 0x03fc0020, 0x03fc0020 },
{ 0x00000000, 0x03fc007d, 0x03fc007d },
{ 0x00000000, 0x03fc007e, 0x03fc007e },
{ 0x00000000, 0x03fc007f, 0x03fc007f },
{ 0x00000000, 0x03fc7ffd, 0x03fc7ffd },
{ 0x00000000, 0x03fc7ffe, 0x03fc7ffe },
{ 0x00000000, 0x03fc7fff, 0x03fc7fff },
{ 0x00000000, 0x372f3333, 0x372f3333 },
{ 0x00000000, 0x59515555, 0x59515555 },
{ 0x00000000, 0x83fbfffd, 0x83fbfffd },
{ 0x00000000, 0x83fbfffe, 0x83fbfffe },
{ 0x00000000, 0x83fbffff, 0x83fbffff },
{ 0x00000000, 0x83fc0000, 0x83fc0000 },
{ 0x00000000, 0x83fc0001, 0x83fc0001 },
{ 0x00000000, 0xaea6aaaa, 0xaea6aaaa },
{ 0x00000000, 0xd0c8cccc, 0xd0c8cccc },
{ 0x00000000, 0x03fb8000, 0x03fb8000 },
{ 0x00000000, 0x03fb8001, 0x03fb8001 },
{ 0x00000000, 0x03fb8002, 0x03fb8002 },
{ 0x00000000, 0x03fb8003, 0x03fb8003 },
{ 0x00000000, 0x03fbff80, 0x03fbff80 },
{ 0x00000000, 0x03fbff81, 0x03fbff81 },
{ 0x00000000, 0x03fbff82, 0x03fbff82 },
{ 0x00000000, 0x03fbff83, 0x03fbff83 },
{ 0x00000000, 0x03fbffe0, 0x03fbffe0 },
{ 0x00000000, 0x03fbfffd, 0x03fbfffd },
{ 0x00000000, 0x03fbfffe, 0x03fbfffe },
{ 0x00000000, 0x03fbffff, 0x03fbffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00ff0000[] = {
{ 0x00000000, 0x00ff0000, 0x00ff0000 },
{ 0x00000000, 0x00ff0001, 0x00ff0001 },
{ 0x00000000, 0x00ff0002, 0x00ff0002 },
{ 0x00000000, 0x00ff0020, 0x00ff0020 },
{ 0x00000000, 0x00ff007d, 0x00ff007d },
{ 0x00000000, 0x00ff007e, 0x00ff007e },
{ 0x00000000, 0x00ff007f, 0x00ff007f },
{ 0x00000000, 0x00ff7ffd, 0x00ff7ffd },
{ 0x00000000, 0x00ff7ffe, 0x00ff7ffe },
{ 0x00000000, 0x00ff7fff, 0x00ff7fff },
{ 0x00000000, 0x34323333, 0x34323333 },
{ 0x00000000, 0x56545555, 0x56545555 },
{ 0x00000000, 0x80fefffd, 0x80fefffd },
{ 0x00000000, 0x80fefffe, 0x80fefffe },
{ 0x00000000, 0x80feffff, 0x80feffff },
{ 0x00000000, 0x80ff0000, 0x80ff0000 },
{ 0x00000000, 0x80ff0001, 0x80ff0001 },
{ 0x00000000, 0xaba9aaaa, 0xaba9aaaa },
{ 0x00000000, 0xcdcbcccc, 0xcdcbcccc },
{ 0x00000000, 0x00fe8000, 0x00fe8000 },
{ 0x00000000, 0x00fe8001, 0x00fe8001 },
{ 0x00000000, 0x00fe8002, 0x00fe8002 },
{ 0x00000000, 0x00fe8003, 0x00fe8003 },
{ 0x00000000, 0x00feff80, 0x00feff80 },
{ 0x00000000, 0x00feff81, 0x00feff81 },
{ 0x00000000, 0x00feff82, 0x00feff82 },
{ 0x00000000, 0x00feff83, 0x00feff83 },
{ 0x00000000, 0x00feffe0, 0x00feffe0 },
{ 0x00000000, 0x00fefffd, 0x00fefffd },
{ 0x00000000, 0x00fefffe, 0x00fefffe },
{ 0x00000000, 0x00feffff, 0x00feffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x003fc000[] = {
{ 0x00000000, 0x003fc000, 0x003fc000 },
{ 0x00000000, 0x003fc001, 0x003fc001 },
{ 0x00000000, 0x003fc002, 0x003fc002 },
{ 0x00000000, 0x003fc020, 0x003fc020 },
{ 0x00000000, 0x003fc07d, 0x003fc07d },
{ 0x00000000, 0x003fc07e, 0x003fc07e },
{ 0x00000000, 0x003fc07f, 0x003fc07f },
{ 0x00000000, 0x00403ffd, 0x00403ffd },
{ 0x00000000, 0x00403ffe, 0x00403ffe },
{ 0x00000000, 0x00403fff, 0x00403fff },
{ 0x00000000, 0x3372f333, 0x3372f333 },
{ 0x00000000, 0x55951555, 0x55951555 },
{ 0x00000000, 0x803fbffd, 0x803fbffd },
{ 0x00000000, 0x803fbffe, 0x803fbffe },
{ 0x00000000, 0x803fbfff, 0x803fbfff },
{ 0x00000000, 0x803fc000, 0x803fc000 },
{ 0x00000000, 0x803fc001, 0x803fc001 },
{ 0x00000000, 0xaaea6aaa, 0xaaea6aaa },
{ 0x00000000, 0xcd0c8ccc, 0xcd0c8ccc },
{ 0x00000000, 0x003f4000, 0x003f4000 },
{ 0x00000000, 0x003f4001, 0x003f4001 },
{ 0x00000000, 0x003f4002, 0x003f4002 },
{ 0x00000000, 0x003f4003, 0x003f4003 },
{ 0x00000000, 0x003fbf80, 0x003fbf80 },
{ 0x00000000, 0x003fbf81, 0x003fbf81 },
{ 0x00000000, 0x003fbf82, 0x003fbf82 },
{ 0x00000000, 0x003fbf83, 0x003fbf83 },
{ 0x00000000, 0x003fbfe0, 0x003fbfe0 },
{ 0x00000000, 0x003fbffd, 0x003fbffd },
{ 0x00000000, 0x003fbffe, 0x003fbffe },
{ 0x00000000, 0x003fbfff, 0x003fbfff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000ff000[] = {
{ 0x00000000, 0x000ff000, 0x000ff000 },
{ 0x00000000, 0x000ff001, 0x000ff001 },
{ 0x00000000, 0x000ff002, 0x000ff002 },
{ 0x00000000, 0x000ff020, 0x000ff020 },
{ 0x00000000, 0x000ff07d, 0x000ff07d },
{ 0x00000000, 0x000ff07e, 0x000ff07e },
{ 0x00000000, 0x000ff07f, 0x000ff07f },
{ 0x00000000, 0x00106ffd, 0x00106ffd },
{ 0x00000000, 0x00106ffe, 0x00106ffe },
{ 0x00000000, 0x00106fff, 0x00106fff },
{ 0x00000000, 0x33432333, 0x33432333 },
{ 0x00000000, 0x55654555, 0x55654555 },
{ 0x00000000, 0x800feffd, 0x800feffd },
{ 0x00000000, 0x800feffe, 0x800feffe },
{ 0x00000000, 0x800fefff, 0x800fefff },
{ 0x00000000, 0x800ff000, 0x800ff000 },
{ 0x00000000, 0x800ff001, 0x800ff001 },
{ 0x00000000, 0xaaba9aaa, 0xaaba9aaa },
{ 0x00000000, 0xccdcbccc, 0xccdcbccc },
{ 0x00000000, 0x000f7000, 0x000f7000 },
{ 0x00000000, 0x000f7001, 0x000f7001 },
{ 0x00000000, 0x000f7002, 0x000f7002 },
{ 0x00000000, 0x000f7003, 0x000f7003 },
{ 0x00000000, 0x000fef80, 0x000fef80 },
{ 0x00000000, 0x000fef81, 0x000fef81 },
{ 0x00000000, 0x000fef82, 0x000fef82 },
{ 0x00000000, 0x000fef83, 0x000fef83 },
{ 0x00000000, 0x000fefe0, 0x000fefe0 },
{ 0x00000000, 0x000feffd, 0x000feffd },
{ 0x00000000, 0x000feffe, 0x000feffe },
{ 0x00000000, 0x000fefff, 0x000fefff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0003fc00[] = {
{ 0x00000000, 0x0003fc00, 0x0003fc00 },
{ 0x00000000, 0x0003fc01, 0x0003fc01 },
{ 0x00000000, 0x0003fc02, 0x0003fc02 },
{ 0x00000000, 0x0003fc20, 0x0003fc20 },
{ 0x00000000, 0x0003fc7d, 0x0003fc7d },
{ 0x00000000, 0x0003fc7e, 0x0003fc7e },
{ 0x00000000, 0x0003fc7f, 0x0003fc7f },
{ 0x00000000, 0x00047bfd, 0x00047bfd },
{ 0x00000000, 0x00047bfe, 0x00047bfe },
{ 0x00000000, 0x00047bff, 0x00047bff },
{ 0x00000000, 0x33372f33, 0x33372f33 },
{ 0x00000000, 0x55595155, 0x55595155 },
{ 0x00000000, 0x8003fbfd, 0x8003fbfd },
{ 0x00000000, 0x8003fbfe, 0x8003fbfe },
{ 0x00000000, 0x8003fbff, 0x8003fbff },
{ 0x00000000, 0x8003fc00, 0x8003fc00 },
{ 0x00000000, 0x8003fc01, 0x8003fc01 },
{ 0x00000000, 0xaaaea6aa, 0xaaaea6aa },
{ 0x00000000, 0xccd0c8cc, 0xccd0c8cc },
{ 0x00000000, 0x00037c00, 0x00037c00 },
{ 0x00000000, 0x00037c01, 0x00037c01 },
{ 0x00000000, 0x00037c02, 0x00037c02 },
{ 0x00000000, 0x00037c03, 0x00037c03 },
{ 0x00000000, 0x0003fb80, 0x0003fb80 },
{ 0x00000000, 0x0003fb81, 0x0003fb81 },
{ 0x00000000, 0x0003fb82, 0x0003fb82 },
{ 0x00000000, 0x0003fb83, 0x0003fb83 },
{ 0x00000000, 0x0003fbe0, 0x0003fbe0 },
{ 0x00000000, 0x0003fbfd, 0x0003fbfd },
{ 0x00000000, 0x0003fbfe, 0x0003fbfe },
{ 0x00000000, 0x0003fbff, 0x0003fbff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0000ff00[] = {
{ 0x00000000, 0x0000ff00, 0x0000ff00 },
{ 0x00000000, 0x0000ff01, 0x0000ff01 },
{ 0x00000000, 0x0000ff02, 0x0000ff02 },
{ 0x00000000, 0x0000ff20, 0x0000ff20 },
{ 0x00000000, 0x0000ff7d, 0x0000ff7d },
{ 0x00000000, 0x0000ff7e, 0x0000ff7e },
{ 0x00000000, 0x0000ff7f, 0x0000ff7f },
{ 0x00000000, 0x00017efd, 0x00017efd },
{ 0x00000000, 0x00017efe, 0x00017efe },
{ 0x00000000, 0x00017eff, 0x00017eff },
{ 0x00000000, 0x33343233, 0x33343233 },
{ 0x00000000, 0x55565455, 0x55565455 },
{ 0x00000000, 0x8000fefd, 0x8000fefd },
{ 0x00000000, 0x8000fefe, 0x8000fefe },
{ 0x00000000, 0x8000feff, 0x8000feff },
{ 0x00000000, 0x8000ff00, 0x8000ff00 },
{ 0x00000000, 0x8000ff01, 0x8000ff01 },
{ 0x00000000, 0xaaaba9aa, 0xaaaba9aa },
{ 0x00000000, 0xcccdcbcc, 0xcccdcbcc },
{ 0x00000000, 0x00007f00, 0x00007f00 },
{ 0x00000000, 0x00007f01, 0x00007f01 },
{ 0x00000000, 0x00007f02, 0x00007f02 },
{ 0x00000000, 0x00007f03, 0x00007f03 },
{ 0x00000000, 0x0000fe80, 0x0000fe80 },
{ 0x00000000, 0x0000fe81, 0x0000fe81 },
{ 0x00000000, 0x0000fe82, 0x0000fe82 },
{ 0x00000000, 0x0000fe83, 0x0000fe83 },
{ 0x00000000, 0x0000fee0, 0x0000fee0 },
{ 0x00000000, 0x0000fefd, 0x0000fefd },
{ 0x00000000, 0x0000fefe, 0x0000fefe },
{ 0x00000000, 0x0000feff, 0x0000feff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00003fc0[] = {
{ 0x00000000, 0x00003fc0, 0x00003fc0 },
{ 0x00000000, 0x00003fc1, 0x00003fc1 },
{ 0x00000000, 0x00003fc2, 0x00003fc2 },
{ 0x00000000, 0x00003fe0, 0x00003fe0 },
{ 0x00000000, 0x0000403d, 0x0000403d },
{ 0x00000000, 0x0000403e, 0x0000403e },
{ 0x00000000, 0x0000403f, 0x0000403f },
{ 0x00000000, 0x0000bfbd, 0x0000bfbd },
{ 0x00000000, 0x0000bfbe, 0x0000bfbe },
{ 0x00000000, 0x0000bfbf, 0x0000bfbf },
{ 0x00000000, 0x333372f3, 0x333372f3 },
{ 0x00000000, 0x55559515, 0x55559515 },
{ 0x00000000, 0x80003fbd, 0x80003fbd },
{ 0x00000000, 0x80003fbe, 0x80003fbe },
{ 0x00000000, 0x80003fbf, 0x80003fbf },
{ 0x00000000, 0x80003fc0, 0x80003fc0 },
{ 0x00000000, 0x80003fc1, 0x80003fc1 },
{ 0x00000000, 0xaaaaea6a, 0xaaaaea6a },
{ 0x00000000, 0xcccd0c8c, 0xcccd0c8c },
{ 0x00000000, 0xffffbfc0, 0xffffbfc0 },
{ 0x00000000, 0xffffbfc1, 0xffffbfc1 },
{ 0x00000000, 0xffffbfc2, 0xffffbfc2 },
{ 0x00000000, 0xffffbfc3, 0xffffbfc3 },
{ 0x00000000, 0x00003f40, 0x00003f40 },
{ 0x00000000, 0x00003f41, 0x00003f41 },
{ 0x00000000, 0x00003f42, 0x00003f42 },
{ 0x00000000, 0x00003f43, 0x00003f43 },
{ 0x00000000, 0x00003fa0, 0x00003fa0 },
{ 0x00000000, 0x00003fbd, 0x00003fbd },
{ 0x00000000, 0x00003fbe, 0x00003fbe },
{ 0x00000000, 0x00003fbf, 0x00003fbf },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000ff0[] = {
{ 0x00000000, 0x00000ff0, 0x00000ff0 },
{ 0x00000000, 0x00000ff1, 0x00000ff1 },
{ 0x00000000, 0x00000ff2, 0x00000ff2 },
{ 0x00000000, 0x00001010, 0x00001010 },
{ 0x00000000, 0x0000106d, 0x0000106d },
{ 0x00000000, 0x0000106e, 0x0000106e },
{ 0x00000000, 0x0000106f, 0x0000106f },
{ 0x00000000, 0x00008fed, 0x00008fed },
{ 0x00000000, 0x00008fee, 0x00008fee },
{ 0x00000000, 0x00008fef, 0x00008fef },
{ 0x00000000, 0x33334323, 0x33334323 },
{ 0x00000000, 0x55556545, 0x55556545 },
{ 0x00000000, 0x80000fed, 0x80000fed },
{ 0x00000000, 0x80000fee, 0x80000fee },
{ 0x00000000, 0x80000fef, 0x80000fef },
{ 0x00000000, 0x80000ff0, 0x80000ff0 },
{ 0x00000000, 0x80000ff1, 0x80000ff1 },
{ 0x00000000, 0xaaaaba9a, 0xaaaaba9a },
{ 0x00000000, 0xccccdcbc, 0xccccdcbc },
{ 0x00000000, 0xffff8ff0, 0xffff8ff0 },
{ 0x00000000, 0xffff8ff1, 0xffff8ff1 },
{ 0x00000000, 0xffff8ff2, 0xffff8ff2 },
{ 0x00000000, 0xffff8ff3, 0xffff8ff3 },
{ 0x00000000, 0x00000f70, 0x00000f70 },
{ 0x00000000, 0x00000f71, 0x00000f71 },
{ 0x00000000, 0x00000f72, 0x00000f72 },
{ 0x00000000, 0x00000f73, 0x00000f73 },
{ 0x00000000, 0x00000fd0, 0x00000fd0 },
{ 0x00000000, 0x00000fed, 0x00000fed },
{ 0x00000000, 0x00000fee, 0x00000fee },
{ 0x00000000, 0x00000fef, 0x00000fef },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000003fc[] = {
{ 0x00000000, 0x000003fc, 0x000003fc },
{ 0x00000000, 0x000003fd, 0x000003fd },
{ 0x00000000, 0x000003fe, 0x000003fe },
{ 0x00000000, 0x0000041c, 0x0000041c },
{ 0x00000000, 0x00000479, 0x00000479 },
{ 0x00000000, 0x0000047a, 0x0000047a },
{ 0x00000000, 0x0000047b, 0x0000047b },
{ 0x00000000, 0x000083f9, 0x000083f9 },
{ 0x00000000, 0x000083fa, 0x000083fa },
{ 0x00000000, 0x000083fb, 0x000083fb },
{ 0x00000000, 0x3333372f, 0x3333372f },
{ 0x00000000, 0x55555951, 0x55555951 },
{ 0x00000000, 0x800003f9, 0x800003f9 },
{ 0x00000000, 0x800003fa, 0x800003fa },
{ 0x00000000, 0x800003fb, 0x800003fb },
{ 0x00000000, 0x800003fc, 0x800003fc },
{ 0x00000000, 0x800003fd, 0x800003fd },
{ 0x00000000, 0xaaaaaea6, 0xaaaaaea6 },
{ 0x00000000, 0xccccd0c8, 0xccccd0c8 },
{ 0x00000000, 0xffff83fc, 0xffff83fc },
{ 0x00000000, 0xffff83fd, 0xffff83fd },
{ 0x00000000, 0xffff83fe, 0xffff83fe },
{ 0x00000000, 0xffff83ff, 0xffff83ff },
{ 0x00000000, 0x0000037c, 0x0000037c },
{ 0x00000000, 0x0000037d, 0x0000037d },
{ 0x00000000, 0x0000037e, 0x0000037e },
{ 0x00000000, 0x0000037f, 0x0000037f },
{ 0x00000000, 0x000003dc, 0x000003dc },
{ 0x00000000, 0x000003f9, 0x000003f9 },
{ 0x00000000, 0x000003fa, 0x000003fa },
{ 0x00000000, 0x000003fb, 0x000003fb },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000000ab[] = {
{ 0x00000000, 0x000000ab, 0x000000ab },
{ 0x00000000, 0x000000ac, 0x000000ac },
{ 0x00000000, 0x000000ad, 0x000000ad },
{ 0x00000000, 0x000000cb, 0x000000cb },
{ 0x00000000, 0x00000128, 0x00000128 },
{ 0x00000000, 0x00000129, 0x00000129 },
{ 0x00000000, 0x0000012a, 0x0000012a },
{ 0x00000000, 0x000080a8, 0x000080a8 },
{ 0x00000000, 0x000080a9, 0x000080a9 },
{ 0x00000000, 0x000080aa, 0x000080aa },
{ 0x00000000, 0x333333de, 0x333333de },
{ 0x00000000, 0x55555600, 0x55555600 },
{ 0x00000000, 0x800000a8, 0x800000a8 },
{ 0x00000000, 0x800000a9, 0x800000a9 },
{ 0x00000000, 0x800000aa, 0x800000aa },
{ 0x00000000, 0x800000ab, 0x800000ab },
{ 0x00000000, 0x800000ac, 0x800000ac },
{ 0x00000000, 0xaaaaab55, 0xaaaaab55 },
{ 0x00000000, 0xcccccd77, 0xcccccd77 },
{ 0x00000000, 0xffff80ab, 0xffff80ab },
{ 0x00000000, 0xffff80ac, 0xffff80ac },
{ 0x00000000, 0xffff80ad, 0xffff80ad },
{ 0x00000000, 0xffff80ae, 0xffff80ae },
{ 0x00000000, 0x0000002b, 0x0000002b },
{ 0x00000000, 0x0000002c, 0x0000002c },
{ 0x00000000, 0x0000002d, 0x0000002d },
{ 0x00000000, 0x0000002e, 0x0000002e },
{ 0x00000000, 0x0000008b, 0x0000008b },
{ 0x00000000, 0x000000a8, 0x000000a8 },
{ 0x00000000, 0x000000a9, 0x000000a9 },
{ 0x00000000, 0x000000aa, 0x000000aa },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xc000002a[] = {
{ 0x00000000, 0xc000002a, 0xc000002a },
{ 0x00000000, 0xc000002b, 0xc000002b },
{ 0x00000000, 0xc000002c, 0xc000002c },
{ 0x00000000, 0xc000004a, 0xc000004a },
{ 0x00000000, 0xc00000a7, 0xc00000a7 },
{ 0x00000000, 0xc00000a8, 0xc00000a8 },
{ 0x00000000, 0xc00000a9, 0xc00000a9 },
{ 0x00000000, 0xc0008027, 0xc0008027 },
{ 0x00000000, 0xc0008028, 0xc0008028 },
{ 0x00000000, 0xc0008029, 0xc0008029 },
{ 0x00000000, 0xf333335d, 0xf333335d },
{ 0x00000000, 0x1555557f, 0x1555557f },
{ 0x00000000, 0x40000027, 0x40000027 },
{ 0x00000000, 0x40000028, 0x40000028 },
{ 0x00000000, 0x40000029, 0x40000029 },
{ 0x00000000, 0x4000002a, 0x4000002a },
{ 0x00000000, 0x4000002b, 0x4000002b },
{ 0x00000000, 0x6aaaaad4, 0x6aaaaad4 },
{ 0x00000000, 0x8cccccf6, 0x8cccccf6 },
{ 0x00000000, 0xbfff802a, 0xbfff802a },
{ 0x00000000, 0xbfff802b, 0xbfff802b },
{ 0x00000000, 0xbfff802c, 0xbfff802c },
{ 0x00000000, 0xbfff802d, 0xbfff802d },
{ 0x00000000, 0xbfffffaa, 0xbfffffaa },
{ 0x00000000, 0xbfffffab, 0xbfffffab },
{ 0x00000000, 0xbfffffac, 0xbfffffac },
{ 0x00000000, 0xbfffffad, 0xbfffffad },
{ 0x00000000, 0xc000000a, 0xc000000a },
{ 0x00000000, 0xc0000027, 0xc0000027 },
{ 0x00000000, 0xc0000028, 0xc0000028 },
{ 0x00000000, 0xc0000029, 0xc0000029 },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xb000000a[] = {
{ 0x00000000, 0xb000000a, 0xb000000a },
{ 0x00000000, 0xb000000b, 0xb000000b },
{ 0x00000000, 0xb000000c, 0xb000000c },
{ 0x00000000, 0xb000002a, 0xb000002a },
{ 0x00000000, 0xb0000087, 0xb0000087 },
{ 0x00000000, 0xb0000088, 0xb0000088 },
{ 0x00000000, 0xb0000089, 0xb0000089 },
{ 0x00000000, 0xb0008007, 0xb0008007 },
{ 0x00000000, 0xb0008008, 0xb0008008 },
{ 0x00000000, 0xb0008009, 0xb0008009 },
{ 0x00000000, 0xe333333d, 0xe333333d },
{ 0x00000000, 0x0555555f, 0x0555555f },
{ 0x00000000, 0x30000007, 0x30000007 },
{ 0x00000000, 0x30000008, 0x30000008 },
{ 0x00000000, 0x30000009, 0x30000009 },
{ 0x00000000, 0x3000000a, 0x3000000a },
{ 0x00000000, 0x3000000b, 0x3000000b },
{ 0x00000000, 0x5aaaaab4, 0x5aaaaab4 },
{ 0x00000000, 0x7cccccd6, 0x7cccccd6 },
{ 0x00000000, 0xafff800a, 0xafff800a },
{ 0x00000000, 0xafff800b, 0xafff800b },
{ 0x00000000, 0xafff800c, 0xafff800c },
{ 0x00000000, 0xafff800d, 0xafff800d },
{ 0x00000000, 0xafffff8a, 0xafffff8a },
{ 0x00000000, 0xafffff8b, 0xafffff8b },
{ 0x00000000, 0xafffff8c, 0xafffff8c },
{ 0x00000000, 0xafffff8d, 0xafffff8d },
{ 0x00000000, 0xafffffea, 0xafffffea },
{ 0x00000000, 0xb0000007, 0xb0000007 },
{ 0x00000000, 0xb0000008, 0xb0000008 },
{ 0x00000000, 0xb0000009, 0xb0000009 },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xac000002[] = {
{ 0x00000000, 0xac000002, 0xac000002 },
{ 0x00000000, 0xac000003, 0xac000003 },
{ 0x00000000, 0xac000004, 0xac000004 },
{ 0x00000000, 0xac000022, 0xac000022 },
{ 0x00000000, 0xac00007f, 0xac00007f },
{ 0x00000000, 0xac000080, 0xac000080 },
{ 0x00000000, 0xac000081, 0xac000081 },
{ 0x00000000, 0xac007fff, 0xac007fff },
{ 0x00000000, 0xac008000, 0xac008000 },
{ 0x00000000, 0xac008001, 0xac008001 },
{ 0x00000000, 0xdf333335, 0xdf333335 },
{ 0x00000000, 0x01555557, 0x01555557 },
{ 0x00000000, 0x2bffffff, 0x2bffffff },
{ 0x00000000, 0x2c000000, 0x2c000000 },
{ 0x00000000, 0x2c000001, 0x2c000001 },
{ 0x00000000, 0x2c000002, 0x2c000002 },
{ 0x00000000, 0x2c000003, 0x2c000003 },
{ 0x00000000, 0x56aaaaac, 0x56aaaaac },
{ 0x00000000, 0x78ccccce, 0x78ccccce },
{ 0x00000000, 0xabff8002, 0xabff8002 },
{ 0x00000000, 0xabff8003, 0xabff8003 },
{ 0x00000000, 0xabff8004, 0xabff8004 },
{ 0x00000000, 0xabff8005, 0xabff8005 },
{ 0x00000000, 0xabffff82, 0xabffff82 },
{ 0x00000000, 0xabffff83, 0xabffff83 },
{ 0x00000000, 0xabffff84, 0xabffff84 },
{ 0x00000000, 0xabffff85, 0xabffff85 },
{ 0x00000000, 0xabffffe2, 0xabffffe2 },
{ 0x00000000, 0xabffffff, 0xabffffff },
{ 0x00000000, 0xac000000, 0xac000000 },
{ 0x00000000, 0xac000001, 0xac000001 },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0xab000000[] = {
{ 0x00000000, 0xab000000, 0xab000000 },
{ 0x00000000, 0xab000001, 0xab000001 },
{ 0x00000000, 0xab000002, 0xab000002 },
{ 0x00000000, 0xab000020, 0xab000020 },
{ 0x00000000, 0xab00007d, 0xab00007d },
{ 0x00000000, 0xab00007e, 0xab00007e },
{ 0x00000000, 0xab00007f, 0xab00007f },
{ 0x00000000, 0xab007ffd, 0xab007ffd },
{ 0x00000000, 0xab007ffe, 0xab007ffe },
{ 0x00000000, 0xab007fff, 0xab007fff },
{ 0x00000000, 0xde333333, 0xde333333 },
{ 0x00000000, 0x00555555, 0x00555555 },
{ 0x00000000, 0x2afffffd, 0x2afffffd },
{ 0x00000000, 0x2afffffe, 0x2afffffe },
{ 0x00000000, 0x2affffff, 0x2affffff },
{ 0x00000000, 0x2b000000, 0x2b000000 },
{ 0x00000000, 0x2b000001, 0x2b000001 },
{ 0x00000000, 0x55aaaaaa, 0x55aaaaaa },
{ 0x00000000, 0x77cccccc, 0x77cccccc },
{ 0x00000000, 0xaaff8000, 0xaaff8000 },
{ 0x00000000, 0xaaff8001, 0xaaff8001 },
{ 0x00000000, 0xaaff8002, 0xaaff8002 },
{ 0x00000000, 0xaaff8003, 0xaaff8003 },
{ 0x00000000, 0xaaffff80, 0xaaffff80 },
{ 0x00000000, 0xaaffff81, 0xaaffff81 },
{ 0x00000000, 0xaaffff82, 0xaaffff82 },
{ 0x00000000, 0xaaffff83, 0xaaffff83 },
{ 0x00000000, 0xaaffffe0, 0xaaffffe0 },
{ 0x00000000, 0xaafffffd, 0xaafffffd },
{ 0x00000000, 0xaafffffe, 0xaafffffe },
{ 0x00000000, 0xaaffffff, 0xaaffffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x2ac00000[] = {
{ 0x00000000, 0x2ac00000, 0x2ac00000 },
{ 0x00000000, 0x2ac00001, 0x2ac00001 },
{ 0x00000000, 0x2ac00002, 0x2ac00002 },
{ 0x00000000, 0x2ac00020, 0x2ac00020 },
{ 0x00000000, 0x2ac0007d, 0x2ac0007d },
{ 0x00000000, 0x2ac0007e, 0x2ac0007e },
{ 0x00000000, 0x2ac0007f, 0x2ac0007f },
{ 0x00000000, 0x2ac07ffd, 0x2ac07ffd },
{ 0x00000000, 0x2ac07ffe, 0x2ac07ffe },
{ 0x00000000, 0x2ac07fff, 0x2ac07fff },
{ 0x00000000, 0x5df33333, 0x5df33333 },
{ 0x00000000, 0x80155555, 0x80155555 },
{ 0x00000000, 0xaabffffd, 0xaabffffd },
{ 0x00000000, 0xaabffffe, 0xaabffffe },
{ 0x00000000, 0xaabfffff, 0xaabfffff },
{ 0x00000000, 0xaac00000, 0xaac00000 },
{ 0x00000000, 0xaac00001, 0xaac00001 },
{ 0x00000000, 0xd56aaaaa, 0xd56aaaaa },
{ 0x00000000, 0xf78ccccc, 0xf78ccccc },
{ 0x00000000, 0x2abf8000, 0x2abf8000 },
{ 0x00000000, 0x2abf8001, 0x2abf8001 },
{ 0x00000000, 0x2abf8002, 0x2abf8002 },
{ 0x00000000, 0x2abf8003, 0x2abf8003 },
{ 0x00000000, 0x2abfff80, 0x2abfff80 },
{ 0x00000000, 0x2abfff81, 0x2abfff81 },
{ 0x00000000, 0x2abfff82, 0x2abfff82 },
{ 0x00000000, 0x2abfff83, 0x2abfff83 },
{ 0x00000000, 0x2abfffe0, 0x2abfffe0 },
{ 0x00000000, 0x2abffffd, 0x2abffffd },
{ 0x00000000, 0x2abffffe, 0x2abffffe },
{ 0x00000000, 0x2abfffff, 0x2abfffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0ab00000[] = {
{ 0x00000000, 0x0ab00000, 0x0ab00000 },
{ 0x00000000, 0x0ab00001, 0x0ab00001 },
{ 0x00000000, 0x0ab00002, 0x0ab00002 },
{ 0x00000000, 0x0ab00020, 0x0ab00020 },
{ 0x00000000, 0x0ab0007d, 0x0ab0007d },
{ 0x00000000, 0x0ab0007e, 0x0ab0007e },
{ 0x00000000, 0x0ab0007f, 0x0ab0007f },
{ 0x00000000, 0x0ab07ffd, 0x0ab07ffd },
{ 0x00000000, 0x0ab07ffe, 0x0ab07ffe },
{ 0x00000000, 0x0ab07fff, 0x0ab07fff },
{ 0x00000000, 0x3de33333, 0x3de33333 },
{ 0x00000000, 0x60055555, 0x60055555 },
{ 0x00000000, 0x8aaffffd, 0x8aaffffd },
{ 0x00000000, 0x8aaffffe, 0x8aaffffe },
{ 0x00000000, 0x8aafffff, 0x8aafffff },
{ 0x00000000, 0x8ab00000, 0x8ab00000 },
{ 0x00000000, 0x8ab00001, 0x8ab00001 },
{ 0x00000000, 0xb55aaaaa, 0xb55aaaaa },
{ 0x00000000, 0xd77ccccc, 0xd77ccccc },
{ 0x00000000, 0x0aaf8000, 0x0aaf8000 },
{ 0x00000000, 0x0aaf8001, 0x0aaf8001 },
{ 0x00000000, 0x0aaf8002, 0x0aaf8002 },
{ 0x00000000, 0x0aaf8003, 0x0aaf8003 },
{ 0x00000000, 0x0aafff80, 0x0aafff80 },
{ 0x00000000, 0x0aafff81, 0x0aafff81 },
{ 0x00000000, 0x0aafff82, 0x0aafff82 },
{ 0x00000000, 0x0aafff83, 0x0aafff83 },
{ 0x00000000, 0x0aafffe0, 0x0aafffe0 },
{ 0x00000000, 0x0aaffffd, 0x0aaffffd },
{ 0x00000000, 0x0aaffffe, 0x0aaffffe },
{ 0x00000000, 0x0aafffff, 0x0aafffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x02ac0000[] = {
{ 0x00000000, 0x02ac0000, 0x02ac0000 },
{ 0x00000000, 0x02ac0001, 0x02ac0001 },
{ 0x00000000, 0x02ac0002, 0x02ac0002 },
{ 0x00000000, 0x02ac0020, 0x02ac0020 },
{ 0x00000000, 0x02ac007d, 0x02ac007d },
{ 0x00000000, 0x02ac007e, 0x02ac007e },
{ 0x00000000, 0x02ac007f, 0x02ac007f },
{ 0x00000000, 0x02ac7ffd, 0x02ac7ffd },
{ 0x00000000, 0x02ac7ffe, 0x02ac7ffe },
{ 0x00000000, 0x02ac7fff, 0x02ac7fff },
{ 0x00000000, 0x35df3333, 0x35df3333 },
{ 0x00000000, 0x58015555, 0x58015555 },
{ 0x00000000, 0x82abfffd, 0x82abfffd },
{ 0x00000000, 0x82abfffe, 0x82abfffe },
{ 0x00000000, 0x82abffff, 0x82abffff },
{ 0x00000000, 0x82ac0000, 0x82ac0000 },
{ 0x00000000, 0x82ac0001, 0x82ac0001 },
{ 0x00000000, 0xad56aaaa, 0xad56aaaa },
{ 0x00000000, 0xcf78cccc, 0xcf78cccc },
{ 0x00000000, 0x02ab8000, 0x02ab8000 },
{ 0x00000000, 0x02ab8001, 0x02ab8001 },
{ 0x00000000, 0x02ab8002, 0x02ab8002 },
{ 0x00000000, 0x02ab8003, 0x02ab8003 },
{ 0x00000000, 0x02abff80, 0x02abff80 },
{ 0x00000000, 0x02abff81, 0x02abff81 },
{ 0x00000000, 0x02abff82, 0x02abff82 },
{ 0x00000000, 0x02abff83, 0x02abff83 },
{ 0x00000000, 0x02abffe0, 0x02abffe0 },
{ 0x00000000, 0x02abfffd, 0x02abfffd },
{ 0x00000000, 0x02abfffe, 0x02abfffe },
{ 0x00000000, 0x02abffff, 0x02abffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00ab0000[] = {
{ 0x00000000, 0x00ab0000, 0x00ab0000 },
{ 0x00000000, 0x00ab0001, 0x00ab0001 },
{ 0x00000000, 0x00ab0002, 0x00ab0002 },
{ 0x00000000, 0x00ab0020, 0x00ab0020 },
{ 0x00000000, 0x00ab007d, 0x00ab007d },
{ 0x00000000, 0x00ab007e, 0x00ab007e },
{ 0x00000000, 0x00ab007f, 0x00ab007f },
{ 0x00000000, 0x00ab7ffd, 0x00ab7ffd },
{ 0x00000000, 0x00ab7ffe, 0x00ab7ffe },
{ 0x00000000, 0x00ab7fff, 0x00ab7fff },
{ 0x00000000, 0x33de3333, 0x33de3333 },
{ 0x00000000, 0x56005555, 0x56005555 },
{ 0x00000000, 0x80aafffd, 0x80aafffd },
{ 0x00000000, 0x80aafffe, 0x80aafffe },
{ 0x00000000, 0x80aaffff, 0x80aaffff },
{ 0x00000000, 0x80ab0000, 0x80ab0000 },
{ 0x00000000, 0x80ab0001, 0x80ab0001 },
{ 0x00000000, 0xab55aaaa, 0xab55aaaa },
{ 0x00000000, 0xcd77cccc, 0xcd77cccc },
{ 0x00000000, 0x00aa8000, 0x00aa8000 },
{ 0x00000000, 0x00aa8001, 0x00aa8001 },
{ 0x00000000, 0x00aa8002, 0x00aa8002 },
{ 0x00000000, 0x00aa8003, 0x00aa8003 },
{ 0x00000000, 0x00aaff80, 0x00aaff80 },
{ 0x00000000, 0x00aaff81, 0x00aaff81 },
{ 0x00000000, 0x00aaff82, 0x00aaff82 },
{ 0x00000000, 0x00aaff83, 0x00aaff83 },
{ 0x00000000, 0x00aaffe0, 0x00aaffe0 },
{ 0x00000000, 0x00aafffd, 0x00aafffd },
{ 0x00000000, 0x00aafffe, 0x00aafffe },
{ 0x00000000, 0x00aaffff, 0x00aaffff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x002ac000[] = {
{ 0x00000000, 0x002ac000, 0x002ac000 },
{ 0x00000000, 0x002ac001, 0x002ac001 },
{ 0x00000000, 0x002ac002, 0x002ac002 },
{ 0x00000000, 0x002ac020, 0x002ac020 },
{ 0x00000000, 0x002ac07d, 0x002ac07d },
{ 0x00000000, 0x002ac07e, 0x002ac07e },
{ 0x00000000, 0x002ac07f, 0x002ac07f },
{ 0x00000000, 0x002b3ffd, 0x002b3ffd },
{ 0x00000000, 0x002b3ffe, 0x002b3ffe },
{ 0x00000000, 0x002b3fff, 0x002b3fff },
{ 0x00000000, 0x335df333, 0x335df333 },
{ 0x00000000, 0x55801555, 0x55801555 },
{ 0x00000000, 0x802abffd, 0x802abffd },
{ 0x00000000, 0x802abffe, 0x802abffe },
{ 0x00000000, 0x802abfff, 0x802abfff },
{ 0x00000000, 0x802ac000, 0x802ac000 },
{ 0x00000000, 0x802ac001, 0x802ac001 },
{ 0x00000000, 0xaad56aaa, 0xaad56aaa },
{ 0x00000000, 0xccf78ccc, 0xccf78ccc },
{ 0x00000000, 0x002a4000, 0x002a4000 },
{ 0x00000000, 0x002a4001, 0x002a4001 },
{ 0x00000000, 0x002a4002, 0x002a4002 },
{ 0x00000000, 0x002a4003, 0x002a4003 },
{ 0x00000000, 0x002abf80, 0x002abf80 },
{ 0x00000000, 0x002abf81, 0x002abf81 },
{ 0x00000000, 0x002abf82, 0x002abf82 },
{ 0x00000000, 0x002abf83, 0x002abf83 },
{ 0x00000000, 0x002abfe0, 0x002abfe0 },
{ 0x00000000, 0x002abffd, 0x002abffd },
{ 0x00000000, 0x002abffe, 0x002abffe },
{ 0x00000000, 0x002abfff, 0x002abfff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000ab000[] = {
{ 0x00000000, 0x000ab000, 0x000ab000 },
{ 0x00000000, 0x000ab001, 0x000ab001 },
{ 0x00000000, 0x000ab002, 0x000ab002 },
{ 0x00000000, 0x000ab020, 0x000ab020 },
{ 0x00000000, 0x000ab07d, 0x000ab07d },
{ 0x00000000, 0x000ab07e, 0x000ab07e },
{ 0x00000000, 0x000ab07f, 0x000ab07f },
{ 0x00000000, 0x000b2ffd, 0x000b2ffd },
{ 0x00000000, 0x000b2ffe, 0x000b2ffe },
{ 0x00000000, 0x000b2fff, 0x000b2fff },
{ 0x00000000, 0x333de333, 0x333de333 },
{ 0x00000000, 0x55600555, 0x55600555 },
{ 0x00000000, 0x800aaffd, 0x800aaffd },
{ 0x00000000, 0x800aaffe, 0x800aaffe },
{ 0x00000000, 0x800aafff, 0x800aafff },
{ 0x00000000, 0x800ab000, 0x800ab000 },
{ 0x00000000, 0x800ab001, 0x800ab001 },
{ 0x00000000, 0xaab55aaa, 0xaab55aaa },
{ 0x00000000, 0xccd77ccc, 0xccd77ccc },
{ 0x00000000, 0x000a3000, 0x000a3000 },
{ 0x00000000, 0x000a3001, 0x000a3001 },
{ 0x00000000, 0x000a3002, 0x000a3002 },
{ 0x00000000, 0x000a3003, 0x000a3003 },
{ 0x00000000, 0x000aaf80, 0x000aaf80 },
{ 0x00000000, 0x000aaf81, 0x000aaf81 },
{ 0x00000000, 0x000aaf82, 0x000aaf82 },
{ 0x00000000, 0x000aaf83, 0x000aaf83 },
{ 0x00000000, 0x000aafe0, 0x000aafe0 },
{ 0x00000000, 0x000aaffd, 0x000aaffd },
{ 0x00000000, 0x000aaffe, 0x000aaffe },
{ 0x00000000, 0x000aafff, 0x000aafff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0002ac00[] = {
{ 0x00000000, 0x0002ac00, 0x0002ac00 },
{ 0x00000000, 0x0002ac01, 0x0002ac01 },
{ 0x00000000, 0x0002ac02, 0x0002ac02 },
{ 0x00000000, 0x0002ac20, 0x0002ac20 },
{ 0x00000000, 0x0002ac7d, 0x0002ac7d },
{ 0x00000000, 0x0002ac7e, 0x0002ac7e },
{ 0x00000000, 0x0002ac7f, 0x0002ac7f },
{ 0x00000000, 0x00032bfd, 0x00032bfd },
{ 0x00000000, 0x00032bfe, 0x00032bfe },
{ 0x00000000, 0x00032bff, 0x00032bff },
{ 0x00000000, 0x3335df33, 0x3335df33 },
{ 0x00000000, 0x55580155, 0x55580155 },
{ 0x00000000, 0x8002abfd, 0x8002abfd },
{ 0x00000000, 0x8002abfe, 0x8002abfe },
{ 0x00000000, 0x8002abff, 0x8002abff },
{ 0x00000000, 0x8002ac00, 0x8002ac00 },
{ 0x00000000, 0x8002ac01, 0x8002ac01 },
{ 0x00000000, 0xaaad56aa, 0xaaad56aa },
{ 0x00000000, 0xcccf78cc, 0xcccf78cc },
{ 0x00000000, 0x00022c00, 0x00022c00 },
{ 0x00000000, 0x00022c01, 0x00022c01 },
{ 0x00000000, 0x00022c02, 0x00022c02 },
{ 0x00000000, 0x00022c03, 0x00022c03 },
{ 0x00000000, 0x0002ab80, 0x0002ab80 },
{ 0x00000000, 0x0002ab81, 0x0002ab81 },
{ 0x00000000, 0x0002ab82, 0x0002ab82 },
{ 0x00000000, 0x0002ab83, 0x0002ab83 },
{ 0x00000000, 0x0002abe0, 0x0002abe0 },
{ 0x00000000, 0x0002abfd, 0x0002abfd },
{ 0x00000000, 0x0002abfe, 0x0002abfe },
{ 0x00000000, 0x0002abff, 0x0002abff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0000ab00[] = {
{ 0x00000000, 0x0000ab00, 0x0000ab00 },
{ 0x00000000, 0x0000ab01, 0x0000ab01 },
{ 0x00000000, 0x0000ab02, 0x0000ab02 },
{ 0x00000000, 0x0000ab20, 0x0000ab20 },
{ 0x00000000, 0x0000ab7d, 0x0000ab7d },
{ 0x00000000, 0x0000ab7e, 0x0000ab7e },
{ 0x00000000, 0x0000ab7f, 0x0000ab7f },
{ 0x00000000, 0x00012afd, 0x00012afd },
{ 0x00000000, 0x00012afe, 0x00012afe },
{ 0x00000000, 0x00012aff, 0x00012aff },
{ 0x00000000, 0x3333de33, 0x3333de33 },
{ 0x00000000, 0x55560055, 0x55560055 },
{ 0x00000000, 0x8000aafd, 0x8000aafd },
{ 0x00000000, 0x8000aafe, 0x8000aafe },
{ 0x00000000, 0x8000aaff, 0x8000aaff },
{ 0x00000000, 0x8000ab00, 0x8000ab00 },
{ 0x00000000, 0x8000ab01, 0x8000ab01 },
{ 0x00000000, 0xaaab55aa, 0xaaab55aa },
{ 0x00000000, 0xcccd77cc, 0xcccd77cc },
{ 0x00000000, 0x00002b00, 0x00002b00 },
{ 0x00000000, 0x00002b01, 0x00002b01 },
{ 0x00000000, 0x00002b02, 0x00002b02 },
{ 0x00000000, 0x00002b03, 0x00002b03 },
{ 0x00000000, 0x0000aa80, 0x0000aa80 },
{ 0x00000000, 0x0000aa81, 0x0000aa81 },
{ 0x00000000, 0x0000aa82, 0x0000aa82 },
{ 0x00000000, 0x0000aa83, 0x0000aa83 },
{ 0x00000000, 0x0000aae0, 0x0000aae0 },
{ 0x00000000, 0x0000aafd, 0x0000aafd },
{ 0x00000000, 0x0000aafe, 0x0000aafe },
{ 0x00000000, 0x0000aaff, 0x0000aaff },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00002ac0[] = {
{ 0x00000000, 0x00002ac0, 0x00002ac0 },
{ 0x00000000, 0x00002ac1, 0x00002ac1 },
{ 0x00000000, 0x00002ac2, 0x00002ac2 },
{ 0x00000000, 0x00002ae0, 0x00002ae0 },
{ 0x00000000, 0x00002b3d, 0x00002b3d },
{ 0x00000000, 0x00002b3e, 0x00002b3e },
{ 0x00000000, 0x00002b3f, 0x00002b3f },
{ 0x00000000, 0x0000aabd, 0x0000aabd },
{ 0x00000000, 0x0000aabe, 0x0000aabe },
{ 0x00000000, 0x0000aabf, 0x0000aabf },
{ 0x00000000, 0x33335df3, 0x33335df3 },
{ 0x00000000, 0x55558015, 0x55558015 },
{ 0x00000000, 0x80002abd, 0x80002abd },
{ 0x00000000, 0x80002abe, 0x80002abe },
{ 0x00000000, 0x80002abf, 0x80002abf },
{ 0x00000000, 0x80002ac0, 0x80002ac0 },
{ 0x00000000, 0x80002ac1, 0x80002ac1 },
{ 0x00000000, 0xaaaad56a, 0xaaaad56a },
{ 0x00000000, 0xccccf78c, 0xccccf78c },
{ 0x00000000, 0xffffaac0, 0xffffaac0 },
{ 0x00000000, 0xffffaac1, 0xffffaac1 },
{ 0x00000000, 0xffffaac2, 0xffffaac2 },
{ 0x00000000, 0xffffaac3, 0xffffaac3 },
{ 0x00000000, 0x00002a40, 0x00002a40 },
{ 0x00000000, 0x00002a41, 0x00002a41 },
{ 0x00000000, 0x00002a42, 0x00002a42 },
{ 0x00000000, 0x00002a43, 0x00002a43 },
{ 0x00000000, 0x00002aa0, 0x00002aa0 },
{ 0x00000000, 0x00002abd, 0x00002abd },
{ 0x00000000, 0x00002abe, 0x00002abe },
{ 0x00000000, 0x00002abf, 0x00002abf },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000ab0[] = {
{ 0x00000000, 0x00000ab0, 0x00000ab0 },
{ 0x00000000, 0x00000ab1, 0x00000ab1 },
{ 0x00000000, 0x00000ab2, 0x00000ab2 },
{ 0x00000000, 0x00000ad0, 0x00000ad0 },
{ 0x00000000, 0x00000b2d, 0x00000b2d },
{ 0x00000000, 0x00000b2e, 0x00000b2e },
{ 0x00000000, 0x00000b2f, 0x00000b2f },
{ 0x00000000, 0x00008aad, 0x00008aad },
{ 0x00000000, 0x00008aae, 0x00008aae },
{ 0x00000000, 0x00008aaf, 0x00008aaf },
{ 0x00000000, 0x33333de3, 0x33333de3 },
{ 0x00000000, 0x55556005, 0x55556005 },
{ 0x00000000, 0x80000aad, 0x80000aad },
{ 0x00000000, 0x80000aae, 0x80000aae },
{ 0x00000000, 0x80000aaf, 0x80000aaf },
{ 0x00000000, 0x80000ab0, 0x80000ab0 },
{ 0x00000000, 0x80000ab1, 0x80000ab1 },
{ 0x00000000, 0xaaaab55a, 0xaaaab55a },
{ 0x00000000, 0xccccd77c, 0xccccd77c },
{ 0x00000000, 0xffff8ab0, 0xffff8ab0 },
{ 0x00000000, 0xffff8ab1, 0xffff8ab1 },
{ 0x00000000, 0xffff8ab2, 0xffff8ab2 },
{ 0x00000000, 0xffff8ab3, 0xffff8ab3 },
{ 0x00000000, 0x00000a30, 0x00000a30 },
{ 0x00000000, 0x00000a31, 0x00000a31 },
{ 0x00000000, 0x00000a32, 0x00000a32 },
{ 0x00000000, 0x00000a33, 0x00000a33 },
{ 0x00000000, 0x00000a90, 0x00000a90 },
{ 0x00000000, 0x00000aad, 0x00000aad },
{ 0x00000000, 0x00000aae, 0x00000aae },
{ 0x00000000, 0x00000aaf, 0x00000aaf },
};
const Inputs kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000002ac[] = {
{ 0x00000000, 0x000002ac, 0x000002ac },
{ 0x00000000, 0x000002ad, 0x000002ad },
{ 0x00000000, 0x000002ae, 0x000002ae },
{ 0x00000000, 0x000002cc, 0x000002cc },
{ 0x00000000, 0x00000329, 0x00000329 },
{ 0x00000000, 0x0000032a, 0x0000032a },
{ 0x00000000, 0x0000032b, 0x0000032b },
{ 0x00000000, 0x000082a9, 0x000082a9 },
{ 0x00000000, 0x000082aa, 0x000082aa },
{ 0x00000000, 0x000082ab, 0x000082ab },
{ 0x00000000, 0x333335df, 0x333335df },
{ 0x00000000, 0x55555801, 0x55555801 },
{ 0x00000000, 0x800002a9, 0x800002a9 },
{ 0x00000000, 0x800002aa, 0x800002aa },
{ 0x00000000, 0x800002ab, 0x800002ab },
{ 0x00000000, 0x800002ac, 0x800002ac },
{ 0x00000000, 0x800002ad, 0x800002ad },
{ 0x00000000, 0xaaaaad56, 0xaaaaad56 },
{ 0x00000000, 0xcccccf78, 0xcccccf78 },
{ 0x00000000, 0xffff82ac, 0xffff82ac },
{ 0x00000000, 0xffff82ad, 0xffff82ad },
{ 0x00000000, 0xffff82ae, 0xffff82ae },
{ 0x00000000, 0xffff82af, 0xffff82af },
{ 0x00000000, 0x0000022c, 0x0000022c },
{ 0x00000000, 0x0000022d, 0x0000022d },
{ 0x00000000, 0x0000022e, 0x0000022e },
{ 0x00000000, 0x0000022f, 0x0000022f },
{ 0x00000000, 0x0000028c, 0x0000028c },
{ 0x00000000, 0x000002a9, 0x000002a9 },
{ 0x00000000, 0x000002aa, 0x000002aa },
{ 0x00000000, 0x000002ab, 0x000002ab },
};
const TestResult kReferenceAdd[] = {
{
ARRAY_SIZE(kOutputs_Add_Condition_eq_r0_r0_0x000000ab),
kOutputs_Add_Condition_eq_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_ne_r0_r0_0x000000ab),
kOutputs_Add_Condition_ne_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_cs_r0_r0_0x000000ab),
kOutputs_Add_Condition_cs_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_cc_r0_r0_0x000000ab),
kOutputs_Add_Condition_cc_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_mi_r0_r0_0x000000ab),
kOutputs_Add_Condition_mi_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_pl_r0_r0_0x000000ab),
kOutputs_Add_Condition_pl_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_vs_r0_r0_0x000000ab),
kOutputs_Add_Condition_vs_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_vc_r0_r0_0x000000ab),
kOutputs_Add_Condition_vc_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_hi_r0_r0_0x000000ab),
kOutputs_Add_Condition_hi_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_ls_r0_r0_0x000000ab),
kOutputs_Add_Condition_ls_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_ge_r0_r0_0x000000ab),
kOutputs_Add_Condition_ge_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_lt_r0_r0_0x000000ab),
kOutputs_Add_Condition_lt_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_gt_r0_r0_0x000000ab),
kOutputs_Add_Condition_gt_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_le_r0_r0_0x000000ab),
kOutputs_Add_Condition_le_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_Condition_al_r0_r0_0x000000ab),
kOutputs_Add_Condition_al_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r4_r4_0x02ac0000),
kOutputs_Add_RdIsRn_al_r4_r4_0x02ac0000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r0_r0_0xf000000f),
kOutputs_Add_RdIsRn_al_r0_r0_0xf000000f,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r1_r1_0x00000ff0),
kOutputs_Add_RdIsRn_al_r1_r1_0x00000ff0,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r9_r9_0x0ff00000),
kOutputs_Add_RdIsRn_al_r9_r9_0x0ff00000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r14_r14_0xf000000f),
kOutputs_Add_RdIsRn_al_r14_r14_0xf000000f,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r1_r1_0x00ab0000),
kOutputs_Add_RdIsRn_al_r1_r1_0x00ab0000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r10_r10_0x00002ac0),
kOutputs_Add_RdIsRn_al_r10_r10_0x00002ac0,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r6_r6_0x0002ac00),
kOutputs_Add_RdIsRn_al_r6_r6_0x0002ac00,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r3_r3_0xac000002),
kOutputs_Add_RdIsRn_al_r3_r3_0xac000002,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsRn_al_r6_r6_0x00000ab0),
kOutputs_Add_RdIsRn_al_r6_r6_0x00000ab0,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r4_r10_0xac000002),
kOutputs_Add_RdIsNotRn_al_r4_r10_0xac000002,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r0_r4_0xc000003f),
kOutputs_Add_RdIsNotRn_al_r0_r4_0xc000003f,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r8_r0_0xc000003f),
kOutputs_Add_RdIsNotRn_al_r8_r0_0xc000003f,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r5_r0_0x00ab0000),
kOutputs_Add_RdIsNotRn_al_r5_r0_0x00ab0000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r8_r14_0x002ac000),
kOutputs_Add_RdIsNotRn_al_r8_r14_0x002ac000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r2_r11_0x0002ac00),
kOutputs_Add_RdIsNotRn_al_r2_r11_0x0002ac00,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r1_r0_0x0000ff00),
kOutputs_Add_RdIsNotRn_al_r1_r0_0x0000ff00,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r1_r7_0x003fc000),
kOutputs_Add_RdIsNotRn_al_r1_r7_0x003fc000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r11_r8_0x0ab00000),
kOutputs_Add_RdIsNotRn_al_r11_r8_0x0ab00000,
},
{
ARRAY_SIZE(kOutputs_Add_RdIsNotRn_al_r14_r12_0x3fc00000),
kOutputs_Add_RdIsNotRn_al_r14_r12_0x3fc00000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000000ff),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000000ff,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xc000003f),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xc000003f,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xf000000f),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xf000000f,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xfc000003),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xfc000003,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xff000000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xff000000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x3fc00000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x3fc00000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0ff00000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0ff00000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x03fc0000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x03fc0000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00ff0000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00ff0000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x003fc000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x003fc000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000ff000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000ff000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0003fc00),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0003fc00,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0000ff00),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0000ff00,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00003fc0),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00003fc0,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000ff0),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000ff0,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000003fc),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000003fc,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000000ab),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000000ab,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xc000002a),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xc000002a,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xb000000a),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xb000000a,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xac000002),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xac000002,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0xab000000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0xab000000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x2ac00000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x2ac00000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0ab00000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0ab00000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x02ac0000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x02ac0000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00ab0000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00ab0000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x002ac000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x002ac000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000ab000),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000ab000,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0002ac00),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0002ac00,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0000ab00),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x0000ab00,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00002ac0),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00002ac0,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000ab0),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x00000ab0,
},
{
ARRAY_SIZE(kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000002ac),
kOutputs_Add_ModifiedImmediate_al_r0_r0_0x000002ac,
},
};
#endif // VIXL_SIMULATOR_COND_RD_RN_OPERAND_CONST_ADD_A32_H_
|
ae3de9337448b0774e61498ecafd0559bac0c0d7
|
f614e877d61db5685c222d703bc2c9240294d956
|
/srcs/operations2.c
|
aad391a770a381b2fd4532a9a6b206cf26dab23d
|
[] |
no_license
|
efremzhenya/corewar
|
99d69a357e23a9fc6687262eeab758454ee8d14d
|
908bfd476b37d4c29778a57431638c32f0de332d
|
refs/heads/master
| 2023-03-05T04:08:10.464412 | 2021-02-07T00:46:15 | 2021-02-07T00:46:15 | 325,629,790 | 1 | 0 | null | 2021-01-28T21:00:07 | 2020-12-30T19:17:02 |
C
|
UTF-8
|
C
| false | false | 4,189 |
c
|
operations2.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* operations2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lseema <lseema@student.21-school.ru> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/01/05 23:04:29 by lseema #+# #+# */
/* Updated: 2021/01/24 00:27:40 by lseema ### ########.fr */
/* */
/* ************************************************************************** */
#include "corewar.h"
void op_and(t_corewar **corewar, t_carrage *carrage)
{
int offset;
int arg[2];
int i;
int reg;
i = 0;
offset = carrage->pc + sizeof(t_op_type) + sizeof(t_arg_type);
while (i < 2)
{
if (carrage->op_args[i] == T_REG)
arg[i] =
carrage->registers[read_byte((*corewar)->arena, offset) - 1];
else if (carrage->op_args[i] == T_IND)
arg[i] = read_int32((*corewar)->arena, carrage->pc
+ (read_int16((*corewar)->arena, offset) % IDX_MOD));
else
arg[i] = read_int32((*corewar)->arena, offset);
offset += get_arg_size(carrage->is_half_size_dir,
carrage->op_args[i++]);
}
reg = read_byte((*corewar)->arena, offset) - 1;
carrage->registers[reg] = arg[0] & arg[1];
carrage->carry = !(carrage->registers[reg]);
}
void op_or(t_corewar **corewar, t_carrage *carrage)
{
int offset;
int arg[2];
int i;
int reg;
i = 0;
offset = carrage->pc + sizeof(t_op_type) + sizeof(t_arg_type);
while (i < 2)
{
if (carrage->op_args[i] == T_REG)
arg[i] =
carrage->registers[read_byte((*corewar)->arena, offset) - 1];
else if (carrage->op_args[i] == T_IND)
arg[i] = read_int32((*corewar)->arena, carrage->pc
+ (read_int16((*corewar)->arena, offset) % IDX_MOD));
else
arg[i] = read_int32((*corewar)->arena, offset);
offset += get_arg_size(carrage->is_half_size_dir,
carrage->op_args[i++]);
}
reg = read_byte((*corewar)->arena, offset) - 1;
carrage->registers[reg] = arg[0] | arg[1];
carrage->carry = !(carrage->registers[reg]);
}
void op_xor(t_corewar **corewar, t_carrage *carrage)
{
int offset;
int arg[2];
int i;
int reg;
i = 0;
offset = carrage->pc + sizeof(t_op_type) + sizeof(t_arg_type);
while (i < 2)
{
if (carrage->op_args[i] == T_REG)
arg[i] =
carrage->registers[read_byte((*corewar)->arena, offset) - 1];
else if (carrage->op_args[i] == T_IND)
arg[i] = read_int32((*corewar)->arena, carrage->pc
+ (read_int16((*corewar)->arena, offset) % IDX_MOD));
else
arg[i] = read_int32((*corewar)->arena, offset);
offset += get_arg_size(carrage->is_half_size_dir,
carrage->op_args[i++]);
}
reg = read_byte((*corewar)->arena, offset) - 1;
carrage->registers[reg] = arg[0] ^ arg[1];
carrage->carry = !(carrage->registers[reg]);
}
void op_zjmp(t_corewar **corewar, t_carrage *carrage)
{
int offset;
offset = carrage->pc + sizeof(t_op_type);
if (carrage->carry)
carrage->pc = (carrage->pc + read_int16((*corewar)->arena, offset)
% IDX_MOD) % MEM_SIZE;
}
void op_ldi(t_corewar **corewar, t_carrage *carrage)
{
int offset;
int arg[3];
int i;
int reg;
offset = carrage->pc + sizeof(t_op_type) + sizeof(t_arg_type);
i = 0;
while (i < 2)
{
if (carrage->op_args[i] == T_REG)
arg[i] =
carrage->registers[read_byte((*corewar)->arena, offset) - 1];
else if (carrage->op_args[i] == T_IND)
arg[i] = read_int32((*corewar)->arena, carrage->pc
+ (read_int16((*corewar)->arena, offset) % IDX_MOD));
else
arg[i] = carrage->is_half_size_dir ?
read_int16((*corewar)->arena, offset) :
read_int32((*corewar)->arena, offset);
offset += get_arg_size(carrage->is_half_size_dir,
carrage->op_args[i++]);
}
reg = read_byte((*corewar)->arena, offset) - 1;
carrage->registers[reg] = read_int32((*corewar)->arena,
carrage->pc + (arg[0] + arg[1]) % IDX_MOD);
}
|
0e02074107973ad6e44b29b60f01d4f4e11a5b95
|
47dab2dc9e3a319702790c0d1bdda6d9601df934
|
/WD-Firmware/rtos/rtosal/api_inc/rtosal_config.h
|
3b167f7226a17980c7220dfec4524f3c75e9b3a1
|
[
"Apache-2.0"
] |
permissive
|
isabella232/riscv-fw-infrastructure
|
7e15b1c9bf74f905c69e3a2fad8c64b85d6a5224
|
a1164d5592c7e1b5a44fb56ec2d62f620f437a6c
|
refs/heads/master
| 2023-03-07T19:27:10.306158 | 2020-12-21T07:30:08 | 2020-12-21T07:30:08 | 333,727,166 | 0 | 0 |
Apache-2.0
| 2021-02-24T05:23:55 | 2021-01-28T10:43:08 | null |
UTF-8
|
C
| false | false | 1,484 |
h
|
rtosal_config.h
|
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright 2019 Western Digital Corporation or its affiliates.
*
* 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.
*/
/**
* @file rtosal_config.h
* @author Ronen Haen
* @date 21.01.2019
* @brief The file defines the RTOS AL configuration
*/
#ifndef __RTOSAL_CONFIG_H__
#define __RTOSAL_CONFIG_H__
#ifdef D_USE_FREERTOS
#define configSUPPORT_STATIC_ALLOCATION 1
#define configSUPPORT_DYNAMIC_ALLOCATION 0
/**
* include files
*/
#include "FreeRTOSConfig.h"
#elif D_USE_THREADX
#include "TBD: the root api"
#else
#error *** RTOSAL: undefined RTOS core (use D_USE_FREERTOS/D_USE_THREADX) ***
#endif /* #ifdef D_USE_FREERTOS */
/**
* definitions
*/
#ifdef D_USE_FREERTOS
#define D_RTOSAL_ERROR_CHECK 0
#elif D_USE_THREADX
#define D_RTOSAL_ERROR_CHECK TBD_TAKE_VAL_FROM_TX
#else
#error "Add appropriate RTOS definitions"
#endif /* #ifdef D_USE_FREERTOS */
#endif /* __RTOSAL_CONFIG_H__ */
|
304907e95263e463ad5b71d240131aab1c67eef9
|
3def8d72c0f0c00444806ae1d5a609c04a44b7a1
|
/main.c
|
e2d9a079e53d034c43d8320b7b46dfd566234662
|
[
"BSD-2-Clause"
] |
permissive
|
colemancda/limbo
|
187fa5e7ff3c7d85dee22372adefbcafe868f3a0
|
d170210cf7c4cdae68d3644444fda47149496370
|
refs/heads/main
| 2023-08-22T04:21:22.817648 | 2021-09-21T13:40:18 | 2021-09-30T01:39:58 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 13,847 |
c
|
main.c
|
/*
* Copyright © 2021 Keegan Saunders
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 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.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <asm/prctl.h>
#include <elf.h>
#include <errno.h>
#include <fcntl.h>
#include <mach/mach.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/auxv.h>
#include <sys/mman.h>
#include <sys/prctl.h>
#include <sys/random.h>
#include <ucontext.h>
#include <unistd.h>
#include "bsd/handler.h"
#include "commpage.h"
#include "linker.h"
#include "mdep/handler.h"
#include "osfmk/handler.h"
#include "shared_cache.h"
/* Never allow system calls from outside our binary region */
static const uint8_t selector = SYSCALL_DISPATCH_FILTER_BLOCK;
/* Temporary TLS for dyld */
static char dyld_ls[0x1000];
int arch_prctl(int, unsigned long);
static int commpage_mmap(void);
/*
* System calls in Darwin are split into classes, as follows:
* SYSCALL_CLASS_NONE 0 Invalid
* SYSCALL_CLASS_MACH 1 Mach
* SYSCALL_CLASS_UNIX 2 Unix/BSD
* SYSCALL_CLASS_MDEP 3 Machine-dependent
* SYSCALL_CLASS_DIAG 4 Diagnostics
*
* The system call number is the 24-bit left shift: (2 << 24) is to call
* SYSCALL_CLASS_UNIX
*/
#define SYSCALL_CLASS_NONE 0
#define SYSCALL_CLASS_MACH (1 << 24)
#define SYSCALL_CLASS_UNIX (2 << 24)
#define SYSCALL_CLASS_MDEP (3 << 24)
#define SYSCALL_CLASS_DIAG (4 << 24)
static void
handle_syscall(int sig, siginfo_t *info, void *ucontext)
{
ucontext_t *context = (ucontext_t *)ucontext;
greg_t *regs = context->uc_mcontext.gregs;
/*
* RDI, RSI, RDX, R10, R8, R9 and then spilling to the stack
*
* Presumably due to how the Linux system call trapping is implemented,
* the 7th argument lands on the 2nd slot of the stack (1st is LR)
*
* Returns in RAX
*/
uint64_t arg1 = regs[REG_RDI];
uint64_t arg2 = regs[REG_RSI];
uint64_t arg3 = regs[REG_RDX];
uint64_t arg4 = regs[REG_R10];
uint64_t arg5 = regs[REG_R8];
uint64_t arg6 = regs[REG_R9];
uint64_t *sp = (uint64_t *)regs[REG_RSP];
/* Remove all status flags */
regs[REG_EFL] = 0;
unsigned long syscall = info->si_syscall;
if (syscall >= SYSCALL_CLASS_MACH && syscall < SYSCALL_CLASS_UNIX) {
regs[REG_RAX] = sys_osfmk(syscall - SYSCALL_CLASS_MACH, arg1,
arg2, arg3, arg4, arg5, arg6, sp);
} else if (syscall >= SYSCALL_CLASS_UNIX
&& syscall < SYSCALL_CLASS_MDEP) {
regs[REG_RAX] = sys_bsd(syscall - SYSCALL_CLASS_UNIX, arg1,
arg2, arg3, arg4, arg5, arg6, sp);
} else if (syscall >= SYSCALL_CLASS_MDEP
&& syscall < SYSCALL_CLASS_DIAG) {
regs[REG_RAX] = sys_mdep(syscall - SYSCALL_CLASS_MDEP, arg1,
arg2, arg3, arg4, arg5, arg6, sp);
} else {
#ifdef ENABLE_STRACE
fprintf(stderr, ">> Missing system call: %#lx", syscall);
#endif
abort();
}
}
static unsigned long SYSINFO_EHDR;
static int
unmap_vdso(void)
{
unsigned long vdso = SYSINFO_EHDR;
unsigned long vvar = vdso - PAGE_SIZE * 4;
/* On Darwin, mappings overlap with the Linux [vdso] and [vvar] special
* mappings which are required for certain glibc functionality.
* By unmapping them, we free up the address space, but we also
* permanently break wrappers such as gettimeofday, etc.
*/
if (munmap((void *)vvar, PAGE_SIZE * 4) == -1) {
perror("munmap");
return 1;
}
if (munmap((void *)vdso, PAGE_SIZE * 2) == -1) {
perror("munmap");
return 1;
}
return 0;
}
int
stage2(int argc, char *argv[], char *envp[])
{
if (argc < 2) {
fprintf(stderr, "limbo: no path\n");
return 1;
}
if (unmap_vdso()) {
return 1;
}
/* Register a SIGSYS handler for trapping syscalls */
struct sigaction act;
sigset_t mask;
memset(&act, 0, sizeof(act));
sigemptyset(&mask);
act.sa_sigaction = handle_syscall;
act.sa_flags = SA_SIGINFO | SA_NODEFER;
act.sa_mask = mask;
if (sigaction(SIGSYS, &act, NULL) == -1) {
perror("sigaction");
goto error;
}
/* Map the shared cache into our memory space, persisted across fork()
*/
int cache_fd;
size_t cache_size;
void *cache = linker_mmap(
"/System/Library/dyld/dyld_shared_cache_x86_64",
&cache_size, &cache_fd);
if (cache == NULL) {
fprintf(stderr, "limbo: cannot read shared cache\n");
return 1;
}
shared_cache_mmap(cache, cache_fd);
if (shared_cache_start == NULL) {
fprintf(stderr,
"limbo: could not map and rebase shared "
"cache\n");
return 1;
}
close(cache_fd);
munmap(cache, cache_size);
/* Map the target executable and determine its interpreter */
const char *dylinker_path = NULL;
uint8_t *exe_base = linker_link(argv[1], &dylinker_path, NULL);
if (exe_base == NULL || dylinker_path == NULL) {
fprintf(stderr, "limbo: failed to load binary\n");
return 1;
}
/* Map the target executable's interpreter (dyld) */
uintptr_t entry = 0;
uint8_t *dyld_base = linker_link(dylinker_path, NULL, &entry);
if (dyld_base == NULL || entry == 0) {
fprintf(stderr,
"limbo: failed to load binary "
"interpreter\n");
return 1;
}
/* Set up the stack in the way that dyld expects */
char stack_guard[8];
char stack_guard_str[16 + 1] = {0};
if (getrandom(stack_guard, sizeof(stack_guard), GRND_NONBLOCK)
!= sizeof(stack_guard)) {
fprintf(stderr,
"limbo: failed to get random data for stack "
"guard\n");
goto error;
}
for (uint32_t i = 0; i < sizeof(stack_guard); i++) {
sprintf((char *)&stack_guard_str + i * 2, "%02x",
(unsigned char)stack_guard[i]);
}
stack_guard_str[16] = '\0';
/* Map 64mb of stack with MAP_GROWSDOWN so that the stack automatically
* grows down */
uintptr_t stack_base = (uintptr_t)mmap(
(void *)((uintptr_t)VM_USRSTACK64 - 64 * 1024 * 1024),
64 * 1024 * 1024, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_FIXED | MAP_ANON | MAP_GROWSDOWN, -1,
0);
if (stack_base == (uintptr_t)MAP_FAILED) {
perror("mmap");
}
stack_base = (uintptr_t)VM_USRSTACK64;
/* Set up the stack_guard= value */
unsigned long applev;
unsigned long applev0;
applev0 = applev = (stack_base
-= (strlen("stack_guard=") + sizeof(stack_guard_str)));
memcpy((void *)stack_base, "stack_guard=", strlen("stack_guard="));
memcpy((void *)(stack_base + strlen("stack_guard=")), stack_guard_str,
sizeof(stack_guard_str));
/* MUST HAVE 0x */
const char *junk = "ptr_munge=0x1337";
applev = (stack_base -= strlen(junk) + 1);
memcpy((void *)stack_base, junk, strlen(junk) + 1);
int envc;
for (envc = 0; envp[envc] != NULL; envc++)
;
int applec = 3;
int apple_argc = argc - 1; /* Do not include ./limbo in the argv */
stack_base -= (applec + 1) * sizeof(void *); /* Apple env pointers */
stack_base -= (envc + 1) * sizeof(void *); /* Env pointers */
stack_base -= (apple_argc + 1) * sizeof(void *); /* Arg pointers */
stack_base -= sizeof(long) * 2; /* Main frame */
/* TODO: Determine the correct alignment by consulting the XNU kernel
* sources */
stack_base = (stack_base & ~0xf);
unsigned long *sp = (unsigned long *)stack_base;
/* Main frame */
/* TODO: This is the default load address for echo, we need to figure
* out how to slide it */
*sp++ = (unsigned long)exe_base;
*sp++ = (unsigned long)apple_argc;
/* Arguments */
for (int i = 0; i < apple_argc; i++) {
/* +1 because we want to skip ./limbo */
*sp++ = (unsigned long)argv[i + 1];
}
*sp++ = 0; /* End of arguments */
/* Environment */
for (int i = 0; i < envc; i++) {
*sp++ = (unsigned long)envp[i];
}
*sp++ = 0; /* End of environment */
/* Apple environment */
*sp++ = (unsigned long)argv[1];
*sp++ = (unsigned long)applev0;
*sp++ = (unsigned long)applev;
*sp++ = 0; /* End of environment */
if (commpage_mmap()) {
goto error;
}
/* Set up the temporary zero-ed TLS storage for dyld */
memset(dyld_ls, 0, sizeof(dyld_ls));
arch_prctl(ARCH_SET_GS, (unsigned long)dyld_ls);
/* In the filldir$INODE64 routine in dyld, there is a reallocf(NULL,
* 0x1000) which doesn't check the NULL to avoid a memmove(dest, NULL,
* 0x1000). I really don't understand what is happening so the only
* conclusion I could draw is that the kernel maps a zeroed zero page.
* This requires a sysctl. If this is in fact the problem, then we
* should replace this with a userfaultfd and unregister it after dyld
* is done. sudo sysctl -w vm.mmap_min_addr=0 sudo setsebool
* mmap_low_allowed true */
if (mmap(NULL, 0x1000, PROT_READ, MAP_PRIVATE | MAP_ANON | MAP_FIXED,
-1, 0)
== MAP_FAILED) {
perror("limbo: cannot map zero page, ensure `sysctl -w "
"vm.mmap_min_addr=0' is set and SELinux is configured "
"`setsebool mmap_low_allowed true': mmap:");
goto error;
}
asm volatile("mov %0, %%rsp; jmp *%1" ::"r"(stack_base), "r"(entry));
__builtin_unreachable();
error:
exit(1);
}
static int
commpage_mmap(void)
{
void *commpage = mmap((void *)_COMM_PAGE_START_ADDRESS,
_COMM_PAGE_AREA_LENGTH, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_FIXED | MAP_ANON, -1, 0);
if (commpage == MAP_FAILED) {
perror("mmap");
return 1;
}
/* TODO: Initialize the entire commpage */
*(uint16_t *)_COMM_PAGE_VERSION = _COMM_PAGE_THIS_VERSION;
*(uint32_t *)_COMM_PAGE_NT_GENERATION = 1;
*(uint8_t *)_COMM_PAGE_ACTIVE_CPUS = 12;
*(uint8_t *)_COMM_PAGE_LOGICAL_CPUS = 24;
*(uint8_t *)_COMM_PAGE_PHYSICAL_CPUS = 12;
*(uint8_t *)_COMM_PAGE_USER_PAGE_SHIFT_64 = 12;
*(uint64_t *)_COMM_PAGE_MEMORY_SIZE = 17179869184;
return 0;
}
static ucontext_t stage0_context;
static ucontext_t stage1_context;
static ucontext_t stage2_context;
static char stage1_stack[0x1000];
static const uintptr_t STACK_BASE = 0x80000000;
static uint64_t stack_start;
static uint64_t stack_end;
static void
stage1(int argc, char *argv[], char *envp[])
{
uintptr_t stack_size = stack_end - stack_start;
if (mremap((void *)stack_start, stack_size, stack_size,
MREMAP_FIXED | MREMAP_MAYMOVE, STACK_BASE)
== MAP_FAILED) {
perror("mremap");
exit(1);
}
if (getcontext(&stage2_context)) {
perror("getcontext");
exit(1);
}
/* TODO: Set the stack pointer past the [envp] so that the data is not
* overwritten on entry */
stage2_context.uc_stack.ss_sp = (void *)(STACK_BASE - 0x8000);
stage2_context.uc_stack.ss_size = stack_size - 0x8000;
stage2_context.uc_link = &stage1_context;
char **sargv = (char **)(((uintptr_t)argv - stack_start) + STACK_BASE);
char **senvp = (char **)(((uintptr_t)envp - stack_start) + STACK_BASE);
for (int i = 0; i < argc; i++) {
*(uintptr_t *)&sargv[i] -= stack_start;
*(uintptr_t *)&sargv[i] += STACK_BASE;
}
for (char **env = senvp; *env; env++) {
*(uintptr_t *)env -= stack_start;
*(uintptr_t *)env += STACK_BASE;
}
makecontext(&stage2_context, (void (*)())(void *)stage2, 3, argc, sargv,
senvp);
if (swapcontext(&stage1_context, &stage2_context) == -1) {
perror("swapcontext");
}
exit(1);
}
int
main(int argc, char *argv[], char *envp[])
{
/* Enumerate the program headers of the executable to determine the
* region for which we should NOT trap all system calls */
Elf64_Phdr *phdrs = (Elf64_Phdr *)getauxval(AT_PHDR);
if (phdrs == NULL) {
perror("getauxval");
return 1;
}
unsigned long e_phnum = getauxval(AT_PHNUM);
if (e_phnum == 0) {
perror("getauxval");
return 1;
}
SYSINFO_EHDR = getauxval(AT_SYSINFO_EHDR);
if (SYSINFO_EHDR == 0) {
perror("getauxval");
return 1;
}
for (uint32_t i = 0; i < e_phnum; i++) {
Elf64_Phdr phdr = phdrs[i];
if (phdr.p_type == PT_LOAD && phdr.p_flags & PF_X) {
if (prctl(PR_SET_SYSCALL_USER_DISPATCH,
PR_SYS_DISPATCH_ON, phdr.p_vaddr,
phdr.p_memsz, &selector)) {
perror("prctl");
return 1;
}
}
}
/* Find beginning and end of the stack */
FILE *f = fopen("/proc/self/maps", "r");
if (f == NULL) {
perror("limbo: cannot open /proc/self/maps");
return 1;
}
char buffer[1024];
while (fgets(buffer, sizeof(buffer), f) != NULL) {
uint64_t start, end;
char mode[5];
uint32_t offset;
char device[8];
char inode[12];
char path[256];
sscanf(buffer, "%lx-%lx %4s %x %7s %11s %255s\n", &start, &end,
mode, &offset, device, inode, path);
if (!strncmp(path, "[stack]", sizeof(path))) {
stack_start = start;
stack_end = end;
}
}
fclose(f);
if (getcontext(&stage1_context)) {
perror("getcontext");
return 1;
}
stage1_context.uc_stack.ss_sp = stage1_stack;
stage1_context.uc_stack.ss_size = sizeof(stage1_stack);
stage1_context.uc_link = &stage0_context;
makecontext(&stage1_context, (void (*)())stage1, 3, argc, argv, envp);
if (swapcontext(&stage0_context, &stage1_context) == -1) {
perror("swapcontext");
}
__builtin_unreachable();
}
|
6695ba33e58d9460cbb88bf5b1066c2b6ff44092
|
39a3f92f71ede3522312675b12c23d219ae6d874
|
/OpenSSL/aes.h
|
185abb7f48b3edfe1edbd2ec80b48bd735ae1f6e
|
[] |
no_license
|
nlog2n/AES_in_C
|
b40278b427d19661b67670648e0473ba069435db
|
23e5887ca39dff9eb7d198a901120ebe313d9522
|
refs/heads/master
| 2021-01-10T21:10:45.790690 | 2015-08-14T08:26:18 | 2015-08-14T08:26:18 | 38,677,325 | 1 | 2 | null | null | null | null |
UTF-8
|
C
| false | false | 1,236 |
h
|
aes.h
|
#ifndef __CRYPTO_AES_H__
#define __CRYPTO_AES_H__
#ifdef __cplusplus
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////////////// AES Block
/* Because array size can't be a const in C, the following two are macros. Both sizes are in bytes. */
#define AES_Nr_MAX 14
#define AES_BLOCK_SIZE 16
////////////////////////////////////////// AES Round Key
/* This should be a hidden type, but EVP requires that the size be known */
struct aes_key_st {
unsigned int rd_key[4 *(AES_Nr_MAX + 1)];
int rounds;
};
typedef struct aes_key_st AES_KEY;
int AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key);
int AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key);
void Cipher(const unsigned char *in, unsigned char *out, const AES_KEY *key);
void InvCipher(const unsigned char *in, unsigned char *out, const AES_KEY *key);
void AES128_encrypt_block( const unsigned char* inBlock, unsigned char* outBlock, const unsigned char* key128);
void AES128_decrypt_block( const unsigned char* inBlock, unsigned char* outBlock, const unsigned char* key128);
#ifdef __cplusplus
}
#endif
#endif /* !__CRYPTO_AES_H__ */
|
3a144a3c5087088644f389dd7e000f2f86711d39
|
4468acb148385bb41f746da0d394f18a60149a98
|
/Example/Pods/Headers/Public/WDZSDK/WDZRemotepatatrolPresetViewController.h
|
6cefe2db03dc3b72f02f3d0eadd0c5a7d12d6b9c
|
[
"MIT"
] |
permissive
|
DanielOYC/WDZSDK
|
4d31495833b847189e54bdb60a4e85addd93d1a6
|
6ef97eabfd0e9094b857a87a563b8029db04b0e5
|
refs/heads/master
| 2020-06-02T22:52:05.311763 | 2019-08-29T01:07:21 | 2019-08-29T01:07:21 | 191,333,563 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 77 |
h
|
WDZRemotepatatrolPresetViewController.h
|
../../../../../WDZSDK/Classes/headers/WDZRemotepatatrolPresetViewController.h
|
5de7d6eb5aefe0648fbbf129c87dbf5844c77297
|
9439cfae8bdd8b450ab6f2115f59401afcc7a6ce
|
/filters/firLP.h
|
7d705b8aa968f426dc2cd413c28dd1ebb1fe4da8
|
[] |
no_license
|
HenryDore/ns2pi
|
2d69656fa76195757975e0c80ca468fc73c37a22
|
7963cd9385576544efbf07cfabd9a92c8687bcb0
|
refs/heads/master
| 2021-01-05T16:00:24.911677 | 2020-02-21T16:20:22 | 2020-02-21T16:20:22 | 241,067,132 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,741 |
h
|
firLP.h
|
/******************************* SOURCE LICENSE *********************************
Copyright (c) 2019 MicroModeler.
A non-exclusive, nontransferable, perpetual, royalty-free license is granted to the Licensee to
use the following Information for academic, non-profit, or government-sponsored research purposes.
Use of the following Information under this License is restricted to NON-COMMERCIAL PURPOSES ONLY.
Commercial use of the following Information requires a separately executed written license agreement.
This Information is distributed WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
******************************* END OF LICENSE *********************************/
// A commercial license for MicroModeler DSP can be obtained at http://www.micromodeler.com/launch.jsp
// Begin header file, firLP.h
#ifndef FIRLP_H_ // Include guards
#define FIRLP_H_
static const int firLP_length = 24;
extern float firLP_coefficients[24];
typedef struct
{
float* pointer;
float state[48];
float output;
} firLPType;
firLPType* firLP_create(void);
void firLP_destroy(firLPType* pObject);
void firLP_init(firLPType* pThis);
void firLP_reset(firLPType* pThis);
#define firLP_writeInput( pThis, input ) \
firLP_filterBlock( pThis, &(input), &(pThis)->output, 1 );
#define firLP_readOutput( pThis ) \
(pThis)->output
int firLP_filterBlock(firLPType* pThis, float* pInput, float* pOutput, unsigned int count);
#define firLP_outputToFloat( output ) \
(output)
#define firLP_inputFromFloat( input ) \
(input)
void firLP_dotProduct(float* pInput, float* pKernel, float* pAccumulator, short count);
#endif // FIRLP_H_
|
37ca380e448780099fb8cd4e63ed017062be3126
|
443414e1cf72a80039ff28f5883c7ba7885279a0
|
/Pebble (watch app)/flashcards/src/main.c
|
910f17cc147befecc7054c1716e3a15b5a364b6c
|
[] |
no_license
|
walshyb/Flashcards-For-Pebble
|
58ded92288806da7e2eefa926cd2089a43aec2fb
|
17bd8a3d7041f4cc95314e85e5a9c0c48f387e8d
|
refs/heads/master
| 2021-05-04T11:55:32.161865 | 2017-04-21T16:39:52 | 2017-04-21T16:39:52 | 32,952,444 | 1 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 10,516 |
c
|
main.c
|
#include "pebble.h"
#include "main.h"
#define NUM_MENU_SECTIONS 2
uint16_t num_of_items = 0;
bool no_items;
//How many sections
static uint16_t menu_get_num_sections_callback(MenuLayer *menu_layer, void *data){
return NUM_MENU_SECTIONS;
}
//how many items per section
static uint16_t menu_get_num_rows_callback(MenuLayer *menu_layer, uint16_t section_index, void *data){
switch (section_index) {
case 0:
return num_of_items;
case 1:
return 1;
default:
return 0;
}
}
//Height of menu
static int16_t menu_get_header_height_callback(MenuLayer *menu_layer, uint16_t section_index, void *data){
return MENU_CELL_BASIC_HEADER_HEIGHT;
}
//Fill in section titles
static void menu_draw_header_callback(GContext* ctx, const Layer *cell_layer, uint16_t section_index, void *data){
switch (section_index) {
case 0:
// Draw title text in the section header
menu_cell_basic_header_draw(ctx, cell_layer, "Decks");
break;
case 1:
menu_cell_basic_header_draw(ctx, cell_layer, "Add New Deck");
break;
}
}
//Display meny items
static void menu_draw_row_callback(GContext* ctx, const Layer *cell_layer, MenuIndex *cell_index, void *data){
if(no_items == true){ //if there are no decks
switch(cell_index->section){
case 0:
switch(cell_index->row){
case 0:
menu_cell_title_draw(ctx, cell_layer, "No Decks");
break;
}
break;
case 1:
switch (cell_index->row) {
case 0:
// There is title draw for something more simple than a basic menu item
menu_cell_basic_draw(ctx, cell_layer, "Add Deck", "From phone app", NULL);
break;
}
break;
}
}
else
{
switch(cell_index->section){
case 0:
switch(cell_index->row){
case 0:
menu_cell_title_draw(ctx, cell_layer, "Deck");
break;
}
break;
case 1:
switch (cell_index->row) {
case 0:
// There is title draw for something more simple than a basic menu item
menu_cell_basic_draw(ctx, cell_layer, "Add Deck", "From phone app", NULL);
break;
}
break;
}
}
}
//Received deck from iOS
/*
TODO:
add prompt that asks if user would like to add deck to pebble
*/
static void inbox_received_callback(DictionaryIterator *iterator, void *context) {
window_destroy(main_menu_window);
main_menu_window = window_create();
TextLayer *text_layer = text_layer_create(GRect(0, 0, 144, 154));
// Get the first pair
Tuple *t = dict_read_first(iterator);
// Process all pairs present
while(t != NULL) {
// Process this pair's key
switch (t->key) {
case 5:
//APP_LOG(APP_LOG_LEVEL_INFO, "KEY_DATA received with value %d", (int)t->value->int32);
text_layer_set_text(text_layer, t->value->cstring);
break;
default:
//APP_LOG(APP_LOG_LEVEL_INFO, "KEY_DATA received with value %d", (int)t->value->int32);
text_layer_set_text(text_layer, t->value->cstring);
break;
}
// Get next pair, if any
t = dict_read_next(iterator);
}
text_layer_set_font(text_layer, fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD));
text_layer_set_text_alignment(text_layer, GTextAlignmentCenter);
layer_add_child(window_get_root_layer(main_menu_window), text_layer_get_layer(text_layer));
window_stack_push(main_menu_window, true);
}
//I don't know
void sync_error_callback(DictionaryResult dict_error, AppMessageResult app_message_error, void *context) {
window_destroy(main_menu_window);
main_menu_window = window_create();
TextLayer *text_layer = text_layer_create(GRect(0, 0, 144, 154));
text_layer_set_text(text_layer, "Sync error callback");
text_layer_set_font(text_layer, fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD));
text_layer_set_text_alignment(text_layer, GTextAlignmentCenter);
layer_add_child(window_get_root_layer(main_menu_window), text_layer_get_layer(text_layer));
window_stack_push(main_menu_window, true);
}
//Receive failed
static void inbox_dropped_callback(AppMessageResult reason, void *context) {
window_destroy(main_menu_window);
main_menu_window = window_create();
TextLayer *text_layer = text_layer_create(GRect(0, 0, 144, 154));
text_layer_set_text(text_layer, "inbox dropped the base");
text_layer_set_font(text_layer, fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD));
text_layer_set_text_alignment(text_layer, GTextAlignmentCenter);
layer_add_child(window_get_root_layer(main_menu_window), text_layer_get_layer(text_layer));
window_stack_push(main_menu_window, true);
}
//Main Window Load
static void add_deck_window_load(Window *window){
Layer *window_layer = window_get_root_layer(window);
GRect bounds = layer_get_frame(window_layer);
if (bluetooth_connection_service_peek())
{
display_layer = text_layer_create(GRect(0, 0, 144, 154));
text_layer_set_text(display_layer, "Connected to phone.");
//text_layer_set_font(display_layer, fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD)); //enable to make larger title
text_layer_set_text_alignment(display_layer, GTextAlignmentCenter); //center message
layer_add_child(window_get_root_layer(add_deck_window), text_layer_get_layer(display_layer));
display_layer = text_layer_create(GRect(0, 0, 144, 154));
text_layer_set_text(display_layer, "Connected to phone!\nPlease select the deck you wish to have added to your Pebble from the iOS Companion App, 'Flashcards for Pebble' and click the share icon in the app's navigation bar.");
text_layer_set_text_alignment(display_layer, GTextAlignmentCenter); //center message
layer_add_child(window_get_root_layer(add_deck_window), text_layer_get_layer(display_layer));
}
else
{
display_layer = text_layer_create(GRect(0, 0, 144, 154));
text_layer_set_text(display_layer, "Not connected to phone.\nPlease ensure that you have bluetooth enabled on your phone and on your Pebble.");
text_layer_set_text_alignment(display_layer, GTextAlignmentCenter);
layer_add_child(window_get_root_layer(add_deck_window), text_layer_get_layer(display_layer));
}
}
//When main window unloads
static void add_deck_window_unload(Window *window) {
text_layer_destroy(display_layer);
window_destroy(add_deck_window);
}
//Open new window and display whether connected to phone
static void createAddDeckWindow()
{
add_deck_window = window_create();
window_set_window_handlers(add_deck_window, (WindowHandlers) {
.load = add_deck_window_load,
.unload = add_deck_window_unload,
});
window_stack_push(add_deck_window, true);
}
//Handles option select
static void menu_select_callback(MenuLayer *menu_layer, MenuIndex *cell_index, void *data) {
// Use the row to specify which item will receive the select action
switch (cell_index->section) {
// This is the menu item with the cycling icon
case 0:
switch (cell_index->row) {
case 0:
APP_LOG(APP_LOG_LEVEL_DEBUG, "0");
break;
case 1:
APP_LOG(APP_LOG_LEVEL_DEBUG, "1");
break;
}
break;
case 1:
APP_LOG(APP_LOG_LEVEL_DEBUG, "default");
createAddDeckWindow();
break;
}
}
//Main Window Load
static void main_window_load(Window *window){
Layer *window_layer = window_get_root_layer(window);
GRect bounds = layer_get_frame(window_layer);
main_menu_layer = menu_layer_create(bounds);
menu_layer_set_callbacks(main_menu_layer, NULL, (MenuLayerCallbacks){
.get_num_sections = menu_get_num_sections_callback,
.get_num_rows = menu_get_num_rows_callback,
.get_header_height = menu_get_header_height_callback,
.draw_header = menu_draw_header_callback,
.draw_row = menu_draw_row_callback,
.select_click = menu_select_callback,
});
// Bind the menu layer's click config provider to the window for interactivity
menu_layer_set_click_config_onto_window(main_menu_layer, window);
layer_add_child(window_layer, menu_layer_get_layer(main_menu_layer));
}
//When main window unloads
static void main_window_unload(Window *window) {
// Destroy the menu layer
menu_layer_destroy(main_menu_layer);
/*main_menu_window = window_create();
window_set_window_handlers(main_menu_window, (WindowHandlers) {
.load = main_window_load,
.unload = main_window_unload,
});
window_stack_push(main_menu_window, true);*/
}
//Creates Menu of Decks
static void createDeckSelectWindow()
{
if (persist_exists(1)) //if decks exist
{
persist_read_data(1, decks, sizeof(decks));
num_of_items = sizeof(decks);
}
else
{
num_of_items = 1;
no_items = true;
main_menu_window = window_create();
window_set_window_handlers(main_menu_window, (WindowHandlers) {
.load = main_window_load,
.unload = main_window_unload,
});
window_stack_push(main_menu_window, true);
}
}
static void init() {
int inbound_size = app_message_inbox_size_maximum();
int outbound_size = app_message_outbox_size_maximum();
app_message_register_inbox_received(inbox_received_callback);
app_message_register_inbox_dropped(inbox_dropped_callback);
// Open AppMessage
app_message_open(app_message_inbox_size_maximum(), app_message_outbox_size_maximum());
//Create menu of decks
createDeckSelectWindow();
}
static void deinit() {
window_destroy(main_menu_window);
}
int main(void) {
init();
app_event_loop();
deinit();
}
|
fc6f011142f88346b184f3a8213434ad16d16c6f
|
64a0fac4aea50ea33d5b21f52a9fc1c81cc67484
|
/dbgagents/trkagent/app/s60/TrkUids.h
|
5a30fcffcdbc9455f45c4b93cd5a0067f64bda3f
|
[] |
no_license
|
fedor4ever/devicedbgsrvs
|
904f6802509dc3ab2a2f1b29de055e764895ad6a
|
0ca44f0d4d94848ffd716b8ae7a50cb56dc7905b
|
refs/heads/master
| 2021-01-23T06:55:27.545174 | 2015-04-12T11:53:57 | 2015-04-12T11:53:57 | 33,689,383 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 750 |
h
|
TrkUids.h
|
/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/
#ifndef __TrkUids_h__
#define __TrkUids_h__
#include <e32uid.h>
// application uid
const TUid KUidTrk = { 0x200170BB };
// main application view uid
const TUid KUidTrkAppView = { 1 };
// settings view uid
const TUid KUidTrkConnSettingsView = { 2 };
#endif // __TrkUids_h__
|
b0cb88b8a9c9571e8ebe2683bb6b552f3b053cdc
|
d05449ea6ff67e6d34b055cca7d836ff05e11ab6
|
/proj5/part3/rpi/local/include/tasks.h
|
ad8dbb295e5014a83c472dcf5146ebc4c3b5ec7c
|
[] |
no_license
|
erikleffler/RU-T-738-EMBE-embedded-systems
|
bd5235345bd9c0b13e165c554601706b069114da
|
d66052d01e8fd433b61a5ed7d2726d036c5aa7ee
|
refs/heads/master
| 2023-01-03T17:44:46.164717 | 2020-11-02T13:17:50 | 2020-11-02T13:17:50 | 290,227,671 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 362 |
h
|
tasks.h
|
#ifndef _TASKS_H_
#define _TASKS_H_
#include <pthread.h>
#include "modbus.h"
typedef struct serial_thread_data_t {
uint16_t *analog_val;
uint8_t device_address;
int fd;
uint8_t exit_request;
} serial_thread_data_t;
extern pthread_mutex_t serial_mutex;
void *writeAnalogTask(void *arg);
void *readAnalogTask(void *arg);
#endif // _TASKS_H_
|
78c804273355395b65baffa8fc22136967b85866
|
8835eb13ecc215580fb8c0fc69c2d3f2b900eb3d
|
/emXGUI_GD32VF103/Module/Inc/x_file.h
|
7f65b0a14eea359d19dda4e26faac211bea908d4
|
[] |
no_license
|
Embedfire-gd32/ebf_gd32vf103_code
|
990ffd99ebd0ee058b9f748214eda6e1a17e83e4
|
90e4ccef514d32f6300a860bc21d7e0bc56aed0d
|
refs/heads/master
| 2022-09-17T09:04:03.625919 | 2020-05-09T03:04:27 | 2020-05-09T03:04:49 | 262,477,665 | 2 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,431 |
h
|
x_file.h
|
#ifndef __X_FILE_H__
#define __X_FILE_H__
#ifdef __cplusplus
extern "C"{
#endif
#include "def.h"
#include "Kernel.h"
/*===================================================================================*/
#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2
typedef struct _X_FILE X_FILE;
X_FILE* x_fopen(const char *filename, const char *mode);
long x_fread(void *buffer,long size, long count, X_FILE *fp);
long x_fwrite(const void *buffer,long size, long count, X_FILE *fp);
int x_fseek(X_FILE *fp, long offset, int whence);
unsigned long x_ftell(X_FILE *fp);
unsigned long x_fsize(X_FILE *fp);
int x_feof(X_FILE *fp);
int x_fflush(X_FILE *fp);
int x_fclose(X_FILE *fp);
int x_remove(const char *filename);
/*===================================================================================*/
typedef enum {
SCAN_EXIT =0,
SCAN_NEXT,
SCAN_DIR,
}eFILESCAN_CMD;
typedef eFILESCAN_CMD cbFileScan(const char *fpath,const char *fname,struct dir_info *d_info,const void* pdata);
typedef struct scan_dir_data
{
char *path_buf;
int path_buf_bytes;
char *fname_buf;
int fname_buf_bytes;
cbFileScan *callback;
const void *pdata;
struct dir_info d_info;
//eFILESCAN_CMD scan_cmd;
}scan_dir_data_t;
void x_file_scan(scan_dir_data_t *scan_data);
/*===================================================================================*/
#ifdef __cplusplus
}
#endif
#endif
|
a8120d1820af124f367a301a9c037dd43830399b
|
355bb415268ca2d6c8578460f310993b4d04a073
|
/ft_printf/src/float_maker.c
|
c30ba93b9f3e277ed44f2acc18c4f70a716a9c2f
|
[] |
no_license
|
fishow36/lem-in
|
fae93e7c9f29136070fba84e1fe80529e1dab441
|
b2af133eb263eebd2eb520ab72b9babe6b20013a
|
refs/heads/master
| 2022-12-15T18:59:48.303156 | 2020-09-03T10:31:38 | 2020-09-03T10:31:38 | 284,809,816 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,969 |
c
|
float_maker.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* float_maker.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: emaveric <emaveric@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/27 16:52:42 by emaveric #+# #+# */
/* Updated: 2020/07/30 11:54:23 by eshor ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/ft_printf.h"
char *add_null(t_pf *pf, t_float *fl, int what)
{
unsigned long long i;
i = 0;
if (what == 1)
while (*(fl->scnd + i) != '\0')
i++;
while (i < (unsigned long long)pf->precision)
{
*(fl->scnd + i) = 48;
i += 1;
}
*(fl->scnd + i) = '\0';
return (fl->scnd);
}
char *rounding(long double num, unsigned long long i,
t_float *fl, int prec)
{
int precsn;
precsn = prec;
if ((num) < 0.1 && num != 0 && i < (unsigned long long)prec)
{
*((fl->scnd) + i) = '0';
i += 1;
rounding(num * 10 + ft_pow_double(0.1, precsn), i,
fl, prec--);
}
return (fl->scnd);
}
void fill_char_from_int(unsigned long long what, char *where)
{
int i;
i = (int)ft_len_of_number(what);
*(where + i) = '\0';
i -= 1;
while (what && i >= 0)
{
*(where + i) = (char)((what % 10) + 48);
i--;
what = what / 10;
}
}
char *make_decimal(t_float *fl, t_pf *pf)
{
if (pf->precision > 0)
{
if (pf->precision < 19)
fl->second = (fl->second % 10 > 4) ? (fl->second / 10 + 1)
: (fl->second / 10);
if (fl->second == 0)
return (fl->scnd);
if (!(fl->tmp = ft_memalloc(ft_len_of_number(fl->second) + 1)))
return (NULL);
fill_char_from_int(fl->second, fl->tmp);
fl->scnd = pf_strcpy(fl->scnd, fl->tmp, ft_strlen(fl->scnd));
return (fl->scnd);
}
return (fl->scnd);
}
void real_rounding(t_float *fl, t_pf *pf, long double num)
{
fl->flag = 0;
if (pf->precision == 0)
{
if (*(fl->scnd) == 53 && (num - fl->first) >= 0.5)
(((fl->first) % 2 == 0 && (num - fl->first) <= 0.5) ? 0
: ((fl->first += 1) && (fl->flag = 1)));
if (fl->flag == 1)
{
free(fl->frst);
fl->frst = pf_itoa(fl->first);
}
else
((*(fl->scnd) > 52) ? (fl->first += 1) &&
(fl->frst = pf_itoa(fl->first)) : 0);
}
else if ((pf->precision == 1 && (*(fl->scnd + 1) == '0'))
|| ((fl->second % 10) > 0 && (*(fl->scnd + 1) == '0') && fl->tmp == NULL) ||
((*(fl->scnd + 1) == '0') && (num - fl->first > 0.901)))
{
fl->first += 1;
fill_char_from_int(fl->first, fl->frst);
fl->scnd = add_null(pf, fl, 0);
}
}
|
a7a36f60ccf2f252067cf9bd9d8c2967fed0e0c2
|
a6bcdf8014e8477e13d5834cba3753a89bfcf2d4
|
/FMC/software/Car/encode.h
|
046e9ea0ef5e6e59e1d75784b98af68b74222ee6
|
[] |
no_license
|
shishui324/fmc
|
5f7519ed333ffb1cc5395843acfb7fac01130527
|
8b5af018c234577fe00625b06d66718544443e60
|
refs/heads/master
| 2021-05-10T16:30:38.370436 | 2018-04-10T11:28:03 | 2018-04-10T11:28:03 | 118,577,533 | 1 | 0 | null | null | null | null |
GB18030
|
C
| false | false | 255 |
h
|
encode.h
|
#ifndef __ENCODE_H
#define __ENCODE_H
#include "headfile.h"
#include "struct.h"
extern int8_t getCountNum_L; //获取编码器计数值
extern int8_t getCountNum_R; //获取编码器计数值
void encode_init(void);
void get_num(void);
#endif
|
e1fc22bdc630a5ebb81c4ef5ecbb5b63d6decabf
|
c2cedcf36667730f558ab354bea4505b616c90d2
|
/players/guilds/undead/trix/castle/first9.c
|
271212d550f1626958b36989425e797d57e97262
|
[] |
no_license
|
wugouzi/Nirvlp312mudlib
|
965ed876c7080ab00e28c5d8cd5ea9fc9e46258f
|
616cad7472279cc97c9693f893940f5336916ff8
|
refs/heads/master
| 2023-03-16T03:45:05.510851 | 2017-09-21T17:05:00 | 2017-09-21T17:05:00 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 651 |
c
|
first9.c
|
inherit "room/room";
reset(arg) {
if(arg) return;
set_light(1);
long_desc =
"This room looks as if it was once used to prepare food for the royal house.\n"+
"With cobwebs brushing your face you believe that this kitchen hasn't been\n"+
"used for a while. As you stand there are reflecting on the room you swear\n"+
"you can still smell the food of the pasts.\n";
short_desc ="A dusty kitchen";
dest_dir = ({
"/players/trix/closed/guild/castle/first8.c","south",
"/players/trix/closed/guild/castle/first4.c","east"
});
}
realm(){return "NT";}
|
312c6d320ae6d60ed161c37dc3c25c8dcdc5e300
|
dfd1258a366ea3d38cd8ae061e2af4e950cd19f4
|
/62nConnection/HIT_common.c
|
da9989d5feed8084568a316bb11652a505e17043
|
[] |
no_license
|
molata/HIT_PMSM
|
833125ce08e1999c34a6868ab9c62c7ad9c78613
|
a46df6f0412bf95695d969ed0a4ca70fad8a122b
|
refs/heads/master
| 2020-12-24T20:33:26.409494 | 2016-05-27T04:17:06 | 2016-05-27T04:17:07 | 55,974,169 | 0 | 0 | null | null | null | null |
GB18030
|
C
| false | false | 11,956 |
c
|
HIT_common.c
|
#include "HIT_common.h"
//float HIT_y[1024];/////////////////////////////////////////////////////
//#pragma address HITparameter=0x00101000
//#pragma address HITsystemparameter=0x00101800
//#pragma address HIT_biaodingarry=0x00101000 //modify 20130616
//#include"HIT_biaoding.h" //modify 20130616
float HIT_sinzhi_a = 0;
float HIT_coszhi_a = 0;
float HIT_sinzhi_b = 0;
float HIT_coszhi_b = 0;
float HIT_sinzhi_c = 0;
float HIT_coszhi_c = 0;
float HIT_sinzhi_3a=0;
float HIT_coszhi_3a=0;
int HIT_sitacheck;
int HIT_3sitacheck;
int HIT_3sitacheck_sin;
int HIT_3sitacheck_cos;
int HIT_3sitadian_check;
float HIT_tal = 0.0005;//0.0005 ;
float HIT_curr_tal = 0.001;//0.0001;//add20141228
float HIT_Um_standard_tal = 0.002;
float HIT_reflpf_tal = 0.0001;
//float HIT_reflpf_tal = 0.002;
float HIT_lpfv1A=0;
float HIT_lpfv1B=0;
float HIT_lpfUm_standard_1A;
float HIT_lpfUm_standard_1B;
float HIT_lpfcurr_1A;
float HIT_lpfcurr_1B;
float HIT_lpfUm_standard_1A;
float HIT_lpfUm_standard_1B;
float HIT_reflpf_standard_1A;
float HIT_reflpf_standard_1B;
float HIT_sitaerr=0;
float HIT_sitafir;
float HIT_sita1 = 0;
float HIT_Tsa;
float HIT_we;
int HIT_lpfcount = 0;
float HIT_wone=0;
float HIT_wtwo=0 ;
float HIT_speedlpf=0.0;
float HIT_speedlpf_iden_fai;
unsigned short HIT_dir;
unsigned int HIT_dircount = 0;
unsigned int HIT_dircount1 = 0;
float HIT_iulpf;
float HIT_iwlpf;
float HIT_ivlpf;
float HIT_iuone;
float HIT_iutwo;
float HIT_iwone;
float HIT_iwtwo;
float HIT_ivone;
float HIT_ivtwo;
float HIT_pwm_af = 0;
float HIT_pwm_bf = 0;
float HIT_pwm_cf = 0;
signed int HIT_pwm_aint = 0;
signed int HIT_pwm_bint = 0;
signed int HIT_pwm_cint = 0;
unsigned short HIT_Umsensor;
unsigned short HIT_Uad;
float HIT_Umsensor_f;
float HIT_now_voltage_f;
float HIT_now_voltage_iden_f;
float HIT_Um=135;//===270/2;
float HIT_iden_Um=37;//27.2;
float HIT_Vol_adj_fac = 1;
float HIT_Vol_adj_fac_iden;
float HIT_iu_fb_sum=0;
float HIT_iv_fb_sum=0;
float HIT_iw_fb_sum=0;
float HIT_iu_fb_avg;
float HIT_iv_fb_avg;
float HIT_iw_fb_avg;
float HIT_iu_fb;
float HIT_iv_fb;
float HIT_iw_fb;
float HIT_iu_fb_iden;
float HIT_iv_fb_iden;
float HIT_iw_fb_iden;
float HIT_iv_fb_10wei;
unsigned short HIT_iu_fbad;
unsigned short HIT_iw_fbad;
unsigned short HIT_iv_fbad;
unsigned short HIT_iu_fbad_iden;
unsigned short HIT_iw_fbad_iden;
unsigned short HIT_v_sensor_10weiad;
float HIT_iu_fbadf;
float HIT_iv_fbadf;
float HIT_iw_fbadf;
float HIT_iu_fbadf_iden;
float HIT_iw_fbadf_iden;
float HIT_v_sensor_10weiadf;
float HIT_adad;
float HIT_adad_10wei;
float HIT_curr;
float HIT_iq_fb = 0.0;
float HIT_id_fb = 0.0;
float HIT_curren_aa_q_max; //the max value of integralter
float HIT_now_voltage_f_out = 0;
float HIT_now_voltage_one;
float HIT_now_voltage_two;
int HIT_sitadian_pole_max_int;
float HIT_iq_one;
float HIT_iq_two;
float HIT_iq_ref_out = 0;
float HIT_kv ;
float HIT_iq_kv;
int HIT_current_inte_mode_select;
float HIT_curren_aa_q_max_cmt0;
float HIT_drain;
float HIT_id_fb_square;
float HIT_iq_fb_square;
int HIT_shortime_cur_count = 0;
float HIT_idq_square;
float HIT_Um_standard = 30;//23.6;//26.7;//24;//15;//300;//26.9;//35;//27.2 ;//v
float HIT_Umsensor_f_standard = 564;//1766;//204;//2755;//226;//124;//187;//2232;//224;//344;//350;//473;//481;
int HIT_pwm_stop = 1;//common work
float HIT_WLw_err_orig;
int HIT_sitacheck_sin = 0;
int HIT_sitacheck_cos = 0;
int HIT_sitacheck_ab;
float HIT_coszhi_a_ab;
float HIT_coszhi_b_ab;
float HIT_coszhi_c_ab;
float HIT_sinzhi_a_ab;
float HIT_sinzhi_b_ab;
float HIT_sinzhi_c_ab;
int HIT_sitacheck_cos_ab;
int HIT_sitacheck_sin_ab;
float HIT_pwm_mode;
float HIT_pwm_mode_Um;
float HIT_Uu_3to2;
float HIT_Uv_3to2;
float HIT_Uw_3to2;
float HIT_Ualfa_transfer = 0.0;
int HIT_sitaintf_curr_int = 0;
float HIT_sitaintf_curr_mech_f = 0.0;
int HIT_sitaintf_curr_mech_int = 0;
int HIT_virtual_ps_int_fir = 0;
int HIT_virtual_ps_int_sec = 0;
int HIT_virtual_ps_int_err = 0;
int HIT_positioncontrol_num = 0;
int HIT_pos_org_int = 0;
int HIT_virtual_ps_sig_int = 0;
int HIT_virtual_ps_int = 0;
int HIT_position_err_int = 0;
int HIT_position_fb_16_int = 0;
int HIT_servofirst_begin = 1;
float HIT_position_fb_f = 0.0;
int HIT_positionfir_fb_16_int = 0;
int HIT_position_fb_err_16_int = 0;
int HIT_position1_fb_16_int = 0;
float HIT_positon_Kp_trans_f = 0.0;
float HIT_positon_Kp_int_float = 14;//7;
//int HIT_positon_Kp_int = 14;//7;
float HIT_positon_Kp_f = 0.0;
float HIT_pos_org_f = 0.0;
int HIT_virtual_ps_cycle_count = 0;
float HIT_virtual_ps_int_err_f;
float HIT_virtual_ps_int_err_sum_f;
float HIT_virtual_ps_int_err_int_f;
int HIT_position_client_int = 625;//65536;
float HIT_position_client_f;
int HIT_virtual_ps_int_err_int_int;
float HIT_virtual_ps_int_err_float_f;
unsigned short HIT_tgr_b_val3;
unsigned short HIT_tgr_d_val3;
unsigned short HIT_tgr_a_val4;
unsigned short HIT_tgr_c_val4;
unsigned short HIT_tgr_b_val4;
unsigned short HIT_tgr_d_val4;
unsigned short HIT_counter_val0=0;
unsigned short HIT_gtccr_a_val0=1200;
unsigned short HIT_gtccr_b_val0=1200;
unsigned short HIT_counter_val1=0;
unsigned short HIT_gtccr_a_val1=1200;
unsigned short HIT_gtccr_b_val1=1200;
unsigned short HIT_counter_val2=0;
unsigned short HIT_gtccr_a_val2=1200;
unsigned short HIT_gtccr_b_val2=1200;
unsigned int HIT_qa=0;
unsigned int HIT_system_count = 0;
int HIT_systemcontrol_mode = 1;
int HIT_make_angle_mode = 0;
float HIT_Ki;
float HIT_iq_Ki;
float HIT_id_err;
float HIT_iq_err;
float HIT_Ud;
float HIT_Uq;
float HIT_Ua;
float HIT_Ub;
float HIT_Usquare;
float HIT_Ualfa;
float HIT_Ulim;
float HIT_Ualfam;
int HIT_sitaintab;
float HIT_sitalfa;
float HIT_U_a;
float HIT_U_b;
float HIT_U_c;
unsigned short HIT_sci;
float HIT_iv_fbadf;
unsigned short HIT_iv_fbad;
unsigned short HIT_sci;
unsigned short HIT_sci_1;
unsigned short HIT_sci_2;
unsigned short HIT_sci_3;
unsigned short HIT_sci_4;
unsigned short HIT_sci_5;
unsigned short HIT_sci_6;
unsigned short HIT_sci_7;
unsigned short HIT_sci_8;
unsigned short HIT_sci_9;
unsigned short HIT_sci_10;
unsigned short HIT_sci_11;
unsigned short HIT_sci_12;
unsigned short HIT_sci_13;
unsigned short HIT_sci_14;
unsigned short HIT_sci_15;
unsigned short HIT_sci_16;
unsigned short HIT_DA_t;
unsigned short HIT_DA_channel = 1;
float HIT_run_mode = 1;//
float HIT_poles = 5.0;//1.0;
float HIT_curr_sen =100;//4.167;//100;//100;//66;//185;//66;//mV/A
float HIT_iq_ref = 0.1;//1;//2;//1;//2;
float HIT_id_ref = 0.0;
float HIT_pwm_off_vector_min = 40;
float HIT_pwm_off=240;//130;//360;//240;//120;//360;
float HIT_pwm_deadoff = 40;//80;//120;//3.5us
float HIT_lm = 0.00008;//0.00224;//0.0007;//0.025;//0.000189;//0.025;//0.000189;//0.00126;//0.000165;//0.00002118;//0.0001;//0.000165;//0.02118;//0.000065;//0.025;//0.000065;
float HIT_Lq = 0.00006;//0.0000007;//0.00224;//0.0007;//0.025;//0.07924391;//0.000189;//0.07924391;//0.000189;//0.00126;//0.000165;//0.00002118;//0.0001;//0.000165;//0.02118;//0.000065;//0.07924391;//0.2;//0.07924391;
float HIT_Ld = 0.00006;//0.0000007;
float HIT_Rs = 0.001;//1.5;//11.2;//1.5;//7.771897;//8.3677;//7.771897;//0.54;//0.07912;//7.771897;//0.07912;//7.771897;//7.6253//7.771897//4.2
float HIT_Ts = 0.00005;
float HIT_ki = 800;//200;//380;//200;//300;//1040;//1000;
float HIT_iq_ki=800;
float HIT_kv = 5000;//1600;//800;//1400;//800;//1200;//1045;//4000;
float HIT_iq_kv=800;
float HIT_faif = 0.0036;//0.000395;//0.0395;//0.238845;//0.00402979194;//0.0402979194;//0.0422;//0.00139;//0.9530334;//0.006067;//29.08731;//25.8472;//0.006067;//0.0422;/9.5493
float HIT_WL_Jm = 0.00000069808;//0.0000850742;//0.00023061;//0.0000850742;//0.0002166;//0.0000313;//0.0002166;//0.00012;
float HIT_alfa = 0.0;//1.0;
float HIT_WLMechkv = 60;//20;//120;
float HIT_Mech_alfa = 0;//1.0;
float HIT_WLw_ref = 0.0;//52.36;//20.9;//100;//5.233;//42;//0;//5.233;//2.093//0.0010467;//5.233;//0.01047;//31.4;//0.1046;//104.7;//rad/s
float HIT_MechTi = 0.05;//0.2;//s
float HIT_WL_T_factor = 4.941;//0.03;//0.4;//0.012;//0.4;//0.012;
float HIT_WLw_ref_iden = 3;//rad/s
float HIT_WLw_err;
float HIT_WLMech_Ki;
float HIT_WLMechki;
float HIT_WL_Mech_spee_out_Tmc;
float HIT_WL_Mech_spee_out;
float HIT_WLw_org;
float HIT_v_max = 418.667;//628;//104.667;//837.33;//628;//628;//20.932;//5.233;//104.667;//523.333;//314;//52.333;//314;//52.333;//314;//261.667;//209.33;//157;//104.67;//83.73;//62.8;//52.333;//20.932;
float HIT_max_speed_err = 2.0932;
float HIT_max_speed_err_neg = -2.0932;
float HIT_WL_A = 62800;//10r/ms*6.28*1000/////speed step 62800*84/1000000=5.2752rad/s==>50.4rpm
float HIT_speed_err;
//unsigned short HIT_filter_initial;
unsigned short HIT_filter_depth;
//unsigned short HIT_a_phase_filter[4];
//unsigned short HIT_a_phase_sum;
unsigned short HIT_b_phase_filter[4];
unsigned short HIT_b_phase_sum;
unsigned short HIT_current_filter_initial;
unsigned short HIT_current_filter_depth;
unsigned short HIT_u_phase_filter[4];
unsigned short HIT_u_phase_sum;
unsigned short HIT_w_phase_filter[4];
unsigned short HIT_w_phase_sum;
unsigned short HIT_v_phase_filter[4];
unsigned short HIT_v_phase_sum;
unsigned int HIT_pwm_en_out = 0;
float HIT_kr = 0.866;
float HIT_khalf= 0.5;
int HIT_boun1= 0;
int HIT_boun2 = 682;
int HIT_boun3 = 1364;
int HIT_boun4 = 2046;
int HIT_boun5 = 2728;
int HIT_boun6 = 3410;
int HIT_boun7 = 4096;
float HIT_ualfamax_k = 1.15473;
int HIT_pwm_full = 2000;//4000;//2000;//880;
int HIT_sitadian_check;
float HIT_speedlpf_pole;
//unsigned char HIT_ceshi[4];
unsigned char rcvbuff_char;
unsigned char HIT_judge;
unsigned short HIT_tran_start;
unsigned short rcvbuff_char_1;
unsigned short rcvbuff_char_2;
unsigned short rcvbuff_char_3;
unsigned short rcvbuff_char_4;
unsigned short rcvbuff_char_5;
unsigned short rcvbuff_char_6;
unsigned short rcvbuff_char_7;
unsigned short rcvbuff_char_8;
unsigned short rcvbuff_short_title;
unsigned short HIT_change_num_title;
unsigned short rcvbuff_short_num;
unsigned short HIT_change_num;
unsigned char HIT_ready_go = 0;
int HIT_biaoding_int;
int HIT_biaoding_int_bia;
int HIT_check_area_int;
int HIT_add_point_int;
int HIT_check_area_int;
int HIT_check_area_bia_int;
float HIT_y_a1_f;
float HIT_y_a2_f;
float HIT_x_a1_f;
float HIT_k_f ;
float HIT_b_f ;
float HIT_add_point_f ;
float HIT_biaodingarry[];
float HIT_biaoding_ang_f ;
float HIT_biaoding_f;
float HIT_new_angle_f;
int HIT_new_angle_int;
float HIT_iq_ref_mech_max = 25;//25;40dianji//20;//15;//20140428
unsigned short HIT_pwm=0;
signed int HIT_s0TX_buffer1;
signed int HIT_s0TX_buffer2;
signed int HIT_s0TX_buffer3;
float HIT_sita;
unsigned short HIT_p_getad[4];
unsigned short HIT_n_getad[4];
unsigned short HIT_p_getad_iden[4];
unsigned short HIT_n_getad_iden[4];
unsigned short HIT_u_sensor;
unsigned short HIT_w_sensor;
unsigned short HIT_u_sensor_sum;
unsigned short HIT_w_sensor_sum;
unsigned short HIT_v_sensor_sum;
unsigned short HIT_v_sensor_10wei;
unsigned short HIT_v_sensor;
unsigned short HIT_a_n_hall;
unsigned short HIT_b_n_hall;
unsigned short HIT_c_n_hall;
unsigned short HIT_a_p_hall;
unsigned short HIT_b_p_hall;
unsigned short HIT_c_p_hall;
signed int HIT_a_n_int;
signed int HIT_b_n_int;
signed int HIT_c_n_int;
signed int HIT_a_p_int;
signed int HIT_b_p_int;
signed int HIT_c_p_int;
float HIT_a_hall;
float HIT_b_hall;
float HIT_c_hall;
float HIT_d_hall;
float HIT_q_hall;
signed int HIT_sitadf_int = 0x2968;//0xD26E;//0xF6AE;//0xD782;//0xD962;//0xD818;//0xADD9;//0xD6AE;//0x2d78;//0X2A89;//0X312D;//ce shi modify 2012.4.2
int HIT_sitaintf_pole_int;
int HIT_sitadian;
int HIT_sitadianab;
float HIT_id_org=0;
float HIT_iq_org=0;
char HIT_xw;
unsigned short HIT_new_angle_short;
/*************** 207通信相关的变量 *********************/
uchar ucCapture_success = 0; // 指令捕获结果
ST_SERIAL_DATA stSerial_data = {0}; // 内部状态的结构体, 接收到其他传感器后,修改这个结构体就可以
ST_PC_CMD st_pc_cmd = {0}; // 计算机指令
UNSENSOR_STATES unAllsensor_states = {0}; // 内部所有传感器的状态
|
589a39ee13e98f53b5e51b5e552cdc54afde2d9b
|
c8d463d67f929922a6cf12e82dd6df2486fee391
|
/src/spaceShip.c
|
063c21254308974892232ec62ee2e6778281432e
|
[] |
no_license
|
s194035/30010---Programming-Project
|
e4b59d716c19bc4927de8ba592c0b66d0704566e
|
cad03b0b010dc698172171f914af4e6e27054241
|
refs/heads/master
| 2022-11-12T08:25:07.279906 | 2022-11-04T11:07:31 | 2022-11-04T11:07:31 | 271,493,434 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 425 |
c
|
spaceShip.c
|
#include "spaceShip.h"
void initSpaceShip(SpaceShip_t *ship, uint8_t speed, uint8_t x0, uint8_t y0){
ship->pos.x = x0;
ship->pos.y = y0;
ship->speed = speed;
}
void drawSpaceShip(SpaceShip_t *ship){
char solidBox = 219;
char str[10];
int i;
for(i = 0; i < 9; i++){
str[i] = solidBox;
}
str[9] = 0;
gotoxy(ship->pos.x, ship->pos.y);
printf("%s",str);
}
|
bac10394000fe4af527955a9791f7c557e46a9e0
|
b738ec2a89e3d5d16ba011c56dc0136d1c5ae20c
|
/Graphics & Game Technologie/assignment_4/plymodel.h
|
8fccbe44a68fd5e51c5f479b73fa2c484ad431a4
|
[] |
no_license
|
sjraaijmakers/informatica
|
fd2b94b856b9dbcd8d3591096fb8e7e6310037a3
|
29874ac4897e1408ce96d9cd5c1ab814e991b709
|
refs/heads/master
| 2021-03-22T03:29:02.141390 | 2019-01-08T10:25:45 | 2019-01-08T10:25:45 | 69,273,816 | 4 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 263 |
h
|
plymodel.h
|
#ifndef PLYMODEL_H
#define PLYMODEL_H
#include "types.h"
int ply_num_triangles, ply_num_vertices, ply_num_normals;
triangle *ply_triangles;
vec3 *ply_vertices;
vec3 *ply_normals;
void read_ply_model(const char *fname);
#endif
|
6b03253de1b1a9efaeda0038206d59643b918696
|
c75a0017de6e7e488dfb3380744cc8f3aa5f3289
|
/Images_and_C_arrays/MiscImages/Num7(50x50)TrueColor.c
|
4348cd75158d81af20ce88f1ea894f1b47c60a44
|
[] |
no_license
|
dengpris/sudoku
|
a80a65a4b44f5fe5c2ff0e47ae7717d1712ef2c9
|
5007578ab9895451e39339161df03284a5857741
|
refs/heads/master
| 2022-09-13T14:52:27.415658 | 2020-06-05T04:50:49 | 2020-06-05T04:50:49 | 251,160,543 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 136,605 |
c
|
Num7(50x50)TrueColor.c
|
#include "lvgl/lvgl.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_NUM7(50X50)TRUECOLOR
#define LV_ATTRIBUTE_IMG_NUM7(50X50)TRUECOLOR
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_NUM7(50X50)TRUECOLOR uint8_t Num7(50x50)TrueColor_map[] = {
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00,
0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24,
0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x24, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0xff, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x49, 0xff, 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 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, 0xff, 0xdb, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x49, 0xff, 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 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, 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, 0x25, 0xff, 0xff, 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, 0xb6, 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, 0x24, 0xdb, 0xff, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 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, 0x6e, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0xff, 0xff, 0x24, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 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, 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, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00,
0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24, 0x25, 0x24,
0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01, 0x24, 0x01,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
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, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
#endif
#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0
/*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit*/
0x26, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xe5, 0x20, 0x05, 0x21, 0xc4, 0x18,
0xc2, 0x18, 0xe4, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xc3, 0x18, 0xe3, 0x18, 0xe3, 0x20, 0x04, 0x21,
0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0xe4, 0x20, 0x04, 0x21,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08,
0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00,
0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x00, 0x00, 0x21, 0x08, 0x61, 0x08, 0x42, 0x10, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x62, 0x10, 0x00, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x01, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x00, 0x00, 0x20, 0x00, 0x62, 0x10, 0x00, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x62, 0x10, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x96, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x73, 0x61, 0x08, 0x00, 0x00, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x00, 0x00, 0x21, 0x08, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0xb3, 0x9c, 0xfc, 0xe6, 0xdb, 0xde, 0xfb, 0xde, 0xfc, 0xe6, 0xfb, 0xde, 0x5d, 0xef, 0xff, 0xff, 0xff, 0xff, 0x29, 0x4a, 0x00, 0x00, 0x62, 0x10, 0x20, 0x00, 0x00, 0x00, 0x41, 0x08, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x00, 0x00, 0x61, 0x08, 0x00, 0x00, 0x20, 0x00, 0x21, 0x08, 0x38, 0xc6, 0xff, 0xff, 0x96, 0xb5, 0x61, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x61, 0x08, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x00, 0x00, 0x00, 0x00, 0x21, 0x08, 0x20, 0x00, 0x21, 0x08, 0x20, 0x00, 0x62, 0x10, 0x41, 0x08, 0x00, 0x00, 0x49, 0x4a, 0xff, 0xff, 0xbf, 0xff, 0x04, 0x21, 0x00, 0x00, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x00, 0x00, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x39, 0xce, 0xff, 0xff, 0x96, 0xb5, 0x61, 0x08, 0x61, 0x08, 0x41, 0x08, 0x00, 0x00, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x08, 0x42, 0xff, 0xff, 0xdf, 0xff, 0x24, 0x21, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x00, 0x00, 0x21, 0x08, 0x20, 0x00, 0x18, 0xc6, 0xff, 0xff, 0x59, 0xce, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x61, 0x08, 0x41, 0x08, 0x25, 0x29, 0xdf, 0xff, 0xff, 0xff, 0xec, 0x62, 0x41, 0x08, 0x00, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x9c, 0xff, 0xff, 0x3d, 0xef, 0x41, 0x08, 0x00, 0x00, 0x62, 0x10, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x62, 0x10, 0x7a, 0xd6, 0xbf, 0xff, 0xd7, 0xbd, 0x20, 0x00, 0x00, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0xff, 0xff, 0xff, 0xff, 0xec, 0x62, 0x20, 0x00, 0x62, 0x10, 0x00, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x62, 0x10, 0x6d, 0x6b, 0xff, 0xff, 0xff, 0xff, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0x62, 0x10, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0xb7, 0xbd, 0xff, 0xff, 0x1c, 0xe7, 0x00, 0x00, 0x61, 0x08, 0x21, 0x08, 0x00, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x00, 0x00, 0x41, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08,
0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00,
0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x41, 0x08,
0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08,
0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x20, 0x00,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x40, 0x00, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08,
0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08,
0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10,
0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21,
0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18, 0xa2, 0x10, 0xa3, 0x18,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x40, 0x00,
0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08, 0x21, 0x08,
0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x20, 0x00, 0x41, 0x08,
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, 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, 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, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
#endif
#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0
/*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 bytes are swapped*/
0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x18, 0xa3, 0x10, 0xa2,
0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04,
0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04, 0x20, 0xe4, 0x21, 0x04,
0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21,
0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20,
0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x00, 0x08, 0x21, 0x08, 0x61, 0x10, 0x42, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x10, 0x62, 0x00, 0x00, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x01, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x00, 0x00, 0x20, 0x10, 0x62, 0x00, 0x00, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x10, 0x62, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0xb5, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x73, 0x8e, 0x08, 0x61, 0x00, 0x00, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x00, 0x08, 0x21, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x9c, 0xb3, 0xe6, 0xfc, 0xde, 0xdb, 0xde, 0xfb, 0xe6, 0xfc, 0xde, 0xfb, 0xef, 0x5d, 0xff, 0xff, 0xff, 0xff, 0x4a, 0x29, 0x00, 0x00, 0x10, 0x62, 0x00, 0x20, 0x00, 0x00, 0x08, 0x41, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x08, 0x21, 0x08, 0x61, 0x00, 0x00, 0x08, 0x61, 0x00, 0x00, 0x00, 0x20, 0x08, 0x21, 0xc6, 0x38, 0xff, 0xff, 0xb5, 0x96, 0x08, 0x61, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x61, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x00, 0x00, 0x00, 0x08, 0x21, 0x00, 0x20, 0x08, 0x21, 0x00, 0x20, 0x10, 0x62, 0x08, 0x41, 0x00, 0x00, 0x4a, 0x49, 0xff, 0xff, 0xff, 0xbf, 0x21, 0x04, 0x00, 0x00, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x00, 0x00, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0xce, 0x39, 0xff, 0xff, 0xb5, 0x96, 0x08, 0x61, 0x08, 0x61, 0x08, 0x41, 0x00, 0x00, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x42, 0x08, 0xff, 0xff, 0xff, 0xdf, 0x21, 0x24, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x00, 0x08, 0x21, 0x00, 0x20, 0xc6, 0x18, 0xff, 0xff, 0xce, 0x59, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x61, 0x08, 0x41, 0x29, 0x25, 0xff, 0xdf, 0xff, 0xff, 0x62, 0xec, 0x08, 0x41, 0x00, 0x00, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xf3, 0xff, 0xff, 0xef, 0x3d, 0x08, 0x41, 0x00, 0x00, 0x10, 0x62, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x10, 0x62, 0xd6, 0x7a, 0xff, 0xbf, 0xbd, 0xd7, 0x00, 0x20, 0x00, 0x00, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0xff, 0xff, 0xff, 0xff, 0x62, 0xec, 0x00, 0x20, 0x10, 0x62, 0x00, 0x00, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x10, 0x62, 0x6b, 0x6d, 0xff, 0xff, 0xff, 0xff, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x10, 0x62, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0xbd, 0xb7, 0xff, 0xff, 0xe7, 0x1c, 0x00, 0x00, 0x08, 0x61, 0x08, 0x21, 0x00, 0x00, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x00, 0x08, 0x41, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21,
0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20,
0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x08, 0x41,
0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21,
0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x08, 0x41,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x00, 0x20,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x21, 0x00, 0x40, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21,
0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41,
0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2, 0x10, 0xa2,
0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04, 0x21, 0x04,
0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3, 0x10, 0xa2, 0x18, 0xa3,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x00, 0x40,
0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41, 0x08, 0x21,
0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x08, 0x21, 0x08, 0x41, 0x00, 0x20, 0x08, 0x41,
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, 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, 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, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
#endif
#if LV_COLOR_DEPTH == 32
/*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
0x17, 0x16, 0x17, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x15, 0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x14, 0x15, 0xff,
0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff,
0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff,
0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff,
0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff,
0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x07, 0x07, 0x07, 0xff, 0x05, 0x05, 0x05, 0xff, 0x04, 0x04, 0x04, 0xff, 0x01, 0x01, 0x01, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x09, 0x09, 0x09, 0xff, 0x06, 0x06, 0x06, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x01, 0x01, 0x01, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x04, 0x04, 0x04, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x05, 0x05, 0x05, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x04, 0x04, 0x04, 0xff, 0x04, 0x04, 0x04, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x03, 0x03, 0x03, 0xff, 0x08, 0x08, 0x08, 0xff, 0x01, 0x01, 0x01, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x03, 0x03, 0x03, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x03, 0x03, 0x03, 0xff, 0x07, 0x07, 0x07, 0xff, 0x00, 0x00, 0x00, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x01, 0x01, 0x01, 0xff, 0x07, 0x07, 0x07, 0xff, 0x04, 0x04, 0x04, 0xff, 0x07, 0x07, 0x07, 0xff, 0x03, 0x03, 0x03, 0xff, 0x04, 0x04, 0x04, 0xff, 0x08, 0x08, 0x08, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x09, 0x09, 0x09, 0xff, 0x01, 0x01, 0x01, 0xff, 0x08, 0x08, 0x08, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x08, 0x08, 0x08, 0xff, 0x06, 0x06, 0x06, 0xff, 0x05, 0x05, 0x05, 0xff, 0x06, 0x06, 0x06, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x72, 0x72, 0x72, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x00, 0x00, 0x00, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x04, 0x04, 0x04, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x04, 0x04, 0x04, 0xff, 0x06, 0x06, 0x06, 0xff, 0x01, 0x01, 0x01, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x03, 0x03, 0x03, 0xff, 0x06, 0x06, 0x06, 0xff, 0x97, 0x97, 0x97, 0xff, 0xda, 0xda, 0xda, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xda, 0xda, 0xda, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xda, 0xda, 0xda, 0xff, 0xe7, 0xe7, 0xe7, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, 0x42, 0x42, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x03, 0x03, 0x03, 0xff, 0x02, 0x02, 0x02, 0xff, 0x08, 0x08, 0x08, 0xff, 0x08, 0x08, 0x08, 0xff, 0x02, 0x02, 0x02, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x08, 0x08, 0x08, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x05, 0x05, 0x05, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x06, 0x06, 0x06, 0xff, 0x09, 0x09, 0x09, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x03, 0x03, 0x03, 0xff, 0x02, 0x02, 0x02, 0xff, 0x05, 0x05, 0x05, 0xff, 0xc4, 0xc4, 0xc4, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x03, 0x03, 0x03, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x09, 0x09, 0x09, 0xff, 0x01, 0x01, 0x01, 0xff, 0x08, 0x08, 0x08, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x05, 0x05, 0x05, 0xff, 0x07, 0x07, 0x07, 0xff, 0x01, 0x01, 0x01, 0xff, 0x02, 0x02, 0x02, 0xff, 0x06, 0x06, 0x06, 0xff, 0x05, 0x05, 0x05, 0xff, 0x04, 0x04, 0x04, 0xff, 0x02, 0x02, 0x02, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x07, 0x07, 0x07, 0xff, 0x01, 0x01, 0x01, 0xff, 0x49, 0x49, 0x49, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0x21, 0x21, 0x21, 0xff, 0x00, 0x00, 0x00, 0xff, 0x04, 0x04, 0x04, 0xff, 0x09, 0x09, 0x09, 0xff, 0x07, 0x07, 0x07, 0xff, 0x03, 0x03, 0x03, 0xff, 0x04, 0x04, 0x04, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x04, 0x04, 0x04, 0xff, 0x06, 0x06, 0x06, 0xff, 0x09, 0x09, 0x09, 0xff, 0x09, 0x09, 0x09, 0xff, 0x04, 0x04, 0x04, 0xff, 0x08, 0x08, 0x08, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x05, 0x05, 0x05, 0xff, 0x09, 0x09, 0x09, 0xff, 0x07, 0x07, 0x07, 0xff, 0xc4, 0xc4, 0xc4, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x09, 0x09, 0x09, 0xff, 0x02, 0x02, 0x02, 0xff, 0x04, 0x04, 0x04, 0xff, 0x09, 0x09, 0x09, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x08, 0x08, 0x08, 0xff, 0x03, 0x03, 0x03, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x03, 0x03, 0x03, 0xff, 0x08, 0x08, 0x08, 0xff, 0x07, 0x07, 0x07, 0xff, 0x04, 0x04, 0x04, 0xff, 0x07, 0x07, 0x07, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x07, 0x07, 0x07, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0x23, 0x23, 0x23, 0xff, 0x08, 0x08, 0x08, 0xff, 0x06, 0x06, 0x06, 0xff, 0x04, 0x04, 0x04, 0xff, 0x06, 0x06, 0x06, 0xff, 0x08, 0x08, 0x08, 0xff, 0x07, 0x07, 0x07, 0xff, 0x04, 0x04, 0x04, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x05, 0x05, 0x05, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x03, 0x03, 0x03, 0xff, 0x04, 0x04, 0x04, 0xff, 0x05, 0x05, 0x05, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0xc6, 0xc6, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x05, 0x05, 0x05, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x08, 0x08, 0x08, 0xff, 0x26, 0x26, 0x26, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x09, 0x09, 0x09, 0xff, 0x02, 0x02, 0x02, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x03, 0x03, 0x03, 0xff, 0x00, 0x00, 0x00, 0xff, 0x9a, 0x9a, 0x9a, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0x08, 0x08, 0x08, 0xff, 0x02, 0x02, 0x02, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0xce, 0xce, 0xce, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0x03, 0x03, 0x03, 0xff, 0x01, 0x01, 0x01, 0xff, 0x08, 0x08, 0x08, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x01, 0x01, 0x01, 0xff, 0x07, 0x07, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0x5c, 0x5c, 0xff, 0x05, 0x05, 0x05, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x00, 0x00, 0x00, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x6d, 0x6d, 0x6d, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x06, 0x06, 0x06, 0xff, 0x02, 0x02, 0x02, 0xff, 0x07, 0x07, 0x07, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x07, 0x07, 0x07, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xde, 0xde, 0xde, 0xff, 0x02, 0x02, 0x02, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x05, 0x05, 0x05, 0xff, 0x02, 0x02, 0x02, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x05, 0x05, 0x05, 0xff, 0x06, 0x06, 0x06, 0xff, 0x08, 0x08, 0x08, 0xff, 0x03, 0x03, 0x03, 0xff, 0x07, 0x07, 0x07, 0xff, 0x08, 0x08, 0x08, 0xff, 0x05, 0x05, 0x05, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff,
0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x13, 0x13, 0xff,
0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff,
0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff,
0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06, 0x06, 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, 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, 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, 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, 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, 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, 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, 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, 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,
#endif
};
const lv_img_dsc_t Num7(50x50)TrueColor = {
.header.always_zero = 0,
.header.w = 50,
.header.h = 50,
.data_size = 2500 * LV_COLOR_SIZE / 8,
.header.cf = LV_IMG_CF_TRUE_COLOR,
.data = Num7(50x50)TrueColor_map,
};
|
a5f8613730414dec3f58f990987c269762e0f4e0
|
624b87b9e94a5b5a02a793d06e86ed978e5742d9
|
/Flexbot-1.5.0_Baylor/FlexBot/src/main/jni/DEC/vmc_rec_handler.h
|
4c5bcc3a77c2833467c2a6f030044834e4de34de
|
[] |
no_license
|
DeeRid/BaylorBattleDroneFinal
|
b57007fcdb6c83d77da1afbef0671e60d0940ee6
|
c9d1d6e5c29fdf06d62cb21c3dad16a17306156d
|
refs/heads/master
| 2021-01-20T12:55:52.879357 | 2017-05-06T02:46:15 | 2017-05-06T02:46:15 | 90,429,647 | 1 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 640 |
h
|
vmc_rec_handler.h
|
#ifndef VMC__REC_HANDLER_H
#define VMC__REC_HANDLER_H
enum rec_error_id{
REC_OK=0,
REC_INIT_ERR,
REC_ERR,
REC_START_ERR
};
#define INIT_REC_ERROR "uninit or init error!"
#define REC_ERROR "rec_error!"
#define START_REC_THREAD_ERROR "start rec thread error!"
typedef void (*rec_callback)(int state, char * error );
static char * rec_erro_info[]={
NULL, // 0,
INIT_REC_ERROR, // 1
REC_ERROR, // 2
START_REC_THREAD_ERROR // 3
};
int start_rec_hander(char * dst_dir, char * filename , bool location_flag, rec_callback callback);
int close_rec_hander(void);
#endif //VMC__REC_HANDLER_H
|
8c0a90806756426b357da858538d55f2805dadde
|
efe4122292afd2704761f107a3e8ded3be9162c9
|
/src/html.c
|
94a22250b5721d3e83d35e538e6b23c31bb2e26e
|
[] |
no_license
|
cthulhuology/Jawas2
|
8696dbd3eb288b30f5e4c7c6560aedd19b1a8482
|
26af7b22ec01c23cd39b1d213409512f7cb5baa3
|
refs/heads/master
| 2021-01-13T02:04:23.003117 | 2012-05-22T01:43:40 | 2012-05-22T01:43:40 | 1,400,787 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 523 |
c
|
html.c
|
// html.c
//
// © 2012 David J. Goehrig
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
extern void register_handler(char*,void*);
void init(void* self) {
register_handler("/html/",self);
}
void get(int sock) {
char* response = "HTTP/1.1 200 OK\r\n"
"Content-Type: text/html\r\n"
"Content-Length: 11\r\n"
"Connection: keep-alive\r\n"
"\r\n"
"Hello World";
write(sock,response,strlen(response));
}
void post(int sock) {
}
void put(int sock) {
}
void delete(int sock) {
}
|
529848c00207d4f023b677b1747bbea5cec6080b
|
77861deda8b3046bdda221d3cb80b77e84b14523
|
/avx512-remove-spaces/avx512-dump.h
|
54175a2e9d25adb5bc7a091792030e5bc4f3a7ad
|
[
"BSD-2-Clause"
] |
permissive
|
WojciechMula/toys
|
b73f09212ca19f1e76bbf2afaa5ad2efcea95175
|
6110b59de45dc1ce44388b21c6437eff49a7655c
|
refs/heads/master
| 2023-08-18T12:54:25.919406 | 2023-08-05T09:20:14 | 2023-08-05T09:20:14 | 14,905,115 | 302 | 44 |
BSD-2-Clause
| 2020-04-17T17:10:42 | 2013-12-03T20:35:37 |
C++
|
UTF-8
|
C
| false | false | 27 |
h
|
avx512-dump.h
|
../000helpers/avx512-dump.h
|
25a12323993a6458af322781f6e002b6e4bebeff
|
5374b40642980178b0bc5dab02fe9a1171a357d3
|
/src/Libraries/Capper/CCapKey.c
|
c93f3cbc53a3c3f5a5a0f60ca194065100c88114
|
[
"MIT"
] |
permissive
|
zebe/Avara
|
ce3c0ebb1f407b5f87cdeb50e3250dcafab5618e
|
1e64a866c430cc0e44c60c873c0e36d90895e126
|
refs/heads/master
| 2021-12-12T13:25:43.623676 | 2021-11-14T15:21:53 | 2021-11-14T15:21:53 | 72,507,649 | 1 | 0 | null | 2016-11-01T05:47:52 | 2016-11-01T05:47:52 | null |
WINDOWS-1252
|
C
| false | false | 3,840 |
c
|
CCapKey.c
|
/*
Copyright ©1994-1995, Juri Munkki
All rights reserved.
File: CCapKey.c
Created: Friday, November 11, 1994, 21:17
Modified: Tuesday, December 19, 1995, 12:18
*/
#include "CCapKey.h"
#include "CCapMaster.h"
#include "CCapFunc.h"
void CCapKey::ICapKey(
short keyCode,
CCapMaster *theMaster)
{
itsMaster = theMaster;
virtualKeyCode = keyCode;
numLabelSpots = 0;
theKeyRegion = NewRgn();
funcCount = 0;
label[0] = 1;
label[1] = '?';
}
void CCapKey::ResetCap(void)
{
SetEmptyRgn(theKeyRegion);
label[0] = 1;
label[1] = '?';
numLabelSpots = 0;
}
void CCapKey::SetKeyChar(
char theChar)
{
label[0] = 1;
label[1] = theChar;
}
void CCapKey::SetKeyString(
StringPtr theString)
{
label[0] = theString[0];
if(label[0] > LABELMAXLEN)
{ label[0] = LABELMAXLEN;
}
BlockMoveData(theString+1, label+1, label[0]);
}
void CCapKey::AddKeyArea(
short x,
short y,
RgnHandle theArea)
{
if(numLabelSpots < MAXLABELSPOTS)
{ labelSpots[numLabelSpots].h = x;
labelSpots[numLabelSpots].v = y;
numLabelSpots++;
UnionRgn(theArea, theKeyRegion, theKeyRegion);
}
}
void CCapKey::OffsetKey(
short x,
short y)
{
short i;
for(i=0;i<numLabelSpots;i++)
{ labelSpots[i].h += x;
labelSpots[i].v += y;
}
OffsetRgn(theKeyRegion, x, y);
}
void CCapKey::DrawKey()
{
short i,j;
GrafPtr port;
Boolean hadFunc = false;
GetPort(&port);
EraseRgn(theKeyRegion);
FrameRgn(theKeyRegion);
if(funcCount > 0)
{ for(i=0;i<numLabelSpots;i++)
{ for(j = 0; j < funcCount; j++)
{ CCapFunc *theFunc;
theFunc = itsMaster->funcs[funcList[j]];
if(theFunc)
{ hadFunc = true;
theFunc->DrawIcon(labelSpots[i].h, labelSpots[i].v);
}
}
}
}
if(!hadFunc)
{ short w;
short savedSize;
short yOffset = 4;
if(label[0] > 1)
{ savedSize = thePort->txSize;
TextSize(9);
w = StringWidth((StringPtr)label) / 2 - 1;
}
else
{ w = StringWidth((StringPtr)label) / 2;
yOffset++;
}
for(i=0;i<numLabelSpots;i++)
{
MoveTo(labelSpots[i].h - w, labelSpots[i].v + yOffset);
DrawString((StringPtr)label);
}
if(label[0] > 1)
{ TextSize(savedSize);
}
}
}
void CCapKey::Dispose()
{
DisposeRgn(theKeyRegion);
delete this;
}
void CCapKey::AddFunc(
CCapFunc *theFunc)
{
short i;
for(i=0;i<funcCount;i++)
{ if(funcList[i] == theFunc->id)
{ i = -1;
break;
}
}
if(i >= 0)
{ for(i=0;i<funcCount;i++)
{ if(itsMaster->funcs[funcList[i]]->mask & theFunc->mask)
{ funcList[i] = funcList[--funcCount];
i--;
}
}
if(funcCount < MAXFUNCSPERKEY)
{ funcList[funcCount++] = theFunc->id;
}
}
}
void CCapKey::RemoveFunc(
CCapFunc *theFunc)
{
short i;
for(i=0;i<funcCount;i++)
{ if(funcList[i] == theFunc->id)
{ funcList[i] = funcList[--funcCount];
i--;
}
}
}
void CCapKey::DragFunc(
CCapFunc *theFunc,
Point where,
RgnHandle dragRegion)
{
RgnHandle fromRegion;
fromRegion = NewRgn();
if(this == itsMaster->currentCap)
{ RectRgn(fromRegion, &itsMaster->infoRect);
}
UnionRgn(fromRegion, theKeyRegion, fromRegion);
if(theFunc->DoDrag(itsMaster, fromRegion, dragRegion, where))
{
InvalRgn(fromRegion);
RemoveFunc(theFunc);
}
else
{ itsMaster->currentCap = this;
InvalRect(&itsMaster->infoRect);
}
DisposeRgn(fromRegion);
}
void CCapKey::ReadCaps(
long *map)
{
short i;
unsigned long mask = 1L<<31;
funcCount = 0;
for(i=0;i<itsMaster->numFuncs;i++)
{ if(*map & mask)
{ funcList[funcCount++] = i;
if(funcCount == MAXFUNCSPERKEY)
break;
}
mask >>= 1;
if(mask == 0)
{ mask = 1L<<31;
map++;
}
}
}
void CCapKey::WriteCaps(
long *map)
{
short i;
for(i=0;i<FUNCLONGS;i++) map[i] = 0;
for(i=0;i<funcCount;i++)
{ short w;
unsigned long mask;
w = funcList[i];
mask = 1L << (31 - (w & 31));
w >>= 5;
map[w] |= mask;
}
}
|
7917f1f5b531011de1b63e859769c26b1f258526
|
1b0c53dd8d7d69bf0b0d1bdd2e2b9e02061eb101
|
/lib/include/mz/mz_thread.h
|
19766c521b407eeeff701fe84630947c507a9730
|
[] |
no_license
|
patrick963534/a517
|
683fbf93e054f115a26c17ec277bbf1fbd5148ac
|
12c9d96e1322d671b093e29b372b09d07ac2244c
|
refs/heads/master
| 2020-06-08T12:13:56.617685 | 2012-09-18T13:02:47 | 2012-09-18T13:02:47 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 759 |
h
|
mz_thread.h
|
#ifndef __MZ_THREAD_H__
#define __MZ_THREAD_H__
#include <mz/libs/mz_defs.h>
typedef struct mz_thread_t
{
void *fd;
char *name;
} mz_thread_t;
typedef struct mz_thread_mutex_t
{
void *mutex;
} mz_thread_mutex_t;
typedef void* mz_thread_func_t(void *arg);
MZ_API mz_thread_t* mz_thread_new(mz_thread_func_t func, const char *name, void *arg);
MZ_API void mz_thread_join(mz_thread_t *me);
MZ_API void mz_thread_delete(mz_thread_t *me);
MZ_API mz_thread_mutex_t* mz_thread_mutex_new();
MZ_API void mz_thread_mutex_lock(mz_thread_mutex_t *me);
MZ_API void mz_thread_mutex_unlock(mz_thread_mutex_t *me);
MZ_API void mz_thread_mutex_delete(mz_thread_mutex_t *me);
#endif
|
3b36c42ba4617e0dcb27be28d32874a8ef54c9d5
|
7a68590e6f187fc4a8e5ff47a8afda745c5c35db
|
/instrument/util.c
|
b2d950f7e5533821394e85ebad6ecd42e3edfdb4
|
[] |
no_license
|
RaphaelK12/p5
|
c01b04b17a3c46333e63baf203e27d2c66eb1df5
|
56dad2571ba08fed87cef5ff240c29e4a55ee231
|
refs/heads/master
| 2021-10-27T12:02:12.385803 | 2019-04-17T04:08:33 | 2019-04-17T04:09:20 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,101 |
c
|
util.c
|
/* Copyright 2006 wParam, licensed under the GPL */
#include <windows.h>
#include "instrument.h"
#include <stdio.h>
void UtilListInsert (instlist_t **head, instlist_t *item)
{
while (*head)
{
head = &(*head)->next;
}
//item->next = *head;
*head = item;
}
void UtilListRemove (instlist_t **head, instlist_t *item)
{
while (*head)
{
if (*head == item)
{
*head = item->next;
return;
}
head = &(*head)->next;
}
}
HANDLE UtilCreateEventf (SECURITY_ATTRIBUTES *sa, BOOL manualreset, BOOL initstate, char *name, ...)
{
char buffer[MAX_PATH];
va_list marker;
va_start (marker, name);
_vsnprintf (buffer, MAX_PATH - 1, name, marker);
buffer[MAX_PATH - 1] = '\0';
va_end (marker);
return CreateEvent (sa, manualreset, initstate, buffer);
}
HANDLE UtilOpenEventf (char *name, ...)
{
char buffer[MAX_PATH];
va_list marker;
va_start (marker, name);
_vsnprintf (buffer, MAX_PATH - 1, name, marker);
buffer[MAX_PATH - 1] = '\0';
va_end (marker);
return OpenEvent (EVENT_ALL_ACCESS, FALSE, buffer);
}
|
064506a896d56d3882f34f49bc0727f7da59a3d4
|
39921d049a882220193fb45f4023a6831fb79908
|
/Pods/FirebaseFirestore/Firestore/core/src/local/leveldb_migrations.h
|
cf657e4d23efba3519775249c0c0b3e0f85b16c6
|
[] |
no_license
|
furydeveloper/SearchCoinKaraoke
|
a48bb7f0a4032735a2fc8895bd6bb02626b392b3
|
98043d3e280814f75c4f6c7957e6c0eee320a9b9
|
refs/heads/master
| 2023-08-10T23:24:28.780365 | 2021-10-03T02:51:57 | 2021-10-03T02:51:57 | 409,012,702 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 129 |
h
|
leveldb_migrations.h
|
version https://git-lfs.github.com/spec/v1
oid sha256:d95aa945ed497e7223585f556901be64101d21b6a6ae0078a1e403fd807e4173
size 1730
|
d0f77eea4315b3af6117476b5723cda8f4486c1a
|
507a68c5ff3fcd28eb21ebe7b01f2bcb33f7e073
|
/EventScaleFactors/eff_Reco.C
|
ec15ae22e72b8bfd8d3fde01b414c091e1819439
|
[] |
no_license
|
andjuo/DYee
|
3e2c6d1075a43e5bc6a4c57d2295b3d5b94bba24
|
6101557da42d8614b53aebb370bc2915759fd007
|
refs/heads/master
| 2021-01-01T05:54:05.413940 | 2014-10-15T11:15:45 | 2014-10-15T11:15:45 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 28,656 |
c
|
eff_Reco.C
|
#if !defined(__CINT__) || defined(__MAKECINT__)
#include <TROOT.h> // access to gROOT, entry point to ROOT system
#include <TFile.h> // file handle class
#include <TTree.h> // class to access ntuples
#include <TChain.h>
#include <TCanvas.h> // class for drawing
#include <TH1F.h> // 1D histograms
#include <TGraphErrors.h> // graphs
#include <TProfile.h> // profile histograms
#include <TBenchmark.h> // class to track macro running statistics
#include <TLorentzVector.h> // class for Lorentz vector computations
#include <TGraphAsymmErrors.h>
#include <TClonesArray.h>
#include <TMatrixD.h>
#include <iostream> // standard I/O
#include <iomanip> // functions to format standard I/O
#include <fstream> // functions for file I/O
#include <vector> // STL vector class
#include <string> // C++ string class
#include <sstream> // class for parsing strings
#include "RooRealVar.h"
#include "RooDataHist.h"
#include "RooBreitWigner.h"
#include "RooExponential.h"
#include "RooCBShape.h"
#include "RooGaussian.h"
#include "RooGenericPdf.h"
#include "RooHistPdf.h"
#include "RooAddPdf.h"
#include "RooExtendPdf.h"
#include "RooFFTConvPdf.h"
#include "RooCategory.h"
#include "RooSimultaneous.h"
#include "RooDataSet.h"
#include "RooFitResult.h"
#include "../Include/CPlot.hh" // helper class for plots
#include "../Include/MitStyleRemix.hh" // style settings for drawing
// define classes and constants to read in ntuple
#include "../Include/EWKAnaDefs.hh"
#include "../Include/TGenInfo.hh"
#include "../Include/TEventInfo.hh"
#include "../Include/TDielectron.hh"
#include "../Include/TElectron.hh"
#include "../Include/TPhoton.hh"
#include "../Include/TVertex.hh"
#include "../Include/DYTools.hh"
#include "../Include/EleIDCuts.hh"
#include "../Include/TriggerSelection.hh"
#include "../EventScaleFactors/cutFunctions.hh"
#include "../EventScaleFactors/fitFunctions.hh"
#include "../EventScaleFactors/fitFunctionsCore.hh"
#include "../Include/EventSelector.hh"
#include "../EventScaleFactors/tnpSelectEvents.hh"
#endif
using namespace mithep;
//=== COMMON CONSTANTS ===========================================================================================
const int evaluate_efficiencies=0;
//const int performPUReweight=0;
//=== FUNCTION DECLARATIONS ======================================================================================
//=== MAIN MACRO =================================================================================================
int eff_Reco(int analysisIs2D,
const TString configFile,
const TString effTypeString,
int runOnData,
DYTools::TRunMode_t runMode=DYTools::NORMAL_RUN,
DYTools::TSystematicsStudy_t systMode=DYTools::NO_SYST)
{
using namespace mithep;
gBenchmark->Start("eff_Reco");
// ---------------------------------
// Preliminary checks
// ---------------------------------
if (!effTypeString.Contains("RECO")) {
std::cout << "eff_Reco: effTypeString should be \"RECO\"\n";
return retCodeError;
}
DYTools::printExecMode(runMode,systMode);
if (configFile.Contains("_check_")) {
return retCodeStop;
}
if (!DYTools::setup(analysisIs2D)) {
std::cout << "failed to initialize the analysis\n";
return retCodeError;
}
//--------------------------------------------------------------------------------------------------------------
// Settings
//==============================================================================================================
TDescriptiveInfo_t tnpSection;
InputFileMgr_t inpMgr;
if (!inpMgr.Load(configFile,&tnpSection) ||
!inpMgr.KeepFirstAndLastSample()
//|| !inpMgr.SetSkimsToNtuples()
) return retCodeError;
inpMgr.Print();
// Construct eventSelector, update inpMgr and plot directory
EventSelector_t evtSelector(inpMgr,runMode,systMode,
"", "", EventSelector::_selectDefault);
TriggerSelection_t triggers(evtSelector.trigger());
// Event weight handler
EventWeight_t evWeight;
evWeight.init(inpMgr.puReweightFlag(),inpMgr.fewzFlag(),systMode);
// Prepare output directory
TString tagAndProbeDir=inpMgr.tnpDir(systMode,1);
_TnP_fitPlots_dir = tagAndProbeDir; // defined in fitFunctionsCore.hh
//--------------------------------------------------------------------------------------------------------------
// Main analysis code
//==============================================================================================================
const tnpSelectEvent_t::TCreateBranchesOption_t weightBranch1stStep=
(inpMgr.puReweightFlag()) ?
tnpSelectEvent_t::_skipWeight :
tnpSelectEvent_t::_dontSkipWeight;
//TString puStr=(inpMgr.puReweightFlag()) ? "_PU" : "";
Double_t massLow = 60;
Double_t massHigh = 120;
// Read in the configuration file
DYTools::TDataKind_t dataKind = (runOnData) ? DYTools::DATA : DYTools::MC;
TString sampleTypeString = (runOnData) ? "DATA" : "MC";
TString calcMethodString = inpMgr.getTNP_calcMethod(tnpSection,dataKind,DYTools::RECO);
std::cout << "calcMethodString=" << calcMethodString << "\n";
TString etBinningString = inpMgr.getTNP_etBinningString(tnpSection);
TString etaBinningString = inpMgr.getTNP_etaBinningString(tnpSection);
TString dirTag= inpMgr.selectionTag();
vector<TString> ntupleFileNames;
vector<TString> jsonFileNames;
inpMgr.getTNP_ntuples(tnpSection,runOnData,ntupleFileNames,jsonFileNames);
if (1) {
if (ntupleFileNames.size()==0) {
std::cout << "error: no ntupleFileNames obtained\n";
return retCodeError;
}
for (unsigned int i=0; i<ntupleFileNames.size(); ++i) {
std::cout << " i=" << i << ": " << ntupleFileNames[i];
if (jsonFileNames.size()>i) std::cout << "; json " << jsonFileNames[i];
std::cout << "\n";
}
}
printf("Efficiency calculation method: %s\n", calcMethodString.Data());
int calcMethod= DetermineTnPMethod(calcMethodString);
DYTools::TEfficiencyKind_t effType = DetermineEfficiencyKind(effTypeString);
printf("Efficiency type to measure: %s\n", EfficiencyKindName(effType).Data());
if ( effType != DYTools::RECO ) {
std::cout << "effReco works with RECO efficiency only\n";
assert(0);
}
DYTools::TEtBinSet_t etBinning = DetermineEtBinSet(etBinningString);
printf("SC ET binning: %s\n", EtBinSetName(etBinning).Data());
DYTools::TEtaBinSet_t etaBinning = DetermineEtaBinSet(etaBinningString);
printf("SC eta binning: %s\n", EtaBinSetName(etaBinning).Data());
printf("Sample: %s\n", sampleTypeString.Data());
int sample=DetermineDataKind(sampleTypeString);
// Correct the trigger object
triggers.actOnData((sample==DYTools::DATA)?true:false);
evtSelector.setTriggerActsOnData((sample==DYTools::DATA)?true:false);
// The label is a string that contains the fields that are passed to
// the function below, to be used to name files with the output later.
TString label = getLabel(sample, effType, calcMethod, etBinning, etaBinning, triggers);
//--------------------------------------------------------------------------------------------------------------
// Main analysis code
//==============================================================================================================
#ifdef tnpSelectEventsIsObject
tnpSelectEvent_t::Class()->IgnoreTObjectStreamer();
#endif
//
// Set up histograms
//
// TH1F* hMass = new TH1F("hMass" ,"",30,massLow,massHigh);
TH1F* hMassTotal = new TH1F("hMassTotal","",30,massLow,massHigh);
TH1F* hMassPass = new TH1F("hMassPass" ,"",30,massLow,massHigh);
TH1F* hMassFail = new TH1F("hMassFail" ,"",30,massLow,massHigh);
#if (defined DYee7TeV)
// Here, for 7 TeV we set the names of the source/target histograms with
// unbiased pile-up distributions that are prepared according to Hildreth's instructions.
// The data histogram for TnP takes into account TnP trigger prescales.
// For 8 TeV, this is not needed and the default ones will be used
TString puTargetFName = "";
TString puSourceFName = "";
if( DYTools::energy8TeV ){
puTargetFName = "undefined";
puSourceFName = "undefined";
}else{
puTargetFName = "../root_files/pileup/dataPileupHildreth_full2011_TnP_RECO_20121118_repacked.root";
puSourceFName = "../root_files/pileup/mcPileupHildreth_full2011_20121110_repacked.root";
}
if (inpMgr.puReweightFlag()) {
if( DYTools::energy8TeV ){
// Do not do the check for 8 TeV where the custom files are not used
}else{
TFile tmpFile(puTargetFName);
int npvOk=tmpFile.IsOpen();
tmpFile.Close();
if (!npvOk) {
std::cout << "the file needed of PV-reweighting, <" << puTargetFName << "> does not exist. Run selectEvents.C first\n";
assert(0);
}
}
}
#endif // end of block for 7TeV analysis
TFile *templatesFile = 0;
vector<TH1F*> hPassTemplateV;
vector<TH1F*> hFailTemplateV;
if( sample != DYTools::DATA) {
// For simulation, we will be saving templates
TString labelMC =
getLabel(-1111, effType, calcMethod, etBinning, etaBinning, triggers);
TString templatesLabel =
tagAndProbeDir + TString("/mass_templates_")+ labelMC+TString(".root");
templatesFile = new TFile(templatesLabel,"recreate");
for(int i=0; i<DYTools::getNEtBins(etBinning); i++){
for(int j=0; j<DYTools::getNEtaBins(etaBinning); j++){
TString hname = "hMassTemplate_Et";
hname += i;
hname += "_eta";
hname += j;
hPassTemplateV.push_back(new TH1F(hname+TString("_pass"),"",60,massLow,massHigh));
hFailTemplateV.push_back(new TH1F(hname+TString("_fail"),"",60,massLow,massHigh));
}
}
} else {
if (evaluate_efficiencies) {
// For data, we will be using templates
// however, if the request is COUNTnCOUNT, do nothing
if( calcMethod != DYTools::COUNTnCOUNT ){
TString labelMC =
getLabel(-1111,effType, calcMethod, etBinning, etaBinning, triggers);
TString templatesLabel =
tagAndProbeDir+TString("/mass_templates_")+labelMC+TString(".root");
templatesFile = new TFile(templatesLabel);
if( ! templatesFile->IsOpen() ) {
std::cout << "templatesFile name " << templatesLabel << "\n";
assert(0);
}
}
}
}
// This file is utilized by fit_EffReco
TString selectEventsFName=inpMgr.tnpSelectEventsFName(systMode,sampleTypeString,effTypeString,triggers.triggerSetName());
/*
TString uScore="_";
TString selectEventsFName=tagAndProbeDir + TString("/selectEvents_")
+ DYTools::analysisTag + uScore
+ sampleTypeString + uScore +
+ effTypeString + uScore + triggers.triggerSetName();
if (inpMgr.puReweightFlag()) selectEventsFName.Append(puStr);
selectEventsFName.Append(".root");
*/
std::cout << "selectEventsFName=<" << selectEventsFName << ">\n";
TFile *selectedEventsFile = new TFile(selectEventsFName,"recreate");
if(!selectedEventsFile)
assert(0);
tnpSelectEvent_t storeData;
const int new_store_data_code=1;
TTree *passTree = new TTree("passTree","passTree");
assert(passTree);
Double_t storeMass, storeEt, storeEta;
UInt_t storeNGoodPV;
if (new_store_data_code) {
storeData.createBranches(passTree, weightBranch1stStep);
}
else {
passTree->Branch("mass",&storeMass,"mass/D");
passTree->Branch("et",&storeEt ,"et/D");
passTree->Branch("eta",&storeEta ,"eta/D");
passTree->Branch("nGoodPV",&storeNGoodPV,"nGoodPV/i");
}
TTree *failTree = new TTree("failTree","failTree");
assert(failTree);
if (new_store_data_code) {
storeData.createBranches(failTree, weightBranch1stStep);
}
else {
failTree->Branch("mass",&storeMass,"mass/D");
failTree->Branch("et",&storeEt ,"et/D");
failTree->Branch("eta",&storeEta ,"eta/D");
failTree->Branch("nGoodPV",&storeNGoodPV,"nGoodPV/i");
}
int eventsInNtuple = 0;
int eventsAfterTrigger = 0;
int eventsAfterJson = 0;
int eventsAfterMET = 0;
int tagCand = 0;
int tagCandPassEt = 0;
int tagCandPassEta = 0;
int tagCandGenMatched = 0;
int tagCandEcalDriven = 0;
int tagCandFinalCount = 0;
int numTagProbePairs = 0;
int numTagProbePairsPassEt = 0;
int numTagProbePairsPassEta = 0;
int numTagProbePairsGenMatched = 0;
int numTagProbePairsInMassWindow = 0;
int numTagProbePairsPassSCIso = 0;
// Loop over files
for(UInt_t ifile=0; ifile<ntupleFileNames.size(); ifile++){
//
// Access samples and fill histograms
//
TFile *infile = 0;
TTree *eventTree = 0;
// Data structures to store info from TTrees
mithep::TEventInfo *info = new mithep::TEventInfo();
mithep::TGenInfo *gen = new mithep::TGenInfo();
TClonesArray *scArr = new TClonesArray("mithep::TPhoton");
TClonesArray *eleArr = new TClonesArray("mithep::TElectron");
TClonesArray *pvArr = new TClonesArray("mithep::TVertex");
// Read input file
cout << "Processing " << ntupleFileNames[ifile] << "..." << endl;
if (ntupleFileNames[ifile].Index("tight-loose_skim")!=-1) {
std::cout << "eff_Reco cannot work with 'tight-loose_skim' file: TElectron and TPhoton branches are needed" << endl;
assert(0);
}
infile = new TFile(ntupleFileNames[ifile]);
assert(infile);
// Set up JSON for data
Bool_t hasJSON = kFALSE;
// mithep::RunLumiRangeMap rlrm;
JsonParser jsonParser;
if((jsonFileNames.size()>0) && (jsonFileNames[ifile].CompareTo("NONE")!=0)) {
hasJSON = kTRUE;
// rlrm.AddJSONFile(samp->jsonv[ifile].Data());
std::cout << "JSON file " << jsonFileNames[ifile] << "\n";
jsonParser.Initialize(jsonFileNames[ifile].Data());
}
// Get the TTrees
eventTree = (TTree*)infile->Get("Events"); assert(eventTree);
// Set branch address to structures that will store the info
eventTree->SetBranchAddress("Info",&info);
TBranch *infoBr = eventTree->GetBranch("Info");
// check whether the file is suitable for the requested run range
UInt_t runNumMin = UInt_t(eventTree->GetMinimum("runNum"));
UInt_t runNumMax = UInt_t(eventTree->GetMaximum("runNum"));
std::cout << "runNumMin=" << runNumMin << ", runNumMax=" << runNumMax << "\n";
if (!triggers.validRunRange(runNumMin,runNumMax)) {
std::cout << "... file contains uninteresting run range\n";
continue;
}
// Define other branches
eventTree->SetBranchAddress("Photon" ,&scArr);
eventTree->SetBranchAddress("Electron",&eleArr);
eventTree->SetBranchAddress("PV", &pvArr);
TBranch *electronBr = eventTree->GetBranch("Electron");
TBranch *photonBr = eventTree->GetBranch("Photon");
TBranch *pvBr = eventTree->GetBranch("PV");
assert(electronBr); assert(photonBr);
assert(pvBr);
TBranch *genBr = 0;
if(sample != DYTools::DATA){
eventTree->SetBranchAddress("Gen",&gen);
genBr = eventTree->GetBranch("Gen");
}
// loop over events
eventsInNtuple += eventTree->GetEntries();
for(UInt_t ientry=0; ientry<eventTree->GetEntries(); ientry++) {
//for(UInt_t ientry=0; ientry<1000; ientry++) {
if (DYTools::isDebugMode(runMode) && (ientry>100000)) break; // This is for faster turn-around in testing
// Check that the whole event has fired the appropriate trigger
infoBr->GetEntry(ientry);
// Apply JSON file selection to data
if(hasJSON && !jsonParser.HasRunLumi(info->runNum, info->lumiSec)) continue; // not certified run? Skip to next event...
eventsAfterJson++;
// Event level trigger cut
ULong_t eventTriggerBit= triggers.getEventTriggerBit_SCtoGSF(info->runNum);
ULong_t tagTriggerObjectBit= triggers.getLeadingTriggerObjectBit_SCtoGSF(info->runNum);
if(!(info->triggerBits & eventTriggerBit)) continue; // no trigger accept? Skip to next event...
eventsAfterTrigger++;
// Apply event-level pfMET
if( !(info->pfMET < 20 ) ) continue;
eventsAfterMET++;
// get analysis object arrays
if(sample != DYTools::DATA)
genBr->GetEntry(ientry);
eleArr->Clear();
electronBr->GetEntry(ientry);
scArr->Clear();
photonBr->GetEntry(ientry);
mithep::TElectron *electron=NULL;
#ifdef DYee8TeV_reg
mithep::TElectron unregElectron;
#endif
// Loop over the tag electrons
for(int iele = 0; iele < eleArr->GetEntriesFast(); iele++){
tagCand++;
electron = (mithep::TElectron*)((*eleArr)[iele]);
#ifdef DYee8TeV_reg
if ((systMode==DYTools::UNREGRESSED_ENERGY) ||
(systMode==DYTools::UNREG_PU5plus) ||
(systMode==DYTools::UNREG_PU5minus) ||
(systMode==DYTools::UNREG_TagID) ||
(systMode==DYTools::UNREG_TagPt))
{
unregElectron.assign(electron);
unregElectron.replace2UncorrEn();
electron= &unregElectron;
}
#endif
// All cuts for the tag electron should be applied here
if(electron->scEt<20) continue;
tagCandPassEt++;
// For the tag, always exclude rapidity gap
bool isInGap = DYTools::isEcalGap(electron->scEta);
if ( isInGap ) continue;
if( fabs(electron->scEta) > DYTools::kECAL_MAX_ETA) continue;
tagCandPassEta++;
if( sample != DYTools::DATA)
if( ! electronMatchedToGeneratorLevel(gen, electron) ) continue;
tagCandGenMatched++;
// ECAL driven: this condition is NOT applied
if( !isTag( electron, tagTriggerObjectBit, info->rhoLowEta) ) continue;
// Syst mode for tag considers two cases:
// Resolution_study or TAG_PT: lower elePt
// FSR_study or TAG_ID: mediumID
// other systematics do not affect the selection, thus
// systMode branching for isTag() might be removed.
bool tagOk=false;
if (systMode == DYTools::NO_SYST) {
tagOk=isTag( electron, tagTriggerObjectBit, info->rhoLowEta);
}
else {
tagOk=isTag_systStudy( electron, tagTriggerObjectBit, info->rhoLowEta, systMode);
}
if (!tagOk) continue;
tagCandFinalCount++;
// Loop over superclusters in this event: the probes
// Note: each supercluster has a number assigned: scID,
// and each electron object from TElectron collection has
// the field scID that tells from which supercluster this electron
// comes from. That allows to make the match between the
// object in TPhoton collection and TElectron collection to
// find superclusters reconstructed as electrons.
for(int isc = 0; isc < scArr->GetEntriesFast(); isc++){
const TPhoton *sc = (TPhoton*)((*scArr)[isc]);
// Avoid probe that is same as tag
if( sc->scID == electron->scID ) continue;
numTagProbePairs++;
// Apply probe cuts
if(sc->scEt < 10) continue;
numTagProbePairsPassEt++;
// For the probe, exclude eta gap only for one specific eta
// binning, barrel/endcap split
if(etaBinning == DYTools::ETABINS2){
if( DYTools::isEcalGap( sc->scEta ) ) continue;
}
if( fabs(sc->scEta) > DYTools::kECAL_MAX_ETA) continue;
numTagProbePairsPassEta++;
if( sample != DYTools::DATA)
if( ! scMatchedToGeneratorLevel(gen, sc) ) continue;
numTagProbePairsGenMatched++;
// Tracker isolation cut helps to clean up
// the probes, but introduces a small bias
// ~3% below 20 GeV, and <1% above 20 GeV
if( ientry<1) printf("\n\n WARNING! Cut on probe isolation is applied! Beware of a small bias\n");
if( fabs(sc->trkIso04)/sc->pt > 0.15 ) continue;
numTagProbePairsPassSCIso++;
// Find mass of the electron-supercluster pair
TLorentzVector ele4V, sc4V, dycand4V;
ele4V.SetPtEtaPhiM(electron->pt, electron->eta, electron->phi, 0.000511);
sc4V .SetPtEtaPhiM(sc->pt, sc->eta, sc->phi, 0.000511);
dycand4V = ele4V + sc4V;
double mass = dycand4V.M();
// Tag and probe is done around the Z peak
if((mass < massLow) || (mass > massHigh)) continue;
numTagProbePairsInMassWindow++;
// The probes are fully selected at this point.
// Loop over electron collection again to find a match to this supercluster
// Match only to ECAL-driven GSF electrons
const TElectron *electronMatch = 0;
for(int iele2 = 0; iele2 < eleArr->GetEntriesFast(); iele2++){
const TElectron *electron2 = (TElectron*)((*eleArr)[iele2]);
if( sc->scID == electron2->scID ){
// Check ecal driven bits
if( electron2->typeBits & kEcalDriven )
electronMatch = electron2;
}
} // end loop over electrons searching for SC match
// get the number of goodPVs
pvBr->GetEntry(ientry);
storeNGoodPV=0;
// For data, we use the count of good reconstructed vertices
// but for MC, since this will be used for PU reweighting,
// we are using the gen-level number of simulated PU.
if( (sample==DYTools::DATA) ) {
storeNGoodPV = countGoodVertices(pvArr);
}else{
#ifdef DYee8TeV_reg
storeNGoodPV = int(info->nPUmean);
#else
storeNGoodPV = info->nPU;
#endif
}
// total probes
double event_weight=1.0;
double ee_rapidity=0.;
hMassTotal->Fill(mass);
storeMass = mass;
storeEt = sc->scEt;
storeEta = sc->scEta;
if (new_store_data_code) {
#ifdef tnpStoreTag
storeData.assignTag(electron->scEt,electron->scEta);
#endif
storeData.assign(mass,ee_rapidity,sc->scEt,sc->scEta, storeNGoodPV,
event_weight, 1.);
}
int templateBin =
getTemplateBin( DYTools::findEtBin(sc->scEt,etBinning),
DYTools::findEtaBin(sc->scEta,etaBinning),
etaBinning);
if( electronMatch != 0 ){
// supercluster has match in reconstructed electrons: "pass"
hMassPass->Fill(mass);
passTree->Fill();
if(sample != DYTools::DATA && templateBin != -1)
hPassTemplateV[templateBin]->Fill(mass);
}else{
// supercluster is not reconstructed as an electron
hMassFail->Fill(mass);
failTree->Fill();
if(sample != DYTools::DATA && templateBin != -1)
hFailTemplateV[templateBin]->Fill(mass);
}
} // end loop over superclusters - probes
} // end loop over electrons - tags
} // end loop over events
delete infile;
infile=0;
eventTree=0;
delete gen;
delete info;
delete eleArr;
delete scArr;
} // end loop over files
// save the selected trees
selectedEventsFile->cd();
passTree->Write();
failTree->Write();
selectedEventsFile->Write();
if (inpMgr.puReweightFlag()) {
selectedEventsFile->Close();
delete selectedEventsFile;
TString outFNamePV = tagAndProbeDir +
TString("/npv_tnp") + effTypeString + TString("_") + sampleTypeString +
DYTools::analysisTag + TString(".root");
//
// The names below are actually used for 7 TeV data/MC.
// For 8 TeV, they are not used.
TString puTargetDistrName="pileup_lumibased_data";
TString puSourceDistrName="pileup_simulevel_mc";
#if !(defined DYee7TeV)
TString puTargetFName="", puSourceFName=""; // not used
#endif
// TString refDistribution="hNGoodPV_data";
TString sampleNameBase= effTypeString + TString("_") +
sampleTypeString + DYTools::analysisTag;
bool isMC = (sample==DYTools::MC);
int res=CreatePUWeightedBranch(systMode,
selectEventsFName,
puTargetFName, puTargetDistrName,
puSourceFName, puSourceDistrName,
// outFNamePV, sampleNameBase,
isMC);
assert(res);
selectedEventsFile=new TFile(selectEventsFName);
assert(selectedEventsFile);
passTree= (TTree*)selectedEventsFile->Get("passTree");
failTree= (TTree*)selectedEventsFile->Get("failTree");
assert(passTree); assert(failTree);
}
//
// Efficiency analysis
//
// printf("Number of regular candidates: %15.0f\n", hMass->GetSumOfWeights());
printf("Total events in ntuple %15d\n",eventsInNtuple);
printf(" events after JSON selection (data) %15d\n",eventsAfterJson);
printf(" events after event level trigger cut %15d\n",eventsAfterTrigger);
printf(" events after event level MET cut %15d\n",eventsAfterMET);
printf("\nTotal electron tag candidates (no cuts) %15d\n",tagCand);
printf(" tag candidates Et>20 %15d\n",tagCandPassEt);
printf(" tag candidates, eta in acceptance %15d\n",tagCandPassEta);
printf(" tag candidates, matched to GEN (if MC) %15d\n",tagCandGenMatched);
printf(" tag candidates, ECAL driven %15d\n",tagCandEcalDriven);
printf(" tag candidates, full selection(ID,HLT) %15d\n",tagCandFinalCount);
printf("\nTotal tag(electron)-probe(supercluster) pairs %15d\n",numTagProbePairs);
printf(" probe Et>10 %15d\n",numTagProbePairsPassEt);
printf(" probe eta in acceptance %15d\n",numTagProbePairsPassEta);
printf(" probe matched to GEN (if MC) %15d\n",numTagProbePairsGenMatched);
printf(" tag-probe mass in 60-120 GeV window %15d\n",numTagProbePairsInMassWindow);
printf(" probe passes SC trk isolation %15d\n",numTagProbePairsPassSCIso);
printf("\nNumber of probes, total %15.0f\n", hMassTotal->GetSumOfWeights());
printf("Number of probes, passed %15.0f\n", hMassPass->GetSumOfWeights());
printf("Number of probes, failed %15.0f\n", hMassFail->GetSumOfWeights());
if (evaluate_efficiencies) {
// Human-readable text file to store measured efficiencies
TString reslog = tagAndProbeDir+
TString("/efficiency_TnP_")+label+TString(".txt");
ofstream effOutput;
effOutput.open(reslog);
// Print into the results file the header.
effOutput << "Efficiency calculation method: " << calcMethodString.Data() << endl;
effOutput << "Efficiency type to measure: " << effTypeString.Data() << endl;
effOutput << "SC ET binning: " << etBinningString.Data() << endl;
effOutput << "SC eta binning: " << etaBinningString.Data() << endl;
effOutput << "Sample: " << sampleTypeString.Data() << endl;
effOutput << "Files processed: " << endl;
for(UInt_t i=0; i<ntupleFileNames.size(); i++)
effOutput << " " << ntupleFileNames[i].Data() << endl;
// ROOT file to store measured efficiencies in ROOT format
TString resrootBase = tagAndProbeDir+
TString("/efficiency_TnP_")+label;
// Fit log
TString fitlogname =
TString("results_unsorted/efficiency_TnP_")+label+TString("_fitlog.dat");
ofstream fitLog;
fitLog.open(fitlogname);
//
// Find efficiency
//
bool useTemplates = false;
if(sample == DYTools::DATA)
useTemplates = true;
int NsetBins=30;
// bool isRECO=1;
const char* setBinsType="cache";
int nDivisions =
DYTools::getNEtBins(etBinning)*DYTools::getNEtaBins(etaBinning);
double ymax = 800;
if(nDivisions <4 )
ymax = nDivisions * 200;
else if (nDivisions>DYTools::maxTnPCanvasDivisions) {
nDivisions=DYTools::maxTnPCanvasDivisions;
}
TCanvas *c1 = MakeCanvas("c1","c1", 600, (int)ymax);
c1->Divide(2,nDivisions);
measureEfficiencyPU(passTree, failTree,
calcMethod, etBinning, etaBinning, c1, effOutput, fitLog,
useTemplates, templatesFile,
resrootBase,
//resultsRootFile, //resultsRootFilePlots,
NsetBins, effType, setBinsType,
dirTag, triggers.triggerSetName(),0);
effOutput.close();
fitLog.close();
TString command = "cat ";
command += reslog;
system(command.Data());
TString fitpicname = tagAndProbeDir+
TString("/efficiency_TnP_")+label;
if (calcMethod==DYTools::COUNTnCOUNT) fitpicname.Append(".png"); else fitpicname.Append("_fit.png");
//c1->Update();
c1->SaveAs(fitpicname);
// Save MC templates
if(sample != DYTools::DATA){
templatesFile->cd();
for(int i=0; i<DYTools::getNEtBins(etBinning); i++){
for(int j=0; j<DYTools::getNEtaBins(etaBinning); j++){
int templateBin = getTemplateBin( i, j, etaBinning);
hPassTemplateV[templateBin]->Write();
hFailTemplateV[templateBin]->Write();
}
}
templatesFile->Close();
}
}
selectedEventsFile->Close();
std::cout << "selectedEventsFile <" << selectEventsFName << "> saved\n";
gBenchmark->Show("eff_Reco");
return retCodeOk;
}
|
28b98ec06fe89aaeac6f9ed9f55fe6bcb71adccc
|
0982fb077cd59436811077b505d4377f7c3a3311
|
/src/orthoDr_reg.h
|
ad2333cb3615db8fa4bf7d03d08727182e6bfc87
|
[] |
no_license
|
teazrq/orthoDr
|
c87a851477b84693b81905423cc7db32659dd795
|
b009267a5b0124008711f556f1642f9fb880a5f2
|
refs/heads/master
| 2023-07-06T23:52:36.724019 | 2022-07-19T21:14:17 | 2022-07-19T21:14:17 | 106,500,687 | 7 | 8 | null | 2023-06-22T04:16:27 | 2017-10-11T03:24:50 |
C++
|
UTF-8
|
C
| false | false | 6,166 |
h
|
orthoDr_reg.h
|
// ----------------------------------------------------------------
//
// Orthogonality Constrained Optimization for Dimension Reduction
// (orthoDr)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 3
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free
// Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
// Boston, MA 02110-1301, USA.
//
// ----------------------------------------------------------------
#include "utilities.h"
#ifndef orthoDr_reg
#define orthoDr_reg
double local_f(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
double bw,
int ncore);
void local_g(arma::mat& B,
const double F0,
arma::mat& G,
const arma::mat& X,
const arma::mat& Y,
double bw,
double epsilon,
int ncore);
Rcpp::List local_solver(arma::mat B,
arma::mat& X,
arma::mat& Y,
double bw,
double rho,
double eta,
double gamma,
double tau,
double epsilon,
double btol,
double ftol,
double gtol,
int maxitr,
int verbose,
int ncore);
double phd_f(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
const arma::cube& XX,
double bw,
int ncore);
void phd_g(arma::mat& B,
const double F0,
arma::mat& G,
const arma::mat& X,
const arma::mat& Y,
const arma::cube& XX,
double bw,
double epsilon,
int ncore);
double phd_init(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
double bw,
int ncore);
Rcpp::List phd_solver(arma::mat B,
arma::mat& X,
arma::mat& Y,
double bw,
double rho,
double eta,
double gamma,
double tau,
double epsilon,
double btol,
double ftol,
double gtol,
int maxitr,
int verbose,
int ncore);
double save_f(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
const arma::mat& Exy,
const arma::cube& Covxy,
double bw,
int ncore);
void save_g(arma::mat& B,
const double F0,
arma::mat& G,
const arma::mat& X,
const arma::mat& Y,
const arma::mat& Exy,
const arma::cube& Covxy,
double bw,
double epsilon,
int ncore);
double save_init(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
double bw,
int ncore);
Rcpp::List save_solver(arma::mat B,
arma::mat& X,
arma::mat& Y,
double bw,
double rho,
double eta,
double gamma,
double tau,
double epsilon,
double btol,
double ftol,
double gtol,
int maxitr,
int verbose,
int ncore);
double seff_f(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
const arma::mat& kernel_matrix_y,
double bw,
int ncore);
void seff_g(arma::mat& B,
const double F0,
arma::mat& G,
const arma::mat& X,
const arma::mat& Y,
const arma::mat& kernel_matrix_y,
double bw,
double epsilon,
int ncore);
double seff_init(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
double bw,
int ncore);
Rcpp::List seff_solver(arma::mat B,
arma::mat& X,
arma::mat& Y,
double bw,
double rho,
double eta,
double gamma,
double tau,
double epsilon,
double btol,
double ftol,
double gtol,
int maxitr,
int verbose,
int ncore);
double sir_f(const arma::mat& B,
const arma::mat& X,
const arma::mat& Exy,
double bw,
int ncore);
void sir_g(arma::mat& B,
const double F0,
arma::mat& G,
const arma::mat& X,
const arma::mat& Exy,
double bw,
double epsilon,
int ncore);
double sir_init(const arma::mat& B,
const arma::mat& X,
const arma::mat& Y,
double bw,
int ncore);
Rcpp::List sir_solver(arma::mat B,
arma::mat& X,
arma::mat& Y,
double bw,
double rho,
double eta,
double gamma,
double tau,
double epsilon,
double btol,
double ftol,
double gtol,
int maxitr,
int verbose,
int ncore);
#endif
|
519b9287e857843096c994a0f9ffd71979df11aa
|
34181164f307a545838a9d58ad5468b00cf3ca8f
|
/lib/ft_isascending.c
|
cf0805505a9ff27b54ba5dc769e0a1e8296e1226
|
[] |
no_license
|
avallois/push_swap
|
5a0e1949481885b5cbc0fbd62b621ed680eae20e
|
466a44299a8c0e5551b2d28d1c08dc97878711fb
|
refs/heads/master
| 2020-04-05T04:31:59.393039 | 2018-11-07T14:05:50 | 2018-11-07T14:05:50 | 156,555,192 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,116 |
c
|
ft_isascending.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascending.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: avallois <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/06/13 21:30:24 by avallois #+# #+# */
/* Updated: 2018/06/13 21:30:26 by avallois ### ########.fr */
/* */
/* ************************************************************************** */
#include "../inc/push_swap.h"
int ft_isascending(int *stack, int max)
{
int i;
i = 0;
if (stack)
{
while (i < max && (i + 1) != max)
{
if (stack[i + 1] < stack[i])
return (0);
i++;
}
}
return (1);
}
|
aba8080fb0d034045db2b01ed2af4516f0d6af7f
|
b42acb55516bc493445d3e1a56e8b6d006e29376
|
/lib/configlib/configlib_type.h
|
708ff81454eeb23b7b6249fc3dc069409dd2e548
|
[] |
no_license
|
dseomn/rpstir
|
4875b5563119f91eee80cb8be63a743ae82089a3
|
c9e995754983bff274bd88cc938cab8b6034292a
|
refs/heads/master
| 2021-01-18T02:14:20.489464 | 2016-01-14T20:23:50 | 2016-01-14T20:29:42 | 49,672,746 | 0 | 0 | null | 2016-01-14T20:19:56 | 2016-01-14T20:19:56 | null |
UTF-8
|
C
| false | false | 2,486 |
h
|
configlib_type.h
|
#ifndef _LIB_CONFIGLIB_CONFIGLIB_TYPE_H
#define _LIB_CONFIGLIB_CONFIGLIB_TYPE_H
#include "util/macros.h"
#include <stddef.h>
/**
This file contains the declarations necessary to define new
configuration types, e.g. string, tcp/udp port number, or
filesystem path. It is included by configlib.h, so it doesn't need
to be explicitly included.
To see example type implementations, see the types directory.
*/
/**
Context in parsing a config file. This should be opaque to
implementations of config types.
*/
struct config_context;
/**
@return
True iff the context is for a default value, as opposed to a
value from a configuration file.
*/
_Bool
config_context_is_default(
const struct config_context *context);
/**
Callback for config type functions to use to log messages about
their config item.
@param context
Opaque data. Might include things like line number in the
config file.
@param priority
See syslog(3).
*/
void config_message(
const struct config_context *context,
int priority,
const char *format,
...)
WARN_PRINTF(3, 4);
/**
Converts a string to a value of the correct type for the config
item.
@note
Arrays have this called once for each value.
@param[in] usr_arg
User argument provided to the callback.
@param[in] input
String from the config file. This may be copied, but the
pointer itself must not be put in *data. It can be NULL if the
config file has no value for a non-array option.
@param[out] data
A value of the correct type for the config item. May be NULL.
@return
True on success, false on failure. This means that this
function can be used to validate input.
*/
typedef _Bool
(*config_value_converter)(
const struct config_context *context,
void *usr_arg,
const char *input,
void **data);
/**
Converts the result of a config_value_converter back to a string.
@return
a malloc() allocated string, or NULL on error
*/
typedef char *(*config_value_converter_inverse)(
void *usr_arg,
void *input);
/** Deep free data for a config item. */
typedef void (*config_value_free) (
void *data);
/** Check an array of values for inter-value consistency/correctness. */
typedef _Bool
(*config_array_validator)(
const struct config_context *context,
void *usr_arg,
void const *const *input,
size_t num_items);
#endif
|
443fa47a98850579b7660eb53c152e6efe3fd423
|
13f475576e9b631ff6c281f2bd9f1d7b4856de38
|
/decrypt.c
|
2ef670be94358db84fac567734d24503b9ba923d
|
[] |
no_license
|
jrwren/ossldecrypt
|
0632a05686e1f8054ff23c2e65acaa99c0b166c7
|
263b34e6ccde3fe412a2e84937dcf421f205b8d2
|
refs/heads/master
| 2023-02-02T00:15:06.175611 | 2020-12-18T14:02:49 | 2020-12-18T14:02:49 | 322,614,663 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 8,339 |
c
|
decrypt.c
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/err.h>
#include <openssl/evp.h>
#include <openssl/kdf.h>
#include <openssl/ssl.h>
static int keymatexportlen = 20;
static int tls1_PRF_EVP(const EVP_MD *md, const char *seed1, size_t seed1_len,
const char *seed2, size_t seed2_len, const char *seed3,
size_t seed3_len, const char *seed4, size_t seed4_len,
const char *seed5, size_t seed5_len,
const unsigned char *sec, size_t slen,
unsigned char *out, size_t olen) {
EVP_PKEY_CTX *pctx = NULL;
int ret = 0;
if (md == NULL) {
return -1;
}
pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL);
if (pctx == NULL || EVP_PKEY_derive_init(pctx) <= 0 ||
EVP_PKEY_CTX_set_tls1_prf_md(pctx, md) <= 0 ||
EVP_PKEY_CTX_set1_tls1_prf_secret(pctx, sec, (int)slen) <= 0 ||
EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed1, (int)seed1_len) <= 0 ||
EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed2, (int)seed2_len) <= 0 ||
EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed3, (int)seed3_len) <= 0 ||
EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed4, (int)seed4_len) <= 0 ||
EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed5, (int)seed5_len) <= 0 ||
EVP_PKEY_derive(pctx, out, &olen) <= 0) {
ret = -2;
goto err;
}
ret = 1;
err:
EVP_PKEY_CTX_free(pctx);
return ret;
}
int tls1_export_keying_material(const EVP_MD *md,
const unsigned char *client_random,
const unsigned char *server_random,
const unsigned char *master_key,
int master_key_length, unsigned char *out,
size_t olen, const char *label, size_t llen,
const unsigned char *context, size_t contextlen,
int use_context) {
unsigned char *val = NULL;
size_t vallen = 0, currentvalpos;
int rv;
/*
* construct PRF arguments we construct the PRF argument ourself rather
* than passing separate values into the TLS PRF to ensure that the
* concatenation of values does not create a prohibited label.
*/
vallen = llen + SSL3_RANDOM_SIZE * 2;
if (use_context) {
vallen += 2 + contextlen;
}
val = OPENSSL_malloc(vallen);
if (val == NULL)
goto err2;
currentvalpos = 0;
memcpy(val + currentvalpos, (unsigned char *)label, llen);
currentvalpos += llen;
memcpy(val + currentvalpos, client_random, SSL3_RANDOM_SIZE);
currentvalpos += SSL3_RANDOM_SIZE;
memcpy(val + currentvalpos, server_random, SSL3_RANDOM_SIZE);
currentvalpos += SSL3_RANDOM_SIZE;
if (use_context) {
val[currentvalpos] = (contextlen >> 8) & 0xff;
currentvalpos++;
val[currentvalpos] = contextlen & 0xff;
currentvalpos++;
if ((contextlen > 0) || (context != NULL)) {
memcpy(val + currentvalpos, context, contextlen);
}
}
/*
* disallow prohibited labels note that SSL3_RANDOM_SIZE > max(prohibited
* label len) = 15, so size of val > max(prohibited label len) = 15 and
* the comparisons won't have buffer overflow
*/
if (memcmp(val, TLS_MD_CLIENT_FINISH_CONST,
TLS_MD_CLIENT_FINISH_CONST_SIZE) == 0)
goto err1;
if (memcmp(val, TLS_MD_SERVER_FINISH_CONST,
TLS_MD_SERVER_FINISH_CONST_SIZE) == 0)
goto err1;
if (memcmp(val, TLS_MD_MASTER_SECRET_CONST,
TLS_MD_MASTER_SECRET_CONST_SIZE) == 0)
goto err1;
if (memcmp(val, TLS_MD_EXTENDED_MASTER_SECRET_CONST,
TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE) == 0)
goto err1;
if (memcmp(val, TLS_MD_KEY_EXPANSION_CONST,
TLS_MD_KEY_EXPANSION_CONST_SIZE) == 0)
goto err1;
rv = tls1_PRF_EVP(md, val, vallen, NULL, 0, NULL, 0, NULL, 0, NULL, 0,
master_key, master_key_length, out, olen);
goto ret;
err1:
SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL, SSL_R_TLS_ILLEGAL_EXPORTER_LABEL);
rv = 0;
goto ret;
err2:
SSLerr(SSL_F_TLS1_EXPORT_KEYING_MATERIAL, ERR_R_MALLOC_FAILURE);
rv = 0;
ret:
OPENSSL_clear_free(val, vallen);
return rv;
}
int keys_from_master_secret(int tls_ver, int ciphersuite,
const char *master_secret, int master_secret_len,
char *client_random, char *server_random, int ivLen,
char *client_mac, char *server_mac, int *mac_len,
char *client_key, char *server_key, char *client_iv,
char *server_iv, int *iv_len) {
int res = 0;
// TODO: prf based on tls_ver
// TODO: md based on ciphersuite
// TODO: mac & iv based on ciphersuite
*iv_len = 12;
int keylen = 8;
*mac_len = 0;
const EVP_MD *md = EVP_sha384(); // TLS1_PRF_SHA384 ?
unsigned char *exportedkeymat = malloc(keymatexportlen);
// tls1_export_keying_material
if (!tls1_export_keying_material(
md, client_random, server_random, master_secret, master_secret_len,
exportedkeymat, keymatexportlen, NULL, 0, NULL, 0, 0)) {
return -1;
}
// IS KM now the same as expected keyMasterial?
printf("expected: ");
for (int i = 0; i < keymatexportlen; i++) {
printf("%x", exportedkeymat[i]);
}
printf(" %d", keymatexportlen);
printf("\n");
// clientMAC = keyMaterial[:macLen]
// keyMaterial = keyMaterial[macLen:]
client_mac = exportedkeymat;
exportedkeymat += *mac_len;
// serverMAC = keyMaterial[:macLen]
// keyMaterial = keyMaterial[macLen:]
server_mac = exportedkeymat;
exportedkeymat += *mac_len;
// clientKey = keyMaterial[:keyLen]
// keyMaterial = keyMaterial[keyLen:]
client_key = exportedkeymat;
exportedkeymat += keylen;
// serverKey = keyMaterial[:keyLen]
// keyMaterial = keyMaterial[keyLen:]
server_key = exportedkeymat + keylen;
exportedkeymat += keylen;
// clientIV = keyMaterial[:ivLen]
// keyMaterial = keyMaterial[ivLen:]
client_iv = exportedkeymat;
exportedkeymat += *iv_len;
// serverIV = keyMaterial[:ivLen]
server_iv = exportedkeymat;
return 0;
}
int decrypt(int tls_ver, int ciphersuite, int isclient,
const char *master_secret, long mastersecret_len,
const char *clientrandom, const char *serverrandom,
unsigned const char *input, long input_len, unsigned char *out,
int *out_len) {
int res;
unsigned char *key, *aead, *client_key, *server_key, *client_iv, *server_iv,
*client_mac, *server_mac, *iv;
int aead_len, iv_len, howmany;
int mac_len = 0;
unsigned char buf[4096]; // malloc an input length?
out = buf;
// TODO check serverrandom_len == SSL3_RANDOM_SIZE and clientrandom_len ==
// SSL3_RANDOM_SIZE
int ivLen = 12;
res = keys_from_master_secret(
tls_ver, ciphersuite, master_secret, mastersecret_len, clientrandom,
serverrandom, ivLen, client_mac, server_mac, &mac_len, client_key,
server_key, client_iv, server_iv, &iv_len);
if (res < 0) {
return -10;
}
printf("client_key: ");
for (int i = 0; i < 8; i++) {
printf("%x", client_key[i]);
}
printf(" server_key: ");
for (int i = 0; i < 8; i++) {
printf("%x", server_key[i]);
}
printf("\n");
if (isclient) {
key = client_key;
iv = client_iv;
} else {
key = server_key;
iv = server_iv;
}
// TODO: lookup the cipher based on ciphersuite.
const EVP_CIPHER *cipher = EVP_aes_256_gcm();
EVP_CIPHER_CTX *ctx;
ctx = EVP_CIPHER_CTX_new();
if (!ctx) {
return -1;
}
if (!EVP_DecryptInit_ex(ctx, cipher, NULL, NULL, NULL)) {
return -2;
}
if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, iv_len, NULL)) {
return -3;
}
res = EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv);
if (!res) {
return -4;
}
// ?? EVP_CIPHER_CTX_ctrl (ctx, EVP_CTRL_GCM_SET_TAG, 16, ref_TAG); ?
res = EVP_DecryptUpdate(ctx, NULL, &howmany, aead, aead_len);
if (!res) {
return -5;
}
// input = input[recordHeaderLen+8:]
input = input + 8 + 5; // skip the nonce/seq
res = EVP_DecryptUpdate(ctx, out, &howmany, input, input_len);
if (!res) {
return -6;
}
res = EVP_DecryptFinal_ex(ctx, out + howmany, &howmany);
if (res <= 0) {
return -7;
}
return 0;
}
|
303b70258a28e471c3c949d47e86d3141f85c9ff
|
021a3ccdcb91d84629f1de7343981b572840b169
|
/src/mat/order/sp1wd.c
|
83f0a4d69ef912ada2add1119a2fc08ed96e2141
|
[
"BSD-2-Clause"
] |
permissive
|
firedrakeproject/petsc
|
dcf7b32e83bdc88d37099904960d7a4c3c4a89e4
|
7afe75c1a0a66862f32d7a0f5c0c5ae5079c4c77
|
refs/heads/master
| 2023-08-31T22:16:45.175956 | 2019-08-06T14:24:54 | 2019-08-06T14:24:54 | 52,269,402 | 2 | 8 |
NOASSERTION
| 2023-04-11T09:20:08 | 2016-02-22T11:40:41 |
C
|
UTF-8
|
C
| false | false | 1,130 |
c
|
sp1wd.c
|
#include <petscmat.h>
#include <petsc/private/matorderimpl.h>
/*
MatGetOrdering_1WD - Find the 1-way dissection ordering of a given matrix.
*/
PETSC_INTERN PetscErrorCode MatGetOrdering_1WD(Mat mat,MatOrderingType type,IS *row,IS *col)
{
PetscErrorCode ierr;
PetscInt i,*mask,*xls,nblks,*xblk,*ls,nrow,*perm;
const PetscInt *ia,*ja;
PetscBool done;
PetscFunctionBegin;
ierr = MatGetRowIJ(mat,1,PETSC_TRUE,PETSC_TRUE,&nrow,&ia,&ja,&done);CHKERRQ(ierr);
if (!done) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Cannot get rows for matrix");
ierr = PetscMalloc5(nrow,&mask,nrow+1,&xls,nrow,&ls,nrow+1,&xblk,nrow,&perm);CHKERRQ(ierr);
SPARSEPACKgen1wd(&nrow,ia,ja,mask,&nblks,xblk,perm,xls,ls);
ierr = MatRestoreRowIJ(mat,1,PETSC_TRUE,PETSC_TRUE,NULL,&ia,&ja,&done);CHKERRQ(ierr);
for (i=0; i<nrow; i++) perm[i]--;
ierr = ISCreateGeneral(PETSC_COMM_SELF,nrow,perm,PETSC_COPY_VALUES,row);CHKERRQ(ierr);
ierr = ISCreateGeneral(PETSC_COMM_SELF,nrow,perm,PETSC_COPY_VALUES,col);CHKERRQ(ierr);
ierr = PetscFree5(mask,xls,ls,xblk,perm);CHKERRQ(ierr);
PetscFunctionReturn(0);
}
|
e4595a1f22e6d1c83b30d795ea7ef17c7733796b
|
28a901923a7a95dbd476b31bddc681cda186d61f
|
/src/plotcap/dplot/sv_file.c
|
38e5cf1192e9e73fe226d7e989bc460e35032cb7
|
[] |
no_license
|
AllenYu318/pisces
|
b8b00b8efecc4720ffec03511f1cb5d2469c192a
|
7f752a4ee279dad585d37e43a86287f185e89cdc
|
refs/heads/master
| 2021-06-16T04:57:23.251790 | 2017-05-12T01:45:46 | 2017-05-11T19:46:19 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,916 |
c
|
sv_file.c
|
/*----------------------------------------------------------------------
** Copyright 1986 by
** The Board of Trustees of the Leland Stanford Junior University
** All rights reserved.
**
** This routine may not be used without the prior written consent of
** the Board of Trustees of the Leland Stanford University.
**----------------------------------------------------------------------
**/
/* date: 17 mar 87 (mje)
* "sv_file" : open the named file and see if it is a save file. If so
* read the saved plot commands and re-issue them.
*
* NOTE: We will recognize several save forms here, either with special
* opens or by checking the first several bytes of the file for some
* distinquishing characteristic.
* written: Michael Eldredge (jun 85)
* modified: Michael Eldredge (dec 86) Use new gpopen() stuff.
* modified: Michael Eldredge (feb 87) #ifdef out the DOT_GP_HACK stuff.
* modified: Michael Eldredge (mar 87) added segment delete.
*/
/* define to force "*.gp" files to be opened as gplot-save files */
/* #define DOT_GP_HACK 1 */
#include "gplot.h"
int
sv_file(name)
char *name;
{
int lu, iret = 0;
float xval, yval;
int cmd, sub;
int on = 1 ;
/* GPLOT: see if it looks like a "gplot" save file */
if ( (lu = gpopen(name, GPO_RD|GPO_HD)) >= 0) {
while (gpread(lu, &cmd, &sub, &xval, &yval) > 0) {
if (cmd == G_PEND) continue ;
if (seg_on(cmd, sub)) {
logit_gp(cmd, sub, xval, yval) ;
gplot2(cmd, sub, xval, yval);
}
}
gpclose(lu);
}
#ifdef DOT_GP_HACK
/* HACK-GPLOT: NOTE: Fix this, but.....
* since some stuff (ie: gplot itself) doesn't use gpopen which
* gives that first record - if it fails then let's look at the
* extent of the filename. If it is ".gp" then just assume it is
* a gplot file. (mje: 15jul85).
*/
else if ( (lu = HACKopen(name)) >= 0) {
while (gpread(lu, &cmd, &sub, &xval, &yval) > 0) {
if (cmd == G_PEND) continue ;
if (seg_on(cmd, sub)) {
logit_gp(cmd, sub, xval, yval) ;
gplot2(cmd, sub, xval, yval);
}
}
gpclose(lu);
}
/* End of mondo hack */
#endif /* DOT_GP_HACK*/
/* TPLOT: see if it looks like a "tplot" save file */
else if ( (lu = tpopen(name, 0 )) >= 0) {
while (tpread(lu, &xval, &yval, &cmd) > 0) {
if (cmd == G_PEND) continue ;
sub = 0;
if (cmd < 0) {
sub = -cmd;
cmd = G_LINE;
}
if (seg_on(cmd, sub)) {
logit_gp(cmd, sub, xval, yval) ;
gplot2(cmd, sub, xval, yval);
}
}
close(lu);
}
/* ERROR: nobody seemed to know the file type */
else iret = -1 ; /* couldn't figure out what kind it is */
return(iret);
}
#ifdef DOT_GP_HACK
/* MORE OF HACK on GPLOT FILE OPENS */
static int
HACKopen(name)
char *name ;
{
int lu = -1, l ;
if ((l = strlen(name)) > 3) {
if (strcmp(&name[l-3], ".gp") == 0) /* ok, name fits */
lu = open(name, 0) ;
}
return(lu) ;
}
#endif /*DOT_GP_HACK*/
|
9f6b61c717df589b8daea2ac1c358a7c15e4a6c4
|
cd68707db8a20be0ba72be48c41e9ae99974623c
|
/boards/ek-lm3s8962/drivers/ir.h
|
838ea6abd12bfd40f79a98b221f96be2e937c8d3
|
[] |
no_license
|
dreplogle/EE-345M
|
e57b22ae0bcec30461cb59e63fd97048ef092448
|
9e4e42cbc45101293ea6b164150f001650ff46c5
|
refs/heads/master
| 2021-01-18T19:29:18.753096 | 2011-05-06T01:29:33 | 2011-05-06T01:29:33 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 736 |
h
|
ir.h
|
//*****************************************************************************
//
// ir.h - IR driver file
//
//*****************************************************************************
//*************GetIR***************
// Background thread for IR sensor,
// called when ADC finishes a conversion
// and generates an interrupt.
void GetIR(unsigned short data);
//************IR DAQ thread********
// Samples the ADC0 at 20Hz, recieves
// data in FIFO, filters data,
// sends data through CAN.
#define IR_SAMPLING_RATE 20 // in Hz
struct IR_STATS{
short average;
short stdev;
short maxdev;
};
void IRSensor0(void);
void IRSensor1(void);
void IRSensor2(void);
void IRSensor3(void);
|
ff87e1237c98db56f2cb53115b605ff105156858
|
83214753e9183327e98af0e6768e9be5385e5282
|
/adm/daemons/questd.c
|
db5df72b64daed3825bdebc699cb31f432e141c2
|
[] |
no_license
|
MudRen/hymud
|
f5b3bb0e0232f23a48cb5f1db2e34f08be99614e
|
b9433df6cf48e936b07252b15b60806ff55bb2f3
|
refs/heads/main
| 2023-04-04T22:44:23.880558 | 2021-04-07T15:45:16 | 2021-04-07T15:45:16 | 318,484,633 | 1 | 5 | null | null | null | null |
GB18030
|
C
| false | false | 35,434 |
c
|
questd.c
|
//Heart of fy3 -- Tie
//// #pragma optimize all
mapping *quests;
mapping *read_table(string file);
string *roomlines;
varargs void init_dynamic_quest(int hard);
varargs int spread_quest(mapping one_quest, int hard);
object find_env(object ob);
object find_book(object ob);
varargs int already_spreaded(string str, int hard);
int quest_reward( object me, object who,object quest_item);
string dyn_quest_list();
#define MAX_DIS 7
#define MAX_ALT 2
#define MAX_DIR 8
#include <ansi.h>
string locate_obj(string str);
#include "/quest/givetaskgift.c"
int random_move()
{
mapping exits;
string *dirs;
object me = this_object();
// if (!query_heart_beat(me)) return 0;
if( !environment(me) ) return 0;
if( me->query_temp("is_unconcious") ) return 0;
if( !living(me)) return 0;
if( !mapp(exits = environment()->query("exits")) ) return 0;
if( !environment()
|| !mapp(exits = environment()->query("exits"))
|| me->is_busy())
// || me->is_fighting()
return 0;
// if( !mapp(exits = environment()->query("exits"))
// || me->is_busy()) return 0;
dirs = keys(exits);
if (!dirs) return 0;
if (sizeof(dirs) < 1) return 0;
command("go " + dirs[random(sizeof(dirs))]);
}
void create()
{
string file;
quests = read_table("/quest/dynamic_quest");
file = read_file("/quest/dynamic_location");
roomlines = explode(file,"\n");
//CRON_D->set_last_hard_dis();
init_dynamic_quest(1);
}
int quest_reward(object me, object who,object quest_item)
{
mapping quest;
int exp,pot,score;
int color;
object ob;
quest = quest_item->query("dynamic_quest");
if(base_name(who) != quest["owner_name"]) return 0;
exp =1288+random(888);
pot = exp*0.9;
score = random(50)+50;
addnl(me,"exp",exp);
addnl(me,"score",score);
color=random(5);
me->add_temp("nbjob49",1);
me->add("TASK",1);
if (me->query("4zhuan")
|| me->query("5zhuan"))
{
if (random(5)==1)
{
me->add("expmax",1);
tell_object(me,HIR"你的成长资历获得成功!\n"+NOR);
}
}
if (random(12)==1)
{
ob=new("/quest/shenshu/sdan2");
ob->move(me);
message("channel:chat", HIC"【江湖传闻】"GRN + me->query("name")+"得到一颗"+HIY":" + ob->query("name")+HIG"啦!\n"NOR,users() );
}
if( !undefinedp(quest["fin_func"]))
call_other(this_object(),quest["fin_func"],me,who,quest_item);
if(quest_item)
destruct(quest_item);
// destruct(present("xdshi",me));
// tell_object(me,HIW"你身上的"+HIR+"七"+HIC+"彩"+HIY+"向"+HIM+"导"+HIG+"石"HIW"跟着神书一起消失了。\n"NOR);
return 1;
}
varargs void init_dynamic_quest(int hard)
{
int i;
for( i=0; i < sizeof(quests); i++)
spread_quest(quests[i],hard);
}
varargs int spread_quest(mapping quest, int hard)
{
object obj0,obj1,obj2,obj3,jobnpc;
object cur_obj;
object next_obj;
object tar;
object *inv;
object *target=({});
int i,isk;
string location;
if(already_spreaded(quest["file_name"],hard)) return 0;
reset_eval_cost();
location = roomlines[random(sizeof(roomlines))];
obj0=find_object(location);
if(obj0)
obj0->reset();
else
obj0=load_object(location);
cur_obj =obj0;
if(cur_obj)
{
inv = all_inventory(cur_obj);
for(i=0; i<sizeof(inv); i++) {
if(inv[i]->is_character() && !userp(inv[i]))
target += ({ inv[i] });
if(inv[i]->is_container()) target += ({ inv[i] });
}
}
isk=0;
if(!sizeof(target))
{
jobnpc = new("/quest/shenshu/npc/man");
jobnpc->move(cur_obj);
jobnpc = new("/quest/shenshu/npc/man");
jobnpc->move(cur_obj);
jobnpc = new("/quest/shenshu/npc/man");
jobnpc->move(cur_obj);
jobnpc = new("/quest/shenshu/npc/man");
jobnpc->move(cur_obj);
if (random(3)==0)
{
isk=1;
jobnpc = new("/quest/shenshu/npc/man2");
jobnpc->move(cur_obj);
tar = new(quest["file_name"]);
tar->set("value",0);
tar->set("dynamic_quest",quest);
tar->move(jobnpc);
}
}
if(cur_obj)
{
inv = all_inventory(cur_obj);
for(i=0; i<sizeof(inv); i++) {
if(inv[i]->is_character() && !userp(inv[i]))
target += ({ inv[i] });
if(inv[i]->is_container()) target += ({ inv[i] });
}
}
if(sizeof(target)) cur_obj = target[random(sizeof(target))];
if(cur_obj && isk==0)
{
tar = new(quest["file_name"]);
tar->set("value",0);
tar->set("dynamic_quest",quest);
tar->move(cur_obj);
cur_obj->set_temp("apply/attack", 30);
cur_obj->set_temp("apply/defense",130);
cur_obj->set_temp("apply/armor", 100);
cur_obj->set_temp("apply/damage", 160+random(80));
cur_obj->set("dex",150);
cur_obj->set("no_get",1);
cur_obj->set("qi",8000);
cur_obj->set("jing",8000);
cur_obj->set("eff_qi",8000);
cur_obj->set("eff_jing",10000);
cur_obj->set("max_qi",8000);
cur_obj->set("max_jing",15000);
cur_obj->set_skill("dodge",300);
cur_obj->set("chat_chance_combat", 90);
cur_obj->set("chat_msg_combat", ({ (: random_move :), }) );
cur_obj->set("chat_chance", 50);
cur_obj->set("chat_msg", ({(: random_move :),}) );
}
return 1;
}
string dyn_quest_list()
{
string output="";
object owner,item;
int i;
for( i=0; i < sizeof(quests); i++)
{
reset_eval_cost();
if(!objectp(owner= find_object(quests[i]["owner_name"])))
owner = load_object(quests[i]["owner_name"]);
if(!objectp(item= find_object(quests[i]["file_name"])))
item = load_object(quests[i]["file_name"]);
if(already_spreaded(quests[i]["file_name"]))
{
if(random(2))
output += sprintf(HIG"%10s"NOR"的"HIW"%10s"NOR"(%s)\n",owner->query("name"),item->query("name"),item->query("id"));
else
output = sprintf(HIG"%10s"NOR"的"HIW"%10s"NOR"(%s)\n",owner->query("name"),item->query("name"),item->query("id")) + output;
}
else
{
if(random(2))
output += sprintf(HIG"%10s"NOR"的"HIY"%10s"NOR"(%s) [1;31m〖 [32m已完成[31m 〗[m\n",owner->query("name"),item->query("name"),item->query("id"));
else
output = sprintf(HIG"%10s"NOR"的"HIY"%10s"NOR"(%s)[1;31m 〖 [32m 已完成[31m 〗[m\n",owner->query("name"),item->query("name"),item->query("id")) + output;
}
}
// if(random(2))output += sprintf(HIG"%10s"NOR"的"HIW"%10s"NOR"(%s)\n",item->query("owner_name"),item->query("name"),item->query("id"));
// else output=sprintf(HIG"%10s"NOR"的"HIW"%10s"NOR"(%s)\n",item->query("owner_name"),item->query("name"),item->query("id"))+output;
// else
// if(random(2))output += sprintf(HIG"%10s"NOR"的"HIY"%10s"NOR"(%s) [1;31m〖 [32m已完成[31m 〗[m\n",item->query("owner_name"),item->query("name"),item->query("id"));
// else output=sprintf(HIG"%10s"NOR"的"HIY"%10s"NOR"(%s)[1;31m 〖 [32m 已完成[31m 〗[m\n",item->query("owner_name"),item->query("name"),item->query("id"))+output;
return output;
}
string locate_obj(string strr)
{
string *distance = ({
"极近", "很近", "比较近", "不远",
"不近", "比较远", "很远", "极远"
});
string *altitude =({
"高处", "地方", "低处"
});
string *directions=({
"周围","北方", "南方", "东方","西方",
"东北方","西北方","东南方","西南方"
});
object ob, tmpobj,where, *ob_list,me,obtwo,obthree,tob;
object item,room;
string output,outputt,dis,alt,dir,local,tlocal,ck,playout;
int i;
int x,y,z,x0,y0,z0;
int realdis;
mixed map,mapt;
int tmp;
string *dir1;
string *dir2;
string str="";
reset_eval_cost();
for( i=0; i < sizeof(quests); i++)
{
if(!objectp(item= find_object(quests[i]["file_name"])))
item = load_object(quests[i]["file_name"]);
if(item->query("id") == strr || item->query("name") == strr) str = quests[i]["file_name"];
}
if(str != "") {
//room = environment(me);
ob_list = children(str);
for(i=0; i<sizeof(ob_list); i++) {
ob=find_book(ob_list[i]);
this_player()->add("jing",-5);
if(ob)
{
ck=HIC"无"NOR;
local=ob->query("short");
tlocal=ob->query("short");
if (wizardp(this_player()) && ob)
{
//outputt ="1:"+ob->query("short")+"』\n";
}
playout ="『"+ob->query("short")+"』这里附近。\n";
if(sizeof(ob->query("exits")))
{
ck=chinese_number(sizeof(ob->query("exits")));
map=values(ob->query("exits"));
if (map && sizeof(ob->query("exits"))>=1)
{
obtwo=load_object(map[random(sizeof(map))]);
if (ob==obtwo) obtwo=load_object(map[random(sizeof(map))]);
if (ob==obtwo) obtwo=load_object(map[random(sizeof(map))]);
if (ob==obtwo) obtwo=load_object(map[random(sizeof(map))]);
if (obtwo)
{
if (wizardp(this_player()) && obtwo)
{
//outputt +="2:"+obtwo->query("short")+"』\n";
}
local=obtwo->query("short");
if(obtwo->query("exits"))
{ //obtwoexits
mapt=values(obtwo->query("exits"));
if (mapt && sizeof(obtwo->query("exits"))>=1 )
{
//if (find_object(mapt[random(sizeof(mapt))]))
//{
obthree=load_object(mapt[random(sizeof(mapt))]);
if (obthree==obtwo) obthree=load_object(mapt[random(sizeof(mapt))]);
if (obthree==obtwo) obthree=load_object(mapt[random(sizeof(mapt))]);
if (obthree==obtwo) obthree=load_object(mapt[random(sizeof(mapt))]);
tob=obthree;
if (wizardp(this_player()) && obthree)
{
//outputt +="3:"+obthree->query("short")+"』\n";
}
if (obthree)
{
if (sizeof(obthree->query("exits"))>=1 )
{
mapt=values(obthree->query("exits"));
obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
tob=obthree;
if (wizardp(this_player()) && obthree)
{
//outputt +="4:"+obthree->query("short")+"』\n";
}
}
}
if (obthree)
{
if (sizeof(obthree->query("exits"))>=1 )
{
//if (tob!=obthree)
//{
mapt=values(obthree->query("exits"));
obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
tob=obthree;
if (wizardp(this_player()) && obthree)
{
//outputt +="5:"+obthree->query("short")+"』\n";
}
}
//}
}
if (obthree)
{
if (sizeof(obthree->query("exits"))>=1 )
{
//if (tob!=obthree)
//{
mapt=values(obthree->query("exits"));
obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
tob=obthree;
if (wizardp(this_player()) && obthree)
{
//outputt +="6:"+obthree->query("short")+"』\n";
}
}
}
//}
/*
if (obthree)
{
if (sizeof(obthree->query("exits"))>=1 )
{
//if (tob!=obthree)
//{
mapt=values(obthree->query("exits"));
obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
tob=obthree;
if (wizardp(this_player()) && obthree)
{
outputt +="7:"+obthree->query("short")+"』\n";
}
}
//}
}
if (obthree)
{
if (sizeof(obthree->query("exits"))>=1 )
{
//if (tob!=obthree)
//{
mapt=values(obthree->query("exits"));
obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
if (tob==obthree || obtwo==obthree || obthree==ob) obthree=load_object(mapt[random(sizeof(mapt))]);
tob=obthree;
if (wizardp(this_player()) && obthree)
{
outputt +="8:"+obthree->query("short")+"』\n";
}
}
}
*/
//}
//}
if (obthree)
{
if (obthree!= ob)
{
local=obthree->query("short");
} //obthree
} //obthree
} //mapt
} //map
}//obtwoexits
}
//add by hxsd
}
else local=ob->query("short");
//dir1=explode(base_name(environment(me)),"/");
dir2=explode(base_name(ob),"/");
// if(sizeof(dir1)==3 && sizeof(dir2)==3 && dir1[0]=="d" && dir2[0]=="d" && dir1[1]!=dir2[1])
//{
if (dir2[1]=="baituo")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"白驼山的"NOR+local+"附近。\n";
else if (dir2[1]=="binghuodao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIB"冰火岛的"NOR+local+"附近。\n";
else if (dir2[1]=="city")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"扬州的"NOR+local+"附近。\n";
else if (dir2[1]=="city2" || dir2[1]=="beijing" || dir2[1]=="huanggon" || dir2[1]=="huanggong" || dir2[1]=="beihai")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"北京城的"NOR+local+"附近。\n";
else if (dir2[1]=="city4" || dir2[1]=="changan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIM"长安城的"NOR+local+"附近。\n";
else if (dir2[1]=="dali")
output="『"+ob_list[i]->query("name")+"』似乎在"+RED"大理的"NOR+local+"附近。\n";
else if (dir2[1]=="emei")
output="『"+ob_list[i]->query("name")+"』似乎在"+GRN"娥眉山的"NOR+local+"附近。\n";
else if (dir2[1]=="foshan")
output="『"+ob_list[i]->query("name")+"』似乎在"+YEL"佛山的"NOR+local+"附近。\n";
else if (dir2[1]=="gaibang")
output="『"+ob_list[i]->query("name")+"』似乎在"+BLU"丐帮的"NOR+local+"附近。\n";
else if (dir2[1]=="gaochang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"高昌迷宫的"NOR+local+"附近。\n";
else if (dir2[1]=="guanwai")
output="『"+ob_list[i]->query("name")+"』似乎在"+CYN"关外的"NOR+local+"附近。\n";
else if (dir2[1]=="guiyun")
output="『"+ob_list[i]->query("name")+"』似乎在"+MAG"归云庄的"NOR+local+"附近。\n";
else if (dir2[1]=="gumu")
output="『"+ob_list[i]->query("name")+"』似乎在"+WHT"古墓派的"NOR+local+"附近。\n";
else if (dir2[1]=="hangzhou")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"杭州的"NOR+local+"附近。\n";
else if (dir2[1]=="heimuya")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"黑木崖的"NOR+local+"附近。\n";
else if (dir2[1]=="hengshan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIB"恒山的"NOR+local+"附近。\n";
else if (dir2[1]=="henshan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"衡山的"NOR+local+"附近。\n";
else if (dir2[1]=="huanghe")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"黄河九曲的"NOR+local+"附近。\n";
else if (dir2[1]=="huashan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"华山的"NOR+local+"附近。\n";
else if (dir2[1]=="jinshe")
output="『"+ob_list[i]->query("name")+"』似乎在"+YEL"金蛇山洞的"NOR+local+"附近。\n";
else if (dir2[1]=="lingjiu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"灵鹫宫的"NOR+local+"附近。\n";
else if (dir2[1]=="lingzhou")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIB"灵州的"NOR+local+"附近。\n";
else if (dir2[1]=="meizhuang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIM"梅庄的"NOR+local+"附近。\n";
else if (dir2[1]=="mingjiao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"明教的"NOR+local+"附近。\n";
else if (dir2[1]=="qingcheng")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"青城山的"NOR+local+"附近。\n";
else if (dir2[1]=="quanzhen")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIB"全真派的"NOR+local+"附近。\n";
else if (dir2[1]=="quanzhou")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"泉州的"NOR+local+"附近。\n";
else if (dir2[1]=="shaolin")
output="『"+ob_list[i]->query("name")+"』似乎在"+YEL"少林寺的"NOR+local+"附近。\n";
else if (dir2[1]=="shenlong")
output="『"+ob_list[i]->query("name")+"』似乎在"+GRN"神龙岛的"NOR+local+"附近。\n";
else if (dir2[1]=="songshan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIM"嵩山的"NOR+local+"附近。\n";
else if (dir2[1]=="suzhou")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"苏州的"NOR+local+"附近。\n";
else if (dir2[1]=="taishan")
output="『"+ob_list[i]->query("name")+"』似乎在"+MAG"泰山的"NOR+local+"附近。\n";
else if (dir2[1]=="taohua")
output="『"+ob_list[i]->query("name")+"』似乎在"+RED"桃花岛的"NOR+local+"附近。\n";
else if (dir2[1]=="tianlongsi")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"天龙寺的"NOR+local+"附近。\n";
else if (dir2[1]=="wanjiegu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"万劫谷的"NOR+local+"附近。\n";
else if (dir2[1]=="wudang")
output="『"+ob_list[i]->query("name")+"』似乎在"+GRN"武当山的"NOR+local+"附近。\n";
else if (dir2[1]=="xiakedao")
output="『"+ob_list[i]->query("name")+"』似乎在"+BLU"侠客岛的"NOR+local+"附近。\n";
else if (dir2[1]=="xiangyang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"襄阳城的"NOR+local+"附近。\n";
else if (dir2[1]=="xiaoyao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"逍遥林的"NOR+local+"附近。\n";
else if (dir2[1]=="xingxiu")
output="『"+ob_list[i]->query("name")+"』似乎在"+YEL"星宿海的"NOR+local+"附近。\n";
else if (dir2[1]=="xueshan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"雪山寺的"NOR+local+"附近。\n";
else if (dir2[1]=="xuedao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"大雪山的"NOR+local+"附近。\n";
else if (dir2[1]=="mr")
output="『"+ob_list[i]->query("name")+"』似乎在"+BLU"慕容世家的"NOR+local+"附近。\n";
else if (dir2[1]=="kunlun")
output="『"+ob_list[i]->query("name")+"』似乎在"+WHT"昆仑山的"NOR+local+"附近。\n";
else if (dir2[1]=="tiezhang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"铁掌门的"NOR+local+"附近。\n";
else if (dir2[1]=="huizhu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"回族部落的"NOR+local+"附近。\n";
else if (dir2[1]=="yinju")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"一灯大师居的"NOR+local+"附近。\n";
else if (dir2[1]=="menggu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"蒙古草原的"NOR+local+"附近。\n";
else if (dir2[1]=="qianjin")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIM"北京千金楼的"NOR+local+"附近。\n";
else if (dir2[1]=="lingshedao")
output="『"+ob_list[i]->query("name")+"』似乎在"+BLU"灵蛇岛的"NOR+local+"附近。\n";
else if (dir2[1]=="ruzhou")
output="『"+ob_list[i]->query("name")+"』似乎在"+RED"汝州城的"NOR+local+"附近。\n";
else if (dir2[1]=="kunming")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIB"昆明的"NOR+local+"附近。\n";
else if (dir2[1]=="jingzhou")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"荆州的"NOR+local+"附近。\n";
else if (dir2[1]=="yanjing")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"燕京的"NOR+local+"附近。\n";
else if (dir2[1]=="lanzhou" || dir2[1]=="lanzhouchen")
output="『"+ob_list[i]->query("name")+"』似乎在"+YEL"兰州的"NOR+local+"附近。\n";
else if (dir2[1]=="jyguan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"兰州以北嘉峪关的"NOR+local+"附近。\n";
else if (dir2[1]=="changcheng")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"北京以北长城的"NOR+local+"附近。\n";
else if (dir2[1]=="fairyland")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"昆仑附近的红梅山庄"NOR+local+"附近。\n";
else if (dir2[1]=="sdxl")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"剑魔独孤求败墓"NOR+local+"附近。\n";
else if (dir2[1]=="jqg")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"绝情谷"NOR+local+"附近。\n";
else if (dir2[1]=="nio")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"牛家村的"NOR+local+"附近。\n";
else if (dir2[1]=="feihu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"闯王宝藏的"NOR+local+"附近。\n";
else if (dir2[1]=="wuguan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"襄阳武馆的"NOR+local+"附近。\n";
else if (dir2[1]=="village")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"华山村的"NOR+local+"附近。\n";
else if (dir2[1]=="taohuacun")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"桃花村的"NOR+local+"附近。\n";
else if (dir2[1]=="pingan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"平安城的"NOR+local+"附近。\n";
else if (dir2[1]=="lingxiao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIW"凌霄城的"NOR+local+"附近。\n";
else if (dir2[1]=="wudujiao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"五毒教的"NOR+local+"附近。\n";
else if (dir2[1]=="hj")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"天山附近草原的"NOR+local+"附近。\n";
else if (dir2[1]=="dali/yuxu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"大理玉虚观的"NOR+local+"附近。\n";
else if (dir2[1]=="dali/wuliang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"大理无量山的"NOR+local+"附近。\n";
else if (dir2[1]=="huanghe/yyd")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"黄河萧府的"NOR+local+"附近。\n";
else if (dir2[1]=="kaifeng")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIM"开封城的"NOR+local+"附近。\n";
else if (dir2[1]=="feitian")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"飞天御剑流的"NOR+local+"附近。\n";
else if (dir2[1]=="japan")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"日本神户的"NOR+local+"附近。\n";
else if (dir2[1]=="tangmen")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"唐门的"NOR+local+"附近。\n";
else if (dir2[1]=="luoyang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"洛阳城的"NOR+local+"附近。\n";
else if (dir2[1]=="chengdu" || dir2[1]=="city3")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"成都的"NOR+local+"附近。\n";
else if (dir2[1]=="baihuagu")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"百花谷的"NOR+local+"附近。\n";
else if (dir2[1]=="heizhao")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"百花谷附近黑沼的"NOR+local+"附近。\n";
else if (dir2[1]=="jiaxing")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"嘉兴的"NOR+local+"附近。\n";
else if (dir2[1]=="shiliang")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"温家庄的"NOR+local+"附近。\n";
else if (dir2[1]=="wuyi")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"武夷山区的"NOR+local+"附近。\n";
else if (dir2[1]=="yanping")
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"延平城的"NOR+local+"附近。\n";
else output="『"+ob_list[i]->query("name")+"』似乎在某个地方的"+local+"附近,出口数为:"+HIW""+ck+""+NOR"的地方。\n";
if (dir2[1]=="jiangling")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"江陵城的"NOR+local+"附近。\n";
}
if (dir2[1]=="yueyang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"岳阳城的"NOR+local+"附近。\n";
}
if (dir2[1]=="qilian")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"祁连山的"NOR+local+"附近。\n";
}
if (dir2[1]=="shouxihu")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"瘦西湖的"NOR+local+"附近。\n";
}
if (dir2[1]=="wuxi")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"无锡城的"NOR+local+"附近。\n";
}
if (dir2[1]=="yixing")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"宜兴城的"NOR+local+"附近。\n";
}
if (dir2[1]=="taiwan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"台湾地区的"NOR+local+"附近。\n";
}
if (dir2[1]=="nanyang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"南阳地区的"NOR+local+"附近。\n";
}
if (dir2[1]=="nanshaolin")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"南少林地区的"NOR+local+"附近。\n";
}
if (dir2[1]=="cangzhou")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"沧州地区的"NOR+local+"附近。\n";
}
if (dir2[1]=="tanggu")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"塘沽城地区的"NOR+local+"附近。\n";
}
if (dir2[1]=="yunhe")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"京杭大运河的"NOR+local+"附近。\n";
}
if (dir2[1]=="hainan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"海南岛的"NOR+local+"附近。\n";
}
if (dir2[1]=="jindezheng")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"景德镇的"NOR+local+"附近。\n";
}
if (dir2[1]=="yandang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"雁荡山的"NOR+local+"附近。\n";
}
if (dir2[1]=="jinling")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"金陵城的"NOR+local+"附近。\n";
}
if (dir2[1]=="sandboy")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"江南农村的"NOR+local+"附近。\n";
}
if (dir2[1]=="huangshan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"黄山的"NOR+local+"附近。\n";
}
if (dir2[1]=="yubifeng")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"玉笔峰的"NOR+local+"附近。\n";
}
if (dir2[1]=="quanzhouchen")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"泉州城内的"NOR+local+"附近。\n";
}
if (dir2[1]=="qingzh")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"青藏高原附近"NOR+local+"附近。\n";
}
if (dir2[1]=="changbaishan" || dir2[1]=="gaoli")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"高丽 长白山附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="annan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"安南 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="taiyuan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"太原 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="hefei")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"合肥 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="jiujiang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"九江 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="baling")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"巴陵 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xinjiang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"新疆 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="dingxiang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"定襄 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="suiye")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"碎叶 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="mayi")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"马邑边疆 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xuzhou")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"徐州城 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="jinan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"济南城 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="guizhou")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"贵阳城 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="nanchang")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"南昌城 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="changsha")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"长沙城 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="zhongzhou")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"中州城 附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xizang" || dir2[1]=="zangbei")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"西藏或藏北附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="cloud" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"东北绮云镇附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xueting" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"东北雪亭镇附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="ny" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"东北宁远城附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="fengtian" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIR"东北盛京城附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="yanmen" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIB"雁门关附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="linzhi" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"西藏林芝地区附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="datong" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"大同府附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="tianshui" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"天水镇附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="heifeng" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"黑风寨附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="paiyun" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"排云寨附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="yeyangzai" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"野羊寨附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="jinghai" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"靖海派附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="zuojiacun" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"华亭镇附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="houjizhen" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"侯集镇附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="huayin" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"铜山村附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="lumaji" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"鹿马集附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xiyu/gaochang" || dir2[1]=="xiyu/hami" || dir2[1]=="xiyu")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"西域边疆附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xibei/desert" || dir2[1]=="xibei/kongdong" || dir2[1]=="xibei/liangzhou" || dir2[1]=="xibei/xingqing" || dir2[1]=="xibei")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+YEL"西北边疆附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="zhongyuan/chuzhou" || dir2[1]=="zhongyuan" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+GRN"中原关中附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="xinan/after_qingcheng" || dir2[1]=="xinan/cunzi" || dir2[1]=="xinan")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"西南四川附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="loulan" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"楼兰附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="biancheng" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIG"边城附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="quicksand" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"大沙漠附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="tieflag/qianfo" || dir2[1]=="tieflag" || dir2[1]=="tieflag/palace" || dir2[1]=="tieflag/bat" || dir2[1]=="tieflag/chuenyu")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"东海区域附近的"NOR+local+"附近。\n";
}
if (dir2[2]=="fy" || dir2[2]=="fycycle")
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"风云城附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="taiping" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"太平镇附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="eren/eren2" || dir2[1]=="eren" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIC"恶人谷附近的"NOR+local+"附近。\n";
}
if (dir2[1]=="qujing" )
{
output="『"+ob_list[i]->query("name")+"』似乎在"+HIY"西域诸国附近的"NOR+local+"附近。\n";
}
if (wizardp(this_player()))
{
//outputt +="『"+ob_list[i]->query("name")+"』在"+dir2[1]+"的"+local+"附近,出口数为:"+HIW""+ck+""+NOR"的地方。\n";
//output=outputt;
}
if (this_player()->query_temp("istask"))
{
output=output+" \n据说最有可能在:"+playout;
this_player()->delete_temp("istask");
}
if (wizardp(this_player()) && ob)
{
output +=base_name(ob)+" \n";
}
return output;
}
}
}
return "确定不了"+strr+"的大概位置.\n";
}
varargs int already_spreaded(string str,int hard)
{
object ob,*ob_list;
int i;
if(!str) return 0;
if(hard)
{
ob_list = children(str);
for(i=0; i<sizeof(ob_list); i++) {
ob=find_env(ob_list[i]);
if(ob)
{ ob_list[i]->move(VOID_OB);
destruct(ob_list[i]);
}
}
return 0;
}
else
{
if(!str) return 0;
ob_list = children(str);
for(i=0; i<sizeof(ob_list); i++) {
ob=find_env(ob_list[i]);
if(ob)
return 1;
}
return 0;
}
}
object find_env(object ob)
{
while(ob)
{ ob=environment(ob);
if(ob)
if(ob->query("short") ) return ob;
// else ob=environment(ob);
}
return ob;
}
object find_book(object ob)
{
while(ob)
{
if(ob->query("short") ) return ob;
// if(ob->query("exits") ) return ob;
else ob=environment(ob);
}
return ob;
}
mapping *read_table(string file)
{
string *line, *field, *format;
mapping *data;
int i, rn, fn;
line = explode(read_file(file), "\n");
data = ({});
for(i=0; i<sizeof(line); i++) {
if( line[i]=="" || line[i][0]=='#' ) continue;
if( !pointerp(field) ) {
field = explode( line[i], ":" );
continue;
}
if( !pointerp(format) ) {
format = explode( line[i], ":" );
continue;
}
break;
}
for( rn = 0, fn = 0; i<sizeof(line); i++) {
if( line[i]=="" || line[i][0]=='#' ) continue;
if( !fn ) data += ({ allocate_mapping(sizeof(field)) });
sscanf( line[i], format[fn], data[rn][field[fn]] );
fn = (++fn) % sizeof(field);
if( !fn ) ++rn;
}
return data;
}
void big_reward(object me, object who, object item)
{
tell_object(me,"你真行!!\n");
}
void execute_accept_object(object me, object who, object item)
{
who->accept_object(me,item);
}
|
c7b95d673154717869c5e6f388935377c084eb6d
|
ba6ec5e63c57cdd1e976cef1b6c6428d5fd0eac8
|
/dataextraction/inc/timer.h
|
8c399f71d10ed4c5fcfe62d2e8a4b1d2155b69c5
|
[] |
no_license
|
mariedegen/DataExctractionSamsungGearFit
|
e6c1ac607569834c05b7fb15b0f14c783386b49b
|
efc0fe9281b77e995dcb9c7c2bbb9e8a7de8b9df
|
refs/heads/master
| 2021-09-12T23:26:22.201804 | 2018-04-22T16:18:37 | 2018-04-22T16:18:37 | 104,861,120 | 1 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 280 |
h
|
timer.h
|
/**
* \brief timer.h
* \author DEGEN Marie
* \date Oct 17, 2017
*/
#ifndef TIMER_H_
#define TIMER_H_
#include "dataextraction.h"
#include "recording.h"
#include <time.h>
#include <stdio.h>
/* Timer function */
char* timer_sensor(unsigned int start);
#endif /* TIMER_H_ */
|
ccd0e9bd176132d7d004b7b855d83bcf789071c9
|
af7977991477325ddc604b6d3e2ac3cb4aa29337
|
/FlappyBirdGame3D2.0/Temp/il2cppOutput/il2cppOutput/mscorlib_Mono_Security_Cryptography_PKCS1178962251MethodDeclarations.h
|
54eb99ad2624e1f5d95055f6241ce55691a0ab35
|
[] |
no_license
|
jpf2141/FlappyBird3D
|
b824cf5fac6ca3c5739afc342b659af1f2836ab9
|
fe4e9c421ec8dc26a7befd620f9deaf3c6361de5
|
refs/heads/master
| 2021-01-21T13:53:25.062470 | 2016-05-06T02:39:28 | 2016-05-06T02:39:28 | 55,712,365 | 3 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 4,694 |
h
|
mscorlib_Mono_Security_Cryptography_PKCS1178962251MethodDeclarations.h
|
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
// System.Byte[]
struct ByteU5BU5D_t_1238178395_0;
// System.Security.Cryptography.RSA
struct RSA_t1573116945_0;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t1902086616_0;
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t_1530054766_0;
#include "codegen/il2cpp-codegen.h"
// System.Void Mono.Security.Cryptography.PKCS1::.cctor()
extern "C" void PKCS1__cctor_m332300130_0 (Object_t * __this /* static, unused */, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Boolean Mono.Security.Cryptography.PKCS1::Compare(System.Byte[],System.Byte[])
extern "C" bool PKCS1_Compare_m_1903511200_0 (Object_t * __this /* static, unused */, ByteU5BU5D_t_1238178395_0* ___array1, ByteU5BU5D_t_1238178395_0* ___array2, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::I2OSP(System.Byte[],System.Int32)
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_I2OSP_m_1793162448_0 (Object_t * __this /* static, unused */, ByteU5BU5D_t_1238178395_0* ___x, int32_t ___size, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::OS2IP(System.Byte[])
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_OS2IP_m_1715956843_0 (Object_t * __this /* static, unused */, ByteU5BU5D_t_1238178395_0* ___x, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::RSAEP(System.Security.Cryptography.RSA,System.Byte[])
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_RSAEP_m_692226752_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, ByteU5BU5D_t_1238178395_0* ___m, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::RSASP1(System.Security.Cryptography.RSA,System.Byte[])
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_RSASP1_m_247570547_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, ByteU5BU5D_t_1238178395_0* ___m, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::RSAVP1(System.Security.Cryptography.RSA,System.Byte[])
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_RSAVP1_m_1142966064_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, ByteU5BU5D_t_1238178395_0* ___s, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::Encrypt_v15(System.Security.Cryptography.RSA,System.Security.Cryptography.RandomNumberGenerator,System.Byte[])
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_Encrypt_v15_m1679755779_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, RandomNumberGenerator_t1902086616_0 * ___rng, ByteU5BU5D_t_1238178395_0* ___M, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::Sign_v15(System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithm,System.Byte[])
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_Sign_v15_m_1049483987_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, HashAlgorithm_t_1530054766_0 * ___hash, ByteU5BU5D_t_1238178395_0* ___hashValue, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Boolean Mono.Security.Cryptography.PKCS1::Verify_v15(System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithm,System.Byte[],System.Byte[])
extern "C" bool PKCS1_Verify_v15_m_1502365860_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, HashAlgorithm_t_1530054766_0 * ___hash, ByteU5BU5D_t_1238178395_0* ___hashValue, ByteU5BU5D_t_1238178395_0* ___signature, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Boolean Mono.Security.Cryptography.PKCS1::Verify_v15(System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithm,System.Byte[],System.Byte[],System.Boolean)
extern "C" bool PKCS1_Verify_v15_m_1502381919_0 (Object_t * __this /* static, unused */, RSA_t1573116945_0 * ___rsa, HashAlgorithm_t_1530054766_0 * ___hash, ByteU5BU5D_t_1238178395_0* ___hashValue, ByteU5BU5D_t_1238178395_0* ___signature, bool ___tryNonStandardEncoding, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.Cryptography.PKCS1::Encode_v15(System.Security.Cryptography.HashAlgorithm,System.Byte[],System.Int32)
extern "C" ByteU5BU5D_t_1238178395_0* PKCS1_Encode_v15_m_1760328946_0 (Object_t * __this /* static, unused */, HashAlgorithm_t_1530054766_0 * ___hash, ByteU5BU5D_t_1238178395_0* ___hashValue, int32_t ___emLength, const MethodInfo* method) IL2CPP_METHOD_ATTR;
|
d76afa2c32f34080464d13afdbb1ed7406df03f4
|
bbc35e3c7e35b5219e06027c1798ac36775305ff
|
/LeeCode/topic476/main.c
|
24302cb6b399d5fa126aa1724bc29cbf6319877a
|
[] |
no_license
|
zabcdefghijklmnopqrstuvwxy/leecode
|
7f261dfde880f4755cf3b35b0ca08b36025cd5e9
|
35018a3e0506a77d425d0aff6a1c50bfa67afeaa
|
refs/heads/master
| 2023-03-07T06:27:51.292041 | 2023-02-26T03:50:34 | 2023-02-26T03:50:34 | 211,665,551 | 1 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 128 |
c
|
main.c
|
int findComplement(int num){
long tmp = 1;
while(num >= tmp)
{
tmp <<= 1;
}
return tmp - 1 - num;
}
|
4c12c2621d7b08e39d9d37909391518c3e12b676
|
7cbdb37b5c5442e141246b9449bcd0ac4a1faafe
|
/c project/sum_Upto_ndigit.c
|
2bfc651fa6f364c1099599be80e0b6a420c86463
|
[] |
no_license
|
Laijyourluv/c-projects
|
d7b6c3d08c44bde2e7043cf6c2198293cf84530a
|
764c293562b6f7f0300298d04f5f969e3c43af75
|
refs/heads/master
| 2023-07-25T17:52:32.062108 | 2021-08-29T13:03:50 | 2021-08-29T13:03:50 | 400,947,974 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 164 |
c
|
sum_Upto_ndigit.c
|
#include <stdio.h>
int main()
{
int n, s;
printf("Enter the number\n");
scanf("%d", &n);
s= n*(n+1)/2;
printf("Sum=%d\n",s);
return 0;
}
|
38e18325bf995c1ee0d88b16e8f98d9062849815
|
48dbda3e339961e1aa35e915b2570e4923e1479d
|
/C_Linux/array/main.c
|
8704360392c8a49c4fedf0d6b953c982206c75a0
|
[] |
no_license
|
freecodestuff/freecodestuff
|
33a3746fd9869f6197e6c3e44977aad246873196
|
c9f0d0be48bd3e9bea5c2f4019b512e268fd6ca4
|
refs/heads/main
| 2023-06-19T17:53:18.309290 | 2021-07-17T16:59:52 | 2021-07-17T16:59:52 | 385,501,617 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 131 |
c
|
main.c
|
#include<stdio.h>
int main()
{
int a[5] = {10,20,30,40,50};
int i = 0;
for(;i < 5; i++) {
printf("%d ",a[i]);
}
return 0;
}
|
ca921d05c88108eea152a1ddf3e32f03cc885755
|
b7878bd69c2100746e7f322c1528ad3970393354
|
/apue_test/4_files_and_directories/test4.6.c
|
52aa50f6c3f268450ebd8bcaf2638b422961b720
|
[] |
no_license
|
houtuiwang/apue_test
|
e1f24eef4c415650cf63c078280f2c5fb8209d2d
|
9947ac69de963de583eb302a7151e682d2fcadb9
|
refs/heads/master
| 2020-04-15T13:36:16.044532 | 2016-11-21T03:08:51 | 2016-11-21T03:08:51 | 57,173,749 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 521 |
c
|
test4.6.c
|
#include "apue.h"
#include <fcntl.h>
int main(int argc, char *argv[])
{
if (argc!=3)
err_quit("usage: mycp <sourcefile> <destfile>");
int fds, fdd;
if ((fds=open(argv[1], O_RDONLY, 0)) < 0)
err_sys("can't open: %s", argv[1]);
if ((fdd=open(argv[2], O_WRONLY|O_CREAT, S_IRUSR|S_IWUSR)) < 0)
err_sys("can't open: %s", argv[2]);
char buf;
int n;
while ((n=read(fds, &buf, 1)) > 0) {
if (buf != 0)
write(fdd, &buf, n);
}
if (n < 0)
err_sys("read error");
return 0;
}
|
10d8b51f72f9dacf564299526d3aad35ba23bc85
|
c1571bbb63c76a9d84c52d5f336f76d461fecdab
|
/greenfox/week-07/day-05/smartphones/main.c
|
10836c3cf6e8f5df7e99391afeb1e0dd2d8b75f1
|
[] |
no_license
|
green-fox-academy/rab.peti
|
a084ba10fd316bac557dc2beba17bb6a75fb46aa
|
896b87803fbcfb93838d68f63e5ffed927659f95
|
refs/heads/master
| 2020-04-02T17:22:08.547050 | 2019-09-24T06:48:45 | 2019-09-24T06:48:45 | 154,655,058 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 6,341 |
c
|
main.c
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* Create a smartphone register application
* Read the content of smartphones.txt and store the informations in a structure called "smartphone:
* - the name of the gadget (which is shorter than 256 characters) (Don't bother with the underscore('_') character, it's the part of the name)
* - the year of the release (e.g. 2016)
* - the type of the screen size (as a custom type, see below)
*
* In the file the size is given in cm but you should store the screen size type in an enumeration ("screen_size"),
* the valid types are:
* - BIG -> (>= 15 cm)
* - MEDIUM -> (>= 12 cm)
* - SMALL -> (< 12 cm)
*
* The smartphones should be stored in an array.
*
* Implement the following functions:
* - get_oldest_phone()
* - it should return the name of oldest device
* - it is up to you how your function declaration looks like (return type and arguments)
* - get_screen_size_count()
* - it returns the count of phones which has "screen_size" size
* - it is up to you how your function declaration looks like (return type and arguments)
*
* Your main function should invoke these functions and print the following:
* The ..... is the oldest device in the database
* There are .... phones with BIG (>= 15 cm) screen size
* There are .... phones with SMALL (< 12 cm) screen size
*
*
* Additionally, you need to create a new file(prices.txt) that looks like this:
* <NAME> <PRICE>
* <NAME> <PRICE>
* .
* .
* .
*
* To calculate the price use the following method. The base price of every phone is 300$.
* If the size is SMALL, that adds 0$ to the value
* If the size is MEDIUM, that adds 100$ to the value
* If the size is BIG, that doubles the base price.
*
* The price also depends on the age. For every year that passed since its release,
* the phone loses 50$ but the maximum value that it can lose because of the age is 250$
*/
enum SCREEN_SIZE {
SMALL,
MEDIUM,
BIG
};
struct smartphone {
char name[256];
int year;
enum SCREEN_SIZE type;
};
int textReader(char *path, struct smartphone* phones);
char* getSCREEN_SIZE(struct smartphone* array, int index);
char* get_oldest_phone(struct smartphone* array, int array_size, char* oldest);
int get_screen_size_count(struct smartphone* array, int array_size, enum SCREEN_SIZE screen_size, int count);
void price_calculator(struct smartphone* array, int array_size);
int main() {
char* path = "phones.txt";
char oldest[256];
struct smartphone phones[256];
int lines = textReader(path,phones);
price_calculator(phones,lines);
printf("The %s is the oldest device in the database\n", get_oldest_phone(phones,lines,oldest));
printf("There are %d phones with BIG (>= 15 cm) screen size\n", get_screen_size_count(phones,lines,BIG,0));
printf("There are %d phones with SMALL (< 12 cm) screen size\n", get_screen_size_count(phones,lines,SMALL,0));
return 0;
}
char* get_oldest_phone(struct smartphone* array, int array_size, char* oldest){
int oldest_year = array[0].year;
for (int i = 0; i < array_size; ++i) {
if(array[i].year < oldest_year) {
oldest_year = array[i].year;
strcpy(oldest,array[i].name);
}
}
return oldest;
}
int get_screen_size_count(struct smartphone* array, int array_size, enum SCREEN_SIZE screen_size, int count){
for (int i = 0; i < array_size; ++i) {
if(array[i].type == screen_size) {
count++;
}
}
return count;
}
void price_calculator(struct smartphone* array, int array_size){
int current_year = 2018;
FILE *file = fopen("prices.txt", "w");
if (file == NULL)
{
printf("Error opening file!\n");
exit(1);
}
int price = 300;
for (int i = 0; i < array_size; ++i) {
if(array[i].type == BIG) {
price *= 2;
if(current_year - array[i].year >= 5)
price -= 250;
else{
price -= (current_year - array[i].year) * 50;
}
}
else if(array[i].type == MEDIUM) {
price += 100;
if(current_year - array[i].year >= 5)
price -= 250;
else{
price -= (current_year - array[i].year) * 50;
}
}
else{
if(current_year - array[i].year >= 5)
price -= 250;
else{
price -= (current_year - array[i].year) * 50;
}
}
fprintf(file, "%s %d\n", array[i].name, price);
price = 300;
}
}
int textReader(char *path, struct smartphone* phones) {
FILE *fptr;
fptr = fopen(path, "r");
int counter = 0;
int i = 0;
char *ptr;
if (fptr != NULL) {
char line[256];
while (fgets(line, sizeof line, fptr) != NULL) {
char *pch = strtok(line, " ");
while (pch != NULL) {
switch (counter) {
case 0 :
strcpy(phones[i].name, pch);
break;
case 1 :
phones[i].year = strtol(pch, &ptr, 10);
break;
case 2 :
if(strtol(pch, &ptr, 10) >= 15)
phones[i].type = BIG;
else if(strtol(pch, &ptr, 10) >= 12)
phones[i].type = MEDIUM;
else if(strtol(pch, &ptr, 10) < 12)
phones[i].type = SMALL;
break;
default :
printf("Something went wrong");
}
pch = strtok(NULL, " ");
counter++;
}
i++;
counter = 0;
}
fclose(fptr);
} else {
perror(path);
}
fclose(fptr);
//for (int j = 0; j < 15; ++j) {
// printf("%s %d %s\n", phones[j].name, phones[j].year, getSCREEN_SIZE(phones,j));
//}
return i;
}
char* getSCREEN_SIZE(struct smartphone* array, int index){
if(array[index].type == SMALL)
return "small";
else if(array[index].type == MEDIUM)
return "medium";
else if(array[index].type == BIG)
return "big";
}
|
e0f3a8dae3c3e6e0361e42f5436d3f73ab9c27b2
|
68cb128100109b56591ac51029370e540ead6753
|
/src/base/scmRTOS_extensions.h
|
2c09ffc3234e7de7e5c9a04fcc8be6512965eefb
|
[
"MIT"
] |
permissive
|
antongus/scmRTOS-terminal
|
37c18b2e9669cb7318dfcf1af8f611e4d48bda68
|
e4be93005a0bb2c6308a4e524403f59b84263a00
|
refs/heads/master
| 2016-08-12T04:30:58.250412 | 2016-02-28T09:46:08 | 2016-02-28T09:46:08 | 52,714,203 | 1 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 282 |
h
|
scmRTOS_extensions.h
|
/**
* @file scmRTOS_CONFIG.h
*
* scmRTOS Extensions
*
* Copyright © 2016 Anton B. Gusev aka AHTOXA
**/
#ifndef scmRTOS_EXTENSIONS_H
#define scmRTOS_EXTENSIONS_H
#endif // scmRTOS_EXTENSIONS_H
//-----------------------------------------------------------------------------
|
a4b6df3fa22f0c061dfffcd39bf7bcb9b0ff9c53
|
f6024b995ba162ce9d61197a32aa4b25c8a25721
|
/02.recursion/exercise_18.c
|
2f528c0ae9fa02180f8755738a66a90606d334f4
|
[] |
no_license
|
SeungHeeNoh/dataStructExercises
|
66a686c9af6b3e58c08163d0ec97cdfcd0b1f4ab
|
8ba8312470f838e98659fc5ecdc68723bfa37764
|
refs/heads/master
| 2023-02-23T00:31:46.140900 | 2021-01-31T07:13:49 | 2021-01-31T07:13:49 | 328,068,514 | 2 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 238 |
c
|
exercise_18.c
|
/*
이항 계수를 계산하는 순환 함수를 작성하라.
*/
#include<stdio.h>
int getBC(int n, int k){
if(k==0 || k==n) return 1;
return getBC(n-1, k-1) + getBC(n-1, k);
};
void main(){
printf("result : %d\n", getBC(4, 2));
}
|
5a5d653ffbe82fb88e3728d05f6abbc5e6d3f9d8
|
6926a3ec06a62d9fd83820b9b1d01916fc8c67ad
|
/C/Jogo da Velha/Jogo da velha.c
|
93fc11e95d3c37c549f83c8def4288af3b550702
|
[] |
no_license
|
matheuslohse/Exemplos-C
|
b5b16a870024960eca1fe1e1ca41021667d92683
|
577a712a07e8e294db8e9b4073bf944d98e77391
|
refs/heads/main
| 2023-07-04T23:13:31.122986 | 2021-08-23T14:18:55 | 2021-08-23T14:18:55 | 399,131,664 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,056 |
c
|
Jogo da velha.c
|
// Jogo da Velha
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void JogaComputador(char t[3][3]){
srand(time(NULL));
int i, j;
do{
i = rand()%3;
j = rand()%3;
}while(t[i][j]!='.');
t[i][j]= 'O';
}
void Inicializa(char t [3][3]){
int i, j;
for(i =0; i<3; i++){
for(j =0; j<3; j++){
t[i][j] = '.';
}
}
printf("\n");
}
void Escreve(char t[3][3]){
int i, j;
char temp [3];
printf("\nJogo da Velha\n\n");
printf(" 0 1 2\n");
for(i=0; i<3;i++){
printf("%i ",i);
for(j=0; j<3;j++){
temp[i] = t[i][j];
printf("%c ",t[i][j]);
}
printf("\n");
}
}
void JogaUsuario(char t[3][3]){
int x, y;
printf("\nInsira a linha:");
scanf("%i", &x);
while(x<0 || x>2){
printf("\nERRO. VALOR INVALIDO.\nInsira a linha novamente:");
scanf("%i", &x);
}
printf("\nInsira a coluna:");
scanf("%i", &y);
while(y>=3 || y<0){
printf("\nERRO. VALOR INVALIDO.\nInsira a coluna novamente:");
scanf("%i", &y);
}
while(t[x][y]!='.'){
printf("\nErro. Digite um local valido.\nLinha: ");
scanf("%i", &x);
printf("\nColuna: ");
scanf("%i", &y);
}
t[x][y] = 'X';
printf("\n");
}
void FimJogo(char t[3][3]){
char temp [3];
for(int j=0;j<3;j++){
for(int i=0;i<3;i++){
temp[i] = t[i][j];
printf("\n -> %c %f %f",&temp[i], &i, &j);
}
if(temp[1]==temp[2] && temp[2]==temp[3]){
if(temp[1]=='X') printf("Parabens! Voce venceu!! :)");
if(temp[1]=='O') printf("Que pena! Voce perdeu!! :(");
break;
}
}
}
main(){
char tabuleiro[3][3], temp[3];
int cont, i = 0;
Inicializa(tabuleiro);
Escreve(tabuleiro);
for(cont = 0; cont<=3; cont++){
JogaUsuario(tabuleiro);
Escreve(tabuleiro);
JogaComputador(tabuleiro);
Escreve(tabuleiro);
}
}
|
9396642f26bf11093a479631eba12b794486b161
|
bf3b603a768515206adbcf0e4ffc829d9d7edba9
|
/Média.c
|
ed94715e66de55f98dbcac497931af3897dd07a2
|
[
"MIT"
] |
permissive
|
Breno-Lima/IP-C
|
9237ccc703ec76d35a47efca1c135972024e7137
|
08439df57abe192d00eea3c032cfb9f6a9c5a414
|
refs/heads/main
| 2023-04-23T19:22:32.026075 | 2021-05-13T04:35:34 | 2021-05-13T04:35:34 | 366,886,496 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 342 |
c
|
Média.c
|
#include <stdio.h>
#include <stdlib.h>
int main(void){
int a,b,c;
int soma;
int media;
printf("Digite a sua primeira nota: ");
scanf("%d",&a);
printf("Digite a sua segunda nota: ");
scanf("%d",&b);
printf("Digite a sua terceira nota: ");
scanf("%d",&c);
soma=a+b+c;
media=soma/3;
printf("A media do aluno foi:%d",media);
return 0;
}
|
bd4d51b16f2e10050a5a54607ee55b3129a75a22
|
0a2a4a3f2ce2b2cf98f6717ef92b22675c9220cf
|
/src/Externals/cleaver/teem/src/air/randMT.c
|
aa64fc55a32b0a5273cf8dbe4c2f09204d58c607
|
[
"MIT",
"LGPL-2.0-or-later",
"LGPL-2.1-or-later",
"LicenseRef-scancode-other-copyleft",
"LGPL-2.1-only",
"GPL-1.0-or-later"
] |
permissive
|
Haydelj/SCIRun
|
fa0d22a250c829e65eddf1327399e3795916b012
|
f7ee04d85349b946224dbff183438663e54b9413
|
refs/heads/master
| 2022-11-06T09:01:14.956890 | 2020-03-25T00:37:06 | 2020-03-25T00:37:06 | 164,483,916 | 0 | 0 |
MIT
| 2019-01-07T19:43:50 | 2019-01-07T19:43:50 | null |
UTF-8
|
C
| false | false | 9,322 |
c
|
randMT.c
|
/*
Teem: Tools to process and visualize scientific data and images
Copyright (C) 2008, 2007, 2006, 2005 Gordon Kindlmann
Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998 University of Utah
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
(LGPL) as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The terms of redistributing and/or modifying this software also
include exceptions to the LGPL that facilitate static linking.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
This file is a modified version of the MersenneTwister.h source file
written by Richard J. Wagner. The original copyright notice follows.
Mersenne Twister random number generator -- a C++ class MTRand
Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus
Richard J. Wagner v1.0 15 May 2003 rjwagner@writeme.com
The Mersenne Twister is an algorithm for generating random numbers. It
was designed with consideration of the flaws in various other generators.
The period, 2^19937-1, and the order of equidistribution, 623 dimensions,
are far greater. The generator is also fast; it avoids multiplication and
division, and it benefits from caches and pipelines. For more information
see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html
Reference
M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally
Equidistributed Uniform Pseudo-Random Number Generator", ACM Transactions on
Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
Copyright (C) 2000 - 2003, Richard J. Wagner
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The names of its contributors may not 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 OWNER 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.
The original code included the following notice:
When you use this, send an email to: matumoto@math.keio.ac.jp
with an appropriate reference to your work.
It would be nice to CC: rjwagner@writeme.com and Cokus@math.washington.edu
when you write.
*/
#include "air.h"
#include "privateAir.h"
#define AIR_RANDMT_M 397
#define AIR_RANDMT_DEFAULT_SEED 42
/* Inlined class member functions that I made macros */
#define HIBIT( u ) ((u) & 0x80000000UL)
#define LOBIT( u ) ((u) & 0x00000001UL)
#define LOBITS( u ) ((u) & 0x7fffffffUL)
#define MIXBITS( u, v ) (HIBIT(u) | LOBITS(v))
#define TWOSCOMP( u ) (~(u)+1)
#define TWIST( m, s0, s1 ) \
((m) ^ (MIXBITS(s0,s1)>>1) ^ (TWOSCOMP(LOBIT(s1)) & 0x9908b0dfUL))
/* airRandMTStateGlobal is not allocated at compile-time because of
weirdness of where non-initialized global objects go in shared
libraries. Its allocation and initialization are controlled by
_airRandMTStateGlobal_{allocated,initialized}. Users who want to
ensure thread safety should be using airRandMTStateNew and
airDrandMT_r, not the global state.
*/
airRandMTState *airRandMTStateGlobal = NULL;
static int _airRandMTStateGlobal_allocated = AIR_FALSE;
static int _airRandMTStateGlobal_initialized = AIR_FALSE;
static void
_airRandMTInitialize(airRandMTState *rng, unsigned int seed) {
/* Initialize generator state with seed See Knuth TAOCP Vol 2, 3rd
Ed, p.106 for multiplier. In previous versions, most significant
bits (MSBs) of the seed affect only MSBs of the state array.
Modified 9 Jan 2002 by Makoto Matsumoto.
*/
register unsigned int *s = rng->state;
register unsigned int *r = rng->state;
register int i = 1;
*s++ = seed & 0xffffffffUL;
for( ; i < AIR_RANDMT_N; ++i ) {
*s++ = ( 1812433253UL * ( *r ^ (*r >> 30) ) + i ) & 0xffffffffUL;
r++;
}
}
static void
_airRandMTReload(airRandMTState *rng) {
/* Generate N new values in state. Made clearer and faster by
Matthew Bellew (matthew.bellew@home.com) */
register int i;
register unsigned int *p = rng->state;
for (i=AIR_RANDMT_N - AIR_RANDMT_M; i--; ++p) {
*p = TWIST( p[AIR_RANDMT_M], p[0], p[1] );
}
for (i=AIR_RANDMT_M; --i; ++p) {
*p = TWIST( p[AIR_RANDMT_M-AIR_RANDMT_N], p[0], p[1] );
}
*p = TWIST( p[AIR_RANDMT_M-AIR_RANDMT_N], p[0], rng->state[0] );
rng->left = AIR_RANDMT_N;
rng->pNext = rng->state;
}
airRandMTState *
airRandMTStateNew(unsigned int seed) {
airRandMTState* ret;
ret = AIR_CAST(airRandMTState*, malloc(sizeof(airRandMTState)));
airSrandMT_r(ret, seed);
return ret;
}
airRandMTState *
airRandMTStateNix(airRandMTState *state) {
airFree(state);
return NULL;
}
void
airSrandMT_r(airRandMTState *rng, unsigned int seed) {
/* Seed the generator with a simple uint32 */
_airRandMTInitialize(rng, seed);
_airRandMTReload(rng);
}
/* Pull a 32-bit integer from the generator state. Every other access
** function simply transforms the numbers extracted here.
*/
unsigned int
airUIrandMT_r(airRandMTState *rng) {
register unsigned int s1;
if (rng->left == 0) {
_airRandMTReload(rng);
}
--rng->left;
s1 = *rng->pNext++;
s1 ^= (s1 >> 11);
s1 ^= (s1 << 7) & 0x9d2c5680UL;
s1 ^= (s1 << 15) & 0xefc60000UL;
return ( s1 ^ (s1 >> 18) );
}
/* This generates the closed interval [0,1] */
double
airDrandMT_r(airRandMTState *rng) {
double result = airUIrandMT_r(rng);
return result * (1.0/4294967295.0);
}
/* [0,1) w/ 53 bit precision (capacity of IEEE double precision) */
double
airDrandMT53_r(airRandMTState *rng) {
unsigned int a, b;
a = airUIrandMT_r(rng) >> 5;
b = airUIrandMT_r(rng) >> 6;
return ( a * 67108864.0 + b ) * (1.0/9007199254740992.0); /* by Isaku Wada */
}
#define _GLOBAL_ALLOC \
if (!_airRandMTStateGlobal_allocated) { \
airRandMTStateGlobal = airRandMTStateNew(0); \
_airRandMTStateGlobal_allocated = AIR_TRUE; \
}
#define _GLOBAL_INIT \
if (!_airRandMTStateGlobal_initialized) { \
airSrandMT(AIR_RANDMT_DEFAULT_SEED); \
} \
void
airSrandMT(unsigned int seed) {
_GLOBAL_ALLOC;
airSrandMT_r(airRandMTStateGlobal, seed);
_airRandMTStateGlobal_initialized = AIR_TRUE;
}
double
airDrandMT() {
_GLOBAL_ALLOC;
_GLOBAL_INIT;
return airDrandMT_r(airRandMTStateGlobal);
}
/*
******** airRandInt
**
** returns a random integer in range [0, N-1]
*/
unsigned int
airRandInt(unsigned int N) {
_GLOBAL_ALLOC;
_GLOBAL_INIT;
return airUIrandMT_r(airRandMTStateGlobal)%N;
}
unsigned int
airRandInt_r(airRandMTState *state, unsigned int N) {
return airUIrandMT_r(state)%N;
}
/* This checks to see if the sequence of numbers we get is what we
expect. It should return 0 if all is well, 1 if not.
One thing to check for if it fails is the presence of twos
complement interger representation. The code here relies on it.
*/
int
airRandMTSanity() {
int result = 0;
/* Create a new generator with our seed */
airRandMTState* rng = airRandMTStateNew(AIR_RANDMT_DEFAULT_SEED);
if (!rng) {
/* Couldn't allocate memory */
return 1;
}
/* Now check against a predetermined list of values. */
result |= airUIrandMT_r(rng) != 1608637542U;
result |= airUIrandMT_r(rng) != 3421126067U;
result |= airUIrandMT_r(rng) != 4083286876U;
result |= airUIrandMT_r(rng) != 787846414U;
result |= airUIrandMT_r(rng) != 3143890026U;
result |= airUIrandMT_r(rng) != 3348747335U;
result |= airUIrandMT_r(rng) != 2571218620U;
result |= airUIrandMT_r(rng) != 2563451924U;
result |= airUIrandMT_r(rng) != 670094950U;
result |= airUIrandMT_r(rng) != 1914837113U;
airRandMTStateNix(rng);
return result;
}
|
beba3f6b0511eb8b3b3a45eeb0538378ddd00245
|
7e2c36f73365a809a7ec8e224a8ab1c87c03a3dc
|
/structs.h
|
aac89ce18845956ee339639c921d0d2fc56a0b25
|
[] |
no_license
|
adambennett/CISC361-Shell
|
7a554ce04f76560c98b4e318673377b7bc64f7e7
|
5f29a6adae2703d2c1db08106e82566965a9a06f
|
refs/heads/master
| 2020-03-29T18:13:25.143738 | 2018-10-18T04:13:30 | 2018-10-18T04:13:30 | 150,200,292 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,942 |
h
|
structs.h
|
#ifndef structs_h
#define structs_h
#include "sh.h"
/**
* @brief Keeps linked list of PATH
*
* A linked list struct that is used to keep track of the PATH environment variable
*
* @param element The path as a string
* @param head The head of the linked list (used for easy traversal)
* @param next The next pathelement in the list
*/
typedef struct pathelement
{
char *element; // Directory in the path
struct pathelement *head; // Pointer to the list head
struct pathelement *next; // Pointer to next node
}pathelement;
/**
* @brief Used with 'alias'
*
* Customized struct used to keep track of all alias entries
*
* @param alias The alias entered by the user
* @param command The command associated with this alias
* @param ptr Used to keep track of allocations for memory management
*/
typedef struct aliasEntry
{
char *alias; // The user entered command name
char *command; // The actual command associated with this alias
struct aliasEntry *ptr; // Keeps track of allocation of aliasEntries from addAlias()
}aliasEntry;
/**
* @brief Used with 'watchuser'
*
* Customized struct used to keep track of all watchuser entries
*
* @param node Name of user
* @param next Pointer to next node
*/
typedef struct userList
{
char *node; // Username
struct userList *next; // Pointer to next node
}userList;
/**
* @brief Used with 'watchmail'
*
* Customized struct used to keep track of all watchmail entries
*
* @param fileName Name of file
* @param thread The node's associated thread
* @param next Pointer to next node
*/
typedef struct mailList
{
char *filename; // Path to the file being watched
pthread_t thread; // Thread reference for each file
struct mailList *next; // Pointer to next node
}mailList;
#endif //structs_h
|
ad979303720134e235ed81eb077d7af085d8874e
|
943dd54918355e8028fdd759bae6d9dd837e11e0
|
/third-party/u8g2/tools/font/build/single_font_files/u8g2_font_missingplanet_tf.c
|
090756d66c04af070aa50b3768f67dc1812a0c42
|
[
"BSD-3-Clause",
"CC-BY-SA-3.0",
"LicenseRef-scancode-x11-adobe-dec",
"BSD-2-Clause"
] |
permissive
|
fieldkit/firmware
|
06e920ad01c2f48142413d3a3447188bc9753004
|
45c51ce8dc51df886875e97de17980c839882adf
|
refs/heads/main
| 2023-08-23T22:29:02.022772 | 2023-07-24T22:18:01 | 2023-07-24T22:18:01 | 183,808,180 | 11 | 1 |
BSD-3-Clause
| 2023-04-04T20:42:38 | 2019-04-27T18:27:51 |
C++
|
UTF-8
|
C
| false | false | 6,461 |
c
|
u8g2_font_missingplanet_tf.c
|
/*
Fontname: -FreeType-MissingPlanet-Medium-R-Normal--16-160-72-72-P-56-ISO10646-1
Copyright: Extant
Glyphs: 190/420
BBX Build Mode: 0
*/
const uint8_t u8g2_font_missingplanet_tf[2109] U8G2_FONT_SECTION("u8g2_font_missingplanet_tf") =
"\276\0\3\3\4\4\3\5\5\17\20\376\374\11\374\11\0\1J\2\253\10 \5\0\204\25!\7\221\204"
"\22\227\0\42\10\63\264\24\21\225\0#\22\225\204\66I\221H%)\22\212D*I\221\10\0$\23\265"
"|V!K(\22\212\204J\221P$\24\61\205\0%\16\225\204\26\23I\204\22\313\205\22\221\14&\22"
"\227\204\30\245X(\226\22\215Er\13\245Df\1'\6\61\264\22\3(\10\223\204\24\244|\32)\10"
"\223\204\24\243|\42*\13U\244\26\221\224Ie\222\1+\12U\224V\301P)\30\2,\7\63rR"
"!\2-\6\25\244\26\5.\6\21\204\22\1/\11\225\204\226\331rL\4\60\10\225\204\26\66}\63\61"
"\10\225\204\26\303\374T\62\12\225\204\26\305\304cb\1\63\12\225\204\26\305Dc\242\1\64\11\225\204\26"
"\61m\306\34\65\12\225\204\26\306\304b\242\1\66\12\225\204\26\306D\233\232\1\67\10\225\204\26\305\374\1"
"\70\12\225\204\26\66\265\233\232\1\71\12\225\204\26\66\65c\242\1:\7Q\204\22\261\0;\11srR"
"q`\210\0<\11U\224V\223X\64:=\7\65\234\26\325\2>\12U\224\26\323\264\310\10\0\77\16"
"\225\204\26\66Y\60\64\12\306A!\0@\25\231\204\32\207\71@R\221F$\25I,\42\71\304!\7"
"\1A\12\225\204\26\66\265\233\266\0B\21\226\204\27\244X$(\213\220b\221\240,B\2C\10\225\204"
"\26\306|,D\20\226\204\27\244X$\26\11j\213\304\42$\0E\12\225\204\26\306Dcb\1F\12"
"\225\204\26\306DcF\0G\13\225\204\26\66\305\10M\315\0H\12\225\204\26\61m\67m\1I\7\221"
"\204\22\7\1J\10\225\204\226\371\321\0K\17\226\204\27A\265H(D\312\26\11\12\3L\10\225\204\26"
"\301\374XM\24\231\204\32\207YL\26\223\305d\61YL\26\223\305d\11N\24\231\204\32\65YL\26"
"\223\305d\61YL\26\223\305d\5O\10\225\204\26\66}\63P\12\225\204\26\66\265cF\0Q\15\245"
"|\26\66\275D$\21S\10\0R\17\225\204\26\66\265S$\24\11EB\21\0S\12\225\204\26\306\304"
"b\242\1T\11\225\204\26\245`~\2U\10\225\204\26\61\375fV\13\225\204\26\61}\213\244\205\0W"
"\25\231\204\32\261\230,&\213\311b\262\230,&\213\311b\207\1X\15\225\204\26\61\265HZJ\232Z"
"\0Y\13\225\204\26\61m\246`&\0Z\12\225\204\26\305\304cb\1[\10\223\204\24\244|\32\134\11"
"\225\204\26\301\324\34\23]\10\223\204\24\243|\42^\6#\274\64\31_\6\25t\26\5`\7\42\274\23"
"\241\0a\10U\204\26\305\233\1b\12\225\204\26\301\214\66\65\3c\10U\204\26\306\304\2d\11\225\204"
"\226\31oj\6e\10U\204\26\266c\1f\14\225\204V\243`R)\230\11\0g\12\225d\26\66\65"
"c\242\1h\12\225\204\26\301\214\66m\1i\7q\204\22\221\2j\11\263bR\321P>\21k\15\225"
"\204\26\301\334D\21J(\22\13l\7\221\204\22\7\1m\14U\204\26\226\210$\42\211H\22n\10U"
"\204\26\66m\1o\10U\204\26\66\65\3p\12\225d\26\66\265cF\0q\11\225d\26\66\65c\16"
"r\10U\204\26\306\214\0s\10U\204\26\306\242\1t\13\225\204V\301L\245`&\0u\10U\204\26"
"\61m\6v\13U\204\26\61\265HZ\10\0w\15U\204\26\221\210$\42\211H\42\6x\13U\204\26"
"\61Yd\22\223\5y\12\225d\26\61m\306D\3z\10U\204\26\305c\1{\13\225\204V\243`\322"
"\60\343\0|\7\321d\22\7\3}\14\225\204\26\303\214\243`\322\10\0~\11\65\264\26\23ID\62\240"
"\5\0\204\25\241\7\221\204\22\221\3\242\16u|V!K(\22\212\204J!\0\243\15\225\204V\243`"
"R)\64\212\204\12\244\25\231\204\32q@\344\24\15EC\321P\64\24\15]\342\200\0\245\13\225\204\26"
"\61m\246P)T\246\7\221\204\22\24\2\247\12\225\204\26\306\240\315\30\64\250\7\23\304\24\221\0\251\24"
"\231\204\32\207\71@R\221D%QITR\221\3\16\3\252\10U\244\26\305\233\1\253\22\225\204V\221"
"L\221L\221P$\26\11Eb\221\0\254\7\65\224\26\305\4\256\36\335t\36\357@YM\226&K\223"
"\245\311j\262PP\26\12\312BAY((\7\36\16\257\6\25\304\26\5\260\10U\244\26\66\65\3\261"
"\13u\204V\301P)\30\7\24\262\10U\244\26\305c\1\263\7U\244\26E\7\264\7\42\274\63\22\0"
"\265\12\225d\26\61m\307\214\0\266\22\225\204\26\226\210$\42\211\230\42\241H(\22\212\4\267\6\21\244"
"\22\1\270\10Cf\26\241\21\1\271\10U\244\26\303L\5\272\10U\244\26\66\65\3\273\23\225\204\26\221"
"X$\24\211EB\221P$S$\23\0\274\25\233\204\34\303h\60\32\214\306\202\267`$\226T\13\307"
"\302\1\275\26\233\204\34\303h\60\32\214\306\202\7b\64\26\252\205\342\200P\1\276\27\233\204\34\245\70 "
"\24+\305\1\221\340-\30\211%\325\302\261p\0\277\15\225\204VqP\60\64\12\306d\6\300\14\305\204"
"\66\321\70\300\246v\323\26\301\14\305\204v\351\0\233\332M[\0\302\14\305\204V\261H\330\246v\323\26"
"\303\14\305\204\26\23\311\324\246v\323\26\304\14\305\204\66\351@\233\332M[\0\305\15\305\204\66\243Hh"
"bS\273i\13\306\23\231\204\32\207Y\60\26\214\5\17\263`,\30\13\306\12\307\15\325d\26\306|\254"
"\4\207\241\11\0\310\14\305\204\66\321\70\300\230hL,\311\14\305\204v\351\0c\242\61\261\0\312\14\305"
"\204V\261H\330\230hL,\313\14\305\204\66\351@c\242\61\261\0\314\11\302\203\22\241X$\177\315\11"
"\302\204\63\262H\376\2\316\12\303\203\63\31C\371\13\0\317\13\303\203\23\221\70 \224\277\0\320\22\227\204"
"\70\264\244X(X\212\4#\261P,D\2\321\30\311\204Z\223`d\16\254\311b\262\230,&\213\311"
"b\262\230,&+\322\13\305\204\66\321\70\300\246o\6\323\12\305\204v\351\0\233\276\31\324\13\305\204V"
"\261H\330\246o\6\325\13\305\204\26\23\311\324\246o\6\326\12\305\204\66\351@\233\276\31\327\13U\224\26"
"\261HZJZ\0\330\14\225\204\26\66\245Id$\223\31\331\13\305\204\66\321\70 \246\337\14\332\12\305"
"\204v\351\200\230~\63\333\13\305\204V\261H\70\246\337\14\334\12\305\204\66\351\300\230~\63\335\15\305\204"
"v\351\200\230\66S\60\23\0\336\13\225\204\26\301\240M\355\30\4\337\12\225\204\26\66-\64-\3\340\12"
"\225\204\66\321\70\264x\63\341\12\225\204v\351\320\342\315\0\342\13\225\204V\261H\34X\274\31\343\13\225"
"\204\26\23\311\34V\274\31\344\12\225\204\66\351H\305\233\1\345\13\225\204\66\243Hh\134\274\31\346\14Y"
"\204\32\7a\354@\13\36\4\347\14\225d\26\306\304Jp\30\232\0\350\12\225\204\66\321\70\324v,\351"
"\12\225\204v\351P\333\261\0\352\13\225\204V\261H\34h;\26\353\12\225\204\66\351H\266c\1\354\11"
"\222\203\22\241h$\7\355\11\222\204\63\322H.\0\356\12\223\203\63\331\1\241\134\0\357\13\223\203\23\221"
"\70,\224\13\0\360\20\227\204\30\345\320\61T\212\205b\241X\250\4\361\13\225\204\26\23\311\34f\323\26"
"\362\12\225\204\66\321\70\324\246f\363\12\225\204v\351P\233\232\1\364\13\225\204V\261H\34hS\63\365"
"\13\225\204\26\23\311\34fS\63\366\12\225\204\66\351H\66\65\3\367\12U\224Vq@\35\20\2\370\11"
"U\204\26\246Idd\371\13\225\204\66\321\70\64\246\315\0\372\12\225\204v\351\320\230\66\3\373\13\225\204"
"V\261H\34\30\323f\374\12\225\204\66\351H\61m\6\375\14\325dv\351\320\230\66c\242\1\376\14\325"
"d\26\301\214\66\265cF\0\377\14\325d\66\351H\61m\306D\3\0\0\0\4\377\377\0";
|
62d3d6dbc62fc1d1e988624aa061ee57916edeea
|
9634f841b0368fc74ba259eadb51fa8af910258b
|
/tst.c
|
df934f3cc3eb741a7047d8829f279e204a7bb44d
|
[] |
no_license
|
achalakavinda/C-Socket-Exam-Client-Server
|
40d801acde5d1404dcd164fb8ad79bb7b8f6c0c6
|
e906b54563e048d920deab379f1775b5b787d151
|
refs/heads/master
| 2021-03-19T14:30:46.911008 | 2017-11-17T18:26:49 | 2017-11-17T18:26:49 | 111,128,373 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 83 |
c
|
tst.c
|
#include <stdio.h>
#include "config.h"
int main (){
printf("hellow");
return 0;
}
|
6faac420ac7a3b1276fe39f61b90954c774f8dd5
|
1ecc730bf2da399ff39ebd02fed9e825b0c95211
|
/Lab/lab_03/lab_03_02_00/main.c
|
c0667b2eeb71a5f5c54d2a1f4c798a2e5e9378b2
|
[] |
no_license
|
vuquang142k/Program_C
|
0959fb94697187047af5b9a99cab2d997c6fd37f
|
d24d99ae89c1b8366273fd6bc4226b40744341d5
|
refs/heads/main
| 2023-06-12T15:46:48.934541 | 2021-07-06T20:42:01 | 2021-07-06T20:42:01 | 344,933,890 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,113 |
c
|
main.c
|
#include<stdio.h>
#include<stdlib.h>
#define N 10
#define M 10
#define NMAX 512
int input_matrix(int a[NMAX][NMAX], size_t r, size_t c)
{
for (size_t i = 0; i < r; ++i)
for (size_t j = 0; j < c; ++j)
if (scanf("%d", &a[i][j]) != 1)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
int digit1(size_t a)
{
while (a >= 10)
{
a = a / 10;
}
return a;
}
int digit2(size_t a)
{
return a % 10;
}
void insert_array(int a[NMAX][NMAX], size_t *n, size_t m, size_t k)
{
for (size_t i = *n; i > k; i--)
{
for (size_t j = 0; j < m; j++)
a[i][j] = a[i - 1][j];
}
for (size_t j = 0; j < m; j++)
{
a[k][j] = 100;
}
*n += 1;
}
void make_list(int a[NMAX][NMAX], size_t *n, size_t m, int k)
{
int p = *n;
for(int i = p - 1; i > -1; i--)
{
int count1 = 0;
int count2 = 0;
for (size_t j = 0; j < m; j++)
{
if (digit1(a[i][j]) == k)
count1 += 1;
if (digit2(a[i][j]) == k)
count2 += 1;
}
if (count1 == count2 && count1 != 0)
{
insert_array(a, n, m, i + 1);
}
}
}
void write_matrix(int a[NMAX][NMAX], int n, int m)
{
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
printf("%d ", a[i][j]);
printf("\n");
}
printf("\n");
}
int main(void)
{
size_t n, m;
int a[NMAX][NMAX];
int k;
if (scanf("%zu", &n) != 1 || n < 1 || n > N)
{
printf("Input error");
return -1;
}
if (scanf("%zu", &m) != 1 || m < 1 || m > N)
{
printf("Input error");
return -1;
}
if (input_matrix(a, n, m))
{
printf("Input error");
return -1;
}
if (scanf("%d", &k) != 1 || k < 0 || k > 9)
{
printf("Input error");
return -1;
}
make_list(a, &n, m, k);
write_matrix(a, n, m);
return EXIT_SUCCESS;
}
|
6e6e6f11f72a7d2d4ba9b7c8010f94bf4603f861
|
7d36e51f2263f1f3c5537f1cc112063c4baa98e5
|
/FPGA_project/UartDriver/isim/TB_UAR_Fifo_isim_beh.exe.sim/work/a_3314755514_3212880686.c
|
976e74d1fdbbb9a017dd95288706373e34cee2dc
|
[] |
no_license
|
sandrosalvato94/ElectronicsForEmbeddedSystems
|
758b0091e1700b4399111a2fd9e50da2868fd556
|
a8c6ac8adbedd38948b5d2bfc60e876f8d6a3d84
|
refs/heads/master
| 2022-03-05T14:44:02.780217 | 2019-11-19T07:51:06 | 2019-11-19T07:51:06 | 211,833,438 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 33,565 |
c
|
a_3314755514_3212880686.c
|
/**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ */
/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */
/* / / All Right Reserved. */
/* /---/ /\ */
/* \ \ / \ */
/* \___\/\___\ */
/***********************************************************************/
/* This file is designed for use with ISim build 0x8ef4fb42 */
#define XSI_HIDE_SYMBOL_SPEC true
#include "xsi.h"
#include <memory.h>
#ifdef __GNUC__
#include <stdlib.h>
#else
#include <malloc.h>
#define alloca _alloca
#endif
static const char *ng0 = "C:/Users/Alessandro/Desktop/EFES_Fpga/UartDriver/UART_Fifo.vhd";
extern char *IEEE_P_2592010699;
unsigned char ieee_p_2592010699_sub_1605435078_503743352(char *, unsigned char , unsigned char );
unsigned char ieee_p_2592010699_sub_1690584930_503743352(char *, unsigned char );
unsigned char ieee_p_2592010699_sub_2545490612_503743352(char *, unsigned char , unsigned char );
static void work_a_3314755514_3212880686_p_0(char *t0)
{
char *t1;
char *t2;
unsigned char t3;
char *t4;
unsigned char t5;
unsigned char t6;
unsigned char t7;
char *t8;
unsigned char t9;
unsigned char t10;
char *t11;
char *t12;
char *t13;
char *t14;
char *t15;
LAB0: xsi_set_current_line(81, ng0);
LAB3: t1 = (t0 + 5396U);
t2 = *((char **)t1);
t3 = *((unsigned char *)t2);
t1 = (t0 + 5304U);
t4 = *((char **)t1);
t5 = *((unsigned char *)t4);
t6 = ieee_p_2592010699_sub_1690584930_503743352(IEEE_P_2592010699, t5);
t7 = ieee_p_2592010699_sub_1605435078_503743352(IEEE_P_2592010699, t3, t6);
t1 = (t0 + 5580U);
t8 = *((char **)t1);
t9 = *((unsigned char *)t8);
t10 = ieee_p_2592010699_sub_1605435078_503743352(IEEE_P_2592010699, t7, t9);
t1 = (t0 + 10480);
t11 = (t1 + 32U);
t12 = *((char **)t11);
t13 = (t12 + 40U);
t14 = *((char **)t13);
*((unsigned char *)t14) = t10;
xsi_driver_first_trans_delta(t1, 1U, 1, 0LL);
LAB2: t15 = (t0 + 10332);
*((int *)t15) = 1;
LAB1: return;
LAB4: goto LAB2;
}
static void work_a_3314755514_3212880686_p_1(char *t0)
{
char *t1;
char *t2;
unsigned char t3;
unsigned char t4;
char *t5;
unsigned char t6;
unsigned char t7;
char *t8;
char *t9;
char *t10;
char *t11;
char *t12;
LAB0: xsi_set_current_line(82, ng0);
LAB3: t1 = (t0 + 5396U);
t2 = *((char **)t1);
t3 = *((unsigned char *)t2);
t4 = ieee_p_2592010699_sub_1690584930_503743352(IEEE_P_2592010699, t3);
t1 = (t0 + 5304U);
t5 = *((char **)t1);
t6 = *((unsigned char *)t5);
t7 = ieee_p_2592010699_sub_2545490612_503743352(IEEE_P_2592010699, t4, t6);
t1 = (t0 + 10516);
t8 = (t1 + 32U);
t9 = *((char **)t8);
t10 = (t9 + 40U);
t11 = *((char **)t10);
*((unsigned char *)t11) = t7;
xsi_driver_first_trans_delta(t1, 0U, 1, 0LL);
LAB2: t12 = (t0 + 10340);
*((int *)t12) = 1;
LAB1: return;
LAB4: goto LAB2;
}
static void work_a_3314755514_3212880686_p_2(char *t0)
{
char t11[16];
char t23[16];
char t26[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t27;
unsigned int t28;
unsigned int t29;
unsigned int t30;
unsigned char t31;
char *t32;
char *t33;
char *t34;
char *t35;
char *t36;
char *t37;
LAB0: xsi_set_current_line(97, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7028U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7028U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t27 = ((IEEE_P_2592010699) + 2332);
t25 = xsi_base_array_concat(t25, t26, t27, (char)97, t22, t23, (char)99, (unsigned char)2, (char)101);
t28 = (1U + 1U);
t29 = (t28 + 1U);
t30 = (t29 + 1U);
t31 = (4U != t30);
if (t31 == 1)
goto LAB5;
LAB6: t32 = (t0 + 10552);
t33 = (t32 + 32U);
t34 = *((char **)t33);
t35 = (t34 + 40U);
t36 = *((char **)t35);
memcpy(t36, t25, 4U);
xsi_driver_first_trans_delta(t32, 0U, 4U, 0LL);
LAB2: t37 = (t0 + 10348);
*((int *)t37) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t30, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_3(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7096U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7096U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7096U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10588);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 4U, 4U, 0LL);
LAB2: t47 = (t0 + 10356);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_4(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7164U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7164U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7164U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10624);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 8U, 4U, 0LL);
LAB2: t47 = (t0 + 10364);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_5(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7232U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7232U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7232U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10660);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 12U, 4U, 0LL);
LAB2: t47 = (t0 + 10372);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_6(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7300U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7300U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7300U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10696);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 16U, 4U, 0LL);
LAB2: t47 = (t0 + 10380);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_7(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7368U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7368U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7368U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10732);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 20U, 4U, 0LL);
LAB2: t47 = (t0 + 10388);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_8(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7436U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7436U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7436U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10768);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 24U, 4U, 0LL);
LAB2: t47 = (t0 + 10396);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_9(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7504U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7504U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7504U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10804);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 28U, 4U, 0LL);
LAB2: t47 = (t0 + 10404);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_10(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7572U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7572U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7572U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10840);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 32U, 4U, 0LL);
LAB2: t47 = (t0 + 10412);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_11(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7640U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7640U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7640U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10876);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 36U, 4U, 0LL);
LAB2: t47 = (t0 + 10420);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_12(char *t0)
{
char t11[16];
char t23[16];
char t36[16];
char *t1;
char *t2;
char *t3;
int t4;
int t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned char t9;
char *t10;
char *t12;
char *t13;
char *t14;
char *t15;
int t16;
int t17;
unsigned int t18;
unsigned int t19;
unsigned int t20;
unsigned char t21;
char *t22;
char *t24;
char *t25;
char *t26;
char *t27;
int t28;
int t29;
int t30;
unsigned int t31;
unsigned int t32;
unsigned int t33;
unsigned char t34;
char *t35;
char *t37;
unsigned int t38;
unsigned int t39;
unsigned int t40;
unsigned char t41;
char *t42;
char *t43;
char *t44;
char *t45;
char *t46;
char *t47;
LAB0: xsi_set_current_line(107, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t1 = (t0 + 7708U);
t3 = *((char **)t1);
t4 = *((int *)t3);
t5 = (t4 - 10);
t6 = (t5 * -1);
t7 = (1U * t6);
t8 = (0 + t7);
t1 = (t2 + t8);
t9 = *((unsigned char *)t1);
t12 = ((IEEE_P_2592010699) + 2332);
t10 = xsi_base_array_concat(t10, t11, t12, (char)99, (unsigned char)2, (char)99, t9, (char)101);
t13 = (t0 + 5212U);
t14 = *((char **)t13);
t13 = (t0 + 7708U);
t15 = *((char **)t13);
t16 = *((int *)t15);
t17 = (t16 - 10);
t18 = (t17 * -1);
t19 = (1U * t18);
t20 = (0 + t19);
t13 = (t14 + t20);
t21 = *((unsigned char *)t13);
t24 = ((IEEE_P_2592010699) + 2332);
t22 = xsi_base_array_concat(t22, t23, t24, (char)97, t10, t11, (char)99, t21, (char)101);
t25 = (t0 + 5948U);
t26 = *((char **)t25);
t25 = (t0 + 7708U);
t27 = *((char **)t25);
t28 = *((int *)t27);
t29 = (t28 - 1);
t30 = (t29 - 10);
t31 = (t30 * -1);
t32 = (1U * t31);
t33 = (0 + t32);
t25 = (t26 + t33);
t34 = *((unsigned char *)t25);
t37 = ((IEEE_P_2592010699) + 2332);
t35 = xsi_base_array_concat(t35, t36, t37, (char)97, t22, t23, (char)99, t34, (char)101);
t38 = (1U + 1U);
t39 = (t38 + 1U);
t40 = (t39 + 1U);
t41 = (4U != t40);
if (t41 == 1)
goto LAB5;
LAB6: t42 = (t0 + 10912);
t43 = (t42 + 32U);
t44 = *((char **)t43);
t45 = (t44 + 40U);
t46 = *((char **)t45);
memcpy(t46, t35, 4U);
xsi_driver_first_trans_delta(t42, 40U, 4U, 0LL);
LAB2: t47 = (t0 + 10428);
*((int *)t47) = 1;
LAB1: return;
LAB4: goto LAB2;
LAB5: xsi_size_not_matching(4U, t40, 0);
goto LAB6;
}
static void work_a_3314755514_3212880686_p_13(char *t0)
{
char *t1;
char *t2;
int t3;
int t4;
unsigned int t5;
unsigned int t6;
unsigned int t7;
unsigned char t8;
char *t9;
char *t10;
char *t11;
char *t12;
char *t13;
char *t14;
LAB0: xsi_set_current_line(117, ng0);
LAB3: t1 = (t0 + 5948U);
t2 = *((char **)t1);
t3 = (11 - 1);
t4 = (t3 - 10);
t5 = (t4 * -1);
t6 = (1U * t5);
t7 = (0 + t6);
t1 = (t2 + t7);
t8 = *((unsigned char *)t1);
t9 = (t0 + 10948);
t10 = (t9 + 32U);
t11 = *((char **)t10);
t12 = (t11 + 40U);
t13 = *((char **)t12);
*((unsigned char *)t13) = t8;
xsi_driver_first_trans_fast_port(t9);
LAB2: t14 = (t0 + 10436);
*((int *)t14) = 1;
LAB1: return;
LAB4: goto LAB2;
}
extern void work_a_3314755514_3212880686_init()
{
static char *pe[] = {(void *)work_a_3314755514_3212880686_p_0,(void *)work_a_3314755514_3212880686_p_1,(void *)work_a_3314755514_3212880686_p_2,(void *)work_a_3314755514_3212880686_p_3,(void *)work_a_3314755514_3212880686_p_4,(void *)work_a_3314755514_3212880686_p_5,(void *)work_a_3314755514_3212880686_p_6,(void *)work_a_3314755514_3212880686_p_7,(void *)work_a_3314755514_3212880686_p_8,(void *)work_a_3314755514_3212880686_p_9,(void *)work_a_3314755514_3212880686_p_10,(void *)work_a_3314755514_3212880686_p_11,(void *)work_a_3314755514_3212880686_p_12,(void *)work_a_3314755514_3212880686_p_13};
xsi_register_didat("work_a_3314755514_3212880686", "isim/TB_UAR_Fifo_isim_beh.exe.sim/work/a_3314755514_3212880686.didat");
xsi_register_executes(pe);
}
|
a38e8f731389a76ae0c4f4687a815b5a6af3ff26
|
7b8ff457116a7fb4c12fd54db562e2d0395d1daa
|
/shumi/zemi/baysian/baysian_decision_rule_b2.c
|
bb11c9b30eff74d5dd52df8a86d99eb64e64f5f6
|
[] |
no_license
|
jecht1014/book
|
852a7dd0cac0fc0a5a83341cd5d90c5286e7d33d
|
77d775166979739a68f6771434b50d8213abe95f
|
refs/heads/master
| 2023-03-05T12:26:08.337948 | 2023-02-25T12:56:27 | 2023-02-25T12:56:27 | 205,245,904 | 0 | 1 | null | null | null | null |
SHIFT_JIS
|
C
| false | false | 7,570 |
c
|
baysian_decision_rule_b2.c
|
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
void add_matrix(double **mat1, double **mat2, int row, int column, double **result);
void sub_matrix(double **mat1, double **mat2, int row, int column, double **result);
void mult_matrix(double **mat1, int row1, int column1, double **mat2, int row2, int column2, double **result);
void mult_matrix2(double **mat, int row, int column, double num, double **result);
void transpose_matrix(double **mat, int row, int column, double **result);
void cofactor_matrix(double **mat, int row, double **result);
void inverse_matrix(double **mat, int row, double **result);
double det(double **mat, int row);
void cholesky_decomposition(double **sigma, int row, double **under_result);
int simulation(double **sigma, int row, double **mu1, double **mu2, double c1, double c2, double w0, double **w);
int gen_class(double c1, double c2);
double ran0();
double box_muller();
void seekx(double **sigma, int row, double **mu, double **x);
int main(){
//input
double c1, c2;
int n;
puts("c1 c2");
scanf("%lf %lf", &c1, &c2);
int r;
puts("r");
scanf("%d", &r);
double mu1[r][1], mu2[r][1], sigma[r][r];
int i, k;
for(i = 0; i < r; i++)
printf("mu1[%d][0] ", i);
printf("\n");
for(i = 0; i < r; i++)
scanf("%lf", &mu1[i][0]);
for(i = 0; i < r; i++)
printf("mu2[%d][0] ", i);
printf("\n");
for(i = 0; i < r; i++)
scanf("%lf", &mu2[i][0]);
for(i = 0; i < r; i++){
for(k = 0; k < r; k++)
printf("sigma[%d][%d] ", i, k);
printf("\n");
}
for(i = 0; i < r; i++)
for(k = 0; k < r; k++)
scanf("%lf", &sigma[i][k]);
printf("n\n");
scanf("%d", &n);
//計算開始
double theta = log(c1/c2);
double *mu1c[r];
double *mu2c[r];
double *resultc[r];
double result1[r][1];
for(i = 0; i < r; i++){
mu1c[i] = mu1[i];
mu2c[i] = mu2[i];
resultc[i] = result1[i];
}
add_matrix(mu1c, mu2c, r, 1, resultc);
double mu1t[1][r];
double *mu1tc[1];
mu1tc[0] = mu1t[0];
transpose_matrix(resultc, r, 1, mu1tc);
mult_matrix2(mu1tc, 1, r, 1/2.0, mu1tc);
double result2[r][1];
for(i = 0; i < r; i++)
resultc[i] = result2[i];
sub_matrix(mu1c, mu2c, r, 1, resultc);
double *sigmac[r];
double inverse_sigma[r][r];
double *inverse_sigmac[r];
for(i = 0; i < r; i++){
sigmac[i] = sigma[i];
inverse_sigmac[i] = inverse_sigma[i];
}
inverse_matrix(sigmac, r, inverse_sigmac);
double w0[1][1];
double *w0c[1];
w0c[0] = w0[0];
mult_matrix(mu1tc, 1, r, inverse_sigmac, r, r, mu1tc);
mult_matrix(mu1tc, 1, r, resultc, r, 1, w0c);
w0[0][0] += theta;
double wt[r][1];
double *wtc[r];
for(i = 0; i < r; i++)
wtc[i] = wt[i];
mult_matrix(inverse_sigmac, r, r, resultc, r, 1, wtc);
printf("x2 = %fx1 + %f\n", -wt[0][0]/wt[0][1], -w0[0][0]/wt[0][1]);
//シュミレーション開始
int nr = 0;
srand(time(NULL));
for(i = 0; i < n; i++){
nr += simulation(sigmac, r, mu1c, mu2c, c1, c2, w0[0][0], wtc);
}
printf("識別率%f\n", (double)nr/n);
return 0;
}
double ran0(){
return (double)rand()/((double)RAND_MAX);
}
double box_muller(){
double u0 = ran0();
double u1 = ran0();
double z0 = pow(-2 * log(u0), 0.5) * cos(2 * M_PI * u1);
double z1 = pow(-2 * log(u0), 0.5) * sin(2 * M_PI * u1);
return z0;
}
int gen_class(double c1, double c2){
double ran = ran0();
if(ran <= c1)
return 0;
else
return 1;
}
void seekx(double **sigma, int row, double **mu, double **x){
int i, j;
double z[row];
double cholesky_sigma[row][row];
double *cholesky_sigmac[row];
for(i = 0; i < row; i++){
z[i] = box_muller();
cholesky_sigmac[i] = cholesky_sigma[i];
}
cholesky_decomposition(sigma, row, cholesky_sigmac);
for(i = 0; i < row; i++){
x[0][i] = mu[i][0];
for(j = 0; j <= i; j++){
x[0][i] += cholesky_sigma[i][j] * z[j];
}
}
}
int simulation(double **sigma, int row, double **mu1, double **mu2, double c1, double c2, double w0, double **wt){
int c = gen_class(c1, c2);
double x[1][row];
double *xc[1];
xc[0] = x[0];
if(c == 0){
seekx(sigma, row, mu1, xc);
}
else{
seekx(sigma, row, mu2, xc);
}
double gx[1][1];
double *gxc[1];
gxc[0] = gx[0];
mult_matrix(xc, 1, row, wt, row, 1, gxc);
gx[0][0] += w0;
//printf("%d\t%d\t%f\t%f\n", c, ((c == 0 && gx[0][0] < 0) || (c == 1 && gx[0][0] < 0)), x[0][0], x[0][1]);
return ((c == 0 && gx[0][0] >= 0) || (c == 1 && gx[0][0] < 0));
}
void add_matrix(double **mat1, double **mat2, int row, int column, double **result){
int i, k;
for(i = 0; i < row; i++)
for(k = 0; k< column; k++)
result[i][k] = mat1[i][k] + mat2[i][k];
}
void sub_matrix(double **mat1, double **mat2, int row, int column, double **result){
int i, k;
for(i = 0; i < row; i++)
for(k = 0; k< column; k++)
result[i][k] = mat1[i][k] - mat2[i][k];
}
void mult_matrix(double **mat1, int row1, int column1, double **mat2, int row2, int column2, double **result){
int i, k;
for(i = 0; i < row1; i++){
for(k = 0; k < column2; k++){
result[i][k] = 0;
int j;
for(j = 0; j < column1; j++){
result[i][k] += mat1[i][j] * mat2[j][k];
}
}
}
}
void mult_matrix2(double **mat, int row, int column, double num, double **result){
int i, k;
for(i = 0; i < row; i++)
for(k = 0; k< column; k++)
result[i][k] = num*mat[i][k];
}
//転置行列の計算
void transpose_matrix(double **mat, int row, int column, double **result){
int i, k;
for(i = 0; i < column; i++)
for(k = 0; k < row; k++)
result[i][k] = mat[k][i];
}
//余因子行列の計算
void cofactor_matrix(double **mat, int row, double **result){
int i, k;
for(i = 0; i < row; i++){
for(k = 0; k < row; k++){
double x[row-1][row-1];
int j, l;
for(j = 0; j < row; j++){
for(l = 0; l < row; l++){
int a = j;
int b = l;
if(j == i || l == k)
continue;
if(i < j)
a--;
if(k < l)
b--;
x[a][b] = mat[j][l];
}
}
double *p[row-1];
for(j = 0; j < row-1; j++)
p[j] = x[j];
result[i][k] = pow(-1, i+1+k+1) * det(p, row-1);
}
}
}
//逆行列の計算
void inverse_matrix(double **mat, int row, double **result){
double det_mat = det(mat, row);
cofactor_matrix(mat, row, result);
mult_matrix2(result, row, row, 1/det_mat, result);
}
//行列式の計算
double det(double **mat, int row){
double result = 0;
int i, k, j;
if(row == 1)
return mat[0][0];
else if(row == 2){
printf("c");
return mat[0][0]*mat[1][1]-mat[0][1]*mat[1][0];
}
else{
double mat2[row-1][row-1];
double *mat2c[row-1];
for(i = 0; i < row; i++){
for(k = 0; k < row; k++){
for(j = 1; j < row; j++){
if(i == k)
continue;
printf("a");
if(i > k)
mat2[k][j-1] = mat[k][j];
else
mat2[k-1][j-1] = mat[k][j];
printf("a");
}
}
for(k = 0; k < row-1; k++)
mat2c[k] = mat2[k];
printf("b");
result += pow(-1, i) * mat[i][0] * det(mat2c, row-1);
printf("b");
}
return result;
}
}
// コレスキー分解の計算
void cholesky_decomposition(double **sigma, int row, double **under_result){
int i, j;
for(i = 0; i < row; i++){
for(j = 0; j < row; j++){
int k;
if(i == j){
under_result[j][i] = sigma[j][i];
for(k = 0; k <= j-1; k++)
under_result[j][i] -= pow(under_result[j][k], 2);
under_result[j][i] = sqrt(under_result[j][i]);
}
else if(i < j){
under_result[j][i] = sigma[j][i];
for(k = 0; k <= i-1; k++)
under_result[j][i] -= under_result[i][k]*under_result[j][k];
under_result[j][i] /= under_result[i][i];
}
else{
under_result[j][i] = 0;
}
}
}
}
|
b6c833da51b8c74c7e8fda516720449da8ea61e4
|
27788cd1698d7dc4bccfd84f327c0bb0fd948b6d
|
/C1/p1-18.c
|
f4bf28e344909b5c91f81e6b10a8944a1dc202fd
|
[] |
no_license
|
f6m/RnK-Libro
|
1c51e6c19bfeb89e9c02ad00ce4284cc147430d6
|
beb62972066049d16fe830106d93e7a6bdeceb3b
|
refs/heads/master
| 2022-07-30T03:00:34.094613 | 2022-07-10T19:52:40 | 2022-07-10T19:52:40 | 215,376,282 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,298 |
c
|
p1-18.c
|
/* El lenguaje de programacion C, R&K, (Prentice Hall, 2da. edicion, 1991) */
/* # 1.18 */
/* Programa que borra los tabuladores y blancos al final de cada linea de entrada y tambien las lineas en blanco */
#include <stdio.h>
#include <stdlib.h>
/* Falta que al correrlo bajo un archivo salga correctamente */
/* Estas funciones afectan los arreglos line, to, from*/
int getlinelength(char line[]);
void copy(char to[], char from[]);
// Imprime la line de entrada mas larga aceptando cualquier logintud de cadenas
main()
{
int len, max;
char line[' '];
char without[' '];
/* Quita los blancos y los tabuladores, luego tambien las lineas en blanco de las lineas de entrada */
while((len = getlinelength(line)) >= 0){
for(max=len-1;line[max]==' ' || line[max]=='\t';max--){}
line[max+1]='\0';
copy(without,line);
if (len > 0) //Hubo una linea
printf("%s\n",without);
}
exit(1);
}
// getline: Regresa la longitud de line
int getlinelength(char s[])
{
int c,i=0;
while((c=getchar()) != EOF && c != '\n'){
s[i++] = c;
if (c == '\n'){
s[i++] = c;
}
}
s[i]= '\0';
return i;
}
// copy: copia 'from' en 'to'; supone que to es suficientemente grande
void copy(char to[], char from[])
{
int i;
i=0;
while((to[i] = from[i]) != '\0')
++i;
}
|
d3d7a6e06311fb05e0e7dea65283704f1d674142
|
9a0cac40105f1761faac88ff3d6ce11c3302881e
|
/자료구조수업_시험준비_for_friends_C/자료구조알고리즘실습시험준비/시험2관련/문자열 횟수.c
|
2dfe204ef2a479a1c8e9367c48cada0c7acf15e0
|
[
"BSD-3-Clause"
] |
permissive
|
ko9ma7/My-semi-project
|
87ec670d50a4e03683bb31d81aaeeb72080e7562
|
13530d7715dcc378ee03b666f6579891433f550e
|
refs/heads/master
| 2022-02-22T09:12:41.535383 | 2019-09-14T12:20:02 | 2019-09-14T12:20:02 | null | 0 | 0 | null | null | null | null |
UHC
|
C
| false | false | 594 |
c
|
문자열 횟수.c
|
#include <stdio.h>
#include <string.h>
void main()
{
char *input = "korea polytechnic university love me";
int num[26] = { 0 };
int i = 0;
int max = 0;
int max_idx = 0;
int len = strlen(input);
printf("문자열 : %s \n", input);
while (len--)
{
char temp = *(input + i++);
if(temp >= 'a' && temp < 'z')
num[temp - 'a']++;
else if(temp >= 'A' && temp <= 'Z')
num[temp - 'A']++;
}
putchar('\n');
len = 26;
while (len--)
{
if (max < num[len])
{
max_idx = len;
max = num[len++];
}
}
printf("%d 번 %c가 제일 많이 나옴.", max, max_idx + 'a');
}
|
e16e14e14a4f6d3d40cda52d1612737b623f65e8
|
ab7d8ff6dd3c27b96c5cecb961e18343591b14eb
|
/Healthy-Toilet/components/core2forAWS/atecc608/atecc608.c
|
1b9b400d4b11ddc665a43fdbd0df25d4ba0778dd
|
[
"Apache-2.0"
] |
permissive
|
taifur20/IoT-Healthy-Toilet-Project
|
d640916ad206b4dd4eb21066b95e7824f5f782ff
|
a4ff6c9d3951facae7d153b1c8d1591e221cce85
|
refs/heads/main
| 2023-08-10T18:27:07.993467 | 2021-09-19T21:19:30 | 2021-09-19T21:19:30 | 408,239,331 | 2 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 3,324 |
c
|
atecc608.c
|
#include <stdbool.h>
#include "mbedtls/config.h"
#include "cryptoauthlib.h"
#include "mbedtls/atca_mbedtls_wrap.h"
#include "esp_log.h"
#include "i2c_device.h"
#include "atecc608.h"
/* mbedTLS includes */
#include "mbedtls/platform.h"
#include "mbedtls/debug.h"
#include "mbedtls/ssl.h"
#include "mbedtls/entropy.h"
#include "mbedtls/ctr_drbg.h"
#include "mbedtls/pk.h"
static const char *TAG = "atecc608";
static mbedtls_entropy_context entropy;
static mbedtls_ctr_drbg_context ctr_drbg;
static int configure_mbedtls_rng(void) {
int ret;
mbedtls_ctr_drbg_init(&ctr_drbg);
ESP_LOGI(TAG, "Seeding the random number generator...");
mbedtls_entropy_init(&entropy);
ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
(const unsigned char *) TAG, strlen(TAG));
if (ret != 0) {
ESP_LOGI(TAG, "failed ! mbedtls_ctr_drbg_seed returned %d", ret);
} else {
ESP_LOGI(TAG, "ok");
}
return ret;
}
static void close_mbedtls_rng(void) {
mbedtls_ctr_drbg_free(&ctr_drbg);
mbedtls_entropy_free(&entropy);
}
// static const uint8_t public_key_x509_header[] = {
// 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x02, 0x01, 0x06, 0x08, 0x2A,
// 0x86, 0x48, 0xCE, 0x3D, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04
// };
static void handleErr(){
fflush(stdout);
close_mbedtls_rng();
}
ATCA_STATUS Atecc608_GetSerialString(char * sn) {
int ret;
uint8_t serial[ATCA_SERIAL_NUM_SIZE];
i2c_take_port(ATECC608_I2C_PORT, portMAX_DELAY);
ret = atcab_read_serial_number(serial);
i2c_free_port(ATECC608_I2C_PORT);
if (ret != ATCA_SUCCESS) {
ESP_LOGI(TAG, "*FAILED* atcab_read_serial_number returned %02x", ret);
handleErr();
}
for (size_t i = 0; i < ATCA_SERIAL_NUM_SIZE; i++)
sprintf(sn + i * 2, "%02x", serial[i]);
return ret;
}
ATCA_STATUS Atecc608_Init() {
int ret = ATCA_SUCCESS;
bool lock;
uint8_t buf[ATCA_ECC_CONFIG_SIZE];
// uint8_t pubkey[ATCA_PUB_KEY_SIZE];
ret = configure_mbedtls_rng();
ret = atcab_init(&cfg_ateccx08a_i2c_default);
ESP_LOGI(TAG, "Initializing ATECC608 secure element");
if (ret != ATCA_SUCCESS) {
ESP_LOGI(TAG, "*FAILED* atcab_init returned %02x", ret);
handleErr();
return ret;
}
else {
ESP_LOGI(TAG, "ok");
lock = 0;
ESP_LOGI(TAG, "Checking data zone lock status...");
ret = atcab_is_locked(LOCK_ZONE_DATA, &lock);
if (ret != ATCA_SUCCESS) {
ESP_LOGI(TAG, "*FAILED* atcab_is_locked returned %02x", ret);
handleErr();
}
else {
if (lock) {
ESP_LOGI(TAG, "ok: locked");
}
else {
ESP_LOGE(TAG, "*FAILED* ATECC608 is unlocked. Lock with esp_cryptoauth_utility and try again");
handleErr();
return ATCA_NOT_LOCKED;
}
ESP_LOGI(TAG, "Get the device info (type)...");
ret = atcab_info(buf);
if (ret != ATCA_SUCCESS) {
ESP_LOGI(TAG, "*FAILED* atcab_info returned %02x", ret);
handleErr();
}
ESP_LOGI(TAG, "ok: %02x %02x", buf[2], buf[3]);
}
}
return ret;
}
|
ddd63f98c749dd2a5d560e4ddb28a0ea644c4521
|
98778a7d0edbda3aef2f53889640d5da480f6d82
|
/rkafp.h
|
98cb7dfc55f8651dbcfaa22f16caffdf106ad289
|
[] |
no_license
|
wendal/rk2918_tools
|
8156adfbf5e38da584eceb744e1401f82d6b8840
|
b629c5eb87af4a62783f35f1af3a0ceda2674f16
|
refs/heads/master
| 2023-06-20T16:07:49.121932 | 2011-11-24T15:29:58 | 2011-11-24T15:29:58 | 2,844,158 | 1 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 891 |
h
|
rkafp.h
|
#ifndef _RKAFP_H
#define _RKAFP_H
struct update_part {
char name[32];
char filename[60];
unsigned int nand_size;
unsigned int pos;
unsigned int nand_addr;
unsigned int padded_size;
unsigned int size;
};
#define RKAFP_MAGIC "RKAF"
struct update_header {
char magic[4];
unsigned int length;
char model[0x22];
char id[0x1e];
char manufacturer[0x38];
unsigned int unknown1;
unsigned int version;
unsigned int num_parts;
struct update_part parts[16];
unsigned char reserved[0x74];
};
struct param_header {
char magic[4];
unsigned int length;
};
struct bootloader_header {
char magic[6];
unsigned int version;
unsigned int unknown1;
unsigned short build_year;
unsigned char build_month;
unsigned char build_day;
unsigned char build_hour;
unsigned char build_minute;
unsigned char build_second;
/* 104 (0x68) bytes */
unsigned int chip;
};
#endif // _RKAFP_H
|
10ee4d4e1b1aaed72ef5aa827abd774649668437
|
6f2f060bd05d44d786411a2a4cbfa62f84d506cf
|
/src/include/ipxe/linux/dhcparch.h
|
464aa5168f34564e1945221c1a3d5a549a932cfc
|
[
"GPL-1.0-or-later",
"LicenseRef-scancode-ubdl",
"GPL-2.0-only",
"Apache-2.0"
] |
permissive
|
threefoldtech/ipxe
|
4c318b9a9e3192a9c7e5e2f4a6bb86a8650b4ca0
|
1448163163f87494a61af5cb18c742785e37e7cb
|
refs/heads/master
| 2023-06-24T20:43:17.541159 | 2023-06-12T21:03:05 | 2023-06-12T21:03:05 | 429,457,268 | 0 | 0 |
Apache-2.0
| 2023-06-12T21:03:06 | 2021-11-18T14:17:52 |
C
|
UTF-8
|
C
| false | false | 415 |
h
|
dhcparch.h
|
#ifndef _IPXE_LINUX_DHCPARCH_H
#define _IPXE_LINUX_DHCPARCH_H
/** @file
*
* DHCP client architecture definitions
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
/*
* There are no specification-defined values for DHCP architecture for
* PXE clients running as Linux userspace applications. Pretend to be
* the equivalent EFI client.
*
*/
#include <ipxe/efi/dhcparch.h>
#endif /* _IPXE_LINUX_DHCPARCH_H */
|
8fe05b9b6bfbdb937bb90e3e7334f9f91755ce94
|
b7f6e3706e80fa1648e62483ff017755c8c76b23
|
/day11/ft_intcode.c
|
ce66eee9a3257d383e50b0968814548bdb95b1e7
|
[] |
no_license
|
Tishj/AoC
|
23d04d38bed4d023268830c7cc74653d3e19e32d
|
99c305fe5668f35308925e4f7c4352ad727b82ff
|
refs/heads/master
| 2022-03-28T07:01:56.886539 | 2019-12-30T07:44:14 | 2019-12-30T07:44:14 | 225,972,044 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,053 |
c
|
ft_intcode.c
|
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_intcode.c :+: :+: */
/* +:+ */
/* By: tbruinem <tbruinem@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2019/12/14 12:37:55 by tbruinem #+# #+# */
/* Updated: 2019/12/14 12:37:55 by tbruinem ######## odam.nl */
/* */
/* ************************************************************************** */
#include "day11.h"
long ft_intcode(long *array, long output, char setting)
{
static int i = 0;
static int start = 1;
static int rbase = 0;
int out;
out = 0;
while (array[i] != 99)
{
// printf("index: %d | %-6ld\n", i, array[i]);
out = ft_do_op(array, &i, &output, &start, setting, &rbase);
if (out == 1);
break ;
}
if (array[i] == 99)
return (-1);
return (output);
}
int ft_phase_iter(long *orig, char *sequence)
{
int phase;
long *dup;
int output;
output = 0;
phase = 0;
while (phase < 5)
{
dup = ft_arrdup(orig, 506);
output = ft_intcode(dup, output, *(sequence + phase));
phase++;
free(dup);
}
return (output);
}
int ft_input_iter(int input, long *orig)
{
int phase;
int max_signal;
char *sequence;
int output;
max_signal = 0;
input = ft_get_valid(input);
while (input > 0)
{
sequence = ft_itoa(input);
output = ft_phase_iter(orig, sequence);
if (output > max_signal)
max_signal = output;
printf("SEQUENCE: %s | signal generated: %d\n", sequence, output);
input = ft_get_valid(input - 1);
}
return (max_signal);
}
|
d09a423b30ba7302769439b6eb1db6d27ea265e3
|
69b83d72cc72ca6765c9c85994270f51506dd713
|
/src/forcetree_optimizebalance.c
|
b3f6f2fb8fc7cbc2f2adafe3bc0de2cbecb55236
|
[
"BSD-2-Clause"
] |
permissive
|
boywert/dissipative
|
d291ce57cde33b1351a72ccf620e9d2d54a90248
|
97863140b478c1319cec0fd2f29258d6d36b5927
|
refs/heads/master
| 2020-08-03T17:59:11.631263 | 2019-10-11T11:04:56 | 2019-10-11T11:04:56 | 211,835,048 | 1 | 2 | null | null | null | null |
UTF-8
|
C
| false | false | 13,075 |
c
|
forcetree_optimizebalance.c
|
/*!
* \copyright This file is part of the AREPO code developed by Volker Springel.
* \copyright Copyright (C) 2013 by Volker Springel (volker.springel@h-its.org)
* \copyright and contributing authors.
*
* \file src/forcetree_optimizebalance.c
* \date MM/YYYY
* \author
* \brief
* \details
*
*
* \par Major modifications and contributions:
*
* - DD.MM.YYYY Description
*/
#include <mpi.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include "allvars.h"
#include "proto.h"
#include "domain.h"
#include "bsd_tree.h"
/* do some preparation work for use of red-black ordered binary tree based on BSD macros */
/* define structure of my tree nodes */
struct mydata
{
double pri;
int target;
RB_ENTRY(mydata) linkage; /* this creates the linkage pointers needed by the RB tree, using symbolic name 'linkage' */
};
/* prototype of comparison function of tree elements */
static int mydata_cmp(struct mydata *lhs, struct mydata *rhs);
/* the following macro declares 'struct mytree', which is the header element needed as handle for a tree */
RB_HEAD(mytree, mydata);
/* the following macros declare appropriate function prototypes and functions needed for this type of tree */
RB_PROTOTYPE_STATIC(mytree, mydata, linkage, mydata_cmp);
RB_GENERATE_STATIC(mytree, mydata, linkage, mydata_cmp);
static struct force_segments_data
{
int start, end, task;
double work, cost, count, normalized_load;
}
*force_domainAssign;
int force_sort_load(const void *a, const void *b)
{
if(((struct force_segments_data *) a)->normalized_load > (((struct force_segments_data *) b)->normalized_load))
return -1;
if(((struct force_segments_data *) a)->normalized_load < (((struct force_segments_data *) b)->normalized_load))
return +1;
return 0;
}
static double oldmax, oldsum;
double force_get_current_balance(double *impact)
{
#ifndef NO_MPI_IN_PLACE
MPI_Allreduce(MPI_IN_PLACE, TaskCost, NTask, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD);
#else
double *inTaskCost = mymalloc("inTaskCost", NTask * sizeof(double));;
memcpy(inTaskCost, TaskCost, NTask * sizeof(double));
MPI_Allreduce(inTaskCost, TaskCost, NTask, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD);
myfree(inTaskCost);
#endif
int i;
for(i = 0, oldmax = oldsum = 0; i < NTask; i++)
{
oldsum += TaskCost[i];
if(oldmax < TaskCost[i])
oldmax = TaskCost[i];
}
*impact = 1.0 + domain_grav_weight[All.HighestActiveTimeBin] * (oldmax - oldsum / NTask) / All.TotGravCost;
return oldmax / (oldsum / NTask);
}
void force_get_global_cost_for_leavenodes(int nexport)
{
int i, j, n, nimport, idx, task, ngrp;
struct node_data
{
double domainCost;
int domainCount;
int no;
}
*export_node_data, *import_node_data;
MPI_Alltoall(Send_count, 1, MPI_INT, Recv_count, 1, MPI_INT, MPI_COMM_WORLD);
for(j = 0, nimport = 0, Recv_offset[0] = 0, Send_offset[0] = 0; j < NTask; j++)
{
nimport += Recv_count[j];
if(j > 0)
{
Send_offset[j] = Send_offset[j - 1] + Send_count[j - 1];
Recv_offset[j] = Recv_offset[j - 1] + Recv_count[j - 1];
}
}
for(j = 0; j < NTask; j++)
Send_count[j] = 0;
export_node_data = mymalloc("export_node_data", nexport * sizeof(struct node_data));
import_node_data = mymalloc("import_node_data", nimport * sizeof(struct node_data));
for(i = 0; i < nexport; i++)
{
int task = ListNoData[i].task;
int ind = Send_offset[task] + Send_count[task]++;
export_node_data[ind].domainCost = ListNoData[i].domainCost;
export_node_data[ind].domainCount = ListNoData[i].domainCount;
export_node_data[ind].no = ListNoData[i].no;
}
for(ngrp = 1; ngrp < (1 << PTask); ngrp++)
{
int recvTask = ThisTask ^ ngrp;
if(recvTask < NTask)
if(Send_count[recvTask] > 0 || Recv_count[recvTask] > 0)
MPI_Sendrecv(&export_node_data[Send_offset[recvTask]], Send_count[recvTask] * sizeof(struct node_data), MPI_BYTE,
recvTask, TAG_DENS_B, &import_node_data[Recv_offset[recvTask]], Recv_count[recvTask] * sizeof(struct node_data),
MPI_BYTE, recvTask, TAG_DENS_B, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
for(i = 0; i < nimport; i++)
{
int no = import_node_data[i].no;
DomainCost[no] += import_node_data[i].domainCost;
DomainCount[no] += import_node_data[i].domainCount;
}
myfree(import_node_data);
myfree(export_node_data);
/* now share the cost data across all processors */
struct DomainNODE
{
double domainCost;
int domainCount;
}
*DomainMoment, *loc_DomainMoment;
DomainMoment = (struct DomainNODE *) mymalloc("DomainMoment", NTopleaves * sizeof(struct DomainNODE));
/* share the cost data accross CPUs */
int *recvcounts = (int *) mymalloc("recvcounts", sizeof(int) * NTask);
int *recvoffset = (int *) mymalloc("recvoffset", sizeof(int) * NTask);
int *bytecounts = (int *) mymalloc("bytecounts", sizeof(int) * NTask);
int *byteoffset = (int *) mymalloc("byteoffset", sizeof(int) * NTask);
for(task = 0; task < NTask; task++)
recvcounts[task] = 0;
for(n = 0; n < NTopleaves; n++)
recvcounts[DomainTask[n]]++;
for(task = 0; task < NTask; task++)
bytecounts[task] = recvcounts[task] * sizeof(struct DomainNODE);
for(task = 1, recvoffset[0] = 0, byteoffset[0] = 0; task < NTask; task++)
{
recvoffset[task] = recvoffset[task - 1] + recvcounts[task - 1];
byteoffset[task] = byteoffset[task - 1] + bytecounts[task - 1];
}
loc_DomainMoment = (struct DomainNODE *) mymalloc("loc_DomainMoment", recvcounts[ThisTask] * sizeof(struct DomainNODE));
for(n = 0, idx = 0; n < NTopleaves; n++)
{
if(DomainTask[n] == ThisTask)
{
loc_DomainMoment[idx].domainCost = DomainCost[n];
loc_DomainMoment[idx].domainCount = DomainCount[n];
idx++;
}
}
MPI_Allgatherv(loc_DomainMoment, bytecounts[ThisTask], MPI_BYTE, DomainMoment, bytecounts, byteoffset, MPI_BYTE, MPI_COMM_WORLD);
for(task = 0; task < NTask; task++)
recvcounts[task] = 0;
for(n = 0; n < NTopleaves; n++)
{
task = DomainTask[n];
if(task != ThisTask)
{
idx = recvoffset[task] + recvcounts[task]++;
DomainCost[n] = DomainMoment[idx].domainCost;
DomainCount[n] = DomainMoment[idx].domainCount;
}
}
myfree(loc_DomainMoment);
myfree(byteoffset);
myfree(bytecounts);
myfree(recvoffset);
myfree(recvcounts);
myfree(DomainMoment);
}
static int mydata_cmp(struct mydata *lhs, struct mydata *rhs)
{
if(lhs->pri < rhs->pri)
return -1;
else if(lhs->pri > rhs->pri)
return 1;
else if(lhs->target < rhs->target)
return -1;
else if(lhs->target > rhs->target)
return 1;
return 0;
}
void force_optimize_domain_mapping(void)
{
int i, j;
double fac_cost = 0.5 / oldsum;
double fac_count = 0.5 / All.TotNumPart;
int ncpu = NTask * All.MultipleDomains;
int ndomain = NTopleaves;
double workavg = 1.0 / ncpu;
double workhalfnode = 0.5 / NTopleaves;
double work_before = 0;
double workavg_before = 0;
int start = 0;
force_domainAssign = mymalloc("force_domainAssign", ncpu * sizeof(struct force_segments_data));
for(i = 0; i < ncpu; i++)
{
double work = 0, cost = 0, count = 0;
int end = start;
cost += fac_cost * DomainCost[end];
count += fac_count * DomainCount[end];
work += fac_cost * DomainCost[end] + fac_count * DomainCount[end];
while((work + work_before + (end + 1 < NTopleaves ? fac_cost * DomainCost[end + 1] + fac_count * DomainCount[end + 1] : 0) <
workavg + workavg_before + workhalfnode) || (i == ncpu - 1 && end < ndomain - 1))
{
if((ndomain - end) > (ncpu - i))
end++;
else
break;
cost += fac_cost * DomainCost[end];
count += fac_count * DomainCount[end];
work += fac_cost * DomainCost[end] + fac_count * DomainCount[end];
}
force_domainAssign[i].start = start;
force_domainAssign[i].end = end;
force_domainAssign[i].work = work;
force_domainAssign[i].cost = cost;
force_domainAssign[i].count = count;
force_domainAssign[i].normalized_load = cost + count; /* note: they are already multiplied by fac_cost/fac_count */
work_before += work;
workavg_before += workavg;
start = end + 1;
}
qsort(force_domainAssign, ncpu, sizeof(struct force_segments_data), force_sort_load);
/* create three priority trees, one for the cost load, one for the particle count, and one for the combined cost */
struct mytree queues[3]; /* 0=cost, 1=count, 2=combi */
struct mydata *ncost = mymalloc("ncost", NTask * sizeof(struct mydata));
struct mydata *ncount = mymalloc("ncount", NTask * sizeof(struct mydata));
struct mydata *ncombi = mymalloc("ncombi", NTask * sizeof(struct mydata));
RB_INIT(&queues[0]);
RB_INIT(&queues[1]);
RB_INIT(&queues[2]);
/* fill in all the tasks into the trees. The priority will be the current cost/count, the tag 'val' is used to label the task */
for(i = 0; i < NTask; i++)
{
ncost[i].pri = 0;
ncost[i].target = i;
RB_INSERT(mytree, &queues[0], &ncost[i]);
ncount[i].pri = 0;
ncount[i].target = i;
RB_INSERT(mytree, &queues[1], &ncount[i]);
ncombi[i].pri = 0;
ncombi[i].target = i;
RB_INSERT(mytree, &queues[2], &ncombi[i]);
}
double max_load = 0;
double max_cost = 0;
int n_lowest = MAX_FIRST_ELEMENTS_CONSIDERED;
if(n_lowest > NTask)
n_lowest = NTask;
int rep, *candidates = mymalloc("candidates", n_lowest * sizeof(int));
struct mydata *np;
for(i = 0; i < ncpu; i++)
{
/* pick the least work-loaded target from the queue, and the least particle-loaded, and then decide which choice
gives the smallest load overall */
double cost, load;
double bestwork = 1.0e30;
int q, target = -1;
for(q = 0; q < 3; q++)
{
/* look up the n_lowest smallest elements from the tree */
for(np = RB_MIN(mytree, &queues[q]), rep = 0; np != NULL && rep < n_lowest; np = RB_NEXT(mytree, &queues[q], np), rep++)
candidates[rep] = np->target;
for(rep = 0; rep < n_lowest; rep++)
{
int t = candidates[rep];
cost = ncost[t].pri + force_domainAssign[i].cost;
load = ncount[t].pri + force_domainAssign[i].count;
if(cost < max_cost)
cost = max_cost;
if(load < max_load)
load = max_load;
double w = cost + load;
if(w < bestwork)
{
bestwork = w;
target = t;
}
}
}
force_domainAssign[i].task = target;
cost = ncost[target].pri + force_domainAssign[i].cost;
load = ncount[target].pri + force_domainAssign[i].count;
RB_REMOVE(mytree, &queues[0], &ncost[target]);
ncost[target].pri = cost;
RB_INSERT(mytree, &queues[0], &ncost[target]);
RB_REMOVE(mytree, &queues[1], &ncount[target]);
ncount[target].pri = load;
RB_INSERT(mytree, &queues[1], &ncount[target]);
RB_REMOVE(mytree, &queues[2], &ncombi[target]);
ncombi[target].pri = cost + load;
RB_INSERT(mytree, &queues[2], &ncombi[target]);
if(max_cost < cost)
max_cost = cost;
if(max_load < load)
max_load = load;
}
myfree(candidates);
/* free tree nodes again */
myfree(ncombi);
myfree(ncount);
myfree(ncost);
for(i = 0; i < ncpu; i++)
for(j = force_domainAssign[i].start; j <= force_domainAssign[i].end; j++)
DomainNewTask[j] = force_domainAssign[i].task;
myfree(force_domainAssign);
for(i = 0; i < NTask; i++)
{
TaskCost[i] = 0;
TaskCount[i] = 0;
}
for(i = 0; i < NTopleaves; i++)
{
TaskCost[DomainNewTask[i]] += DomainCost[i];
TaskCount[DomainNewTask[i]] += DomainCount[i];
}
double max, sum, maxload, sumload;
for(i = 0, max = sum = 0, maxload = sumload = 0; i < NTask; i++)
{
sum += TaskCost[i];
if(max < TaskCost[i])
max = TaskCost[i];
sumload += TaskCount[i];
if(maxload < TaskCount[i])
maxload = TaskCount[i];
}
mpi_printf("FORCETREE: Active-TimeBin=%d [unoptimized work-balance=%g] new work-balance=%g, new load-balance=%g\n",
All.HighestActiveTimeBin, oldmax / (oldsum / NTask), max / (sum / NTask), maxload / (sumload / NTask));
if((max / (sum / NTask) > oldmax / (oldsum / NTask)) || (maxload > All.MaxPart))
{
mpi_printf("FORCETREE: The work-load is either worse than before or the memory-balance is not viable. We keep the old distribution.\n");
memcpy(DomainNewTask, DomainTask, NTopleaves * sizeof(int));
}
}
|
64d93ad9e43fc556352ab928d1aad919efcb7cd8
|
4d11bf7362c8b77492d22376d7da562edda87a41
|
/HARDWARE/KEY.C
|
99436daf35dd8f258dea71ab26b0b21f9c65381c
|
[] |
no_license
|
StupidF/callbox-DF
|
f37bdeb8109b44b004e4205bf354f0a75f2e47c9
|
d87633d393bdd3819397e8513d644c9548e23574
|
refs/heads/master
| 2020-09-30T07:19:48.037373 | 2019-12-10T23:53:35 | 2019-12-10T23:53:35 | 227,237,870 | 0 | 0 | null | null | null | null |
GB18030
|
C
| false | false | 4,807 |
c
|
KEY.C
|
/********************************************************************************
* 文件名 : button.c
* 描述 : Button_Board工程按钮部分库函数
* 库版本 : V2.1.0
* 作者 :张锟
* 修改时间:2013-8-24
*******************************************************************************/
/* 包含自定义头文件 */
#include "key.h"
#include "delay.h"
void DelayTime(u16 DelayTime)
{
while(DelayTime--);
}
/*函数定义*/
BUTTONSTATE ButtonState[17];//按钮状态
BUTTONSTATE OldButtonState[17];//按钮状态
BUTTONSTATE NewButtonState[17];//按钮状态
/*******************************************************************************
* 名称: Button_Init
* 功能: Button_Board按钮GPIO引脚初始化操作(4位) 拨码开关引脚初始化(4位)
* 形参: 无
* 返回: 无
* 说明: 无
******************************************************************************/
void Button_Init(void)
{
/*按钮配置*/
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOC,ENABLE); //使能 PA,PC 端口时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6|GPIO_Pin_7; //LED0-->PB.5 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //上拉输入
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4|GPIO_Pin_5; //LED0-->PB.5 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //上拉输入
GPIO_Init(GPIOC, &GPIO_InitStructure); //初始化 GPIOB.5
/*拨码开关引脚的配置*/
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3; //LED0-->PB.5 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //上拉输入
GPIO_Init(GPIOC, &GPIO_InitStructure); //初始化 GPIOB.5
}
/*******************************************************************************
* 名称: ScandCurrentStation 扫描当前站点
* 功能: 开机扫描当前站点
* 形参: 无
* 返回: 当前站点
* 说明: 无
******************************************************************************/
unsigned char ScandCurrentStation(void)
{
u8 tmp=0,tmp1=0,station=0;
while(station==0)
{
tmp=~(GPIO_ReadInputData(GPIOC))&0x0f;
delay_ms(10);
tmp1=~(GPIO_ReadInputData(GPIOC))&0x0f;
station=0;
if(tmp==tmp1)
{
// if((tmp&0x10)!=0)
// station|=0x10;
if((tmp&0x08)!=0)
station|=0x08;
if((tmp&0x04)!=0)
station|=0x04;
if((tmp&0x02)!=0)
station|=0x02;
if((tmp&0x01)!=0)
station|=0x01;
return station;
}
}
return 0;
}
/*******************************************************************************
* 名称: KeyScan
* 功能: 按键循环扫描函数
* 形参: 无
* 返回: 无
* 说明: 无
********************************************************************************/
void ButtonScan(void)
{
u8 i,m;
u8 KeyState1,KeyState2;
KeyState1=0;
if(GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_6)==0)
KeyState1|=0x01<<0;
if(GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_7)==0)
KeyState1|=0x01<<1;
if(GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_4)==0)
KeyState1|=0x01<<2;
if(GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_5)==0)
KeyState1|=0x01<<3;
// if(GPIO_ReadInputDataBit(Button_PIN_5)==0)
// KeyState1|=0x01<<4;
// if(GPIO_ReadInputDataBit(Button_PIN_6)==0)
// KeyState1|=0x01<<5;
// if(GPIO_ReadInputDataBit(Button_PIN_7)==0)
// KeyState1|=0x01<<6;
delay_ms(10);
KeyState2=0;
if(GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_6)==0)
KeyState2|=0x01<<0;
if(GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_7)==0)
KeyState2|=0x01<<1;
if(GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_4)==0)
KeyState2|=0x01<<2;
if(GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_5)==0)
KeyState2|=0x01<<3;
// if(GPIO_ReadInputDataBit(Button_PIN_5)==0)
// KeyState2|=0x01<<4;
// if(GPIO_ReadInputDataBit(Button_PIN_6)==0)
// KeyState2|=0x01<<5;
// if(GPIO_ReadInputDataBit(Button_PIN_7)==0)
// KeyState2|=0x01<<6;
if(KeyState1==KeyState2)
{
for(i=0;i<16;i++)
{
m=1<<i;
if((KeyState1&m)!=0)
NewButtonState[i+1]=BUTTON_ON;
else
NewButtonState[i+1]=BUTTON_OFF;
}
for(i=0;i<17;i++)
{
if(OldButtonState[i]==BUTTON_ON&&NewButtonState[i]==BUTTON_OFF)
{
ButtonState[i]=BUTTON_ON_TO_OFF;
}
else if(OldButtonState[i]==BUTTON_OFF&&NewButtonState[i]==BUTTON_ON)
{
ButtonState[i]=BUTTON_OFF_TO_ON;
}
else
{
ButtonState[i]=NewButtonState[i];
}
OldButtonState[i]=NewButtonState[i];
}
}
}
/*******************************************************************************
* 名称: GetButtonState
* 功能: 获取当前按键信息
* 形参: buttonPos 按键序号
* 返回: 无
* 说明: 无
********************************************************************************/
BUTTONSTATE GetButtonState(u8 buttonPos)
{
u8 i;
i=buttonPos;
return ButtonState[i];
}
|
f8567fa63d7d51d4cb1b9906857745cc13662453
|
e22a57186254dc7ee4624988fe33296fcb2ef320
|
/no is power in 2.C
|
0dea2e1e7628029e1ec3e245eb681c3f1f0227bd
|
[] |
no_license
|
praveenrajt/cprogram
|
013cbcc71646b0e272cdd3b00a2ab80f96aee1c5
|
e96906ca20a2a90445bfc3d9201689ee90c54c56
|
refs/heads/master
| 2021-05-13T12:09:59.220702 | 2018-09-25T14:08:11 | 2018-09-25T14:08:11 | 116,665,722 | 0 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 222 |
c
|
no is power in 2.C
|
#include<stdio.h>
#include<conio.h>
void main()
{
int i=0,c=1,a=0;
printf("\n Enter a=");
scanf("%d",&a);
for(i=1;i<=0;i++)
{
c=c*2;
if(c==a)
{
break;
}
}
if(c==a)
printf("yes");
else
printf("no");
getch();
}
|
e4ba3a3ec19f48e41efc40b7eafaa3e20db535b1
|
bcc9b1ddc001707b1bf831d22ac1b6c6bdceb379
|
/TroisBriques/work/isim/testGlobal_isim_beh.exe.sim/work/m_17356682794557516166_4254752824.c
|
d054aabc3a45a22f7c5b155781df9caedc2382cf
|
[] |
no_license
|
li-yanhao/Electronique
|
8bcd1b6ad4c6801044a6a658ad708f48fd99abad
|
d92e3d3d4f31333874d5e83b4050949aa82c2306
|
refs/heads/master
| 2021-09-28T23:35:43.392315 | 2018-11-21T12:39:14 | 2018-11-21T12:39:14 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 33,387 |
c
|
m_17356682794557516166_4254752824.c
|
/**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ */
/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */
/* / / All Right Reserved. */
/* /---/ /\ */
/* \ \ / \ */
/* \___\/\___\ */
/***********************************************************************/
/* This file is designed for use with ISim build 0xfbc00daa */
#define XSI_HIDE_SYMBOL_SPEC true
#include "xsi.h"
#include <memory.h>
#ifdef __GNUC__
#include <stdlib.h>
#else
#include <malloc.h>
#define alloca _alloca
#endif
static const char *ng0 = "/export/homes/yli1/TroisBriques/score.v";
static int ng1[] = {0, 0};
static int ng2[] = {1, 0};
static int ng3[] = {2, 0};
static int ng4[] = {3, 0};
static int ng5[] = {10, 0};
static int ng6[] = {11, 0};
static int ng7[] = {12, 0};
static int ng8[] = {9, 0};
static int ng9[] = {13, 0};
static int ng10[] = {14, 0};
static int ng11[] = {15, 0};
static int ng12[] = {16, 0};
static void Always_41_0(char *t0)
{
char t13[8];
char t18[8];
char t35[8];
char t39[8];
char t47[8];
char t74[8];
char t91[8];
char t95[8];
char t103[8];
char t131[8];
char t148[8];
char t152[8];
char t160[8];
char *t1;
char *t2;
char *t3;
char *t4;
char *t5;
unsigned int t6;
unsigned int t7;
unsigned int t8;
unsigned int t9;
unsigned int t10;
char *t11;
char *t12;
char *t14;
int t15;
char *t16;
char *t17;
char *t19;
unsigned int t20;
unsigned int t21;
unsigned int t22;
unsigned int t23;
unsigned int t24;
char *t25;
char *t26;
unsigned int t27;
unsigned int t28;
unsigned int t29;
unsigned int t30;
char *t31;
char *t32;
char *t33;
char *t34;
char *t36;
char *t37;
char *t38;
char *t40;
unsigned int t41;
unsigned int t42;
unsigned int t43;
unsigned int t44;
unsigned int t45;
char *t46;
unsigned int t48;
unsigned int t49;
unsigned int t50;
char *t51;
char *t52;
char *t53;
unsigned int t54;
unsigned int t55;
unsigned int t56;
unsigned int t57;
unsigned int t58;
unsigned int t59;
unsigned int t60;
char *t61;
char *t62;
unsigned int t63;
unsigned int t64;
unsigned int t65;
unsigned int t66;
unsigned int t67;
unsigned int t68;
int t69;
unsigned int t70;
unsigned int t71;
unsigned int t72;
unsigned int t73;
char *t75;
unsigned int t76;
unsigned int t77;
unsigned int t78;
unsigned int t79;
unsigned int t80;
char *t81;
char *t82;
unsigned int t83;
unsigned int t84;
unsigned int t85;
unsigned int t86;
char *t87;
char *t88;
char *t89;
char *t90;
char *t92;
char *t93;
char *t94;
char *t96;
unsigned int t97;
unsigned int t98;
unsigned int t99;
unsigned int t100;
unsigned int t101;
char *t102;
unsigned int t104;
unsigned int t105;
unsigned int t106;
char *t107;
char *t108;
char *t109;
unsigned int t110;
unsigned int t111;
unsigned int t112;
unsigned int t113;
unsigned int t114;
unsigned int t115;
unsigned int t116;
char *t117;
char *t118;
unsigned int t119;
unsigned int t120;
unsigned int t121;
int t122;
unsigned int t123;
unsigned int t124;
unsigned int t125;
int t126;
unsigned int t127;
unsigned int t128;
unsigned int t129;
unsigned int t130;
char *t132;
unsigned int t133;
unsigned int t134;
unsigned int t135;
unsigned int t136;
unsigned int t137;
char *t138;
char *t139;
unsigned int t140;
unsigned int t141;
unsigned int t142;
unsigned int t143;
char *t144;
char *t145;
char *t146;
char *t147;
char *t149;
char *t150;
char *t151;
char *t153;
unsigned int t154;
unsigned int t155;
unsigned int t156;
unsigned int t157;
unsigned int t158;
char *t159;
unsigned int t161;
unsigned int t162;
unsigned int t163;
char *t164;
char *t165;
char *t166;
unsigned int t167;
unsigned int t168;
unsigned int t169;
unsigned int t170;
unsigned int t171;
unsigned int t172;
unsigned int t173;
char *t174;
char *t175;
unsigned int t176;
unsigned int t177;
unsigned int t178;
int t179;
unsigned int t180;
unsigned int t181;
unsigned int t182;
int t183;
unsigned int t184;
unsigned int t185;
unsigned int t186;
unsigned int t187;
char *t188;
unsigned int t189;
unsigned int t190;
unsigned int t191;
unsigned int t192;
unsigned int t193;
char *t194;
char *t195;
LAB0: t1 = (t0 + 4120U);
t2 = *((char **)t1);
if (t2 == 0)
goto LAB2;
LAB3: goto *t2;
LAB2: xsi_set_current_line(41, ng0);
t2 = (t0 + 4440);
*((int *)t2) = 1;
t3 = (t0 + 4152);
*((char **)t3) = t2;
*((char **)t1) = &&LAB4;
LAB1: return;
LAB4: xsi_set_current_line(41, ng0);
LAB5: xsi_set_current_line(42, ng0);
t4 = (t0 + 1528U);
t5 = *((char **)t4);
t4 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = (~(t6));
t8 = *((unsigned int *)t5);
t9 = (t8 & t7);
t10 = (t9 != 0);
if (t10 > 0)
goto LAB6;
LAB7: xsi_set_current_line(53, ng0);
t2 = (t0 + 1368U);
t3 = *((char **)t2);
t2 = (t3 + 4);
t6 = *((unsigned int *)t2);
t7 = (~(t6));
t8 = *((unsigned int *)t3);
t9 = (t8 & t7);
t10 = (t9 != 0);
if (t10 > 0)
goto LAB18;
LAB19: xsi_set_current_line(59, ng0);
t2 = (t0 + 2168U);
t3 = *((char **)t2);
t2 = (t3 + 4);
t6 = *((unsigned int *)t2);
t7 = (~(t6));
t8 = *((unsigned int *)t3);
t9 = (t8 & t7);
t10 = (t9 != 0);
if (t10 > 0)
goto LAB22;
LAB23:
LAB24:
LAB20:
LAB8: xsi_set_current_line(87, ng0);
t2 = (t0 + 3048);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng1)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB125;
LAB124: if (t24 != 0)
goto LAB126;
LAB127: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB128;
LAB129: xsi_set_current_line(92, ng0);
LAB138: xsi_set_current_line(93, ng0);
t2 = ((char*)((ng2)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng4)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB139;
LAB140: xsi_set_current_line(94, ng0);
t2 = (t0 + 2888);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng1)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB142;
LAB141: if (t24 != 0)
goto LAB143;
LAB144: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB145;
LAB146: xsi_set_current_line(98, ng0);
LAB153: xsi_set_current_line(99, ng0);
t2 = ((char*)((ng2)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng3)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB154;
LAB155: xsi_set_current_line(100, ng0);
t2 = (t0 + 2728);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng1)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB157;
LAB156: if (t24 != 0)
goto LAB158;
LAB159: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB160;
LAB161: xsi_set_current_line(101, ng0);
t2 = ((char*)((ng2)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng2)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB165;
LAB166:
LAB162:
LAB147:
LAB130: goto LAB2;
LAB6: xsi_set_current_line(42, ng0);
LAB9: xsi_set_current_line(43, ng0);
t11 = ((char*)((ng1)));
t12 = (t0 + 2568);
xsi_vlogvar_wait_assign_value(t12, t11, 0, 0, 4, 0LL);
xsi_set_current_line(44, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 2728);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(45, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 2888);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(46, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 3048);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(47, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng1)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB10;
LAB11: xsi_set_current_line(48, ng0);
t2 = ((char*)((ng2)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng2)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB12;
LAB13: xsi_set_current_line(49, ng0);
t2 = ((char*)((ng2)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng3)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB14;
LAB15: xsi_set_current_line(50, ng0);
t2 = ((char*)((ng2)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng4)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB16;
LAB17: goto LAB8;
LAB10: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB11;
LAB12: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB13;
LAB14: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB15;
LAB16: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB17;
LAB18: xsi_set_current_line(53, ng0);
LAB21: xsi_set_current_line(54, ng0);
t4 = ((char*)((ng5)));
t5 = (t0 + 2568);
xsi_vlogvar_wait_assign_value(t5, t4, 0, 0, 4, 0LL);
xsi_set_current_line(55, ng0);
t2 = ((char*)((ng6)));
t3 = (t0 + 2728);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(56, ng0);
t2 = ((char*)((ng7)));
t3 = (t0 + 2888);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(57, ng0);
t2 = ((char*)((ng5)));
t3 = (t0 + 3048);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
goto LAB20;
LAB22: xsi_set_current_line(59, ng0);
LAB25: xsi_set_current_line(60, ng0);
t4 = (t0 + 2568);
t5 = (t4 + 56U);
t11 = *((char **)t5);
t12 = ((char*)((ng8)));
memset(t13, 0, 8);
t14 = (t11 + 4);
if (*((unsigned int *)t14) != 0)
goto LAB27;
LAB26: t16 = (t12 + 4);
if (*((unsigned int *)t16) != 0)
goto LAB27;
LAB30: if (*((unsigned int *)t11) > *((unsigned int *)t12))
goto LAB28;
LAB29: memset(t18, 0, 8);
t19 = (t13 + 4);
t20 = *((unsigned int *)t19);
t21 = (~(t20));
t22 = *((unsigned int *)t13);
t23 = (t22 & t21);
t24 = (t23 & 1U);
if (t24 != 0)
goto LAB31;
LAB32: if (*((unsigned int *)t19) != 0)
goto LAB33;
LAB34: t26 = (t18 + 4);
t27 = *((unsigned int *)t18);
t28 = (!(t27));
t29 = *((unsigned int *)t26);
t30 = (t28 || t29);
if (t30 > 0)
goto LAB35;
LAB36: memcpy(t47, t18, 8);
LAB37: memset(t74, 0, 8);
t75 = (t47 + 4);
t76 = *((unsigned int *)t75);
t77 = (~(t76));
t78 = *((unsigned int *)t47);
t79 = (t78 & t77);
t80 = (t79 & 1U);
if (t80 != 0)
goto LAB50;
LAB51: if (*((unsigned int *)t75) != 0)
goto LAB52;
LAB53: t82 = (t74 + 4);
t83 = *((unsigned int *)t74);
t84 = (!(t83));
t85 = *((unsigned int *)t82);
t86 = (t84 || t85);
if (t86 > 0)
goto LAB54;
LAB55: memcpy(t103, t74, 8);
LAB56: memset(t131, 0, 8);
t132 = (t103 + 4);
t133 = *((unsigned int *)t132);
t134 = (~(t133));
t135 = *((unsigned int *)t103);
t136 = (t135 & t134);
t137 = (t136 & 1U);
if (t137 != 0)
goto LAB69;
LAB70: if (*((unsigned int *)t132) != 0)
goto LAB71;
LAB72: t139 = (t131 + 4);
t140 = *((unsigned int *)t131);
t141 = (!(t140));
t142 = *((unsigned int *)t139);
t143 = (t141 || t142);
if (t143 > 0)
goto LAB73;
LAB74: memcpy(t160, t131, 8);
LAB75: t188 = (t160 + 4);
t189 = *((unsigned int *)t188);
t190 = (~(t189));
t191 = *((unsigned int *)t160);
t192 = (t191 & t190);
t193 = (t192 != 0);
if (t193 > 0)
goto LAB88;
LAB89: xsi_set_current_line(66, ng0);
t2 = (t0 + 2568);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng8)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB95;
LAB92: if (t24 != 0)
goto LAB94;
LAB93: *((unsigned int *)t13) = 1;
LAB95: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB96;
LAB97: xsi_set_current_line(84, ng0);
t2 = (t0 + 2568);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng2)));
memset(t13, 0, 8);
xsi_vlog_unsigned_add(t13, 32, t4, 4, t5, 32);
t11 = (t0 + 2568);
xsi_vlogvar_wait_assign_value(t11, t13, 0, 0, 4, 0LL);
LAB98:
LAB90: goto LAB24;
LAB27: t17 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t17) = 1;
goto LAB29;
LAB28: *((unsigned int *)t13) = 1;
goto LAB29;
LAB31: *((unsigned int *)t18) = 1;
goto LAB34;
LAB33: t25 = (t18 + 4);
*((unsigned int *)t18) = 1;
*((unsigned int *)t25) = 1;
goto LAB34;
LAB35: t31 = (t0 + 2728);
t32 = (t31 + 56U);
t33 = *((char **)t32);
t34 = ((char*)((ng8)));
memset(t35, 0, 8);
t36 = (t33 + 4);
if (*((unsigned int *)t36) != 0)
goto LAB39;
LAB38: t37 = (t34 + 4);
if (*((unsigned int *)t37) != 0)
goto LAB39;
LAB42: if (*((unsigned int *)t33) > *((unsigned int *)t34))
goto LAB40;
LAB41: memset(t39, 0, 8);
t40 = (t35 + 4);
t41 = *((unsigned int *)t40);
t42 = (~(t41));
t43 = *((unsigned int *)t35);
t44 = (t43 & t42);
t45 = (t44 & 1U);
if (t45 != 0)
goto LAB43;
LAB44: if (*((unsigned int *)t40) != 0)
goto LAB45;
LAB46: t48 = *((unsigned int *)t18);
t49 = *((unsigned int *)t39);
t50 = (t48 | t49);
*((unsigned int *)t47) = t50;
t51 = (t18 + 4);
t52 = (t39 + 4);
t53 = (t47 + 4);
t54 = *((unsigned int *)t51);
t55 = *((unsigned int *)t52);
t56 = (t54 | t55);
*((unsigned int *)t53) = t56;
t57 = *((unsigned int *)t53);
t58 = (t57 != 0);
if (t58 == 1)
goto LAB47;
LAB48:
LAB49: goto LAB37;
LAB39: t38 = (t35 + 4);
*((unsigned int *)t35) = 1;
*((unsigned int *)t38) = 1;
goto LAB41;
LAB40: *((unsigned int *)t35) = 1;
goto LAB41;
LAB43: *((unsigned int *)t39) = 1;
goto LAB46;
LAB45: t46 = (t39 + 4);
*((unsigned int *)t39) = 1;
*((unsigned int *)t46) = 1;
goto LAB46;
LAB47: t59 = *((unsigned int *)t47);
t60 = *((unsigned int *)t53);
*((unsigned int *)t47) = (t59 | t60);
t61 = (t18 + 4);
t62 = (t39 + 4);
t63 = *((unsigned int *)t61);
t64 = (~(t63));
t65 = *((unsigned int *)t18);
t15 = (t65 & t64);
t66 = *((unsigned int *)t62);
t67 = (~(t66));
t68 = *((unsigned int *)t39);
t69 = (t68 & t67);
t70 = (~(t15));
t71 = (~(t69));
t72 = *((unsigned int *)t53);
*((unsigned int *)t53) = (t72 & t70);
t73 = *((unsigned int *)t53);
*((unsigned int *)t53) = (t73 & t71);
goto LAB49;
LAB50: *((unsigned int *)t74) = 1;
goto LAB53;
LAB52: t81 = (t74 + 4);
*((unsigned int *)t74) = 1;
*((unsigned int *)t81) = 1;
goto LAB53;
LAB54: t87 = (t0 + 2888);
t88 = (t87 + 56U);
t89 = *((char **)t88);
t90 = ((char*)((ng8)));
memset(t91, 0, 8);
t92 = (t89 + 4);
if (*((unsigned int *)t92) != 0)
goto LAB58;
LAB57: t93 = (t90 + 4);
if (*((unsigned int *)t93) != 0)
goto LAB58;
LAB61: if (*((unsigned int *)t89) > *((unsigned int *)t90))
goto LAB59;
LAB60: memset(t95, 0, 8);
t96 = (t91 + 4);
t97 = *((unsigned int *)t96);
t98 = (~(t97));
t99 = *((unsigned int *)t91);
t100 = (t99 & t98);
t101 = (t100 & 1U);
if (t101 != 0)
goto LAB62;
LAB63: if (*((unsigned int *)t96) != 0)
goto LAB64;
LAB65: t104 = *((unsigned int *)t74);
t105 = *((unsigned int *)t95);
t106 = (t104 | t105);
*((unsigned int *)t103) = t106;
t107 = (t74 + 4);
t108 = (t95 + 4);
t109 = (t103 + 4);
t110 = *((unsigned int *)t107);
t111 = *((unsigned int *)t108);
t112 = (t110 | t111);
*((unsigned int *)t109) = t112;
t113 = *((unsigned int *)t109);
t114 = (t113 != 0);
if (t114 == 1)
goto LAB66;
LAB67:
LAB68: goto LAB56;
LAB58: t94 = (t91 + 4);
*((unsigned int *)t91) = 1;
*((unsigned int *)t94) = 1;
goto LAB60;
LAB59: *((unsigned int *)t91) = 1;
goto LAB60;
LAB62: *((unsigned int *)t95) = 1;
goto LAB65;
LAB64: t102 = (t95 + 4);
*((unsigned int *)t95) = 1;
*((unsigned int *)t102) = 1;
goto LAB65;
LAB66: t115 = *((unsigned int *)t103);
t116 = *((unsigned int *)t109);
*((unsigned int *)t103) = (t115 | t116);
t117 = (t74 + 4);
t118 = (t95 + 4);
t119 = *((unsigned int *)t117);
t120 = (~(t119));
t121 = *((unsigned int *)t74);
t122 = (t121 & t120);
t123 = *((unsigned int *)t118);
t124 = (~(t123));
t125 = *((unsigned int *)t95);
t126 = (t125 & t124);
t127 = (~(t122));
t128 = (~(t126));
t129 = *((unsigned int *)t109);
*((unsigned int *)t109) = (t129 & t127);
t130 = *((unsigned int *)t109);
*((unsigned int *)t109) = (t130 & t128);
goto LAB68;
LAB69: *((unsigned int *)t131) = 1;
goto LAB72;
LAB71: t138 = (t131 + 4);
*((unsigned int *)t131) = 1;
*((unsigned int *)t138) = 1;
goto LAB72;
LAB73: t144 = (t0 + 3048);
t145 = (t144 + 56U);
t146 = *((char **)t145);
t147 = ((char*)((ng8)));
memset(t148, 0, 8);
t149 = (t146 + 4);
if (*((unsigned int *)t149) != 0)
goto LAB77;
LAB76: t150 = (t147 + 4);
if (*((unsigned int *)t150) != 0)
goto LAB77;
LAB80: if (*((unsigned int *)t146) > *((unsigned int *)t147))
goto LAB78;
LAB79: memset(t152, 0, 8);
t153 = (t148 + 4);
t154 = *((unsigned int *)t153);
t155 = (~(t154));
t156 = *((unsigned int *)t148);
t157 = (t156 & t155);
t158 = (t157 & 1U);
if (t158 != 0)
goto LAB81;
LAB82: if (*((unsigned int *)t153) != 0)
goto LAB83;
LAB84: t161 = *((unsigned int *)t131);
t162 = *((unsigned int *)t152);
t163 = (t161 | t162);
*((unsigned int *)t160) = t163;
t164 = (t131 + 4);
t165 = (t152 + 4);
t166 = (t160 + 4);
t167 = *((unsigned int *)t164);
t168 = *((unsigned int *)t165);
t169 = (t167 | t168);
*((unsigned int *)t166) = t169;
t170 = *((unsigned int *)t166);
t171 = (t170 != 0);
if (t171 == 1)
goto LAB85;
LAB86:
LAB87: goto LAB75;
LAB77: t151 = (t148 + 4);
*((unsigned int *)t148) = 1;
*((unsigned int *)t151) = 1;
goto LAB79;
LAB78: *((unsigned int *)t148) = 1;
goto LAB79;
LAB81: *((unsigned int *)t152) = 1;
goto LAB84;
LAB83: t159 = (t152 + 4);
*((unsigned int *)t152) = 1;
*((unsigned int *)t159) = 1;
goto LAB84;
LAB85: t172 = *((unsigned int *)t160);
t173 = *((unsigned int *)t166);
*((unsigned int *)t160) = (t172 | t173);
t174 = (t131 + 4);
t175 = (t152 + 4);
t176 = *((unsigned int *)t174);
t177 = (~(t176));
t178 = *((unsigned int *)t131);
t179 = (t178 & t177);
t180 = *((unsigned int *)t175);
t181 = (~(t180));
t182 = *((unsigned int *)t152);
t183 = (t182 & t181);
t184 = (~(t179));
t185 = (~(t183));
t186 = *((unsigned int *)t166);
*((unsigned int *)t166) = (t186 & t184);
t187 = *((unsigned int *)t166);
*((unsigned int *)t166) = (t187 & t185);
goto LAB87;
LAB88: xsi_set_current_line(60, ng0);
LAB91: xsi_set_current_line(61, ng0);
t194 = ((char*)((ng1)));
t195 = (t0 + 2568);
xsi_vlogvar_wait_assign_value(t195, t194, 0, 0, 4, 0LL);
xsi_set_current_line(62, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 2728);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(63, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 2888);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(64, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 3048);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
goto LAB90;
LAB94: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB95;
LAB96: xsi_set_current_line(66, ng0);
LAB99: xsi_set_current_line(67, ng0);
t17 = ((char*)((ng1)));
t19 = (t0 + 2568);
xsi_vlogvar_wait_assign_value(t19, t17, 0, 0, 4, 0LL);
xsi_set_current_line(68, ng0);
t2 = (t0 + 2728);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng8)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB103;
LAB100: if (t24 != 0)
goto LAB102;
LAB101: *((unsigned int *)t13) = 1;
LAB103: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB104;
LAB105: xsi_set_current_line(82, ng0);
t2 = (t0 + 2728);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng2)));
memset(t13, 0, 8);
xsi_vlog_unsigned_add(t13, 32, t4, 4, t5, 32);
t11 = (t0 + 2728);
xsi_vlogvar_wait_assign_value(t11, t13, 0, 0, 4, 0LL);
LAB106: goto LAB98;
LAB102: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB103;
LAB104: xsi_set_current_line(68, ng0);
LAB107: xsi_set_current_line(69, ng0);
t17 = ((char*)((ng1)));
t19 = (t0 + 2728);
xsi_vlogvar_wait_assign_value(t19, t17, 0, 0, 4, 0LL);
xsi_set_current_line(70, ng0);
t2 = (t0 + 2888);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng8)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB111;
LAB108: if (t24 != 0)
goto LAB110;
LAB109: *((unsigned int *)t13) = 1;
LAB111: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB112;
LAB113: xsi_set_current_line(80, ng0);
t2 = (t0 + 2888);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng2)));
memset(t13, 0, 8);
xsi_vlog_unsigned_add(t13, 32, t4, 4, t5, 32);
t11 = (t0 + 2888);
xsi_vlogvar_wait_assign_value(t11, t13, 0, 0, 4, 0LL);
LAB114: goto LAB106;
LAB110: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB111;
LAB112: xsi_set_current_line(70, ng0);
LAB115: xsi_set_current_line(71, ng0);
t17 = ((char*)((ng1)));
t19 = (t0 + 2888);
xsi_vlogvar_wait_assign_value(t19, t17, 0, 0, 4, 0LL);
xsi_set_current_line(72, ng0);
t2 = (t0 + 3048);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng8)));
memset(t13, 0, 8);
t11 = (t4 + 4);
t12 = (t5 + 4);
t6 = *((unsigned int *)t4);
t7 = *((unsigned int *)t5);
t8 = (t6 ^ t7);
t9 = *((unsigned int *)t11);
t10 = *((unsigned int *)t12);
t20 = (t9 ^ t10);
t21 = (t8 | t20);
t22 = *((unsigned int *)t11);
t23 = *((unsigned int *)t12);
t24 = (t22 | t23);
t27 = (~(t24));
t28 = (t21 & t27);
if (t28 != 0)
goto LAB119;
LAB116: if (t24 != 0)
goto LAB118;
LAB117: *((unsigned int *)t13) = 1;
LAB119: t16 = (t13 + 4);
t29 = *((unsigned int *)t16);
t30 = (~(t29));
t41 = *((unsigned int *)t13);
t42 = (t41 & t30);
t43 = (t42 != 0);
if (t43 > 0)
goto LAB120;
LAB121: xsi_set_current_line(78, ng0);
t2 = (t0 + 3048);
t3 = (t2 + 56U);
t4 = *((char **)t3);
t5 = ((char*)((ng2)));
memset(t13, 0, 8);
xsi_vlog_unsigned_add(t13, 32, t4, 4, t5, 32);
t11 = (t0 + 3048);
xsi_vlogvar_wait_assign_value(t11, t13, 0, 0, 4, 0LL);
LAB122: goto LAB114;
LAB118: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB119;
LAB120: xsi_set_current_line(72, ng0);
LAB123: xsi_set_current_line(73, ng0);
t17 = ((char*)((ng9)));
t19 = (t0 + 2568);
xsi_vlogvar_wait_assign_value(t19, t17, 0, 0, 4, 0LL);
xsi_set_current_line(74, ng0);
t2 = ((char*)((ng10)));
t3 = (t0 + 2728);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(75, ng0);
t2 = ((char*)((ng11)));
t3 = (t0 + 2888);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
xsi_set_current_line(76, ng0);
t2 = ((char*)((ng12)));
t3 = (t0 + 3048);
xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 4, 0LL);
goto LAB122;
LAB125: *((unsigned int *)t13) = 1;
goto LAB127;
LAB126: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB127;
LAB128: xsi_set_current_line(87, ng0);
LAB131: xsi_set_current_line(88, ng0);
t17 = ((char*)((ng1)));
t19 = (t0 + 3208);
t25 = (t0 + 3208);
t26 = (t25 + 72U);
t31 = *((char **)t26);
t32 = ((char*)((ng4)));
xsi_vlog_generic_convert_bit_index(t18, t31, 2, t32, 32, 1);
t33 = (t18 + 4);
t44 = *((unsigned int *)t33);
t15 = (!(t44));
if (t15 == 1)
goto LAB132;
LAB133: xsi_set_current_line(89, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng3)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB134;
LAB135: xsi_set_current_line(90, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng2)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB136;
LAB137: goto LAB130;
LAB132: xsi_vlogvar_wait_assign_value(t19, t17, 0, *((unsigned int *)t18), 1, 0LL);
goto LAB133;
LAB134: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB135;
LAB136: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB137;
LAB139: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB140;
LAB142: *((unsigned int *)t13) = 1;
goto LAB144;
LAB143: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB144;
LAB145: xsi_set_current_line(94, ng0);
LAB148: xsi_set_current_line(95, ng0);
t17 = ((char*)((ng1)));
t19 = (t0 + 3208);
t25 = (t0 + 3208);
t26 = (t25 + 72U);
t31 = *((char **)t26);
t32 = ((char*)((ng3)));
xsi_vlog_generic_convert_bit_index(t18, t31, 2, t32, 32, 1);
t33 = (t18 + 4);
t44 = *((unsigned int *)t33);
t15 = (!(t44));
if (t15 == 1)
goto LAB149;
LAB150: xsi_set_current_line(96, ng0);
t2 = ((char*)((ng1)));
t3 = (t0 + 3208);
t4 = (t0 + 3208);
t5 = (t4 + 72U);
t11 = *((char **)t5);
t12 = ((char*)((ng2)));
xsi_vlog_generic_convert_bit_index(t13, t11, 2, t12, 32, 1);
t14 = (t13 + 4);
t6 = *((unsigned int *)t14);
t15 = (!(t6));
if (t15 == 1)
goto LAB151;
LAB152: goto LAB147;
LAB149: xsi_vlogvar_wait_assign_value(t19, t17, 0, *((unsigned int *)t18), 1, 0LL);
goto LAB150;
LAB151: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB152;
LAB154: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB155;
LAB157: *((unsigned int *)t13) = 1;
goto LAB159;
LAB158: t14 = (t13 + 4);
*((unsigned int *)t13) = 1;
*((unsigned int *)t14) = 1;
goto LAB159;
LAB160: xsi_set_current_line(100, ng0);
t17 = ((char*)((ng1)));
t19 = (t0 + 3208);
t25 = (t0 + 3208);
t26 = (t25 + 72U);
t31 = *((char **)t26);
t32 = ((char*)((ng2)));
xsi_vlog_generic_convert_bit_index(t18, t31, 2, t32, 32, 1);
t33 = (t18 + 4);
t44 = *((unsigned int *)t33);
t15 = (!(t44));
if (t15 == 1)
goto LAB163;
LAB164: goto LAB162;
LAB163: xsi_vlogvar_wait_assign_value(t19, t17, 0, *((unsigned int *)t18), 1, 0LL);
goto LAB164;
LAB165: xsi_vlogvar_wait_assign_value(t3, t2, 0, *((unsigned int *)t13), 1, 0LL);
goto LAB166;
}
extern void work_m_17356682794557516166_4254752824_init()
{
static char *pe[] = {(void *)Always_41_0};
xsi_register_didat("work_m_17356682794557516166_4254752824", "isim/testGlobal_isim_beh.exe.sim/work/m_17356682794557516166_4254752824.didat");
xsi_register_executes(pe);
}
|
c2dabdcc078770fab67dd27283f5963250df1ec0
|
08d5a75c0ef85bf148b0ce7826ba028f24b5c577
|
/libft/ft_lstnew.c
|
bebc50bc2bc753fd74e8d8e5aa9ac04d6bb740c4
|
[] |
no_license
|
zerck0/push_swap-1
|
da66ed7281c56948367c0beabbfc489f33d3483a
|
1029ac8cb400dd7649c6fa1148fd8442858bb34e
|
refs/heads/main
| 2023-08-28T10:53:51.243684 | 2021-11-11T16:03:22 | 2021-11-11T16:03:22 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,088 |
c
|
ft_lstnew.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ypetruzz <marvin@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/14 18:37:57 by ypetruzz #+# #+# */
/* Updated: 2021/10/14 18:51:40 by ypetruzz ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstnew(void *content)
{
t_list *cell;
cell = malloc(sizeof(t_list));
if (!cell)
return (NULL);
cell->content = content;
cell->next = NULL;
return (cell);
}
|
12ce9fd35ad0d76ff4d19cb01aa717e62eedc89a
|
d2397bd3a2fea59a7e4164e53b7d651ccbcaf4dd
|
/src/menu.c
|
970feff69062551c525b9f358f40a813b35ce420
|
[] |
no_license
|
Liliaze/RTv1
|
38abb8e7ecd6a9ecbd40b3205697c22fc5adf174
|
d82a30e33fcd19fbb519a4d9a7398805f479b150
|
refs/heads/master
| 2021-01-14T11:10:50.407338 | 2016-06-09T11:27:08 | 2016-06-09T11:27:08 | 58,559,140 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,963 |
c
|
menu.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* menu.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dboudy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/06/03 10:27:46 by dboudy #+# #+# */
/* Updated: 2016/06/09 11:07:23 by dboudy ### ########.fr */
/* */
/* ************************************************************************** */
#include "rtv1.h"
#include "mlx.h"
static void draw_name_map(t_win *awin)
{
int i;
char *stri;
char *tmp1;
char *tmp2;
i = 1;
while (i < awin->ac)
{
stri = ft_itoa(i);
tmp1 = ft_strjoin(" == ", MAP[i]);
tmp2 = ft_strjoin(stri, tmp1);
i++;
mlx_string_put(MLX, WIN, (WINW - (int)(ft_strlen(tmp2) * 10)) / 2,
(WINH - 30) / 2 + 30 * i, BLUEF, tmp2);
ft_strdel(&tmp1);
ft_strdel(&tmp2);
ft_strdel(&stri);
}
}
static void draw_str_menu(t_win *awin)
{
mlx_string_put(MLX, WIN, (WINW - 210) / 2,
50, RED, "WELCOME IN MY RTV1 :D");
mlx_string_put(MLX, WIN, (WINW - 610) / 2, 75, RED,
"================= * ENTER YOUR NUMBER MAP * =================");
mlx_string_put(MLX, WIN, (WINW - 370) / 2, WINH - 110,
BLACK, "WASD to move the camera on axe x or z");
mlx_string_put(MLX, WIN, (WINW - 350) / 2, WINH - 85,
BLACK, "Use + or - to up or down the camera");
mlx_string_put(MLX, WIN, (WINW - 280) / 2, WINH - 60,
BLACK, "ARROWS to inclined the camera");
mlx_string_put(MLX, WIN, (WINW - 180) / 2, WINH - 35,
GREY, "ECHAP or Q to quit");
}
static void else_menu(t_all *all, int key)
{
if (key - 82 < all->awin->ac && key - 82 >= 1)
{
free(all->scene);
free_scene(all->aobj, all->aspot, all->nb_o, all->nb_s);
all->scene = ft_strdup(all->MAP[key - 82]);
init_cam(all->acam);
read_scene(all);
all->in_menu = 0;
all->hook = 1;
}
else
mlx_string_put(all->MLX, all->WIN, (WINW - 420) / 2,
95, YELLOW, "Enter a number in the list of map - Try Again");
}
void go_menu(t_all *all, int key)
{
if (key == ENTER && !all->in_menu)
{
if (ft_strcmp(all->aobj->type, "first"))
free_scene(all->aobj, all->aspot, all->nb_o, all->nb_s);
free(all->scene);
all->in_menu = 1;
init_cam(all->acam);
all->scene = ft_strdup("map/menu.txt");
read_scene(all);
ray_tracing(all);
mlx_clear_window(all->MLX, all->WIN);
mlx_put_image_to_window(all->MLX, all->WIN, all->aimg->id, 0, 0);
draw_str_menu(all->awin);
draw_name_map(all->awin);
}
else if (key != ENTER && all->in_menu)
else_menu(all, key);
}
|
933f57c6746456dbe1ec4ad4d7379314b5c95a34
|
901bbaacd39603bdfbdd334a876f51eb9135db1a
|
/Lab3/ex1.c
|
46e5f050d3e99584fd353e1eb3bbb06d0602ed19
|
[] |
no_license
|
nhattan1504/H-H
|
e5a8892cbc4dba596705c813adbb1347d6764106
|
ed1670dd84a1ed5eb24207014e7109714189c323
|
refs/heads/master
| 2020-07-08T14:50:21.784585 | 2019-08-22T03:30:17 | 2019-08-22T03:30:17 | 203,705,521 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 553 |
c
|
ex1.c
|
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#define MAX 1000
int main()
{
int d=0,d1=0,dem=0;
int a[MAX];
int pid=fork();
FILE*file=fopen("numbers.txt","r");
int i=0;
fscanf(file,"%d",&a[i]);
while(!feof(file))
{
i++;
dem++;
fscanf(file,"%d",&a[i]);
}
fclose(file);
if(pid==0)
{
for(int k=0;k<dem;k++)
{if(a[k]%3==0)
{d1++;
}
}
printf("%d",d1);
}
else
{
for(int j=0;j<dem;j++)
{
if(a[j]%2==0)
{
d++;
}
}
printf("%d \n",d);
}
return 0;
}
|
082671532ec7084edf91b13af72a07231f3f7a84
|
b0611056df16ad26cb826caaf7df89e519fc330d
|
/cxx/leetcode/hamming.c
|
9337bf00ec8561979f1adf59126e13604a852fef
|
[] |
no_license
|
gdh55555/pratice
|
b00baba45ac1a9f4b65dda25d3db94a4bb3f1440
|
f268844465e6de705a20fa3cb8656cf718431edd
|
refs/heads/master
| 2021-01-10T11:17:50.979502 | 2016-02-29T14:23:51 | 2016-02-29T14:23:51 | 44,220,541 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 550 |
c
|
hamming.c
|
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
int hammingWeight(uint32_t n) {
const uint32_t m1 = 0x55555555;
const uint32_t m2 = 0x33333333;
const uint32_t m3 = 0x0f0f0f0f;
const uint32_t m4 = 0x00ff00ff;
const uint32_t m5 = 0x0000ffff;
const uint32_t m6 = 0xffffffff;
n = (n & m1) + (n >> 1 & m1);
n = (n & m2) + (n >> 2 & m2);
n = (n & m3) + (n >> 4 & m3);
n = (n & m4) + (n >> 8 & m4);
n = (n & m5) + (n >> 16 & m5);
return n;
}
int main()
{
printf("%d\n", hammingWeight(11));
}
|
3fb14d26b47a842cc517515ec347502d3f5e8eee
|
0b3703e17ed2ca8e146dca717573db124b7b577b
|
/mac/mac-snd.h
|
0f86f14b65a070ea851912f835a2b865e9f217e5
|
[] |
no_license
|
Compy/M1
|
e6d64e4a73b204bd2c1eb10822579bc207f48324
|
006304bb62ebf1a04b4b77a47e077eab6d24475c
|
refs/heads/master
| 2021-08-11T21:03:03.312580 | 2017-11-14T04:53:42 | 2017-11-14T04:53:42 | 110,506,575 | 0 | 0 | null | null | null | null |
WINDOWS-1252
|
C
| false | false | 642 |
h
|
mac-snd.h
|
//
// M1 by R. Belmont
//
// Macintosh version by Richard Bannister
// © 2004-2010, All Rights Reserved
//
// No part of this code may be reused in any other project without the
// express written permission of Richard Bannister.
//
// http://www.bannister.org/software/
//
// mac-snd.h
#include "oss.h"
extern void (*m1sdr_Callback)(unsigned long dwUser, short *samples);
extern int nDSoundSegLen;
int m1sdr_GetPlayTime(void);
void m1sdr_GetPlayTimeStr(char *buf);
INT16 *m1sdr_GetPlayBufferPtr(void);
void m1sdr_InstallGenerationCallback(void);
void m1sdr_RemoveGenerationCallback(void);
Boolean m1sdr_CurrentlyPlaying(void);
|
63d75ae15e1accf74f291f077d1e359bca42a69a
|
d89ba9785dbf3651823dbd3380b421e9402dd7f7
|
/ASCII_to_BCD/ascii_to_unpackedbcd.c
|
bf72ec8fc003a716ea84fd3123257e6266e3c9a8
|
[] |
no_license
|
Ajinkya7poppyi/C-Programming
|
6c737648943421730dc93f07319bfc2891b67934
|
6d99fbe107cbe5af177713c66122d2549951bf7d
|
refs/heads/master
| 2022-09-20T06:11:59.383926 | 2020-05-18T06:47:18 | 2020-05-18T06:47:18 | 264,824,844 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,902 |
c
|
ascii_to_unpackedbcd.c
|
// C Program To Convert ASCII Number to Unpacked BCD
// Author:- Ajinkya Patil
// Github:- https://github.com/Ajinkya7poppyi/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* Maximum number of digits for conversion*/
#define BUFFSIZE 10
/* Zero character*/
#define ZERO_CHAR '0'
/* Nine character*/
#define NINE_CHAR '9'
/* A character*/
#define CAPA_CHAR 'A'
/* F character*/
#define CAPF_CHAR 'F'
/* a character*/
#define SMALLA_CHAR 'a'
/* f character*/
#define SMALLF_CHAR 'f'
/* New line*/
#define NEWLINE '\n'
/* Newline*/
#define ENDOFLINE '\0'
/* Decimal zero*/
#define ZERO 0
/*ASCII To Unpacked BCD Conversion*/
void ascii_to_unpacked_bcd(unsigned char* ascii_text, unsigned char* bcd_text)
{
/*Get length of ASCII input*/
size_t ascii_length = strlen((char*)ascii_text);
/*For every ASCII character*/
for (size_t i=0; i<ascii_length; i++)
{
/*Check if the value lied in 0-9 range and subtract from '0' to get decimal value*/
if(ascii_text[i] >= ZERO_CHAR && ascii_text[i] <= NINE_CHAR)
{
bcd_text[i] = ( ascii_text[i] - '0');
}
/*Check if the value lied in A-F range and subtract from 'A' to get decimal value. Add decimal value of a i.e 10*/
else if (ascii_text[i] >= CAPA_CHAR && ascii_text[i] <= CAPF_CHAR)
{
bcd_text[i] = ( 10 + ascii_text[i] - CAPA_CHAR) ;
}
/*Check if the value lied in a-f range and subtract from 'A' to get decimal value. Add decimal value of a i.e 10*/
else if (ascii_text[i] >= SMALLA_CHAR && ascii_text[i] <= SMALLF_CHAR)
{
bcd_text[i] = ( 10 + ascii_text[i] - SMALLA_CHAR ) ;
}
}
}
/*Main Loop of program*/
int main()
{
/*Input characters for ASCII conversion*/
unsigned char input_ascii[BUFFSIZE];
/*Output of ASCII Conversion Unpacked BCD Data*/
unsigned char output_bcd[BUFFSIZE];
/*Set all buffers to zero value*/
memset(input_ascii, ZERO, BUFFSIZE);
memset(output_bcd, ZERO, BUFFSIZE);
/*This will take maximum BUFFSIZE inputs from user and store it to char array with null-termination. One byte for null-character*/
fgets((char*)input_ascii, BUFFSIZE, stdin);
/*Get size of ASCII characters*/
size_t size_ascii= strlen((char*)input_ascii);
/*Check if last byte in array is New Line and replace it with NULL character*/
if(input_ascii[size_ascii-1] == NEWLINE)
{
input_ascii[size_ascii-1] = ENDOFLINE;
}
/*Convert ASCII to Unpacked BCD*/
ascii_to_unpacked_bcd(input_ascii, output_bcd);
/*Get size of Output BCD characters*/
size_t size_bcd= strlen((char*)output_bcd);
/*Print All unpacked BCD values*/
printf("BCD value for %s is",input_ascii);
for (size_t i = 0; i < size_bcd; i ++)
{
printf(" %02x", output_bcd[i]);
}
return 0;
}
|
e0e0b42e1703d474829ad76fe9bd1de468754989
|
4fe21ec3a048747c7be8d397bcd5c9b10e175b48
|
/error.c
|
1229e7fc3298bf78a69037caf920c9c690a05fc4
|
[
"LicenseRef-scancode-other-permissive"
] |
permissive
|
simta/denser
|
ce7de6a3ad1293e3f968db0e8655e559e39db1a2
|
5b0a032446bdc239d9e2c15cedcf9b46128964ee
|
refs/heads/main
| 2021-05-16T02:44:29.222368 | 2020-02-06T23:07:40 | 2020-02-06T23:07:40 | 37,622,134 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 2,673 |
c
|
error.c
|
/*
* Copyright (c) Regents of The University of Michigan
* See COPYING.
*/
#include <inttypes.h>
#include <netinet/in.h>
#include <stdio.h>
#include <string.h>
#include <sys/param.h>
#include <sys/time.h>
#include "denser.h"
#include "internal.h"
struct dnsr_error {
int e_errno;
char *e_string;
};
static struct dnsr_error dnsr_error_txt[ DNSR_MAX_ERRNO + 2 ] = {
{DNSR_ERROR_NONE, "no error"}, {DNSR_ERROR_FORMAT, "format error"},
{DNSR_ERROR_SERVER, "server failure"},
{DNSR_ERROR_NAME, "domain name does not exist"},
{DNSR_ERROR_NOT_IMPLEMENTED, "query not supported"},
{DNSR_ERROR_REFUSED, "refused"}, {6, "reserved"}, {7, "reserved"},
{DNSR_ERROR_CONFIG, "config file"},
{DNSR_ERROR_NO_QUERY, "no query sent"}, {DNSR_ERROR_TIMEOUT, "timeout"},
{DNSR_ERROR_ID_WRONG, "wrong response ID"},
{DNSR_ERROR_NOT_RESPONSE, "no response"},
{DNSR_ERROR_NO_RECURSION, "recursion not available"},
{DNSR_ERROR_QUESTION_WRONG, "invalid question in result"},
{DNSR_ERROR_NO_ANSWER, "no answer"},
{DNSR_ERROR_TRUNCATION, "message truncated"},
{DNSR_ERROR_SYSTEM, "system error"},
{DNSR_ERROR_SIZELIMIT_EXCEEDED, "sizelimit exceeded"},
{DNSR_ERROR_NS_INVALID, "invalid name server"},
{DNSR_ERROR_NS_DEAD, "name server down"},
{DNSR_ERROR_TV, "invalid time value"},
{DNSR_ERROR_FD_SET, "wrong FD set"}, {DNSR_ERROR_PARSE, "parse failed"},
{DNSR_ERROR_STATE, "unknown state"}, {DNSR_ERROR_TYPE, "unknown type"},
{DNSR_ERROR_RCODE, "unknown rcode"},
{DNSR_ERROR_TOGGLE, "unknown toggle"},
{DNSR_ERROR_FLAG, "unknown flag"}, {DNSR_ERROR_CLASS, "unknown class"},
{DNSR_ERROR_Z, "Z code not zero"},
{DNSR_ERROR_CONNECTION_CLOSED, "connection closes"},
{DNSR_ERROR_UNKNOWN, "unknown"}};
int
dnsr_errno(DNSR *dnsr) {
return (dnsr->d_errno);
}
void
dnsr_errclear(DNSR *dnsr) {
dnsr->d_errno = DNSR_ERROR_NONE;
return;
}
char *
dnsr_err2string(int dnsr_errno) {
/* check if < 0 or > max, and then just return as offest */
if (dnsr_errno < 0 || dnsr_errno > DNSR_MAX_ERRNO) {
return (dnsr_error_txt[ DNSR_ERROR_UNKNOWN ].e_string);
} else {
return (dnsr_error_txt[ dnsr_errno ].e_string);
}
}
void
dnsr_perror(DNSR *dnsr, const char *s) {
if (dnsr != NULL) {
if (dnsr->d_errno == DNSR_ERROR_SYSTEM) {
perror(s);
} else {
fprintf(stderr, "%s: %s\n", s, dnsr_err2string(dnsr->d_errno));
}
} else {
fprintf(stderr, "%s: dnsr_perror: dnsr is NULL\n", s);
}
}
|
17f5923c20b87bdde982740e54ea1857e138d8ee
|
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
|
/source/linux/drivers/media/pci/ddbridge/extr_ddbridge-core.c_fmode_store.c
|
edd8d4fdb93212dff9f6f20a07f773c5fa1f3ed8
|
[] |
no_license
|
isabella232/AnghaBench
|
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
|
9a5f60cdc907a0475090eef45e5be43392c25132
|
refs/heads/master
| 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,206 |
c
|
extr_ddbridge-core.c_fmode_store.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_2__ TYPE_1__ ;
/* Type definitions */
struct TYPE_2__ {int* name; } ;
struct device_attribute {TYPE_1__ attr; } ;
struct device {int dummy; } ;
struct ddb {int /*<<< orphan*/ * link; } ;
typedef size_t ssize_t ;
/* Variables and functions */
size_t EINVAL ;
int /*<<< orphan*/ ddb_lnb_init_fmode (struct ddb*,int /*<<< orphan*/ *,unsigned int) ;
struct ddb* dev_get_drvdata (struct device*) ;
int sscanf (char const*,char*,unsigned int*) ;
__attribute__((used)) static ssize_t fmode_store(struct device *device, struct device_attribute *attr,
const char *buf, size_t count)
{
struct ddb *dev = dev_get_drvdata(device);
int num = attr->attr.name[5] - 0x30;
unsigned int val;
if (sscanf(buf, "%u\n", &val) != 1)
return -EINVAL;
if (val > 3)
return -EINVAL;
ddb_lnb_init_fmode(dev, &dev->link[num], val);
return count;
}
|
0c7e6b97cd1e19669fe2a9499ef76fef1ef9a9b3
|
fae4f1916006fe9d2e3c28bfa1eb18e5075fdf1a
|
/02_c/16_IO/01_file/binary_vs_text_file/01_text/06_read_text_file2.c
|
d37f481028338dc35e55cb15a44fd77f6e70af4d
|
[] |
no_license
|
RRejuan/utilities
|
ccae2e9ec70612488a06552b21fe0cd3d08b041d
|
890299913ab98b920ef10bf8585212c869dd3e9f
|
refs/heads/master
| 2023-03-06T16:08:25.803297 | 2021-02-20T02:57:07 | 2021-02-20T02:57:07 | null | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 355 |
c
|
06_read_text_file2.c
|
#include <stdio.h>
main(){
FILE *fp;
int car;
char nomeFile[20];
printf ("Quale file vuoi leggere ? ");
scanf("%s",nomeFile);
fp = fopen (nomeFile, "rt");
if (fp != NULL){
do{
car=getc(fp);
putchar(car);
}while (car!=EOF);
fclose(fp);
}else{
printf ("errore di apertura del file in lettura");
}
}
|
b935944144f5294fc0b4309abd14b559809dc50e
|
4db165b7859b4db00b3a6bbe174ad286f9b23813
|
/C tasks/A7P2/A7P2/main.c
|
370dda7d85f9d406255a918c63ed55a4edcd6026
|
[] |
no_license
|
osobiehl/C-and-C-
|
1461d947fe5375cf05d546699e76b5deb9fc20b9
|
69a934a62052ca8541339eaa5092a697e8205c87
|
refs/heads/master
| 2022-12-16T11:33:15.357872 | 2020-09-10T14:44:59 | 2020-09-10T14:44:59 | 294,438,857 | 0 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 3,941 |
c
|
main.c
|
/*
CH-230-A
a7 p2.[c or cpp or h]
Jose Biehl
jbiehl@jacobs-university.de
*/
#include <stdlib.h>
#include <stdio.h>
struct biteszadusto{
char word;
struct biteszadusto* next;
struct biteszadusto* prev;
};
struct biteszadusto* push_front(struct biteszadusto* list, char value){
struct biteszadusto * newel ;
newel = (struct biteszadusto *) malloc ( sizeof ( struct biteszadusto ));
if ( newel == NULL ) {
printf (" Error allocating memory \n");
return list ;
}
newel->word = value;
if (list != NULL) list->prev = newel;
newel->next = list;
newel->prev = NULL;
return newel;
}
struct biteszadusto* delete(struct biteszadusto* list, char value){
struct biteszadusto* navigator = list;
struct biteszadusto* cursor1 = list;
struct biteszadusto* cursor2 = list;
int count = 0;
while (navigator != NULL){
if (navigator->word == value){
count += 1;
cursor1 = navigator;
//make last item point to item after it
//
if (navigator->prev != NULL && navigator->next != NULL){
cursor2 = cursor1->prev;
cursor2->next = cursor1->next;
//make item after match point to item behind match
cursor2 = cursor1->next;
cursor2->prev = cursor1->prev;
free(cursor1);
}
//corner case, we remove a single item
else if (navigator->prev == NULL && navigator->next ==NULL){
return NULL;
}
else if(navigator->prev == NULL){
cursor2 =cursor1->next;
cursor2->prev = NULL;
free(cursor1);
//the first element was freed, so we return ptr to elem 2
list = cursor2;
}
else if(navigator->next == NULL){
cursor2 =cursor1->prev;
cursor2->next = NULL;
free(cursor1);
}
}
navigator = navigator->next;
}
if (count == 0) printf("The element is not in the list!\n");
return list;
}
void print_list (struct biteszadusto* my_list ) {
struct biteszadusto * p ;
// printf("starting the printing\n");
for ( p = my_list ; p; p = p -> next ) {
printf ("%c ", p -> word ) ;
}
printf("\n");
}
//prints ll backwards
void print_backwards(struct biteszadusto* my_list){
struct biteszadusto* p;
//corner case if ll is null
if (my_list == NULL){
printf("\n");
return;
}
//stop when next is NULL so we can iterate backwards
for (p = my_list; p->next != NULL; p = p->next){} //reach end
for(; p!= NULL; p = p->prev){
printf ("%c ", p -> word ) ;
}
printf("\n");
}
void dispose_list ( struct biteszadusto * my_list ) {
struct biteszadusto * nextelem ;
while ( my_list != NULL ) {
nextelem = my_list -> next ;
free ( my_list ) ;
my_list = nextelem ;
}
}
int main(int argc, const char * argv[]) {
int x;
char c;
int pos;
struct biteszadusto* ptr = NULL;
int cont = 1;
while (cont == 1){
scanf(" %d", &x);
//self-explanatory
switch(x){
case 1:
scanf(" %c", &c);
ptr = push_front(ptr, c);
break;
case 2:
scanf(" %c", &c);
ptr = delete(ptr, c);
break;
case 3:
print_list(ptr);
break;
case 4:
print_backwards(ptr);
break;
case 5:
dispose_list(ptr);
cont = 0;
break;
default:
printf("not a valid command\n");
break;
}
}
return 0;
}
|
9daebc0c1328b1af1b8feae2d99798b6cf9d2d35
|
c80df071e282b7c478cea78f9a4b9ef5f194bf6d
|
/libft/ft_strclr.c
|
ce47c405ca7c52ca86716908a05ebc202ea154be
|
[] |
no_license
|
dmaznytskyi/UNIT_Factory---ft_printf
|
4ea25d84ab0d5c66d007c04a616036bf8911c409
|
f727acab2987987cd97d97a1911d688b3bb04aa9
|
refs/heads/master
| 2020-12-02T11:15:17.444778 | 2017-09-04T12:10:33 | 2017-09-04T12:10:33 | 96,620,794 | 0 | 1 | null | null | null | null |
UTF-8
|
C
| false | false | 1,012 |
c
|
ft_strclr.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strclr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dmaznyts <dmaznyts@student.unit.ua> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/29 14:36:17 by dmaznyts #+# #+# */
/* Updated: 2016/11/29 14:36:19 by dmaznyts ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strclr(char *s)
{
size_t i;
i = -1;
if (!s)
return ;
while (s[++i])
s[i] = '\0';
}
|
ac90887d3b6c5616d67a11e662cd88821eef16ed
|
62baaa61ecfbbed49b63a5be7844bebd4e889b3a
|
/src/ft_puts/ft_putnbr.c
|
2f73bedc71b294e3ddbbdcac48eff10b90216d8c
|
[] |
no_license
|
kalak-io/libft-lite
|
4f34d86fc4a58cdd16a9ab026f252cedc87430f6
|
a95e3ea56a4d4351c67a0849cfd414112234f34e
|
refs/heads/master
| 2021-03-27T10:16:42.273687 | 2017-02-25T19:09:56 | 2017-02-25T19:09:56 | 82,056,369 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 961 |
c
|
ft_putnbr.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cjacquem <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/24 14:27:58 by cjacquem #+# #+# */
/* Updated: 2017/02/15 13:43:16 by cjacquem ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_puts.h"
void ft_putnbr(int n)
{
ft_putnbr_fd(n, 1);
}
|
f0e100d84d8d87b86648b3a020c8feca12a4f9cc
|
804a6c14aadf514c8b19241422be837928ca0bd5
|
/ft_itoa.c
|
725bc5ec358d60ec5d1d3fa8b2463da309981803
|
[] |
no_license
|
julielesage/42-Libft
|
b1355fb55cd16f033e731e2904d8db7277718869
|
878d4e2e391b424393d3c903687c6941eca0d043
|
refs/heads/master
| 2020-09-08T08:55:40.836376 | 2020-07-01T15:25:37 | 2020-07-01T15:25:37 | 221,085,258 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 1,929 |
c
|
ft_itoa.c
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_itoa.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jlesage <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/09 23:14:59 by jlesage #+# #+# */
/* Updated: 2019/11/25 19:49:47 by jlesage ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
/*Function name ft_itoa
Prototype char *ft_itoa(int n);
Paramètres #1. l’integer à convertir.
Valeur de retour La chaine de caractères représentant l’integer. NULL si l’allocation échoue. Fonctions externes autorisées malloc Description Alloue (avec malloc(3)) et retourne une chaine de caractères représentant l’integer reçu en argument. Les nombres négatifs doivent être gérés. */
static int ft_nb(unsigned int n)
{
int count;
count = 0;
if (n >= 10)
{
n = n / 10;
count = ft_nb(n);
}
count++;
return (count);
}
char *ft_itoa(int n)
{
int a;
int negative;
char *number;
long nb;
a = 0;
negative = (n < 0) ? 1 : 0;
nb = n;
nb = (negative == 1) ? -nb : nb;
if (!(number = malloc(sizeof(char) * (ft_nb(nb)) + negative + 1)))
return (NULL);
if (negative == 1)
number[0] = '-';
a = (ft_nb(nb)) + negative;
number[a] = '\0';
if (nb == 0)
number[0] = '0';
while (nb > 0)
{
number[--a] = (nb % 10) + 48;
nb = nb / 10;
}
return (number);
}
|
44c6c458fabdaae82e2252eba18e88cc0d3e4bd3
|
9cc7e37347c705fe078f4ae197485c426e07caa4
|
/assembler/symbols.h
|
ce2f0e8a5b4222198dd6064923797d94a3c508af
|
[] |
no_license
|
bakamoro/c-course
|
83ac51d6bb1e9c4751c3b08940571c1b10e50f00
|
987bb7ba1f8832004c52f4f135665939350928b6
|
refs/heads/master
| 2023-07-04T23:10:59.414604 | 2021-08-19T08:13:43 | 2021-08-19T08:14:30 | 352,967,366 | 0 | 0 | null | 2021-08-16T10:18:34 | 2021-03-30T10:53:42 |
C
|
UTF-8
|
C
| false | false | 1,333 |
h
|
symbols.h
|
#pragma once
#include "globals.h"
typedef struct nodeSymbol {
char name[LABEL_MAX_LEN];
int memValue;
char attributes[2][7];
struct nodeSymbol* next;
}nodeSymbol;
/*
* adds a new Symbol to the Symbol table
* @param p_head pointer to the head of the symbol table
* @param name is the new symbol name
* @param memValue is the Address of the new symbol
* @param attribute is the attribute of the new symbol
*/
void addSymbolNode(nodeSymbol** p_head, char* name, int memValue, char* attribute);
/*
* Searchers if a symbol is exist in the symbol table
* @param p_head is a pointer to the head of the table
* @param name is the name of the symbol that needs to be searched
*/
int searchSymbol(nodeSymbol** p_head, char* name);
/*
* Returns the addresss of a certain symbol
* @param p_head is pointer to the head of the table
* @param name is the name of the symbol who's address needs to be returned
*/
int returnAddress(nodeSymbol** p_head, char* name);
/*
* adds a attribute to symbol if needed (extern / entry)
* @param p_head is pointer to the head of the table
* @param attribute is the attribute added attribute
*/
void addAttribute(nodeSymbol** p_head, char* name, char* attribute);
void updateAddress(nodeSymbol** p_head , int* ICF);
|
b72642489578ecb81f6503b2a69e37b5962a9114
|
a56ba36bed08f95832982387937950a868b5de31
|
/ghidra/Lab 2 - First Full Binary/src/lab2.c
|
23989dddecb5a50ef93dd75f30bb73fbda5f3504
|
[] |
no_license
|
cjzufelt/DCDarknet2021
|
bfd685626a876049212eac05031ace6d72f1252b
|
1f8895d6ffafb17be2590e3fafe2d2c8eae05ddc
|
refs/heads/master
| 2023-06-22T14:47:07.181634 | 2021-07-21T04:20:18 | 2021-07-21T04:20:18 | 368,387,764 | 0 | 0 | null | null | null | null |
UTF-8
|
C
| false | false | 223 |
c
|
lab2.c
|
#include <stdlib.h>
#include <string.h>
int main() {
char suffix[] = "Pw$T9$%u";
char prefix[] = "zut9vkCL";
char* flag = malloc(17);
strcat(flag, prefix);
memcpy(flag + 8, suffix, 9);
return 0;
}
|
0b564dbaa736969032ca7f1bf81d9ab2e2511bf6
|
7a052d5422179870af5c25f6172fe8271fbbc960
|
/javacall/implementation/stubs/midp/input.c
|
ca5b720a0bcec1bc2ba1917ed9b5e0b7713e16f6
|
[] |
no_license
|
magicus/phoneME
|
b74bf54f750d7cc1f90e0b5032508cd8bf36f56f
|
a0ec242bb01bff38d2a7f4550163aafcde9253d6
|
refs/heads/master
| 2023-09-05T09:37:12.000119 | 2021-11-24T20:56:56 | 2021-11-24T20:56:56 | 429,628,167 | 17 | 9 | null | 2021-11-24T20:56:57 | 2021-11-19T01:07:03 |
Java
|
UTF-8
|
C
| false | false | 8,668 |
c
|
input.c
|
/*
*
* Copyright 1990-2007 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
* 2 only, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License version 2 for more details (a copy is
* included at /legal/license.txt).
*
* You should have received a copy of the GNU General Public License
* version 2 along with this work; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 or visit www.sun.com if you need additional
* information or have any questions.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "javacall_input.h"
/**
* Returns currently set input locale.
* The input locale can be made available to MIDlets by calling
* java.lang.System.getProperty("microedition.locale").
*
* Must consist of the language and MAY optionally also contain
* the country code, and variant separated by "-" (Unicode U+002D).
* For example, "fr-FR" or "en-US."
* (Note: the MIDP 1.0 specification used the HTTP formatting of language
* tags as defined in RFC3066 Tags for the Identification of Languages.
* This is different from the J2SE definition for Locale printed strings
* where fields are separated by "_" (Unicode U+005F). )
*
*
* The language codes MUST be the lower-case, two-letter codes as defined
* by ISO-639:
* http://ftp.ics.uci.edu/pub/ietf/http/related/iso639.txt
*
*
* The country code MUST be the upper-case, two-letter codes as defined by
* ISO-3166:
* http://userpage.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
*
* @param locale a pointer to string that should be filled with null-terminated
* string describing the currently set locale
* @return <tt>JAVACALL_OK</tt> on success, or
* <tt>JAVACALL_FAIL</tt> if locale is not supported
*/
javacall_result javacall_input_get_locale(/*OUT*/ char locale[6]) {
//set to "en-US"
locale[0]='e';
locale[1]='n';
locale[2]='-';
locale[3]='U';
locale[4]='S';
locale[5]='\0';
return JAVACALL_OK;
}
/**
* Launches a native text editor enabling editing of native locale languages
* The text editor may possibly display initial text.
*
*
* Handling of "VM-Pause" while a native textbox is displayed:
* i. In asynchronous case:
* Prior to sending a VM-Pause event, the platform is responsible for
* (1) closing the textbox,
* (2) sending a "cancel" event
*
*
* ii. In synchronous case:
* Prior to sending a VM-Pause event, the function should return immediately
* with return code JAVACALL_TEXTFIELD_CANCEL.
*
* @param textBuffer a pointer to a global input text parameter
* that holds the text string in unicode characters (UTF-16).
* When launching, the native editor should use the existing text in the
* buffer as initial text (the first textBufferLength charachters), and should
* update the buffer when the native editor is quit.
* @param textBufferLength a pointer a global parameter that will hold the
* current length of text, in unicode charachters.
* The native editor should update this value upon editor
* quitting to the actual size of the input text.
* @param textBufferMaxLength maximum length of input text. the user should not
* be allowed to exceed it.
* @param caretPos a pointer to a global variable that holds the current
* position of the caret in the text editor,in unicode charachters.
* The native editor should update this value upon quitting the editor
* to the new caret location.
* @param title a pointer to the title of the text editor, or null if a title
* should not be displayed
* @param titleLength length of title, in unicode charachters, or 0 if there is
* no title
* @param inputMode implementation of this feature is optional in MIDP2.0 specification.
* a pointer to a name of a Unicode character subset, which identifies a
* particular input mode which should be used when the text editor is launched.
* the input mode is not restrictive, and the user is allowed to change it
* during editing. For example, if the current constraint is
* JAVACALL_TEXTFIELD_CONSTRAINT_ANY, and the requested input mode is "JAVACALL_TEXTFIELD_UPPERCASE_LATIN",
* then the initial input mode is set to allow entry of uppercase Latin
* characters. the user will be able to enter other characters by switching
* the input mode to allow entry of numerals or lowercase Latin letters.
* for more details, reffer to MIDP2.0 specification.
* @param inputModeLength length of inputMode, in unicode charachters, or 0 if
* there is no inputMode
* @param constraint Input constraint, as defined in the <i>MIDP 2.0 Specification</i>
* possible values are:
* JAVACALL_TEXTFIELD_CONSTRAINT_ANY
* JAVACALL_TEXTFIELD_CONSTRAINT_EMAILADDR
* JAVACALL_TEXTFIELD_CONSTRAINT_NUMERIC
* JAVACALL_TEXTFIELD_CONSTRAINT_PHONENUMBER
* JAVACALL_TEXTFIELD_CONSTRAINT_URL
* JAVACALL_TEXTFIELD_CONSTRAINT_DECIMAL
* @param modifiers Input modifiers, as defined in the <i>MIDP 2.0 Specification</i>
* a bit-wise OR of zero or more of the following modifiers can be set:
* JAVACALL_TEXTFIELD_MODIFIER_PASSWORD
* JAVACALL_TEXTFIELD_MODIFIER_UNEDITABLE
* JAVACALL_TEXTFIELD_MODIFIER_SENSITIVE
* JAVACALL_TEXTFIELD_MODIFIER_NON_PREDICTIVE
* JAVACALL_TEXTFIELD_MODIFIER_INITIAL_CAPS_WORD
* JAVACALL_TEXTFIELD_MODIFIER_INITIAL_CAPS_SENTENCE
* @param keyCode the first key that the user pressed that should be inserted to the text box
*
* @return should return one of the following statuses:
* JAVACALL_TEXTFIELD_COMMIT if the function is synchronous and the user pressed
* "ok" to commit the text and quit the editor
* JAVACALL_TEXTFIELD_CANCEL if the function is synchronous and the user pressed
* "cancel" to cancel the editing and quit the editor
* JAVACALL_TEXTFIELD_ERROR if the operation failed, or if the native editor
* could not be launched
* JAVACALL_TEXTFIELD_WOULDBLOCK if the function is asynchronous, an
* event/notification will be sent upon editor quitting. when the
* evnt/notofocation is later sent, it should contain info about the editor
* termination manner, can be one of:JAVACALL_TEXTFIELD_COMMIT, JAVACALL_TEXTFIELD_CANCEL,
* or JAVACALL_TEXTFIELD_ERROR, as descibed above.
*/
javacall_textfield_status javacall_input_textfield_launch(
/*IN-OUT*/javacall_utf16* textBuffer,
/*IN-OUT*/int* textBufferLength,
/*IN*/ int textBufferMaxLength,
/*IN-OUT*/int* caretPos,
/*IN*/ const javacall_utf16* title,
/*IN*/ int titleLength,
/*IN*/ const javacall_utf16* inputMode,
/*IN*/ int inputModeLength,
/*IN*/ javacall_textfield_constraint constraint,
/*IN*/ int modifiers,
/*IN*/ int keyCode) {
return JAVACALL_TEXTFIELD_ERROR;
}
/**
* Invoke the device phonebook application.
* Display to the user a list of all phonebook entries
*
* @retval <tt>JAVACALL_WOULD_BLOCK</tt> in case the phonebook will be invoked
* @retval <tt>JAVACALL_FAIL</tt> in case the phonebook cannot be invoked
*/
javacall_result /* OPTIONAL */ javacall_textfield_display_phonebook() {
return JAVACALL_FAIL;
}
/**
* Initiate a voice call to the given phone number.
* Used to initiate a voice call from a TextField object containing a
* PHONENUMBER constraint, by pressing the TALK key when the field is focused.
* The platform must pause the VM before initiating the phone call, and resume
* the VM after the call.
*
* This function call returns immediately.
* The phone number string must be copied because it will be freed after this
* function call returns.
*
* @param phoneNumber the phone number to call
* @retval <tt>JAVACALL_OK</tt> if a phone call can be made
* @retval <tt>JAVACALL_FAIL</tt> if a phone call cannot be made
* or some other error occured
*/
javacall_result /* OPTIONAL */
javacall_textfield_initiate_voicecall(const char* phoneNumber) {
return JAVACALL_FAIL;
}
#ifdef __cplusplus
}
#endif
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.