file
stringlengths 18
26
| data
stringlengths 2
1.05M
|
---|---|
the_stack_data/192331654.c | /* 1074 */
#include <sys/param.h>
#include <stdio.h>
int main(int argc, char **argv)
{
int tri[][15] = {
{75},
{95, 64},
{17, 47, 82},
{18, 35, 87, 10},
{20, 4, 82, 47, 65},
{19, 1, 23, 75, 3, 34},
{88, 2, 77, 73, 7, 63, 67},
{99, 65, 4, 28, 6, 16, 70, 92},
{41, 41, 26, 56, 83, 40, 80, 70, 33},
{41, 48, 72, 33, 47, 32, 37, 16, 94, 29},
{53, 71, 44, 65, 25, 43, 91, 52, 97, 51, 14},
{70, 11, 33, 28, 77, 73, 17, 78, 39, 68, 17, 57},
{91, 71, 52, 38, 17, 14, 91, 43, 58, 50, 27, 29, 48},
{63, 66, 4, 68, 89, 53, 67, 30, 73, 16, 69, 87, 40, 31},
{ 4, 62, 98, 27, 23, 9, 70, 98, 73, 93, 38, 53, 60, 4, 23},
};
int nrows = 15;
int i, j;
for (i = 1; i < nrows; i++)
for (j = 0; j < nrows - i; j++)
tri[nrows - i - 1][j] +=
MAX(tri[nrows - i][j], tri[nrows-i][j + 1]);
printf("%d\n", tri[0][0]);
return 0;
}
|
the_stack_data/792848.c | #include <stdio.h>
int main()
{
float a;
float b;
a = 1e13;
b = 1e13;
printf("%e %e\n", (a-b)+1234567, a-(b-1234567));
}
|
the_stack_data/89200440.c | /* $NetBSD: version.c,v 1.2 2001/01/16 02:34:34 cgd Exp $ */
char version[] = "1.4a5";
|
the_stack_data/3980.c | #ifdef USE_SSL
/*
* The modifications to support SSLeay were done by Tim Hudson
* [email protected]
*
* You can do whatever you like with these patches except pretend that
* you wrote them.
*
* Email [email protected] to get instructions on how to
* join the mailing list that discusses SSLeay and also these patches.
*
*/
/* ssl.c - interface to Eric Young's SSLeay library ([email protected])
*
* see LICENSE for details
*
* xx-Aug-96 tjh reworked the client certificate stuff into a form
* ................ where it is useful with SSLeay-0.6.x which changed
* ................ lots of things in the handling of the verify function
* 01-Jul-95 tjh merged patches from Steven Schoch
* ................ <[email protected]> that add in the certsok
* ................ option for using signed certificates rather than
* ................ explicit passwords for authentication (modified a little
* ................ to add in an option that controls this feature)
* 26-Apr-95 tjh original coding
*
* [email protected]
* [email protected]
*
* Tim Hudson
* Mincom Pty Ltd
* Australia
* +61 7 3303 3333
*
*/
#include <sys/types.h>
#include "arpa/telnet.h"
#include <stdio.h>
#ifdef __STDC__
#include <stdlib.h>
#endif
#ifdef NO_STRING_H
#include <strings.h>
#else
#include <string.h>
#endif
#include <unistd.h>
#include <openssl/err.h>
#include "auth.h"
#include "misc.h"
#include "crypto.h"
#if SSLEAY_VERSION_NUMBER >= 0x0800
#define SSLEAY8
#endif
#ifdef SSLEAY8
#define ONELINE_NAME(X) X509_NAME_oneline(X,NULL,0)
#else
#define ONELINE_NAME(X) X509_NAME_oneline(X)
#endif
#ifdef SSLEAY8
#include "bio.h"
#endif
#include "buffer.h"
#include "x509.h"
#include "ssl.h"
/* quick translation ... */
#ifndef VERIFY_ERR_UNABLE_TO_GET_ISSUER
#define VERIFY_ERR_UNABLE_TO_GET_ISSUER X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT
#endif
#ifndef VERIFY_ERR_DEPTH_ZERO_SELF_SIGNED_CERT
#define VERIFY_ERR_DEPTH_ZERO_SELF_SIGNED_CERT X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT
#endif
#ifndef VERIFY_OK
#define VERIFY_OK X509_V_OK
#endif
#ifndef VERIFY_ERR_UNABLE_TO_GET_ISSUER
#define VERIFY_ERR_UNABLE_TO_GET_ISSUER X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT
#endif
/* need to think about this mapping in terms of what the real
* equivalent of this actually is
*/
#ifndef VERIFY_ROOT_OK
#define VERIFY_ROOT_OK VERIFY_OK
#endif
extern int netflush(void);
extern int auth_debug_mode;
static int auth_ssl_valid = 0;
static char *auth_ssl_name = 0; /* this holds the oneline name */
extern int ssl_only_flag;
extern int ssl_debug_flag;
extern int ssl_active_flag;
extern int ssl_secure_flag;
extern int ssl_verify_flag;
extern int ssl_certsok_flag; /* if this is set then we enable the
* /etc/ssl.users stuff for allowing
* access - just to make sure we don't
* switch it on unless we really want it
*/
extern int ssl_cert_required; /* client certificate is mandatory! */
extern int ssl_verbose_flag;
extern int ssl_disabled_flag;
int server_verify_callback();
int client_verify_callback();
extern SSL *ssl_con;
#include "buffer.h"
BIO *bio_err=NULL;
int auth_failed=0;
/* compile this set to 1 to negotiate SSL but not actually start it */
static int ssl_dummy_flag=0;
static unsigned char str_data[1024] = { IAC, SB, TELOPT_AUTHENTICATION, 0,
AUTHTYPE_SSL, };
#define AUTH_SSL_START 1
#define AUTH_SSL_ACCEPT 2
#define AUTH_SSL_REJECT 3
/* this is called by both the ssl.c auth connect and the mainline
* telnet connect if we are talking straight ssl with no telnet
* protocol --tjh
*/
void
display_connect_details(ssl_con,verbose)
SSL *ssl_con;
int verbose;
{
X509 *peer;
char *p;
if (ssl_active_flag && verbose) {
#ifdef SSLEAY8
int i;
#endif /* SSLEAY8 */
fprintf(stderr,"[SSL cipher=");
#ifdef SSLEAY8
/* grab the full list of ciphers */
i=0;
while((p=(char *)SSL_get_cipher_list(ssl_con,i++))!=NULL) {
if (i>1) {
fprintf(stderr,":");
}
fprintf(stderr, "%s", p);
}
if(i==1) {
fprintf(stderr, "<NULL>");
}
#else /* !SSLEAY8 */
p=SSL_get_cipher(ssl_con);
if(p) {
fprintf(stderr, "%s", p);
} else {
/* the cipher list *can* be NULL ... useless but it happens! */
fprintf(stderr, "<NULL>");
}
#endif /* !SSLEAY8 */
fprintf(stderr,"]\r\n");
peer=SSL_get_peer_certificate(ssl_con);
if (peer != NULL) {
char *str;
str=ONELINE_NAME(X509_get_subject_name(peer));
fprintf(stderr,"[SSL subject=%s]\r\n",str);
free(str);
str=ONELINE_NAME(X509_get_issuer_name(peer));
fprintf(stderr,"[SSL issuer=%s]\r\n",str);
free(str);
X509_free(peer);
}
fflush(stderr);
}
}
void
fprintd(fp, data, cnt)
FILE *fp;
unsigned char *data;
int cnt;
{
if (cnt > 16)
cnt = 16;
while (cnt-- > 0) {
fprintf(fp," %02x", *data);
++data;
}
}
/* support routine to send out authentication message */
static int Data(ap, type, d, c)
Authenticator *ap;
int type;
void *d;
int c;
{
unsigned char *p = str_data + 4;
unsigned char *cd = (unsigned char *)d;
if (c == -1)
c = strlen((char *)cd);
if (auth_debug_mode) {
fprintf(stderr,"%s:%d: [%d] (%d)",
str_data[3] == TELQUAL_IS ? ">>>IS" : ">>>REPLY",
str_data[3],
type, c);
fprintd(stderr,d, c);
fprintf(stderr,"\r\n");
}
*p++ = ap->type;
*p++ = ap->way;
*p++ = type;
while (c-- > 0) {
if ((*p++ = *cd++) == IAC)
*p++ = IAC;
}
*p++ = IAC;
*p++ = SE;
if (str_data[3] == TELQUAL_IS)
printsub('>', &str_data[2], p - (&str_data[2]));
return(writenet((char *) str_data, p - str_data));
}
int auth_ssl_init(ap, server)
Authenticator *ap;
int server;
{
/* ssl only option skips all of this muck ... */
if (ssl_only_flag || ssl_disabled_flag) {
return 0;
}
SSL_load_error_strings();
/* SSLeay-0.6 introduces the BIO stuff ... which we need for
* all the error reporting things!
*/
if (bio_err == NULL)
if ((bio_err=BIO_new(BIO_s_file())) != NULL)
BIO_set_fp(bio_err,stderr,BIO_NOCLOSE);
if (server)
str_data[3] = TELQUAL_REPLY;
else
str_data[3] = TELQUAL_IS;
return(1);
}
/* client received a go-ahead for ssl */
int auth_ssl_send(ap)
Authenticator *ap;
{
fprintf(stderr,"[SSL - attempting to switch on SSL]\r\n");
fflush(stderr);
if (!Data(ap, AUTH_SSL_START, NULL, 0 )) {
if (auth_debug_mode)
fprintf(stderr,"Not enough room for start data\r\n");
return(0);
}
return(1);
}
/* server received an IS -- could (only) be SSL START */
void auth_ssl_is(ap, data, cnt)
Authenticator *ap;
unsigned char *data;
int cnt;
{
/* int valid; */
if (cnt-- < 1)
return;
switch (*data++) {
case AUTH_SSL_START:
Data(ap, AUTH_SSL_ACCEPT, (void *)0, 0);
netflush();
auth_ssl_valid = 1;
auth_finished(ap, AUTH_VALID);
/* server starts the SSL stuff now ... */
if (ssl_dummy_flag)
return;
if (!ssl_only_flag) {
/* only want/need verify if doing certsok stuff */
if (ssl_certsok_flag||ssl_cert_required)
SSL_set_verify(ssl_con,ssl_verify_flag,server_verify_callback);
if (SSL_accept(ssl_con) <= 0) {
char *res, *p;
/*
syslog(LOG_WARNING, "ssl_accept error");
*/
res = ERR_error_string(ERR_peek_last_error(), NULL);
p = strrchr(res, ':');
fprintf(stderr,"[SSL - SSL_accept error: %s]\r\n",
p ? &p[1] : res);
fflush(stderr);
sleep(5);
SSL_free(ssl_con);
auth_finished(ap, AUTH_REJECT);
_exit(1);
} else {
ssl_active_flag=1;
}
/* now check to see that we got exactly what we
* wanted from the caller ... if a certificate is
* required then we make 100% sure that we were
* given on during the handshake (as it is an optional
* part of SSL)
*/
if ( ssl_cert_required ) {
if (SSL_get_peer_certificate(ssl_con)==NULL) {
if (ssl_debug_flag) {
fprintf(stderr,"[SSL - peer check failed]\r\n");
fflush(stderr);
}
/* LOGGING REQUIRED HERE! */
SSL_free(ssl_con);
auth_finished(ap, AUTH_REJECT);
_exit(1);
}
}
}
break;
default:
fprintf(stderr,"[SSL - failed to switch on SSL]\r\n");
fflush(stderr);
if (auth_debug_mode) {
fprintf(stderr,"Unknown SSL option %d\r\n", data[-1]);
fprintf(stderr,"[SSL - negotiation failed]\r\n");
}
Data(ap, AUTH_SSL_REJECT, (void *)0, 0);
auth_ssl_valid = 0;
auth_finished(ap, AUTH_REJECT);
break;
}
}
/* client received REPLY -- could be SSL ACCEPT or REJECT */
void auth_ssl_reply(ap, data, cnt)
Authenticator *ap;
unsigned char *data;
int cnt;
{
/* int i; */
int status;
if (cnt-- < 1)
return;
switch (*data++) {
case AUTH_SSL_ACCEPT:
if (auth_debug_mode)
fprintf(stderr,"SSL ACCEPT\r\n");
fprintf(stderr,"[SSL - handshake starting]\r\n");
auth_finished(ap, AUTH_VALID);
if (ssl_dummy_flag) {
fprintf(stderr,"[SSL - Dummy Connected]\r\n");
fflush(stderr);
return;
}
/* right ... now we drop into the SSL library */
if (!ssl_only_flag) {
SSL_set_verify(ssl_con,ssl_verify_flag,
client_verify_callback);
if ((status = SSL_connect(ssl_con)) <= 0) {
char *res, *p;
auth_finished(0,AUTH_REJECT);
res = ERR_error_string(ERR_peek_last_error(), NULL);
p = strrchr(res, ':');
fprintf(stderr,"SSL: %s\n", p ? &p[1] : res);
fprintf(stderr,"telnet: Unable to ssl_connect to remote host\n");
fflush(stderr);
auth_failed=1;
return;
} else {
fprintf(stderr,"[SSL - OK]\r\n");
fflush(stderr);
ssl_active_flag=1;
display_connect_details(ssl_con,ssl_debug_flag);
}
}
/* this is handy/required? */
/*
netflush();
*/
break;
case AUTH_SSL_REJECT:
if (auth_debug_mode)
fprintf(stderr,"SSL REJECT\r\n");
fprintf(stderr,"[SSL - failed to switch on SSL]\r\n");
fprintf(stderr,"Trying plaintext login:\r\n");
fflush(stderr);
auth_finished(0,AUTH_REJECT);
break;
default:
if (auth_debug_mode)
fprintf(stderr,"Unknown SSL option %d\r\n", data[-1]);
return;
}
}
int auth_ssl_status(ap, name, level)
Authenticator *ap;
char *name;
int level;
{
FILE *user_fp;
char buf[2048];
if (level < AUTH_USER)
return(level);
/*
* Look our name up in /etc/ssl.users.
* The format of this file is lines of this form:
* user1,user2:/C=US/.....
* where user1 and user2 are usernames
*/
if (ssl_certsok_flag) {
user_fp = fopen("/etc/ssl.users", "r");
if (!auth_ssl_name || !user_fp || !UserNameRequested) {
/* If we haven't received a certificate, then don't
* return AUTH_VALID.
*/
if (UserNameRequested)
strcpy(name, UserNameRequested);
/* be tidy ... */
if (user_fp)
fclose(user_fp);
return AUTH_USER;
}
while (fgets(buf, sizeof buf, user_fp)) {
char *cp;
char *n;
/* allow for comments in the file ... always nice
* to be able to add a little novel in files and
* also disable entries easily --tjh
*/
if (buf[0]=='#')
continue;
if ((cp = strchr(buf, '\n')))
*cp = '\0';
cp = strchr(buf, ':');
if (!cp)
continue;
*cp++ = '\0';
if (strcasecmp(cp, auth_ssl_name) == 0) {
n = buf;
while (n) {
cp = strchr(n, ',');
if (cp)
*cp++ = '\0';
if (UserNameRequested &&
!strcmp(UserNameRequested, n)) {
strcpy(name, n);
fclose(user_fp);
return(AUTH_VALID);
}
n = cp;
}
}
}
fclose(user_fp);
return(AUTH_USER);
} else {
return(AUTH_USER);
}
}
#define BUMP(buf, len) while (*(buf)) {++(buf), --(len);}
#define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);}
void auth_ssl_printsub(data, cnt, buf, buflen)
unsigned char *data, *buf;
int cnt, buflen;
{
char lbuf[32];
register int i;
buf[buflen-1] = '\0'; /* make sure its NULL terminated */
buflen -= 1;
switch(data[3]) {
case AUTH_SSL_START:
strncpy((char *)buf, " START ", buflen);
goto common;
case AUTH_SSL_REJECT: /* Rejected (reason might follow) */
strncpy((char *)buf, " REJECT ", buflen);
goto common;
case AUTH_SSL_ACCEPT: /* Accepted (name might follow) */
strncpy((char *)buf, " ACCEPT ", buflen);
common:
BUMP(buf, buflen);
if (cnt <= 4)
break;
ADDC(buf, buflen, '"');
for (i = 4; i < cnt; i++)
ADDC(buf, buflen, data[i]);
ADDC(buf, buflen, '"');
ADDC(buf, buflen, '\0');
break;
default:
sprintf(lbuf, " %d (unknown)", data[3]);
strncpy((char *)buf, lbuf, buflen);
/* common2: */
BUMP(buf, buflen);
for (i = 4; i < cnt; i++) {
sprintf(lbuf, " %d", data[i]);
strncpy((char *)buf, lbuf, buflen);
BUMP(buf, buflen);
}
break;
}
}
int
#ifdef SSLEAY8
server_verify_callback(ok, ctx)
int ok;
X509_STORE_CTX *ctx;
#else /* !SSLEAY8 */
server_verify_callback(ok, xs, xi, depth, error)
int ok;
char *xs, *xi;
int depth, error;
#endif /* SSLEAY8 */
{
static char *saved_subject=NULL;
/* X509 *peer; */
char *subject, *issuer;
#ifdef SSLEAY8
int depth,error;
char *xs;
depth=ctx->error_depth;
error=ctx->error;
xs=(char *)X509_STORE_CTX_get_current_cert(ctx);
#endif /* SSLEAY8 */
#ifdef LOCAL_DEBUG
if (ssl_debug_flag) {
fprintf(stderr,"ssl:server_verify_callback:depth=%d ok=%d err=%d-%s\n",
depth,ok,error,X509_cert_verify_error_string(error));
fflush(stderr);
}
#endif /* LOCAL_DEBUG */
subject=issuer=NULL;
/* first thing is to have a meaningful name for the current
* certificate that is being verified ... and if we cannot
* determine that then something is seriously wrong!
*/
subject=(char *)ONELINE_NAME(X509_get_subject_name((X509 *)xs));
if (subject==NULL) {
if (ssl_debug_flag)
ERR_print_errors(bio_err);
ok=0;
goto return_time;
}
issuer=(char *)ONELINE_NAME(X509_get_issuer_name((X509 *)xs));
if (issuer==NULL) {
if (ssl_debug_flag)
ERR_print_errors(bio_err);
ok=0;
goto return_time;
}
/* save the name of the first level subject as this is
* the name we want to use to match for a username in
* /etc/ssl.users later ... but *only* if we pass the
* full verification of the certificate chain
*/
if (depth==0) {
/* clear things */
if (saved_subject!=NULL) {
free(saved_subject);
saved_subject=NULL;
}
if (auth_ssl_name!=NULL) {
free(auth_ssl_name);
auth_ssl_name=NULL;
}
/* save the name if at least the first level is okay */
if (ok)
saved_subject=strdup(subject);
}
/* if the client is using a self signed certificate then
* we need to decide if that is good enough for us to
* accept ... it certainly isn't good enough for anything
* that wants to use the certificate as it is basically
* junk of no value in this context!
*/
if (error==VERIFY_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) {
if (ssl_cert_required) {
/* make 100% sure that in secure mode we drop the
* connection if the server does not have a
* real certificate!
*/
if (ssl_debug_flag) {
fprintf(stderr,"SSL: rejecting connection - self-signed cert\n");
fflush(stderr);
}
ok=0;
goto return_time;
} else {
ok=1;
goto return_time;
}
}
/* if we have any form of error in secure mode we reject the connection */
if (! ((error==VERIFY_OK)||(error==VERIFY_ROOT_OK)) ) {
if (ssl_cert_required) {
if (ssl_debug_flag) {
fprintf(stderr,"SSL: rejecting connection - ");
if (error==VERIFY_ERR_UNABLE_TO_GET_ISSUER) {
fprintf(stderr,"unknown issuer: %s\n",issuer);
} else {
ERR_print_errors(bio_err);
}
fflush(stderr);
}
ok=0;
goto return_time;
} else {
/* be nice and display a lot more meaningful stuff
* so that we know which issuer is unknown no matter
* what the callers options are ...
*/
if (error==VERIFY_ERR_UNABLE_TO_GET_ISSUER) {
if (ssl_debug_flag) {
fprintf(stderr,"SSL: unknown issuer: %s\n",issuer);
fflush(stderr);
}
}
}
} else {
/* if we got all the way to the top of the tree then
* we *can* use this certificate for a username to
* match ... in all other cases we must not!
*/
if ( (error==VERIFY_ROOT_OK) ) {
auth_ssl_name = saved_subject;
saved_subject = NULL;
}
}
return_time: ;
/* clean up things */
if (subject!=NULL)
free(subject);
if (issuer!=NULL)
free(issuer);
return ok;
}
int
#ifdef SSLEAY8
client_verify_callback(ok, ctx)
int ok;
X509_STORE_CTX *ctx;
#else /* !SSLEAY8 */
client_verify_callback(ok, xs, xi, depth, error)
int ok;
char *xs, *xi;
int depth, error;
#endif /* SSLEAY8 */
{
/* X509 *peer; */
char *subject, *issuer, *cnsubj;
#ifdef SSLEAY8
int depth,error;
char *xs;
depth=ctx->error_depth;
error=ctx->error;
xs=(char *)X509_STORE_CTX_get_current_cert(ctx);
#endif /* SSLEAY8 */
if(ssl_debug_flag && !ok) {
fprintf(stderr,"ssl:client_verify_callback:depth=%d ok=%d err=%d-%s\n",
depth,ok,error,X509_verify_cert_error_string(error));
fflush(stderr);
}
subject=issuer=cnsubj=NULL;
/* first thing is to have a meaningful name for the current
* certificate that is being verified ... and if we cannot
* determine that then something is seriously wrong!
*/
subject=(char *)ONELINE_NAME(X509_get_subject_name((X509 *)xs));
if (subject==NULL) {
ERR_print_errors(bio_err);
ok=0;
goto return_time;
}
issuer=(char *)ONELINE_NAME(X509_get_issuer_name((X509 *)xs));
if (issuer==NULL) {
ERR_print_errors(bio_err);
ok=0;
goto return_time;
}
/* if the user wants us to be chatty about things then this
* is a good time to wizz the certificate chain past quickly :-)
*/
if (ssl_verbose_flag) {
fprintf(stderr,"Certificate[%d] subject=%s\n",depth,subject);
fprintf(stderr,"Certificate[%d] issuer =%s\n",depth,issuer);
fflush(stderr);
}
/* verify commonName matches hostname */
if(ssl_cert_required && depth == 0) {
char *cn,*p;
cnsubj=strdup(subject);
if(cnsubj == NULL) {
fprintf(stderr,"SSL: Out of memory.\n");
ok=0;
goto return_time;
}
cn=strstr(cnsubj,"/CN=");
if(cn == NULL) {
fprintf(stderr,"SSL: Cannot extract CN from certificate subject.\n");
ok=0;
goto return_time;
}
cn+=4; /* skip /CN= */
p=strchr(cn,'/');
if(p != NULL) {
*p='\0';
}
if(strcasecmp(cn,RemoteHostName) != 0) {
fprintf(stderr,"SSL: Certificate CN (%s) does not match hostname (%s)\n",
cn,RemoteHostName);
ok=0;
goto return_time;
}
}
if((error==VERIFY_OK) || (error==VERIFY_ROOT_OK)) {
goto return_time;
}
switch(error) {
case VERIFY_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
fprintf(stderr,"SSL: Server has a self-signed certificate\n");
case VERIFY_ERR_UNABLE_TO_GET_ISSUER:
fprintf(stderr,"SSL: unknown issuer: %s\n",issuer);
break;
case X509_V_ERR_CERT_NOT_YET_VALID:
fprintf(stderr,"SSL: Certificate not yet valid\n");
BIO_printf(bio_err,"notBefore=");
ASN1_TIME_print(bio_err,X509_get_notBefore(ctx->current_cert));
BIO_printf(bio_err,"\n");
break;
case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
fprintf(stderr,"SSL: Error in certificate notBefore field\n");
BIO_printf(bio_err,"notBefore=");
ASN1_TIME_print(bio_err,X509_get_notBefore(ctx->current_cert));
BIO_printf(bio_err,"\n");
break;
case X509_V_ERR_CERT_HAS_EXPIRED:
fprintf(stderr,"SSL: Certificate has expired\n");
BIO_printf(bio_err,"notAfter=");
ASN1_TIME_print(bio_err,X509_get_notAfter(ctx->current_cert));
BIO_printf(bio_err,"\n");
break;
case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
fprintf(stderr,"SSL: Error in certificate notAfter field\n");
BIO_printf(bio_err,"notAfter=");
ASN1_TIME_print(bio_err,X509_get_notAfter(ctx->current_cert));
BIO_printf(bio_err,"\n");
break;
default:
fprintf(stderr,"SSL: %s (%d)\n", X509_verify_cert_error_string(error),error);
break;
}
/* If we are here there was an error */
ok=0;
return_time: ;
/* clean up things */
if (subject!=NULL)
free(subject);
if (issuer!=NULL)
free(issuer);
if (cnsubj!=NULL)
free(cnsubj);
if(!ok && ssl_cert_required) {
if(ssl_debug_flag) {
fprintf(stderr,"SSL: debug -> ignoring cert required!\n");
ok=1;
}
else {
fprintf(stderr,"SSL: Rejecting connection\n");
ok=0;
}
}
fflush(stderr);
return ok;
}
#endif /* USE_SSL */
|
the_stack_data/34513536.c | /***
* This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License.
* When used, please cite the following article(s): V. Mrazek, R. Hrbacek, Z. Vasicek and L. Sekanina, "EvoApprox8b: Library of approximate adders and multipliers for circuit design and benchmarking of approximation methods". Design, Automation & Test in Europe Conference & Exhibition (DATE), 2017, Lausanne, 2017, pp. 258-261. doi: 10.23919/DATE.2017.7926993
* This file contains a circuit from a sub-set of pareto optimal circuits with respect to the pwr and mre parameters
***/
// MAE% = 0.039 %
// MAE = 0.2
// WCE% = 0.20 %
// WCE = 1.0
// WCRE% = 50.00 %
// EP% = 25.00 %
// MRE% = 0.14 %
// MSE = 0.2
// PDK45_PWR = 0.029 mW
// PDK45_AREA = 63.8 um2
// PDK45_DELAY = 0.55 ns
#include <stdint.h>
#include <stdlib.h>
uint16_t add8u_5R3(uint8_t a, uint8_t b)
{
uint16_t c = 0;
uint8_t n0 = (a >> 0) & 0x1;
uint8_t n2 = (a >> 1) & 0x1;
uint8_t n4 = (a >> 2) & 0x1;
uint8_t n6 = (a >> 3) & 0x1;
uint8_t n8 = (a >> 4) & 0x1;
uint8_t n10 = (a >> 5) & 0x1;
uint8_t n12 = (a >> 6) & 0x1;
uint8_t n14 = (a >> 7) & 0x1;
uint8_t n16 = (b >> 0) & 0x1;
uint8_t n18 = (b >> 1) & 0x1;
uint8_t n20 = (b >> 2) & 0x1;
uint8_t n22 = (b >> 3) & 0x1;
uint8_t n24 = (b >> 4) & 0x1;
uint8_t n26 = (b >> 5) & 0x1;
uint8_t n28 = (b >> 6) & 0x1;
uint8_t n30 = (b >> 7) & 0x1;
uint8_t n76;
uint8_t n82;
uint8_t n83;
uint8_t n113;
uint8_t n132;
uint8_t n133;
uint8_t n174;
uint8_t n182;
uint8_t n183;
uint8_t n208;
uint8_t n232;
uint8_t n233;
uint8_t n282;
uint8_t n283;
uint8_t n332;
uint8_t n333;
uint8_t n382;
uint8_t n383;
n76 = n0 | n16;
n82 = n2 ^ n18;
n83 = n2 & n18;
n113 = n83;
n132 = (n4 ^ n20) ^ n113;
n133 = (n4 & n20) | (n20 & n113) | (n4 & n113);
n174 = n133;
n182 = (n6 ^ n22) ^ n174;
n183 = (n6 & n22) | (n22 & n174) | (n6 & n174);
n208 = n183;
n232 = (n8 ^ n24) ^ n208;
n233 = (n8 & n24) | (n24 & n208) | (n8 & n208);
n282 = (n10 ^ n26) ^ n233;
n283 = (n10 & n26) | (n26 & n233) | (n10 & n233);
n332 = (n12 ^ n28) ^ n283;
n333 = (n12 & n28) | (n28 & n283) | (n12 & n283);
n382 = (n14 ^ n30) ^ n333;
n383 = (n14 & n30) | (n30 & n333) | (n14 & n333);
c |= (n76 & 0x1) << 0;
c |= (n82 & 0x1) << 1;
c |= (n132 & 0x1) << 2;
c |= (n182 & 0x1) << 3;
c |= (n232 & 0x1) << 4;
c |= (n282 & 0x1) << 5;
c |= (n332 & 0x1) << 6;
c |= (n382 & 0x1) << 7;
c |= (n383 & 0x1) << 8;
return c;
}
|
the_stack_data/292015.c | #include <curses.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define PATH "/sys/class/backlight/intel_backlight"
int max_light;
char up[5] = { 'A', 'k' }; //鼠标滚轮上中有A字符
char down[5] = { 'B', 'j' }; //鼠标滚轮下中有B字符
bool char_in_str(char* str, char c)
{
for (int i = 0; i < strlen(str); ++i) {
if (str[i] == c) {
return true;
}
}
return false;
}
void print_light(int light)
{
int x, y;
getmaxyx(stdscr, y, x);
int a = y / 2.5;
int b = x / 4;
move(a, b);
addstr(" ------backlightctl-------------(use q to quit)------------------------------");
move(a + 1, b);
addch('|');
for (int i = 1; i <= light / (max_light / 75); ++i) {
addch('#');
}
for (int i = light / (max_light / 75); i <= max_light / (max_light / 75); ++i) {
addch(' ');
}
addstr("|");
move(a + 2, b);
addstr(" ----------------------------------------------------------------------------");
move(a + 2, b + 30);
printw("back_light:%d", light);
wrefresh(stdscr);
}
int main(int argc, char* argv[])
{
char bright_path[60] = PATH;
FILE* bright_file = fopen(strcat(bright_path, "/brightness"), "r+");
char buffer[20];
fread(&buffer, 1, 20, bright_file);
int light = atoi(buffer);
char max_path[60] = PATH;
FILE* max_file = fopen(strcat(max_path, "/max_brightness"), "r");
char buffer_max[20];
fread(&buffer_max, 1, 20, max_file);
max_light = atoi(buffer_max);
char operater;
initscr(); //清屏
noecho(); //不显示输入
while (true) {
print_light(light);
operater = getch();
if (char_in_str(down, operater)) {
if(light-(max_light/75)<0){ //亮度不能小于0
continue;
}
light -= (max_light / 75);
fseek(bright_file, 0, 0);
fprintf(bright_file, "%d", light);
} else if (char_in_str(up, operater)) {
if(light+(max_light/75)>max_light){ //亮度能大于最大值
continue;
}
light += (max_light / 75);
fseek(bright_file, 0, 0);
fprintf(bright_file, "%d", light);
} else if (operater == 'q') {
endwin();
return 0;
}
}
}
|
the_stack_data/243894368.c | /* f2c.h -- Standard Fortran to C header file */
/** barf [ba:rf] 2. "He suggested using FORTRAN, and everybody barfed."
- From The Shogakukan DICTIONARY OF NEW ENGLISH (Second edition) */
#ifndef F2C_INCLUDE
#define F2C_INCLUDE
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <complex.h>
#ifdef complex
#undef complex
#endif
#ifdef I
#undef I
#endif
#if defined(_WIN64)
typedef long long BLASLONG;
typedef unsigned long long BLASULONG;
#else
typedef long BLASLONG;
typedef unsigned long BLASULONG;
#endif
#ifdef LAPACK_ILP64
typedef BLASLONG blasint;
#if defined(_WIN64)
#define blasabs(x) llabs(x)
#else
#define blasabs(x) labs(x)
#endif
#else
typedef int blasint;
#define blasabs(x) abs(x)
#endif
typedef blasint integer;
typedef unsigned int uinteger;
typedef char *address;
typedef short int shortint;
typedef float real;
typedef double doublereal;
typedef struct { real r, i; } complex;
typedef struct { doublereal r, i; } doublecomplex;
static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
#define pCf(z) (*_pCf(z))
#define pCd(z) (*_pCd(z))
typedef int logical;
typedef short int shortlogical;
typedef char logical1;
typedef char integer1;
#define TRUE_ (1)
#define FALSE_ (0)
/* Extern is for use with -E */
#ifndef Extern
#define Extern extern
#endif
/* I/O stuff */
typedef int flag;
typedef int ftnlen;
typedef int ftnint;
/*external read, write*/
typedef struct
{ flag cierr;
ftnint ciunit;
flag ciend;
char *cifmt;
ftnint cirec;
} cilist;
/*internal read, write*/
typedef struct
{ flag icierr;
char *iciunit;
flag iciend;
char *icifmt;
ftnint icirlen;
ftnint icirnum;
} icilist;
/*open*/
typedef struct
{ flag oerr;
ftnint ounit;
char *ofnm;
ftnlen ofnmlen;
char *osta;
char *oacc;
char *ofm;
ftnint orl;
char *oblnk;
} olist;
/*close*/
typedef struct
{ flag cerr;
ftnint cunit;
char *csta;
} cllist;
/*rewind, backspace, endfile*/
typedef struct
{ flag aerr;
ftnint aunit;
} alist;
/* inquire */
typedef struct
{ flag inerr;
ftnint inunit;
char *infile;
ftnlen infilen;
ftnint *inex; /*parameters in standard's order*/
ftnint *inopen;
ftnint *innum;
ftnint *innamed;
char *inname;
ftnlen innamlen;
char *inacc;
ftnlen inacclen;
char *inseq;
ftnlen inseqlen;
char *indir;
ftnlen indirlen;
char *infmt;
ftnlen infmtlen;
char *inform;
ftnint informlen;
char *inunf;
ftnlen inunflen;
ftnint *inrecl;
ftnint *innrec;
char *inblank;
ftnlen inblanklen;
} inlist;
#define VOID void
union Multitype { /* for multiple entry points */
integer1 g;
shortint h;
integer i;
/* longint j; */
real r;
doublereal d;
complex c;
doublecomplex z;
};
typedef union Multitype Multitype;
struct Vardesc { /* for Namelist */
char *name;
char *addr;
ftnlen *dims;
int type;
};
typedef struct Vardesc Vardesc;
struct Namelist {
char *name;
Vardesc **vars;
int nvars;
};
typedef struct Namelist Namelist;
#define abs(x) ((x) >= 0 ? (x) : -(x))
#define dabs(x) (fabs(x))
#define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
#define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
#define dmin(a,b) (f2cmin(a,b))
#define dmax(a,b) (f2cmax(a,b))
#define bit_test(a,b) ((a) >> (b) & 1)
#define bit_clear(a,b) ((a) & ~((uinteger)1 << (b)))
#define bit_set(a,b) ((a) | ((uinteger)1 << (b)))
#define abort_() { sig_die("Fortran abort routine called", 1); }
#define c_abs(z) (cabsf(Cf(z)))
#define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
#define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
#define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
#define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
#define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
#define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
//#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
#define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
#define d_abs(x) (fabs(*(x)))
#define d_acos(x) (acos(*(x)))
#define d_asin(x) (asin(*(x)))
#define d_atan(x) (atan(*(x)))
#define d_atn2(x, y) (atan2(*(x),*(y)))
#define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
#define r_cnjg(R, Z) { pCf(R) = conj(Cf(Z)); }
#define d_cos(x) (cos(*(x)))
#define d_cosh(x) (cosh(*(x)))
#define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
#define d_exp(x) (exp(*(x)))
#define d_imag(z) (cimag(Cd(z)))
#define r_imag(z) (cimag(Cf(z)))
#define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define d_log(x) (log(*(x)))
#define d_mod(x, y) (fmod(*(x), *(y)))
#define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
#define d_nint(x) u_nint(*(x))
#define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
#define d_sign(a,b) u_sign(*(a),*(b))
#define r_sign(a,b) u_sign(*(a),*(b))
#define d_sin(x) (sin(*(x)))
#define d_sinh(x) (sinh(*(x)))
#define d_sqrt(x) (sqrt(*(x)))
#define d_tan(x) (tan(*(x)))
#define d_tanh(x) (tanh(*(x)))
#define i_abs(x) abs(*(x))
#define i_dnnt(x) ((integer)u_nint(*(x)))
#define i_len(s, n) (n)
#define i_nint(x) ((integer)u_nint(*(x)))
#define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
#define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
#define pow_si(B,E) spow_ui(*(B),*(E))
#define pow_ri(B,E) spow_ui(*(B),*(E))
#define pow_di(B,E) dpow_ui(*(B),*(E))
#define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
#define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
#define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
#define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; }
#define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
#define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
#define sig_die(s, kill) { exit(1); }
#define s_stop(s, n) {exit(0);}
static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
#define z_abs(z) (cabs(Cd(z)))
#define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
#define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
#define myexit_() break;
#define mycycle() continue;
#define myceiling(w) {ceil(w)}
#define myhuge(w) {HUGE_VAL}
//#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
#define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
/* procedure parameter types for -A and -C++ */
#define F2C_proc_par_types 1
#ifdef __cplusplus
typedef logical (*L_fp)(...);
#else
typedef logical (*L_fp)();
#endif
static float spow_ui(float x, integer n) {
float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static double dpow_ui(double x, integer n) {
double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static _Complex float cpow_ui(_Complex float x, integer n) {
_Complex float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static _Complex double zpow_ui(_Complex double x, integer n) {
_Complex double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static integer pow_ii(integer x, integer n) {
integer pow; unsigned long int u;
if (n <= 0) {
if (n == 0 || x == 1) pow = 1;
else if (x != -1) pow = x == 0 ? 1/x : 0;
else n = -n;
}
if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
u = n;
for(pow = 1; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static integer dmaxloc_(double *w, integer s, integer e, integer *n)
{
double m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static integer smaxloc_(float *w, integer s, integer e, integer *n)
{
float m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i]) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i]) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
#endif
/* -- translated by f2c (version 20000121).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
/* Table of constant values */
static integer c__1 = 1;
/* > \brief <b> ZPPSVX computes the solution to system of linear equations A * X = B for OTHER matrices</b> */
/* =========== DOCUMENTATION =========== */
/* Online html documentation available at */
/* http://www.netlib.org/lapack/explore-html/ */
/* > \htmlonly */
/* > Download ZPPSVX + dependencies */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zppsvx.
f"> */
/* > [TGZ]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zppsvx.
f"> */
/* > [ZIP]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zppsvx.
f"> */
/* > [TXT]</a> */
/* > \endhtmlonly */
/* Definition: */
/* =========== */
/* SUBROUTINE ZPPSVX( FACT, UPLO, N, NRHS, AP, AFP, EQUED, S, B, LDB, */
/* X, LDX, RCOND, FERR, BERR, WORK, RWORK, INFO ) */
/* CHARACTER EQUED, FACT, UPLO */
/* INTEGER INFO, LDB, LDX, N, NRHS */
/* DOUBLE PRECISION RCOND */
/* DOUBLE PRECISION BERR( * ), FERR( * ), RWORK( * ), S( * ) */
/* COMPLEX*16 AFP( * ), AP( * ), B( LDB, * ), WORK( * ), */
/* $ X( LDX, * ) */
/* > \par Purpose: */
/* ============= */
/* > */
/* > \verbatim */
/* > */
/* > ZPPSVX uses the Cholesky factorization A = U**H * U or A = L * L**H to */
/* > compute the solution to a complex system of linear equations */
/* > A * X = B, */
/* > where A is an N-by-N Hermitian positive definite matrix stored in */
/* > packed format and X and B are N-by-NRHS matrices. */
/* > */
/* > Error bounds on the solution and a condition estimate are also */
/* > provided. */
/* > \endverbatim */
/* > \par Description: */
/* ================= */
/* > */
/* > \verbatim */
/* > */
/* > The following steps are performed: */
/* > */
/* > 1. If FACT = 'E', real scaling factors are computed to equilibrate */
/* > the system: */
/* > diag(S) * A * diag(S) * inv(diag(S)) * X = diag(S) * B */
/* > Whether or not the system will be equilibrated depends on the */
/* > scaling of the matrix A, but if equilibration is used, A is */
/* > overwritten by diag(S)*A*diag(S) and B by diag(S)*B. */
/* > */
/* > 2. If FACT = 'N' or 'E', the Cholesky decomposition is used to */
/* > factor the matrix A (after equilibration if FACT = 'E') as */
/* > A = U**H * U , if UPLO = 'U', or */
/* > A = L * L**H, if UPLO = 'L', */
/* > where U is an upper triangular matrix, L is a lower triangular */
/* > matrix, and **H indicates conjugate transpose. */
/* > */
/* > 3. If the leading i-by-i principal minor is not positive definite, */
/* > then the routine returns with INFO = i. Otherwise, the factored */
/* > form of A is used to estimate the condition number of the matrix */
/* > A. If the reciprocal of the condition number is less than machine */
/* > precision, INFO = N+1 is returned as a warning, but the routine */
/* > still goes on to solve for X and compute error bounds as */
/* > described below. */
/* > */
/* > 4. The system of equations is solved for X using the factored form */
/* > of A. */
/* > */
/* > 5. Iterative refinement is applied to improve the computed solution */
/* > matrix and calculate error bounds and backward error estimates */
/* > for it. */
/* > */
/* > 6. If equilibration was used, the matrix X is premultiplied by */
/* > diag(S) so that it solves the original system before */
/* > equilibration. */
/* > \endverbatim */
/* Arguments: */
/* ========== */
/* > \param[in] FACT */
/* > \verbatim */
/* > FACT is CHARACTER*1 */
/* > Specifies whether or not the factored form of the matrix A is */
/* > supplied on entry, and if not, whether the matrix A should be */
/* > equilibrated before it is factored. */
/* > = 'F': On entry, AFP contains the factored form of A. */
/* > If EQUED = 'Y', the matrix A has been equilibrated */
/* > with scaling factors given by S. AP and AFP will not */
/* > be modified. */
/* > = 'N': The matrix A will be copied to AFP and factored. */
/* > = 'E': The matrix A will be equilibrated if necessary, then */
/* > copied to AFP and factored. */
/* > \endverbatim */
/* > */
/* > \param[in] UPLO */
/* > \verbatim */
/* > UPLO is CHARACTER*1 */
/* > = 'U': Upper triangle of A is stored; */
/* > = 'L': Lower triangle of A is stored. */
/* > \endverbatim */
/* > */
/* > \param[in] N */
/* > \verbatim */
/* > N is INTEGER */
/* > The number of linear equations, i.e., the order of the */
/* > matrix A. N >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in] NRHS */
/* > \verbatim */
/* > NRHS is INTEGER */
/* > The number of right hand sides, i.e., the number of columns */
/* > of the matrices B and X. NRHS >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in,out] AP */
/* > \verbatim */
/* > AP is COMPLEX*16 array, dimension (N*(N+1)/2) */
/* > On entry, the upper or lower triangle of the Hermitian matrix */
/* > A, packed columnwise in a linear array, except if FACT = 'F' */
/* > and EQUED = 'Y', then A must contain the equilibrated matrix */
/* > diag(S)*A*diag(S). The j-th column of A is stored in the */
/* > array AP as follows: */
/* > if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; */
/* > if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. */
/* > See below for further details. A is not modified if */
/* > FACT = 'F' or 'N', or if FACT = 'E' and EQUED = 'N' on exit. */
/* > */
/* > On exit, if FACT = 'E' and EQUED = 'Y', A is overwritten by */
/* > diag(S)*A*diag(S). */
/* > \endverbatim */
/* > */
/* > \param[in,out] AFP */
/* > \verbatim */
/* > AFP is COMPLEX*16 array, dimension (N*(N+1)/2) */
/* > If FACT = 'F', then AFP is an input argument and on entry */
/* > contains the triangular factor U or L from the Cholesky */
/* > factorization A = U**H*U or A = L*L**H, in the same storage */
/* > format as A. If EQUED .ne. 'N', then AFP is the factored */
/* > form of the equilibrated matrix A. */
/* > */
/* > If FACT = 'N', then AFP is an output argument and on exit */
/* > returns the triangular factor U or L from the Cholesky */
/* > factorization A = U**H * U or A = L * L**H of the original */
/* > matrix A. */
/* > */
/* > If FACT = 'E', then AFP is an output argument and on exit */
/* > returns the triangular factor U or L from the Cholesky */
/* > factorization A = U**H * U or A = L * L**H of the equilibrated */
/* > matrix A (see the description of AP for the form of the */
/* > equilibrated matrix). */
/* > \endverbatim */
/* > */
/* > \param[in,out] EQUED */
/* > \verbatim */
/* > EQUED is CHARACTER*1 */
/* > Specifies the form of equilibration that was done. */
/* > = 'N': No equilibration (always true if FACT = 'N'). */
/* > = 'Y': Equilibration was done, i.e., A has been replaced by */
/* > diag(S) * A * diag(S). */
/* > EQUED is an input argument if FACT = 'F'; otherwise, it is an */
/* > output argument. */
/* > \endverbatim */
/* > */
/* > \param[in,out] S */
/* > \verbatim */
/* > S is DOUBLE PRECISION array, dimension (N) */
/* > The scale factors for A; not accessed if EQUED = 'N'. S is */
/* > an input argument if FACT = 'F'; otherwise, S is an output */
/* > argument. If FACT = 'F' and EQUED = 'Y', each element of S */
/* > must be positive. */
/* > \endverbatim */
/* > */
/* > \param[in,out] B */
/* > \verbatim */
/* > B is COMPLEX*16 array, dimension (LDB,NRHS) */
/* > On entry, the N-by-NRHS right hand side matrix B. */
/* > On exit, if EQUED = 'N', B is not modified; if EQUED = 'Y', */
/* > B is overwritten by diag(S) * B. */
/* > \endverbatim */
/* > */
/* > \param[in] LDB */
/* > \verbatim */
/* > LDB is INTEGER */
/* > The leading dimension of the array B. LDB >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[out] X */
/* > \verbatim */
/* > X is COMPLEX*16 array, dimension (LDX,NRHS) */
/* > If INFO = 0 or INFO = N+1, the N-by-NRHS solution matrix X to */
/* > the original system of equations. Note that if EQUED = 'Y', */
/* > A and B are modified on exit, and the solution to the */
/* > equilibrated system is inv(diag(S))*X. */
/* > \endverbatim */
/* > */
/* > \param[in] LDX */
/* > \verbatim */
/* > LDX is INTEGER */
/* > The leading dimension of the array X. LDX >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[out] RCOND */
/* > \verbatim */
/* > RCOND is DOUBLE PRECISION */
/* > The estimate of the reciprocal condition number of the matrix */
/* > A after equilibration (if done). If RCOND is less than the */
/* > machine precision (in particular, if RCOND = 0), the matrix */
/* > is singular to working precision. This condition is */
/* > indicated by a return code of INFO > 0. */
/* > \endverbatim */
/* > */
/* > \param[out] FERR */
/* > \verbatim */
/* > FERR is DOUBLE PRECISION array, dimension (NRHS) */
/* > The estimated forward error bound for each solution vector */
/* > X(j) (the j-th column of the solution matrix X). */
/* > If XTRUE is the true solution corresponding to X(j), FERR(j) */
/* > is an estimated upper bound for the magnitude of the largest */
/* > element in (X(j) - XTRUE) divided by the magnitude of the */
/* > largest element in X(j). The estimate is as reliable as */
/* > the estimate for RCOND, and is almost always a slight */
/* > overestimate of the true error. */
/* > \endverbatim */
/* > */
/* > \param[out] BERR */
/* > \verbatim */
/* > BERR is DOUBLE PRECISION array, dimension (NRHS) */
/* > The componentwise relative backward error of each solution */
/* > vector X(j) (i.e., the smallest relative change in */
/* > any element of A or B that makes X(j) an exact solution). */
/* > \endverbatim */
/* > */
/* > \param[out] WORK */
/* > \verbatim */
/* > WORK is COMPLEX*16 array, dimension (2*N) */
/* > \endverbatim */
/* > */
/* > \param[out] RWORK */
/* > \verbatim */
/* > RWORK is DOUBLE PRECISION array, dimension (N) */
/* > \endverbatim */
/* > */
/* > \param[out] INFO */
/* > \verbatim */
/* > INFO is INTEGER */
/* > = 0: successful exit */
/* > < 0: if INFO = -i, the i-th argument had an illegal value */
/* > > 0: if INFO = i, and i is */
/* > <= N: the leading minor of order i of A is */
/* > not positive definite, so the factorization */
/* > could not be completed, and the solution has not */
/* > been computed. RCOND = 0 is returned. */
/* > = N+1: U is nonsingular, but RCOND is less than machine */
/* > precision, meaning that the matrix is singular */
/* > to working precision. Nevertheless, the */
/* > solution and error bounds are computed because */
/* > there are a number of situations where the */
/* > computed solution can be more accurate than the */
/* > value of RCOND would suggest. */
/* > \endverbatim */
/* Authors: */
/* ======== */
/* > \author Univ. of Tennessee */
/* > \author Univ. of California Berkeley */
/* > \author Univ. of Colorado Denver */
/* > \author NAG Ltd. */
/* > \date April 2012 */
/* > \ingroup complex16OTHERsolve */
/* > \par Further Details: */
/* ===================== */
/* > */
/* > \verbatim */
/* > */
/* > The packed storage scheme is illustrated by the following example */
/* > when N = 4, UPLO = 'U': */
/* > */
/* > Two-dimensional storage of the Hermitian matrix A: */
/* > */
/* > a11 a12 a13 a14 */
/* > a22 a23 a24 */
/* > a33 a34 (aij = conjg(aji)) */
/* > a44 */
/* > */
/* > Packed storage of the upper triangle of A: */
/* > */
/* > AP = [ a11, a12, a22, a13, a23, a33, a14, a24, a34, a44 ] */
/* > \endverbatim */
/* > */
/* ===================================================================== */
/* Subroutine */ int zppsvx_(char *fact, char *uplo, integer *n, integer *
nrhs, doublecomplex *ap, doublecomplex *afp, char *equed, doublereal *
s, doublecomplex *b, integer *ldb, doublecomplex *x, integer *ldx,
doublereal *rcond, doublereal *ferr, doublereal *berr, doublecomplex *
work, doublereal *rwork, integer *info)
{
/* System generated locals */
integer b_dim1, b_offset, x_dim1, x_offset, i__1, i__2, i__3, i__4, i__5;
doublereal d__1, d__2;
doublecomplex z__1;
/* Local variables */
doublereal amax, smin, smax;
integer i__, j;
extern logical lsame_(char *, char *);
doublereal scond, anorm;
logical equil, rcequ;
extern /* Subroutine */ int zcopy_(integer *, doublecomplex *, integer *,
doublecomplex *, integer *);
extern doublereal dlamch_(char *);
logical nofact;
extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen);
doublereal bignum;
integer infequ;
extern doublereal zlanhp_(char *, char *, integer *, doublecomplex *,
doublereal *);
extern /* Subroutine */ int zlaqhp_(char *, integer *, doublecomplex *,
doublereal *, doublereal *, doublereal *, char *),
zlacpy_(char *, integer *, integer *, doublecomplex *, integer *,
doublecomplex *, integer *), zppcon_(char *, integer *,
doublecomplex *, doublereal *, doublereal *, doublecomplex *,
doublereal *, integer *);
doublereal smlnum;
extern /* Subroutine */ int zppequ_(char *, integer *, doublecomplex *,
doublereal *, doublereal *, doublereal *, integer *),
zpprfs_(char *, integer *, integer *, doublecomplex *,
doublecomplex *, doublecomplex *, integer *, doublecomplex *,
integer *, doublereal *, doublereal *, doublecomplex *,
doublereal *, integer *), zpptrf_(char *, integer *,
doublecomplex *, integer *), zpptrs_(char *, integer *,
integer *, doublecomplex *, doublecomplex *, integer *, integer *);
/* -- LAPACK driver routine (version 3.7.0) -- */
/* -- LAPACK is a software package provided by Univ. of Tennessee, -- */
/* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
/* April 2012 */
/* ===================================================================== */
/* Parameter adjustments */
--ap;
--afp;
--s;
b_dim1 = *ldb;
b_offset = 1 + b_dim1 * 1;
b -= b_offset;
x_dim1 = *ldx;
x_offset = 1 + x_dim1 * 1;
x -= x_offset;
--ferr;
--berr;
--work;
--rwork;
/* Function Body */
*info = 0;
nofact = lsame_(fact, "N");
equil = lsame_(fact, "E");
if (nofact || equil) {
*(unsigned char *)equed = 'N';
rcequ = FALSE_;
} else {
rcequ = lsame_(equed, "Y");
smlnum = dlamch_("Safe minimum");
bignum = 1. / smlnum;
}
/* Test the input parameters. */
if (! nofact && ! equil && ! lsame_(fact, "F")) {
*info = -1;
} else if (! lsame_(uplo, "U") && ! lsame_(uplo,
"L")) {
*info = -2;
} else if (*n < 0) {
*info = -3;
} else if (*nrhs < 0) {
*info = -4;
} else if (lsame_(fact, "F") && ! (rcequ || lsame_(
equed, "N"))) {
*info = -7;
} else {
if (rcequ) {
smin = bignum;
smax = 0.;
i__1 = *n;
for (j = 1; j <= i__1; ++j) {
/* Computing MIN */
d__1 = smin, d__2 = s[j];
smin = f2cmin(d__1,d__2);
/* Computing MAX */
d__1 = smax, d__2 = s[j];
smax = f2cmax(d__1,d__2);
/* L10: */
}
if (smin <= 0.) {
*info = -8;
} else if (*n > 0) {
scond = f2cmax(smin,smlnum) / f2cmin(smax,bignum);
} else {
scond = 1.;
}
}
if (*info == 0) {
if (*ldb < f2cmax(1,*n)) {
*info = -10;
} else if (*ldx < f2cmax(1,*n)) {
*info = -12;
}
}
}
if (*info != 0) {
i__1 = -(*info);
xerbla_("ZPPSVX", &i__1, (ftnlen)6);
return 0;
}
if (equil) {
/* Compute row and column scalings to equilibrate the matrix A. */
zppequ_(uplo, n, &ap[1], &s[1], &scond, &amax, &infequ);
if (infequ == 0) {
/* Equilibrate the matrix. */
zlaqhp_(uplo, n, &ap[1], &s[1], &scond, &amax, equed);
rcequ = lsame_(equed, "Y");
}
}
/* Scale the right-hand side. */
if (rcequ) {
i__1 = *nrhs;
for (j = 1; j <= i__1; ++j) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
i__3 = i__ + j * b_dim1;
i__4 = i__;
i__5 = i__ + j * b_dim1;
z__1.r = s[i__4] * b[i__5].r, z__1.i = s[i__4] * b[i__5].i;
b[i__3].r = z__1.r, b[i__3].i = z__1.i;
/* L20: */
}
/* L30: */
}
}
if (nofact || equil) {
/* Compute the Cholesky factorization A = U**H * U or A = L * L**H. */
i__1 = *n * (*n + 1) / 2;
zcopy_(&i__1, &ap[1], &c__1, &afp[1], &c__1);
zpptrf_(uplo, n, &afp[1], info);
/* Return if INFO is non-zero. */
if (*info > 0) {
*rcond = 0.;
return 0;
}
}
/* Compute the norm of the matrix A. */
anorm = zlanhp_("I", uplo, n, &ap[1], &rwork[1]);
/* Compute the reciprocal of the condition number of A. */
zppcon_(uplo, n, &afp[1], &anorm, rcond, &work[1], &rwork[1], info);
/* Compute the solution matrix X. */
zlacpy_("Full", n, nrhs, &b[b_offset], ldb, &x[x_offset], ldx);
zpptrs_(uplo, n, nrhs, &afp[1], &x[x_offset], ldx, info);
/* Use iterative refinement to improve the computed solution and */
/* compute error bounds and backward error estimates for it. */
zpprfs_(uplo, n, nrhs, &ap[1], &afp[1], &b[b_offset], ldb, &x[x_offset],
ldx, &ferr[1], &berr[1], &work[1], &rwork[1], info);
/* Transform the solution matrix X to a solution of the original */
/* system. */
if (rcequ) {
i__1 = *nrhs;
for (j = 1; j <= i__1; ++j) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
i__3 = i__ + j * x_dim1;
i__4 = i__;
i__5 = i__ + j * x_dim1;
z__1.r = s[i__4] * x[i__5].r, z__1.i = s[i__4] * x[i__5].i;
x[i__3].r = z__1.r, x[i__3].i = z__1.i;
/* L40: */
}
/* L50: */
}
i__1 = *nrhs;
for (j = 1; j <= i__1; ++j) {
ferr[j] /= scond;
/* L60: */
}
}
/* Set INFO = N+1 if the matrix is singular to working precision. */
if (*rcond < dlamch_("Epsilon")) {
*info = *n + 1;
}
return 0;
/* End of ZPPSVX */
} /* zppsvx_ */
|
the_stack_data/18887113.c | /**
* This file was autogenerated from pgreen.png by WiiBuilder.
*/
const unsigned char pgreen[] = {
0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x10, 0x08, 0x06, 0x00, 0x00, 0x00, 0x43, 0x79, 0xBC,
0x45, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4D, 0x41, 0x00, 0x00, 0xB1, 0x8E, 0x7C, 0xFB, 0x51,
0x93, 0x00, 0x00, 0x00, 0x20, 0x63, 0x48, 0x52, 0x4D, 0x00, 0x00, 0x87, 0x0F, 0x00, 0x00, 0x8C,
0x0F, 0x00, 0x00, 0xFD, 0x52, 0x00, 0x00, 0x81, 0x40, 0x00, 0x00, 0x7D, 0x79, 0x00, 0x00, 0xE9,
0x8B, 0x00, 0x00, 0x3C, 0xE5, 0x00, 0x00, 0x19, 0xCC, 0x73, 0x3C, 0x85, 0x77, 0x00, 0x00, 0x0A,
0x39, 0x69, 0x43, 0x43, 0x50, 0x50, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x20, 0x49,
0x43, 0x43, 0x20, 0x70, 0x72, 0x6F, 0x66, 0x69, 0x6C, 0x65, 0x00, 0x00, 0x48, 0xC7, 0x9D, 0x96,
0x77, 0x54, 0x54, 0xD7, 0x16, 0x87, 0xCF, 0xBD, 0x77, 0x7A, 0xA1, 0xCD, 0x30, 0xD2, 0x19, 0x7A,
0x93, 0x2E, 0x30, 0x80, 0xF4, 0x2E, 0x20, 0x1D, 0x04, 0x51, 0x18, 0x66, 0x06, 0x18, 0xCA, 0x00,
0xC3, 0x0C, 0x4D, 0x6C, 0x88, 0xA8, 0x40, 0x44, 0x11, 0x11, 0x01, 0x45, 0x90, 0xA0, 0x80, 0x01,
0xA3, 0xA1, 0x48, 0xAC, 0x88, 0x62, 0x21, 0x28, 0xA8, 0x60, 0x0F, 0x48, 0x10, 0x50, 0x62, 0x30,
0x8A, 0xA8, 0xA8, 0x64, 0x46, 0xD6, 0x4A, 0x7C, 0x79, 0x79, 0xEF, 0xE5, 0xE5, 0xF7, 0xC7, 0xBD,
0xDF, 0xDA, 0x67, 0xEF, 0x73, 0xF7, 0xD9, 0x7B, 0x9F, 0xB5, 0x2E, 0x00, 0x24, 0x4F, 0x1F, 0x2E,
0x2F, 0x05, 0x96, 0x02, 0x20, 0x99, 0x27, 0xE0, 0x07, 0x7A, 0x38, 0xD3, 0x57, 0x85, 0x47, 0xD0,
0xB1, 0xFD, 0x00, 0x06, 0x78, 0x80, 0x01, 0xA6, 0x00, 0x30, 0x59, 0xE9, 0xA9, 0xBE, 0x41, 0xEE,
0xC1, 0x40, 0x24, 0x2F, 0x37, 0x17, 0x7A, 0xBA, 0xC8, 0x09, 0xFC, 0x8B, 0xDE, 0x0C, 0x01, 0x48,
0xFC, 0xBE, 0x65, 0xE8, 0xE9, 0x4F, 0xA7, 0x83, 0xFF, 0x4F, 0xD2, 0xAC, 0x54, 0xBE, 0x00, 0x00,
0xC8, 0x5F, 0xC4, 0xE6, 0x6C, 0x4E, 0x3A, 0x4B, 0xC4, 0xF9, 0x22, 0x4E, 0xCA, 0x14, 0xA4, 0x8A,
0xED, 0x33, 0x22, 0xA6, 0xC6, 0x24, 0x8A, 0x19, 0x46, 0x89, 0x99, 0x2F, 0x4A, 0x50, 0xC4, 0x72,
0x62, 0x8E, 0x5B, 0xE4, 0xA5, 0x9F, 0x7D, 0x16, 0xD9, 0x51, 0xCC, 0xEC, 0x64, 0x1E, 0x5B, 0xC4,
0xE2, 0x9C, 0x53, 0xD9, 0xC9, 0x6C, 0x31, 0xF7, 0x88, 0x78, 0x7B, 0x86, 0x90, 0x23, 0x62, 0xC4,
0x47, 0xC4, 0x05, 0x19, 0x5C, 0x4E, 0xA6, 0x88, 0x6F, 0x8B, 0x58, 0x33, 0x49, 0x98, 0xCC, 0x15,
0xF1, 0x5B, 0x71, 0x6C, 0x32, 0x87, 0x99, 0x0E, 0x00, 0x8A, 0x24, 0xB6, 0x0B, 0x38, 0xAC, 0x78,
0x11, 0x9B, 0x88, 0x98, 0xC4, 0x0F, 0x0E, 0x74, 0x11, 0xF1, 0x72, 0x00, 0x70, 0xA4, 0xB8, 0x2F,
0x38, 0xE6, 0x0B, 0x16, 0x70, 0xB2, 0x04, 0xE2, 0x43, 0xB9, 0xA4, 0xA4, 0x66, 0xF3, 0xB9, 0x71,
0xF1, 0x02, 0xBA, 0x2E, 0x4B, 0x8F, 0x6E, 0x6A, 0x6D, 0xCD, 0xA0, 0x7B, 0x72, 0x32, 0x93, 0x38,
0x02, 0x81, 0xA1, 0x3F, 0x93, 0x95, 0xC8, 0xE4, 0xB3, 0xE9, 0x2E, 0x29, 0xC9, 0xA9, 0x4C, 0x5E,
0x36, 0x00, 0x8B, 0x67, 0xFE, 0x2C, 0x19, 0x71, 0x6D, 0xE9, 0xA2, 0x22, 0x5B, 0x9A, 0x5A, 0x5B,
0x5A, 0x1A, 0x9A, 0x19, 0x99, 0x7E, 0x51, 0xA8, 0xFF, 0xBA, 0xF8, 0x37, 0x25, 0xEE, 0xED, 0x22,
0xBD, 0x0A, 0xF8, 0xDC, 0x33, 0x88, 0xD6, 0xF7, 0x87, 0xED, 0xAF, 0xFC, 0x52, 0xEA, 0x00, 0x60,
0xCC, 0x8A, 0x6A, 0xB3, 0xEB, 0x0F, 0x5B, 0xCC, 0x7E, 0x00, 0x3A, 0xB6, 0x02, 0x20, 0x77, 0xFF,
0x0F, 0x9B, 0xE6, 0x21, 0x00, 0x24, 0x45, 0x7D, 0x6B, 0xBF, 0xF1, 0xC5, 0x79, 0x68, 0xE2, 0x79,
0x89, 0x17, 0x08, 0x52, 0x6D, 0x8C, 0x8D, 0x33, 0x33, 0x33, 0x8D, 0xB8, 0x1C, 0x96, 0x91, 0xB8,
0xA0, 0xBF, 0xEB, 0x7F, 0x3A, 0xFC, 0x0D, 0x7D, 0xF1, 0x3D, 0x23, 0xF1, 0x76, 0xBF, 0x97, 0x87,
0xEE, 0xCA, 0x89, 0x65, 0x0A, 0x93, 0x04, 0x74, 0x71, 0xDD, 0x58, 0x29, 0x49, 0x29, 0x42, 0x3E,
0x3D, 0x3D, 0x95, 0xC9, 0xE2, 0xD0, 0x0D, 0xFF, 0x3C, 0xC4, 0xFF, 0x38, 0xF0, 0xAF, 0xF3, 0x58,
0x1A, 0xC8, 0x89, 0xE5, 0xF0, 0x39, 0x3C, 0x51, 0x44, 0xA8, 0x68, 0xCA, 0xB8, 0xBC, 0x38, 0x51,
0xBB, 0x79, 0x6C, 0xAE, 0x80, 0x9B, 0xC2, 0xA3, 0x73, 0x79, 0xFF, 0xA9, 0x89, 0xFF, 0x30, 0xEC,
0x4F, 0x5A, 0x9C, 0x6B, 0x91, 0x28, 0xF5, 0x9F, 0x00, 0x35, 0xCA, 0x08, 0x48, 0xDD, 0xA0, 0x02,
0xE4, 0xE7, 0x3E, 0x80, 0xA2, 0x10, 0x01, 0x12, 0x79, 0x50, 0xDC, 0xF5, 0xDF, 0xFB, 0xE6, 0x83,
0x0F, 0x05, 0xE2, 0x9B, 0x17, 0xA6, 0x3A, 0xB1, 0x38, 0xF7, 0x9F, 0x05, 0xFD, 0xFB, 0xAE, 0x70,
0x89, 0xF8, 0x91, 0xCE, 0x8D, 0xFB, 0x1C, 0xE7, 0x12, 0x18, 0x4C, 0x67, 0x09, 0xF9, 0x19, 0x8B,
0x6B, 0xE2, 0x6B, 0x09, 0xD0, 0x80, 0x00, 0x24, 0x01, 0x15, 0xC8, 0x03, 0x15, 0xA0, 0x01, 0x74,
0x81, 0x21, 0x30, 0x03, 0x56, 0xC0, 0x16, 0x38, 0x02, 0x37, 0xB0, 0x02, 0xF8, 0x81, 0x60, 0x10,
0x0E, 0xD6, 0x02, 0x16, 0x88, 0x07, 0xC9, 0x80, 0x0F, 0x32, 0x41, 0x2E, 0xD8, 0x0C, 0x0A, 0x40,
0x11, 0xD8, 0x05, 0xF6, 0x82, 0x4A, 0x50, 0x03, 0xEA, 0x41, 0x23, 0x68, 0x01, 0x27, 0x40, 0x07,
0x38, 0x0D, 0x2E, 0x80, 0xCB, 0xE0, 0x3A, 0xB8, 0x09, 0xEE, 0x80, 0x07, 0x60, 0x04, 0x8C, 0x83,
0xE7, 0x60, 0x06, 0xBC, 0x01, 0xF3, 0x10, 0x04, 0x61, 0x21, 0x32, 0x44, 0x81, 0xE4, 0x21, 0x55,
0x48, 0x0B, 0x32, 0x80, 0xCC, 0x20, 0x06, 0x64, 0x0F, 0xB9, 0x41, 0x3E, 0x50, 0x20, 0x14, 0x0E,
0x45, 0x43, 0x71, 0x10, 0x0F, 0x12, 0x42, 0xB9, 0xD0, 0x16, 0xA8, 0x08, 0x2A, 0x85, 0x2A, 0xA1,
0x5A, 0xA8, 0x11, 0xFA, 0x16, 0x3A, 0x05, 0x5D, 0x80, 0xAE, 0x42, 0x03, 0xD0, 0x3D, 0x68, 0x14,
0x9A, 0x82, 0x7E, 0x85, 0xDE, 0xC3, 0x08, 0x4C, 0x82, 0xA9, 0xB0, 0x32, 0xAC, 0x0D, 0x1B, 0xC3,
0x0C, 0xD8, 0x09, 0xF6, 0x86, 0x83, 0xE1, 0x35, 0x70, 0x1C, 0x9C, 0x06, 0xE7, 0xC0, 0xF9, 0xF0,
0x4E, 0xB8, 0x02, 0xAE, 0x83, 0x8F, 0xC1, 0xED, 0xF0, 0x05, 0xF8, 0x3A, 0x7C, 0x07, 0x1E, 0x81,
0x9F, 0xC3, 0xB3, 0x08, 0x40, 0x88, 0x08, 0x0D, 0x51, 0x43, 0x0C, 0x11, 0x06, 0xE2, 0x82, 0xF8,
0x21, 0x11, 0x48, 0x2C, 0xC2, 0x47, 0x36, 0x20, 0x85, 0x48, 0x39, 0x52, 0x87, 0xB4, 0x20, 0x5D,
0x48, 0x2F, 0x72, 0x0B, 0x19, 0x41, 0xA6, 0x91, 0x77, 0x28, 0x0C, 0x8A, 0x82, 0xA2, 0xA3, 0x0C,
0x51, 0xB6, 0x28, 0x4F, 0x54, 0x08, 0x8A, 0x85, 0x4A, 0x43, 0x6D, 0x40, 0x15, 0xA3, 0x2A, 0x51,
0x47, 0x51, 0xED, 0xA8, 0x1E, 0xD4, 0x2D, 0xD4, 0x28, 0x6A, 0x06, 0xF5, 0x09, 0x4D, 0x46, 0x2B,
0xA1, 0x0D, 0xD0, 0x36, 0x68, 0x2F, 0xF4, 0x2A, 0x74, 0x1C, 0x3A, 0x13, 0x5D, 0x80, 0x2E, 0x47,
0x37, 0xA0, 0xDB, 0xD0, 0x97, 0xD0, 0x77, 0xD0, 0xE3, 0xE8, 0x37, 0x18, 0x0C, 0x86, 0x86, 0xD1,
0xC1, 0x58, 0x61, 0x3C, 0x31, 0xE1, 0x98, 0x04, 0xCC, 0x3A, 0x4C, 0x31, 0xE6, 0x00, 0xA6, 0x15,
0x73, 0x1E, 0x33, 0x80, 0x19, 0xC3, 0xCC, 0x62, 0xB1, 0x58, 0x79, 0xAC, 0x01, 0xD6, 0x0E, 0xEB,
0x87, 0x65, 0x62, 0x05, 0xD8, 0x02, 0xEC, 0x7E, 0xEC, 0x31, 0xEC, 0x39, 0xEC, 0x20, 0x76, 0x1C,
0xFB, 0x16, 0x47, 0xC4, 0xA9, 0xE2, 0xCC, 0x70, 0xEE, 0xB8, 0x08, 0x1C, 0x0F, 0x97, 0x87, 0x2B,
0xC7, 0x35, 0xE1, 0xCE, 0xE2, 0x06, 0x71, 0x13, 0xB8, 0x79, 0xBC, 0x14, 0x5E, 0x0B, 0x6F, 0x83,
0xF7, 0xC3, 0xB3, 0xF1, 0xD9, 0xF8, 0x12, 0x7C, 0x3D, 0xBE, 0x0B, 0x7F, 0x03, 0x3F, 0x8E, 0x9F,
0x27, 0x48, 0x13, 0x74, 0x08, 0x76, 0x84, 0x60, 0x42, 0x02, 0x61, 0x33, 0xA1, 0x82, 0xD0, 0x42,
0xB8, 0x44, 0x78, 0x48, 0x78, 0x45, 0x24, 0x12, 0xD5, 0x89, 0xD6, 0xC4, 0x00, 0x22, 0x97, 0xB8,
0x89, 0x58, 0x41, 0x3C, 0x4E, 0xBC, 0x42, 0x1C, 0x25, 0xBE, 0x23, 0xC9, 0x90, 0xF4, 0x49, 0x2E,
0xA4, 0x48, 0x92, 0x90, 0xB4, 0x93, 0x74, 0x84, 0x74, 0x9E, 0x74, 0x8F, 0xF4, 0x8A, 0x4C, 0x26,
0x6B, 0x93, 0x1D, 0xC9, 0x11, 0x64, 0x01, 0x79, 0x27, 0xB9, 0x91, 0x7C, 0x91, 0xFC, 0x98, 0xFC,
0x56, 0x82, 0x22, 0x61, 0x24, 0xE1, 0x25, 0xC1, 0x96, 0xD8, 0x28, 0x51, 0x25, 0xD1, 0x2E, 0x31,
0x28, 0xF1, 0x42, 0x12, 0x2F, 0xA9, 0x25, 0xE9, 0x24, 0xB9, 0x56, 0x32, 0x47, 0xB2, 0x5C, 0xF2,
0xA4, 0xE4, 0x0D, 0xC9, 0x69, 0x29, 0xBC, 0x94, 0xB6, 0x94, 0x8B, 0x14, 0x53, 0x6A, 0x83, 0x54,
0x95, 0xD4, 0x29, 0xA9, 0x61, 0xA9, 0x59, 0x69, 0x8A, 0xB4, 0xA9, 0xB4, 0x9F, 0x74, 0xB2, 0x74,
0xB1, 0x74, 0x93, 0xF4, 0x55, 0xE9, 0x49, 0x19, 0xAC, 0x8C, 0xB6, 0x8C, 0x9B, 0x0C, 0x5B, 0x26,
0x5F, 0xE6, 0xB0, 0xCC, 0x45, 0x99, 0x31, 0x0A, 0x42, 0xD1, 0xA0, 0xB8, 0x50, 0x58, 0x94, 0x2D,
0x94, 0x7A, 0xCA, 0x25, 0xCA, 0x38, 0x15, 0x43, 0xD5, 0xA1, 0x7A, 0x51, 0x13, 0xA8, 0x45, 0xD4,
0x6F, 0xA8, 0xFD, 0xD4, 0x19, 0x59, 0x19, 0xD9, 0x65, 0xB2, 0xA1, 0xB2, 0x59, 0xB2, 0x55, 0xB2,
0x67, 0x64, 0x47, 0x68, 0x08, 0x4D, 0x9B, 0xE6, 0x45, 0x4B, 0xA2, 0x95, 0xD0, 0x4E, 0xD0, 0x86,
0x68, 0xEF, 0x97, 0x28, 0x2F, 0x71, 0x5A, 0xC2, 0x59, 0xB2, 0x63, 0x49, 0xCB, 0x92, 0xC1, 0x25,
0x73, 0x72, 0x8A, 0x72, 0x8E, 0x72, 0x1C, 0xB9, 0x42, 0xB9, 0x56, 0xB9, 0x3B, 0x72, 0xEF, 0xE5,
0xE9, 0xF2, 0x6E, 0xF2, 0x89, 0xF2, 0xBB, 0xE5, 0x3B, 0xE4, 0x1F, 0x29, 0xA0, 0x14, 0xF4, 0x15,
0x02, 0x14, 0x32, 0x15, 0x0E, 0x2A, 0x5C, 0x52, 0x98, 0x56, 0xA4, 0x2A, 0xDA, 0x2A, 0xB2, 0x14,
0x0B, 0x15, 0x4F, 0x28, 0xDE, 0x57, 0x82, 0x95, 0xF4, 0x95, 0x02, 0x95, 0xD6, 0x29, 0x1D, 0x56,
0xEA, 0x53, 0x9A, 0x55, 0x56, 0x51, 0xF6, 0x50, 0x4E, 0x55, 0xDE, 0xAF, 0x7C, 0x51, 0x79, 0x5A,
0x85, 0xA6, 0xE2, 0xA8, 0x92, 0xA0, 0x52, 0xA6, 0x72, 0x56, 0x65, 0x4A, 0x95, 0xA2, 0x6A, 0xAF,
0xCA, 0x55, 0x2D, 0x53, 0x3D, 0xA7, 0xFA, 0x8C, 0x2E, 0x4B, 0x77, 0xA2, 0x27, 0xD1, 0x2B, 0xE8,
0x3D, 0xF4, 0x19, 0x35, 0x25, 0x35, 0x4F, 0x35, 0xA1, 0x5A, 0xAD, 0x5A, 0xBF, 0xDA, 0xBC, 0xBA,
0x8E, 0x7A, 0x88, 0x7A, 0x9E, 0x7A, 0xAB, 0xFA, 0x23, 0x0D, 0x82, 0x06, 0x43, 0x23, 0x56, 0xA3,
0x4C, 0xA3, 0x5B, 0x63, 0x46, 0x53, 0x55, 0xD3, 0x57, 0x33, 0x57, 0xB3, 0x59, 0xF3, 0xBE, 0x16,
0x5E, 0x8B, 0xA1, 0x15, 0xAF, 0xB5, 0x4F, 0xAB, 0x57, 0x6B, 0x4E, 0x5B, 0x47, 0x3B, 0x4C, 0x7B,
0x9B, 0x76, 0x87, 0xF6, 0xA4, 0x8E, 0x9C, 0x8E, 0x97, 0x4E, 0x8E, 0x4E, 0xB3, 0xCE, 0x43, 0x5D,
0xB2, 0xAE, 0x83, 0x6E, 0x9A, 0x6E, 0x9D, 0xEE, 0x6D, 0x3D, 0x8C, 0x1E, 0x43, 0x2F, 0x51, 0xEF,
0x80, 0xDE, 0x4D, 0x7D, 0x58, 0xDF, 0x42, 0x3F, 0x5E, 0xBF, 0x4A, 0xFF, 0x86, 0x01, 0x6C, 0x60,
0x69, 0xC0, 0x35, 0x38, 0x60, 0x30, 0xB0, 0x14, 0xBD, 0xD4, 0x7A, 0x29, 0x6F, 0x69, 0xDD, 0xD2,
0x61, 0x43, 0x92, 0xA1, 0x93, 0x61, 0x86, 0x61, 0xB3, 0xE1, 0xA8, 0x11, 0xCD, 0xC8, 0xC7, 0x28,
0xCF, 0xA8, 0xC3, 0xE8, 0x85, 0xB1, 0xA6, 0x71, 0x84, 0xF1, 0x6E, 0xE3, 0x5E, 0xE3, 0x4F, 0x26,
0x16, 0x26, 0x49, 0x26, 0xF5, 0x26, 0x0F, 0x4C, 0x65, 0x4C, 0x57, 0x98, 0xE6, 0x99, 0x76, 0x99,
0xFE, 0x6A, 0xA6, 0x6F, 0xC6, 0x32, 0xAB, 0x32, 0xBB, 0x6D, 0x4E, 0x36, 0x77, 0x37, 0xDF, 0x68,
0xDE, 0x69, 0xFE, 0x72, 0x99, 0xC1, 0x32, 0xCE, 0xB2, 0x83, 0xCB, 0xEE, 0x5A, 0x50, 0x2C, 0x7C,
0x2D, 0xB6, 0x59, 0x74, 0x5B, 0x7C, 0xB4, 0xB4, 0xB2, 0xE4, 0x5B, 0xB6, 0x58, 0x4E, 0x59, 0x69,
0x5A, 0x45, 0x5B, 0x55, 0x5B, 0x0D, 0x33, 0xA8, 0x0C, 0x7F, 0x46, 0x31, 0xE3, 0x8A, 0x35, 0xDA,
0xDA, 0xD9, 0x7A, 0xA3, 0xF5, 0x69, 0xEB, 0x77, 0x36, 0x96, 0x36, 0x02, 0x9B, 0x13, 0x36, 0xBF,
0xD8, 0x1A, 0xDA, 0x26, 0xDA, 0x36, 0xD9, 0x4E, 0x2E, 0xD7, 0x59, 0xCE, 0x59, 0x5E, 0xBF, 0x7C,
0xCC, 0x4E, 0xDD, 0x8E, 0x69, 0x57, 0x6B, 0x37, 0x62, 0x4F, 0xB7, 0x8F, 0xB6, 0x3F, 0x64, 0x3F,
0xE2, 0xA0, 0xE6, 0xC0, 0x74, 0xA8, 0x73, 0x78, 0xE2, 0xA8, 0xE1, 0xC8, 0x76, 0x6C, 0x70, 0x9C,
0x70, 0xD2, 0x73, 0x4A, 0x70, 0x3A, 0xE6, 0xF4, 0xC2, 0xD9, 0xC4, 0x99, 0xEF, 0xDC, 0xE6, 0x3C,
0xE7, 0x62, 0xE3, 0xB2, 0xDE, 0xE5, 0xBC, 0x2B, 0xE2, 0xEA, 0xE1, 0x5A, 0xE8, 0xDA, 0xEF, 0x26,
0xE3, 0x16, 0xE2, 0x56, 0xE9, 0xF6, 0xD8, 0x5D, 0xDD, 0x3D, 0xCE, 0xBD, 0xD9, 0x7D, 0xC6, 0xC3,
0xC2, 0x63, 0x9D, 0xC7, 0x79, 0x4F, 0xB4, 0xA7, 0xB7, 0xE7, 0x6E, 0xCF, 0x61, 0x2F, 0x65, 0x2F,
0x96, 0x57, 0xA3, 0xD7, 0xCC, 0x0A, 0xAB, 0x15, 0xEB, 0x57, 0xF4, 0x78, 0x93, 0xBC, 0x83, 0xBC,
0x2B, 0xBD, 0x9F, 0xF8, 0xE8, 0xFB, 0xF0, 0x7D, 0xBA, 0x7C, 0x61, 0xDF, 0x15, 0xBE, 0x7B, 0x7C,
0x1F, 0xAE, 0xD4, 0x5A, 0xC9, 0x5B, 0xD9, 0xE1, 0x07, 0xFC, 0xBC, 0xFC, 0xF6, 0xF8, 0x3D, 0xF2,
0xD7, 0xF1, 0x4F, 0xF3, 0xFF, 0x3E, 0x00, 0x13, 0xE0, 0x1F, 0x50, 0x15, 0xF0, 0x34, 0xD0, 0x34,
0x30, 0x37, 0xB0, 0x37, 0x88, 0x12, 0x14, 0x15, 0xD4, 0x14, 0xF4, 0x26, 0xD8, 0x39, 0xB8, 0x24,
0xF8, 0x41, 0x88, 0x6E, 0x88, 0x30, 0xA4, 0x3B, 0x54, 0x32, 0x34, 0x32, 0xB4, 0x31, 0x74, 0x2E,
0xCC, 0x35, 0xAC, 0x34, 0x6C, 0x64, 0x95, 0xF1, 0xAA, 0xF5, 0xAB, 0xAE, 0x87, 0x2B, 0x84, 0x73,
0xC3, 0x3B, 0x23, 0xB0, 0x11, 0xA1, 0x11, 0x0D, 0x11, 0xB3, 0xAB, 0xDD, 0x56, 0xEF, 0x5D, 0x3D,
0x1E, 0x69, 0x11, 0x59, 0x10, 0x39, 0xB4, 0x46, 0x67, 0x4D, 0xD6, 0x9A, 0xAB, 0x6B, 0x15, 0xD6,
0x26, 0xAD, 0x3D, 0x13, 0x25, 0x19, 0xC5, 0x8C, 0x3A, 0x19, 0x8D, 0x8E, 0x0E, 0x8B, 0x6E, 0x8A,
0xFE, 0xC0, 0xF4, 0x63, 0xD6, 0x31, 0x67, 0x63, 0xBC, 0x62, 0xAA, 0x63, 0x66, 0x58, 0x2E, 0xAC,
0x7D, 0xAC, 0xE7, 0x6C, 0x47, 0x76, 0x19, 0x7B, 0x8A, 0x63, 0xC7, 0x29, 0xE5, 0x4C, 0xC4, 0xDA,
0xC5, 0x96, 0xC6, 0x4E, 0xC6, 0xD9, 0xC5, 0xED, 0x89, 0x9B, 0x8A, 0x77, 0x88, 0x2F, 0x8F, 0x9F,
0xE6, 0xBA, 0x70, 0x2B, 0xB9, 0x2F, 0x13, 0x3C, 0x13, 0x6A, 0x12, 0xE6, 0x12, 0xFD, 0x12, 0x8F,
0x24, 0x2E, 0x24, 0x85, 0x25, 0xB5, 0x26, 0xE3, 0x92, 0xA3, 0x93, 0x4F, 0xF1, 0x64, 0x78, 0x89,
0xBC, 0x9E, 0x14, 0x95, 0x94, 0xAC, 0x94, 0x81, 0x54, 0x83, 0xD4, 0x82, 0xD4, 0x91, 0x34, 0x9B,
0xB4, 0xBD, 0x69, 0x33, 0x7C, 0x6F, 0x7E, 0x43, 0x3A, 0x94, 0xBE, 0x26, 0xBD, 0x53, 0x40, 0x15,
0xFD, 0x4C, 0xF5, 0x09, 0x75, 0x85, 0x5B, 0x85, 0xA3, 0x19, 0xF6, 0x19, 0x55, 0x19, 0x6F, 0x33,
0x43, 0x33, 0x4F, 0x66, 0x49, 0x67, 0xF1, 0xB2, 0xFA, 0xB2, 0xF5, 0xB3, 0x77, 0x64, 0x4F, 0xE4,
0xB8, 0xE7, 0x7C, 0xBD, 0x0E, 0xB5, 0x8E, 0xB5, 0xAE, 0x3B, 0x57, 0x2D, 0x77, 0x73, 0xEE, 0xE8,
0x7A, 0xA7, 0xF5, 0xB5, 0x1B, 0xA0, 0x0D, 0x31, 0x1B, 0xBA, 0x37, 0x6A, 0x6C, 0xCC, 0xDF, 0x38,
0xBE, 0xC9, 0x63, 0xD3, 0xD1, 0xCD, 0x84, 0xCD, 0x89, 0x9B, 0x7F, 0xC8, 0x33, 0xC9, 0x2B, 0xCD,
0x7B, 0xBD, 0x25, 0x6C, 0x4B, 0x57, 0xBE, 0x72, 0xFE, 0xA6, 0xFC, 0xB1, 0xAD, 0x1E, 0x5B, 0x9B,
0x0B, 0x24, 0x0A, 0xF8, 0x05, 0xC3, 0xDB, 0x6C, 0xB7, 0xD5, 0x6C, 0x47, 0x6D, 0xE7, 0x6E, 0xEF,
0xDF, 0x61, 0xBE, 0x63, 0xFF, 0x8E, 0x4F, 0x85, 0xEC, 0xC2, 0x6B, 0x45, 0x26, 0x45, 0xE5, 0x45,
0x1F, 0x8A, 0x59, 0xC5, 0xD7, 0xBE, 0x32, 0xFD, 0xAA, 0xE2, 0xAB, 0x85, 0x9D, 0xB1, 0x3B, 0xFB,
0x4B, 0x2C, 0x4B, 0x0E, 0xEE, 0xC2, 0xEC, 0xE2, 0xED, 0x1A, 0xDA, 0xED, 0xB0, 0xFB, 0x68, 0xA9,
0x74, 0x69, 0x4E, 0xE9, 0xD8, 0x1E, 0xDF, 0x3D, 0xED, 0x65, 0xF4, 0xB2, 0xC2, 0xB2, 0xD7, 0x7B,
0xA3, 0xF6, 0x5E, 0x2D, 0x5F, 0x56, 0x5E, 0xB3, 0x8F, 0xB0, 0x4F, 0xB8, 0x6F, 0xA4, 0xC2, 0xA7,
0xA2, 0x73, 0xBF, 0xE6, 0xFE, 0x5D, 0xFB, 0x3F, 0x54, 0xC6, 0x57, 0xDE, 0xA9, 0x72, 0xAE, 0x6A,
0xAD, 0x56, 0xAA, 0xDE, 0x51, 0x3D, 0x77, 0x80, 0x7D, 0x60, 0xF0, 0xA0, 0xE3, 0xC1, 0x96, 0x1A,
0xE5, 0x9A, 0xA2, 0x9A, 0xF7, 0x87, 0xB8, 0x87, 0xEE, 0xD6, 0x7A, 0xD4, 0xB6, 0xD7, 0x69, 0xD7,
0x95, 0x1F, 0xC6, 0x1C, 0xCE, 0x38, 0xFC, 0xB4, 0x3E, 0xB4, 0xBE, 0xF7, 0x6B, 0xC6, 0xD7, 0x8D,
0x0D, 0x0A, 0x0D, 0x45, 0x0D, 0x1F, 0x8F, 0xF0, 0x8E, 0x8C, 0x1C, 0x0D, 0x3C, 0xDA, 0xD3, 0x68,
0xD5, 0xD8, 0xD8, 0xA4, 0xD4, 0x54, 0xD2, 0x0C, 0x37, 0x0B, 0x9B, 0xA7, 0x8E, 0x45, 0x1E, 0xBB,
0xF9, 0x8D, 0xEB, 0x37, 0x9D, 0x2D, 0x86, 0x2D, 0xB5, 0xAD, 0xB4, 0xD6, 0xA2, 0xE3, 0xE0, 0xB8,
0xF0, 0xF8, 0xB3, 0x6F, 0xA3, 0xBF, 0x1D, 0x3A, 0xE1, 0x7D, 0xA2, 0xFB, 0x24, 0xE3, 0x64, 0xCB,
0x77, 0x5A, 0xDF, 0x55, 0xB7, 0x51, 0xDA, 0x0A, 0xDB, 0xA1, 0xF6, 0xEC, 0xF6, 0x99, 0x8E, 0xF8,
0x8E, 0x91, 0xCE, 0xF0, 0xCE, 0x81, 0x53, 0x2B, 0x4E, 0x75, 0x77, 0xD9, 0x76, 0xB5, 0x7D, 0x6F,
0xF4, 0xFD, 0x91, 0xD3, 0x6A, 0xA7, 0xAB, 0xCE, 0xC8, 0x9E, 0x29, 0x39, 0x4B, 0x38, 0x9B, 0x7F,
0x76, 0xE1, 0x5C, 0xCE, 0xB9, 0xD9, 0xF3, 0xA9, 0xE7, 0xA7, 0x2F, 0xC4, 0x5D, 0x18, 0xEB, 0x8E,
0xEA, 0x7E, 0x70, 0x71, 0xD5, 0xC5, 0xDB, 0x3D, 0x01, 0x3D, 0xFD, 0x97, 0xBC, 0x2F, 0x5D, 0xB9,
0xEC, 0x7E, 0xF9, 0x62, 0xAF, 0x53, 0xEF, 0xB9, 0x2B, 0x76, 0x57, 0x4E, 0x5F, 0xB5, 0xB9, 0x7A,
0xEA, 0x1A, 0xE3, 0x5A, 0xC7, 0x75, 0xCB, 0xEB, 0xED, 0x7D, 0x16, 0x7D, 0x6D, 0x3F, 0x58, 0xFC,
0xD0, 0xD6, 0x6F, 0xD9, 0xDF, 0x7E, 0xC3, 0xEA, 0x46, 0xE7, 0x4D, 0xEB, 0x9B, 0x5D, 0x03, 0xCB,
0x07, 0xCE, 0x0E, 0x3A, 0x0C, 0x5E, 0xB8, 0xE5, 0x7A, 0xEB, 0xF2, 0x6D, 0xAF, 0xDB, 0xD7, 0xEF,
0xAC, 0xBC, 0x33, 0x30, 0x14, 0x32, 0x74, 0x77, 0x38, 0x72, 0x78, 0xE4, 0x2E, 0xFB, 0xEE, 0xE4,
0xBD, 0xA4, 0x7B, 0x2F, 0xEF, 0x67, 0xDC, 0x9F, 0x7F, 0xB0, 0xE9, 0x21, 0xFA, 0x61, 0xE1, 0x23,
0xA9, 0x47, 0xE5, 0x8F, 0x95, 0x1E, 0xD7, 0xFD, 0xA8, 0xF7, 0x63, 0xEB, 0x88, 0xE5, 0xC8, 0x99,
0x51, 0xD7, 0xD1, 0xBE, 0x27, 0x41, 0x4F, 0x1E, 0x8C, 0xB1, 0xC6, 0x9E, 0xFF, 0x94, 0xFE, 0xD3,
0x87, 0xF1, 0xFC, 0xA7, 0xE4, 0xA7, 0xE5, 0x13, 0xAA, 0x13, 0x8D, 0x93, 0x66, 0x93, 0xA7, 0xA7,
0xDC, 0xA7, 0x6E, 0x3E, 0x5B, 0xFD, 0x6C, 0xFC, 0x79, 0xEA, 0xF3, 0xF9, 0xE9, 0x82, 0x9F, 0xA5,
0x7F, 0xAE, 0x7E, 0xA1, 0xFB, 0xE2, 0xBB, 0x5F, 0x1C, 0x7F, 0xE9, 0x9B, 0x59, 0x35, 0x33, 0xFE,
0x92, 0xFF, 0x72, 0xE1, 0xD7, 0xE2, 0x57, 0xF2, 0xAF, 0x8E, 0xBC, 0x5E, 0xF6, 0xBA, 0x7B, 0xD6,
0x7F, 0xF6, 0xF1, 0x9B, 0xE4, 0x37, 0xF3, 0x73, 0x85, 0x6F, 0xE5, 0xDF, 0x1E, 0x7D, 0xC7, 0x78,
0xD7, 0xFB, 0x3E, 0xEC, 0xFD, 0xC4, 0x7C, 0xE6, 0x07, 0xEC, 0x87, 0x8A, 0x8F, 0x7A, 0x1F, 0xBB,
0x3E, 0x79, 0x7F, 0x7A, 0xB8, 0x90, 0xBC, 0xB0, 0xF0, 0x1B, 0xF7, 0x84, 0xF3, 0xFB, 0xE2, 0xE6,
0x1D, 0xC2, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0B, 0x12, 0x00, 0x00,
0x0B, 0x12, 0x01, 0xD2, 0xDD, 0x7E, 0xFC, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53,
0x6F, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x70, 0x61, 0x69, 0x6E, 0x74, 0x2E, 0x6E, 0x65,
0x74, 0x20, 0x34, 0x2E, 0x30, 0x2E, 0x32, 0x31, 0xF1, 0x20, 0x69, 0x95, 0x00, 0x00, 0x06, 0xA1,
0x49, 0x44, 0x41, 0x54, 0x48, 0x4B, 0xC5, 0x56, 0x4B, 0x4C, 0x94, 0x57, 0x14, 0x9E, 0x44, 0x4D,
0x93, 0x16, 0x36, 0x3E, 0x16, 0x55, 0xBA, 0x69, 0xA5, 0x8B, 0x0A, 0x49, 0x03, 0x28, 0x0A, 0xB6,
0x2A, 0x32, 0x46, 0x46, 0x20, 0xA0, 0x18, 0x11, 0x69, 0x15, 0x1D, 0xE4, 0x21, 0xA0, 0xA0, 0x28,
0xA0, 0x34, 0x80, 0x4E, 0xE4, 0x65, 0x2C, 0xAF, 0x60, 0xD1, 0x54, 0xF1, 0x51, 0x1F, 0xA8, 0xC1,
0xD2, 0x56, 0xB1, 0x36, 0x61, 0xB0, 0x4D, 0x9D, 0x61, 0x33, 0x33, 0x34, 0xA9, 0x33, 0xB4, 0x8B,
0x56, 0x92, 0x36, 0xED, 0xA6, 0x8B, 0x36, 0xB5, 0xC6, 0xE6, 0xEB, 0xF9, 0xCE, 0x3F, 0x3F, 0x1D,
0x71, 0x4C, 0x17, 0x6D, 0xD2, 0x3F, 0xF9, 0x72, 0xEE, 0x3D, 0xF7, 0xDE, 0xF3, 0x9F, 0xEF, 0x9C,
0x73, 0x1F, 0x96, 0x87, 0xCF, 0x3D, 0x7C, 0x26, 0xE4, 0xBB, 0x22, 0xF8, 0x53, 0x80, 0x7F, 0x89,
0x5F, 0x05, 0x3F, 0x09, 0x7E, 0x14, 0xFC, 0x20, 0xF8, 0x5E, 0xF0, 0xB5, 0xC0, 0x25, 0xF8, 0x36,
0xDC, 0xBF, 0xFF, 0x2B, 0x84, 0x55, 0x12, 0xF2, 0xF9, 0xF7, 0x1F, 0x28, 0xC5, 0xFE, 0x86, 0x3C,
0xE4, 0xB7, 0xD8, 0x90, 0xD5, 0x94, 0x84, 0xD4, 0xCA, 0x45, 0x58, 0x5A, 0x30, 0x1F, 0xAB, 0xF6,
0xBC, 0x82, 0xD5, 0x4D, 0x0B, 0x91, 0xDD, 0x1A, 0x87, 0xD2, 0xD6, 0x75, 0xA8, 0x3C, 0x91, 0x87,
0x82, 0x0E, 0x9B, 0xF4, 0x93, 0x60, 0x6D, 0x5C, 0x04, 0x6B, 0x4B, 0x1C, 0x52, 0x5A, 0x16, 0x61,
0x8D, 0x60, 0x5D, 0x6B, 0x0C, 0x32, 0x3B, 0xE2, 0xB4, 0x6D, 0xF6, 0x37, 0x74, 0xC6, 0x23, 0xAF,
0x23, 0x09, 0x85, 0x9D, 0xEB, 0x60, 0x6F, 0x4A, 0x61, 0x00, 0xC6, 0x04, 0xA5, 0x82, 0x33, 0x82,
0x7E, 0xC1, 0xD9, 0x67, 0xE0, 0x84, 0x80, 0x73, 0xA7, 0x07, 0xF0, 0x09, 0x0C, 0x9C, 0xFB, 0x70,
0x64, 0x8A, 0x47, 0x28, 0x29, 0x55, 0x58, 0x2C, 0x43, 0x9C, 0x54, 0x51, 0xB7, 0x03, 0x25, 0xE2,
0x74, 0xD9, 0x8D, 0x64, 0xEC, 0xBC, 0x15, 0x8F, 0xED, 0x4E, 0xC1, 0x70, 0x02, 0x76, 0x8E, 0x26,
0x48, 0x3B, 0x06, 0xF9, 0xAE, 0x68, 0x6C, 0x1D, 0x8D, 0x0E, 0xF6, 0xE3, 0x51, 0x38, 0x9A, 0x8C,
0x4D, 0xC3, 0xD1, 0xC8, 0x74, 0x2E, 0x40, 0xBA, 0x73, 0xAE, 0x62, 0xAD, 0x33, 0x02, 0xD6, 0x7B,
0x11, 0x58, 0xE3, 0x9C, 0x65, 0xE8, 0x6E, 0x45, 0xA8, 0x4E, 0xFB, 0xD2, 0x4E, 0x1B, 0x9C, 0x85,
0x55, 0x82, 0xD5, 0xFD, 0x33, 0xA7, 0x90, 0x7C, 0x69, 0x26, 0x12, 0x2F, 0xCE, 0x50, 0x99, 0x74,
0x66, 0xC6, 0x13, 0x63, 0x84, 0xCE, 0x0F, 0x8E, 0x2D, 0xEB, 0x35, 0xC6, 0x29, 0x97, 0x75, 0x44,
0x60, 0x49, 0xCD, 0x6C, 0x24, 0x6E, 0x7B, 0x4D, 0x49, 0x6E, 0xCF, 0x2E, 0xF8, 0xA5, 0xB7, 0xAB,
0x2F, 0x6F, 0x3A, 0x39, 0x0F, 0x07, 0xBB, 0x87, 0xDA, 0xD1, 0xE1, 0x3E, 0x88, 0x5A, 0x6F, 0x0E,
0x4A, 0xC4, 0xF9, 0x2A, 0x57, 0xAA, 0xA2, 0xC2, 0x9B, 0x8A, 0xDD, 0xBE, 0xE5, 0xD8, 0xE5, 0x5D,
0x8E, 0xB7, 0x5D, 0x31, 0xB0, 0x7B, 0x13, 0x54, 0x6E, 0xF1, 0x18, 0xED, 0x1D, 0xAE, 0x04, 0x6C,
0x71, 0x46, 0x61, 0x8B, 0x2B, 0x0A, 0x1B, 0x48, 0xE8, 0xDE, 0x5C, 0x25, 0x93, 0xE1, 0x8C, 0x44,
0xD6, 0xC8, 0x5C, 0xD5, 0xB1, 0x6F, 0xBD, 0x37, 0x13, 0x36, 0x57, 0x24, 0x32, 0x05, 0x66, 0xDF,
0x94, 0x29, 0xAE, 0x59, 0x48, 0xF1, 0x18, 0x32, 0x54, 0x1F, 0x4E, 0xA6, 0x8D, 0x88, 0x9D, 0x5B,
0x46, 0x9F, 0xF6, 0xB2, 0xE4, 0xBF, 0x19, 0x97, 0x17, 0x22, 0xA7, 0x52, 0xAB, 0x82, 0x78, 0x14,
0x4A, 0xEE, 0x77, 0x2A, 0x3F, 0x19, 0x1B, 0xC0, 0xB9, 0x09, 0x07, 0x9A, 0x7D, 0x76, 0x54, 0xB8,
0x97, 0xA3, 0xD4, 0x95, 0x8C, 0x6A, 0x77, 0x3A, 0xEA, 0xFD, 0x39, 0x22, 0x53, 0x51, 0x29, 0xFD,
0x1D, 0xCE, 0x68, 0xE4, 0x4A, 0x06, 0x89, 0x1C, 0x4F, 0x14, 0xD6, 0x7B, 0xE7, 0x61, 0xA7, 0xD7,
0x08, 0xC4, 0x7E, 0x9F, 0x55, 0xE7, 0x14, 0xB9, 0x0D, 0xC2, 0x94, 0x76, 0x57, 0xAC, 0xA2, 0x68,
0xD4, 0x90, 0x5B, 0x65, 0xDD, 0x66, 0xAF, 0xAC, 0x15, 0x87, 0x88, 0x2C, 0x97, 0x11, 0x0C, 0x66,
0xDB, 0x84, 0x4D, 0x6C, 0x52, 0x4F, 0x90, 0x80, 0xD5, 0x23, 0x3A, 0x25, 0x61, 0xE8, 0xB2, 0xBD,
0xC6, 0x3A, 0x12, 0xCD, 0xBD, 0x17, 0xA5, 0x36, 0x89, 0x6D, 0xDE, 0x58, 0xB4, 0x8E, 0x96, 0xA1,
0xF9, 0x70, 0x9B, 0x41, 0x32, 0x48, 0x4E, 0x3B, 0xD7, 0xEF, 0x0E, 0xE0, 0xEC, 0xB8, 0x03, 0xED,
0xBE, 0x42, 0xD4, 0xB8, 0xD2, 0xD1, 0xE0, 0xCE, 0x41, 0x9B, 0xBB, 0x0C, 0x47, 0x7D, 0x65, 0x68,
0x13, 0x74, 0x8F, 0x97, 0xAB, 0x8E, 0x44, 0x48, 0xBA, 0xCE, 0x9B, 0x8E, 0x2A, 0x6F, 0x32, 0x0E,
0xFA, 0xAD, 0x70, 0xF8, 0x72, 0x74, 0x5D, 0xB3, 0x2F, 0x1F, 0xC7, 0x65, 0x5E, 0x8F, 0x7B, 0x1F,
0x7A, 0xC6, 0x0F, 0xA1, 0x53, 0x64, 0xAF, 0x6F, 0x1F, 0x8E, 0x8B, 0x1D, 0xEA, 0x19, 0x38, 0xD3,
0x3E, 0x03, 0x68, 0x92, 0x0F, 0xAD, 0x08, 0x06, 0xB5, 0x5E, 0xEC, 0xD1, 0x76, 0x91, 0x3B, 0x56,
0x83, 0xC7, 0xB9, 0x55, 0x52, 0x41, 0x5C, 0x4F, 0x3B, 0xF4, 0xA7, 0x3D, 0x50, 0xAE, 0x41, 0x6E,
0x70, 0xE7, 0x8B, 0xBD, 0x0D, 0xBA, 0x86, 0xFE, 0xBD, 0xEF, 0x73, 0x60, 0x68, 0x60, 0xC8, 0xCC,
0xA2, 0xE5, 0x0B, 0x36, 0xCE, 0xF5, 0x9D, 0xC5, 0xA5, 0xB1, 0x76, 0xBC, 0xEB, 0x2E, 0xC4, 0x21,
0x99, 0xC4, 0x05, 0x74, 0x8E, 0x93, 0xE9, 0x1C, 0x9D, 0xA5, 0xA3, 0xE6, 0x18, 0x89, 0x54, 0xBB,
0x93, 0x51, 0x26, 0x4E, 0xED, 0x96, 0x2C, 0xD1, 0x09, 0x3A, 0xCA, 0x3E, 0xB3, 0x78, 0x44, 0xC6,
0xDB, 0xDC, 0x76, 0x74, 0xC9, 0xDA, 0x66, 0x71, 0xA0, 0x41, 0xCA, 0x9D, 0x01, 0x21, 0xEA, 0x25,
0x38, 0xD5, 0x22, 0x99, 0x69, 0x12, 0x35, 0xEC, 0xD9, 0x71, 0x6A, 0xA2, 0x1E, 0x3D, 0x01, 0x99,
0x1F, 0x0C, 0x02, 0xC7, 0xB9, 0x25, 0x08, 0xAE, 0xEF, 0x1D, 0x2B, 0xC7, 0xE5, 0xF1, 0x63, 0x9A,
0x84, 0x6B, 0x81, 0x6E, 0x0C, 0x8E, 0x77, 0x2B, 0xE9, 0x1E, 0xF7, 0x21, 0x4D, 0xC2, 0x61, 0xF7,
0x16, 0x45, 0x9F, 0xF8, 0x7A, 0xFB, 0xFC, 0xA7, 0x53, 0x04, 0x51, 0xB7, 0xB7, 0x16, 0x37, 0xC7,
0x87, 0xD0, 0x1B, 0xD8, 0x87, 0x96, 0x40, 0x21, 0xEA, 0x02, 0x39, 0xE8, 0x0A, 0x1C, 0x12, 0x23,
0x27, 0xF1, 0x41, 0xE0, 0x98, 0xE2, 0xDC, 0xC4, 0x31, 0x35, 0x7A, 0x44, 0x7E, 0x4C, 0x27, 0x77,
0x49, 0x29, 0x14, 0xDE, 0x97, 0x52, 0xF3, 0xB0, 0x5C, 0x22, 0xB5, 0x7C, 0x58, 0xAA, 0x6F, 0x79,
0x5F, 0x42, 0xB1, 0x5F, 0xCA, 0x52, 0xC6, 0x89, 0x62, 0x77, 0xB4, 0x82, 0xFA, 0x6D, 0x52, 0xCE,
0xB9, 0x52, 0x8A, 0xDA, 0x96, 0x12, 0x65, 0x30, 0x58, 0xF6, 0x8C, 0xBC, 0xC3, 0x2F, 0x04, 0x7F,
0x76, 0xE0, 0xF4, 0x83, 0x7A, 0x38, 0x02, 0xF9, 0xBA, 0x96, 0x19, 0x64, 0x10, 0x8B, 0xFD, 0xB1,
0xA8, 0xF3, 0xA7, 0xA3, 0x43, 0x32, 0x46, 0xFF, 0x9A, 0x64, 0xBB, 0xD0, 0xD7, 0x9E, 0x07, 0xD5,
0x1A, 0x58, 0x06, 0x83, 0x36, 0xE8, 0x17, 0xCF, 0x89, 0xD3, 0x01, 0x07, 0x7A, 0xDB, 0xDE, 0xFB,
0x9B, 0xE0, 0xC5, 0xBE, 0x01, 0x7C, 0x34, 0x71, 0x5E, 0x53, 0x4F, 0x54, 0xF9, 0xD2, 0xB5, 0x3F,
0x3C, 0x71, 0x15, 0xB7, 0x44, 0xDE, 0xF9, 0xE6, 0x2A, 0xAE, 0x4D, 0x9E, 0xC2, 0xF0, 0xE4, 0x35,
0x74, 0x8B, 0x61, 0x46, 0x94, 0x0E, 0x16, 0xB8, 0x0C, 0xA7, 0xD5, 0x71, 0xD9, 0x13, 0x1B, 0x5D,
0xF3, 0xD4, 0xB1, 0x22, 0x01, 0x49, 0x70, 0x9C, 0x6D, 0x12, 0xA1, 0xB3, 0x94, 0xEC, 0x53, 0xCF,
0x83, 0x88, 0xE0, 0x3A, 0x4A, 0xDA, 0xE4, 0x3E, 0xA7, 0xF3, 0xDC, 0x4B, 0xD4, 0x37, 0x8A, 0xC3,
0x8D, 0x92, 0xED, 0xAD, 0x72, 0x70, 0x71, 0x9C, 0x65, 0xCA, 0x03, 0x8E, 0x95, 0xC2, 0x3E, 0x4B,
0x9A, 0xFB, 0x90, 0xA7, 0xB9, 0xB9, 0xB7, 0xA9, 0x3F, 0x72, 0x76, 0x17, 0x72, 0x6C, 0x19, 0xD8,
0x9C, 0xB6, 0xC9, 0x20, 0x78, 0x67, 0xF8, 0x73, 0xCD, 0x12, 0x4B, 0xE3, 0xE8, 0x58, 0xA1, 0x1A,
0xB9, 0x32, 0xD1, 0x23, 0x25, 0x70, 0x12, 0x83, 0x13, 0x27, 0xF1, 0xF1, 0xE4, 0x79, 0xCD, 0xDE,
0xED, 0xC9, 0x0B, 0x12, 0xA9, 0x74, 0xEC, 0x0D, 0x58, 0xD5, 0x59, 0x92, 0x60, 0x26, 0x77, 0x4B,
0xC6, 0xE8, 0x50, 0xBE, 0x27, 0x5A, 0xC7, 0xF6, 0x4B, 0xB4, 0x39, 0x6E, 0xBF, 0x6F, 0x90, 0xE5,
0x4F, 0x49, 0xB0, 0xC2, 0xCF, 0x92, 0x33, 0xC8, 0xB2, 0xAC, 0x59, 0xCA, 0xCC, 0xA0, 0x49, 0x9C,
0xE3, 0x6C, 0xD3, 0x16, 0x33, 0xF3, 0x4E, 0x20, 0x43, 0x03, 0xC6, 0x83, 0x88, 0x41, 0xA0, 0x7D,
0xB6, 0x79, 0xA8, 0xF0, 0x44, 0xE6, 0x29, 0xCC, 0xD3, 0x96, 0x24, 0xA9, 0xE7, 0xC1, 0x65, 0xBF,
0xB1, 0x1A, 0x9B, 0xF2, 0x6D, 0x9A, 0xBD, 0xB6, 0x96, 0xCE, 0x02, 0x25, 0x28, 0xF7, 0x05, 0x2E,
0xF8, 0xDA, 0x51, 0x3D, 0x6A, 0x5C, 0x07, 0x8C, 0x08, 0x7F, 0x5C, 0x33, 0x2A, 0xFB, 0x45, 0x52,
0xCF, 0xFD, 0xA2, 0xA5, 0x24, 0xD1, 0xE4, 0xA9, 0xC9, 0x1F, 0x18, 0x98, 0xAB, 0x99, 0x34, 0x33,
0x41, 0x27, 0x6B, 0xA5, 0x44, 0x58, 0x2A, 0x74, 0x9E, 0x07, 0x84, 0x89, 0x5D, 0x12, 0x61, 0x4A,
0xDD, 0x57, 0x42, 0x8E, 0x92, 0x36, 0xB9, 0x87, 0x48, 0x86, 0xCE, 0xB3, 0x02, 0x58, 0xF2, 0x2A,
0xC5, 0x2E, 0x6D, 0x66, 0x48, 0x9F, 0xE5, 0x4F, 0x42, 0xE6, 0xD5, 0xC3, 0x3E, 0xAF, 0x1E, 0x9E,
0xA0, 0xAB, 0x42, 0x4E, 0xD7, 0xF5, 0x97, 0xA3, 0x61, 0xDB, 0xBE, 0x4C, 0xC9, 0xED, 0x2E, 0xAD,
0xAA, 0x7F, 0xFC, 0xF8, 0xB1, 0x71, 0xD1, 0x53, 0x71, 0xB8, 0x6B, 0x2F, 0xCA, 0x85, 0x60, 0xAE,
0x94, 0x03, 0x53, 0xAD, 0x8B, 0xE4, 0xEE, 0xA2, 0x21, 0x46, 0x8A, 0x17, 0x34, 0x8D, 0xE8, 0x91,
0x1D, 0xBC, 0x87, 0xD8, 0xE7, 0x58, 0x86, 0xFC, 0x84, 0xC4, 0xE9, 0xA4, 0x09, 0x3A, 0xA8, 0x4E,
0x8A, 0x2D, 0x7D, 0x14, 0x08, 0x78, 0x84, 0x33, 0x30, 0xE6, 0x15, 0xB1, 0x51, 0xE6, 0xD1, 0x06,
0x49, 0xD0, 0x71, 0xCA, 0x34, 0xC9, 0xC8, 0x1A, 0x8F, 0xDC, 0x85, 0xFF, 0x70, 0x1F, 0x9A, 0x7A,
0xCA, 0x34, 0xB1, 0x91, 0xD6, 0xBF, 0x00, 0x2B, 0x72, 0x8D, 0x4B, 0xBE, 0x68, 0x7B, 0x69, 0xD5,
0xD4, 0xF5, 0x17, 0x24, 0x78, 0x9D, 0x03, 0x7C, 0x8A, 0xA5, 0xF4, 0x1B, 0x2F, 0x0E, 0x9B, 0x1C,
0x1C, 0x34, 0x66, 0x62, 0x85, 0xF9, 0xD3, 0xA0, 0x61, 0xF3, 0x92, 0xE6, 0x65, 0x4B, 0x50, 0x1F,
0x3A, 0x7F, 0xFA, 0xBC, 0xE9, 0xE3, 0xA6, 0xBD, 0xE9, 0xD2, 0x1C, 0x67, 0x3B, 0xDC, 0xB8, 0x29,
0x89, 0xD4, 0x41, 0xE3, 0x45, 0x13, 0xDF, 0xF0, 0xBC, 0x12, 0x13, 0xF8, 0x0F, 0x94, 0xD6, 0xBE,
0x6A, 0x92, 0x9B, 0x22, 0x38, 0xD5, 0xB1, 0x58, 0x46, 0x5E, 0xCF, 0x7A, 0x11, 0x89, 0x2D, 0x73,
0x74, 0xE1, 0x4A, 0x79, 0x12, 0xF1, 0x69, 0xF4, 0x46, 0x30, 0x52, 0x66, 0x44, 0xE9, 0x34, 0x9D,
0x27, 0xE8, 0xCC, 0xB3, 0x24, 0xE7, 0xB1, 0x12, 0xC2, 0x8D, 0xD3, 0x4E, 0x38, 0x3D, 0x25, 0x03,
0xF6, 0xD4, 0x7C, 0x91, 0x6F, 0xCA, 0xAB, 0x65, 0xA9, 0x90, 0x5A, 0xAC, 0xA4, 0x66, 0xC8, 0xBB,
0x78, 0xB6, 0x49, 0x8C, 0xB8, 0x29, 0x57, 0x5D, 0x64, 0x28, 0x1F, 0xE5, 0xF4, 0x94, 0xC2, 0x62,
0xC9, 0x13, 0x7C, 0x29, 0x78, 0x94, 0x5D, 0x19, 0x87, 0x95, 0xC5, 0x2F, 0x63, 0x59, 0xC9, 0x1C,
0x24, 0x36, 0xCE, 0x41, 0x7C, 0xCD, 0x0B, 0x2A, 0x97, 0x54, 0xCE, 0x41, 0xDC, 0x9E, 0xD9, 0x48,
0xAA, 0x99, 0x8F, 0xA4, 0xC6, 0x05, 0xFA, 0x06, 0x5C, 0x22, 0xED, 0xC5, 0x25, 0xB3, 0x55, 0xCF,
0x71, 0xD5, 0x05, 0xE7, 0x19, 0xFD, 0xF9, 0x2A, 0x75, 0x8D, 0x80, 0x8F, 0xF5, 0xCC, 0x26, 0x79,
0x88, 0x0B, 0xB2, 0xE5, 0x81, 0xCE, 0x87, 0x3B, 0xDB, 0x6B, 0x3B, 0x62, 0x8C, 0x07, 0x7A, 0xA8,
0x5E, 0x1E, 0xE9, 0x59, 0x4D, 0xF2, 0x60, 0xAF, 0x15, 0x59, 0x63, 0xEC, 0xB1, 0x10, 0x7C, 0xF7,
0xD9, 0xF9, 0xBB, 0x7B, 0xA7, 0xF3, 0x30, 0x11, 0x56, 0x69, 0x42, 0xBE, 0x93, 0x82, 0x3F, 0x82,
0x86, 0xFE, 0x0F, 0xD0, 0x89, 0x50, 0xFC, 0x26, 0xF8, 0x2A, 0x9C, 0xAF, 0xE1, 0xF1, 0xD0, 0xF2,
0x17, 0xA7, 0x5F, 0x4C, 0xA0, 0x86, 0xD8, 0xEB, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E,
0x44, 0xAE, 0x42, 0x60, 0x82
};
const int pgreen_size = 4501;
|
the_stack_data/215769323.c | // C program to demonstrate working of Semaphores
#include <pthread.h>
#include <semaphore.h>
#include <stdio.h>
#include <unistd.h>
sem_t mutex;
void *thread(void *arg) {
// wait
sem_wait(&mutex);
printf("\nEntered..\n");
// critical section
sleep(4);
// signal
printf("\nJust Exiting...\n");
sem_post(&mutex);
}
int main() {
sem_init(&mutex, 0, 1);
pthread_t t1, t2;
pthread_create(&t1, NULL, thread, NULL);
sleep(2);
pthread_create(&t2, NULL, thread, NULL);
pthread_join(t1, NULL);
pthread_join(t2, NULL);
sem_destroy(&mutex);
return 0;
} |
the_stack_data/76700360.c | /* Test-driver for the remote-virtual-component simulator framework
for GDB, the GNU Debugger.
Copyright 2006-2015 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* Avoid any problems whatsoever building this program if we're not
also building hardware support. */
#if !WITH_HW
int
main (int argc, char *argv[])
{
return 2;
}
#else
#ifdef HAVE_CONFIG_H
#include "cconfig.h"
#endif
#include "getopt.h"
#include "libiberty.h"
#define _GNU_SOURCE
#include <stdio.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
/* Not guarded in dv-sockser.c, so why here. */
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/socket.h>
enum rv_command {
RV_READ_CMD = 0,
RV_WRITE_CMD = 1,
RV_IRQ_CMD = 2,
RV_MEM_RD_CMD = 3,
RV_MEM_WR_CMD = 4,
RV_MBOX_HANDLE_CMD = 5,
RV_MBOX_PUT_CMD = 6,
RV_WATCHDOG_CMD = 7
};
enum opts { OPT_PORT = 1, OPT_TIMEOUT, OPT_VERBOSE };
struct option longopts[] =
{
{"port", required_argument, NULL, OPT_PORT},
{"timeout", required_argument, NULL, OPT_TIMEOUT},
{"verbose", no_argument, NULL, OPT_VERBOSE},
{NULL, 0, NULL, 0}
};
int port = 10000;
time_t timeout = 30000;
char *progname = "(unknown)";
int verbose = 0;
/* Required forward-declarations. */
static void handle_input_file (int, char *);
/* Set up a "server" listening to the port in PORT for a raw TCP
connection. Return a file descriptor for the connection or -1 on
error. */
int setupsocket (void)
{
int s;
socklen_t len;
int reuse = 1;
struct sockaddr_in sa_in;
struct sockaddr_in from;
len = sizeof (from);
memset (&from, 0, len);
memset (&sa_in, 0, sizeof (sa_in));
s = socket (AF_INET, SOCK_STREAM, 0);
if (s == -1)
return -1;
if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof reuse) != 0)
return -1;
sa_in.sin_port = htons (port);
sa_in.sin_family = AF_INET;
if (bind (s, (struct sockaddr *) & sa_in, sizeof sa_in) < 0)
return -1;
if (listen (s, 1) < 0)
return -1;
return accept (s, (struct sockaddr *) &from, &len);
}
/* Basic host-to-little-endian 32-bit value. Could use the BFD
machinery, but let's avoid it for this only dependency. */
static void
h2le32 (unsigned char *dest, unsigned int val)
{
dest[0] = val & 255;
dest[1] = (val >> 8) & 255;
dest[2] = (val >> 16) & 255;
dest[3] = (val >> 24) & 255;
}
/* Send a blob of data. */
static void
send_output (int fd, unsigned char *buf, int nbytes)
{
while (nbytes > 0)
{
ssize_t written = write (fd, buf, nbytes);
if (written < 0)
{
fprintf (stderr, "%s: write to socket failed: %s\n",
progname, strerror (errno));
exit (2);
}
nbytes -= written;
}
}
/* Receive a blob of data, NBYTES large. Compare to the first NCOMP
bytes of BUF; if not a match, write error message to stderr and
exit (2). Else put it in buf. */
static void
expect_input (int fd, unsigned char *buf, int nbytes, int ncomp)
{
unsigned char byt;
int i;
for (i = 0; i < nbytes; i++)
{
int r;
do
{
errno = 0;
r = read (fd, &byt, 1);
}
while (r <= 0 && (r == 0 || errno == EAGAIN));
if (r != 1)
{
fprintf (stderr, "%s: read from socket failed: %s",
progname, strerror (errno));
exit (2);
}
if (i < ncomp && byt != buf[i])
{
int j;
fprintf (stderr, "%s: unexpected input,\n ", progname);
if (i == 0)
fprintf (stderr, "nothing,");
else
for (j = 0; j < i; j++)
fprintf (stderr, "%02x", buf[j]);
fprintf (stderr, "\nthen %02x instead of %02x\n", byt, buf[i]);
exit (2);
}
else
buf[i] = byt;
}
}
/* Handle everything about a nil-terminated line of input.
Call exit (2) on error with error text on stderr. */
static void
handle_input (int fd, char *buf, char *fname, int lineno)
{
int nbytes = 0;
int n = -1;
char *s = buf + 2;
unsigned int data;
static unsigned char bytes[1024];
int i;
memset (bytes, 0, sizeof bytes);
lineno++;
if (buf[1] != ',')
goto syntax_error;
switch (buf[0])
{
/* Comment characters and empty lines. */
case 0: case '!': case '#':
break;
/* Include another file. */
case '@':
handle_input_file (fd, s);
break;
/* Raw input (to be expected). */
case 'i':
do
{
n = -1;
sscanf (s, "%02x%n", &data, &n);
s += n;
if (n > 0)
bytes[nbytes++] = data;
}
while (n > 0);
expect_input (fd, bytes, nbytes, nbytes);
if (verbose)
{
printf ("i,");
for (i = 0; i < nbytes; i++)
printf ("%02x", bytes[i]);
printf ("\n");
}
break;
/* Raw output (to be written). */
case 'o':
do
{
n = -1;
sscanf (s, "%02x%n", &data, &n);
if (n > 0)
{
s += n;
bytes[nbytes++] = data;
}
}
while (n > 0);
if (*s != 0)
goto syntax_error;
send_output (fd, bytes, nbytes);
if (verbose)
{
printf ("o,");
for (i = 0; i < nbytes; i++)
printf ("%02x", bytes[i]);
printf ("\n");
}
break;
/* Read a register. */
case 'r':
{
unsigned int addr;
sscanf (s, "%x,%x%n", &addr, &data, &n);
if (n < 0 || s[n] != 0)
goto syntax_error;
bytes[0] = 11;
bytes[1] = 0;
bytes[2] = RV_READ_CMD;
h2le32 (bytes + 3, addr);
expect_input (fd, bytes, 11, 7);
h2le32 (bytes + 7, data);
send_output (fd, bytes, 11);
if (verbose)
printf ("r,%x,%x\n", addr, data);
}
break;
/* Write a register. */
case 'w':
{
unsigned int addr;
sscanf (s, "%x,%x%n", &addr, &data, &n);
if (n < 0 || s[n] != 0)
goto syntax_error;
bytes[0] = 11;
bytes[1] = 0;
bytes[2] = RV_WRITE_CMD;
h2le32 (bytes + 3, addr);
h2le32 (bytes + 7, data);
expect_input (fd, bytes, 11, 11);
send_output (fd, bytes, 11);
if (verbose)
printf ("w,%x,%x\n", addr, data);
}
break;
/* Wait for some milliseconds. */
case 't':
{
int del = 0;
struct timeval to;
sscanf (s, "%d%n", &del, &n);
if (n < 0 || s[n] != 0 || del == 0)
goto syntax_error;
to.tv_sec = del / 1000;
to.tv_usec = (del % 1000) * 1000;
if (select (0, NULL, NULL, NULL, &to) != 0)
{
fprintf (stderr, "%s: problem waiting for %d ms:\n %s\n",
progname, del, strerror (errno));
exit (2);
}
if (verbose)
printf ("t,%d\n", del);
}
break;
/* Expect a watchdog command. */
case 'W':
if (*s != 0)
goto syntax_error;
bytes[0] = 3;
bytes[1] = 0;
bytes[2] = RV_WATCHDOG_CMD;
expect_input (fd, bytes, 3, 3);
if (verbose)
printf ("W\n");
break;
/* Send an IRQ notification. */
case 'I':
sscanf (s, "%x%n", &data, &n);
if (n < 0 || s[n] != 0)
goto syntax_error;
bytes[0] = 7;
bytes[1] = 0;
bytes[2] = RV_IRQ_CMD;
h2le32 (bytes + 3, data);
send_output (fd, bytes, 7);
if (verbose)
printf ("I,%x\n", data);
break;
/* DMA store (to CPU). */
case 's':
{
unsigned int addr;
sscanf (s, "%x,%n", &addr, &n);
if (n < 0 || s[n] == 0)
goto syntax_error;
s += n;
do
{
n = -1;
sscanf (s, "%02x%n", &data, &n);
if (n > 0)
{
s += n;
bytes[11 + nbytes++] = data;
}
}
while (n > 0);
if (*s != 0)
goto syntax_error;
h2le32 (bytes, nbytes + 11);
bytes[2] = RV_MEM_WR_CMD;
h2le32 (bytes + 3, addr);
h2le32 (bytes + 7, nbytes);
send_output (fd, bytes, nbytes + 11);
if (verbose)
{
printf ("s,%x,", addr);
for (i = 0; i < nbytes; i++)
printf ("%02x", bytes[i]);
printf ("\n");
}
}
break;
/* DMA load (from CPU). */
case 'l':
{
unsigned int addr;
sscanf (s, "%x,%n", &addr, &n);
if (n < 0 || s[n] == 0)
goto syntax_error;
s += n;
do
{
n = -1;
sscanf (s, "%02x%n", &data, &n);
if (n > 0)
{
s += n;
bytes[11 + nbytes++] = data;
}
}
while (n > 0);
if (*s != 0)
goto syntax_error;
h2le32 (bytes, nbytes + 11);
bytes[0] = 11;
bytes[1] = 0;
bytes[2] = RV_MEM_RD_CMD;
h2le32 (bytes + 3, addr);
h2le32 (bytes + 7, nbytes);
send_output (fd, bytes, 11);
bytes[0] = (nbytes + 11) & 255;
bytes[1] = ((nbytes + 11) >> 8) & 255;
expect_input (fd, bytes, nbytes + 11, nbytes + 11);
if (verbose)
{
printf ("l,%x,", addr);
for (i = 0; i < nbytes; i++)
printf ("%02x", bytes[i]);
printf ("\n");
}
}
break;
syntax_error:
default:
fprintf (stderr, "%s: invalid command line in %s:%d:\n %s",
progname, fname, lineno, strerror (errno));
exit (2);
}
}
/* Loop over the contents of FNAME, using handle_input to parse each line.
Errors to stderr, exit (2). */
static void
handle_input_file (int fd, char *fname)
{
static char buf[2048] = {0};
int lineno = 0;
FILE *f = fopen (fname, "r");
if (f == NULL)
{
fprintf (stderr, "%s: problem opening %s: %s\n",
progname, fname, strerror (errno));
exit (2);
}
/* Let's cut the buffer short, so we always get a newline. */
while (fgets (buf, sizeof (buf) - 1, f) != NULL)
{
buf[strlen (buf) - 1] = 0;
lineno++;
handle_input (fd, buf, fname, lineno);
}
fclose (f);
}
int
main (int argc, char *argv[])
{
int optc;
int fd;
FILE *f;
int i;
progname = argv[0];
while ((optc = getopt_long (argc, argv, "", longopts, NULL)) != -1)
switch (optc)
{
case OPT_PORT:
port = atoi (optarg);
break;
case OPT_TIMEOUT:
timeout = (time_t) atoi (optarg);
break;
case OPT_VERBOSE:
verbose = 1;
break;
}
fd = setupsocket ();
if (fd == -1)
{
fprintf (stderr, "%s: problem setting up the connection: %s\n",
progname, strerror (errno));
exit (2);
}
for (i = optind; i < argc; i++)
handle_input_file (fd, argv[i]);
/* FIXME: option-controlled test for remaining input? */
close (fd);
return 1;
}
#endif
|
the_stack_data/29826186.c | /* tracker --- A simple gps fix smoothing algorithm
* Usage --- ./gps
* Adithya Balaji, 03-21-2018
* Tested on an EOS Linux System
*/
#include <stdio.h>
#include <math.h>
/* Global variable declarations */
#ifndef SECRET_TESTS
double M1=-1.0, B1=0;
double M2=1.0, B2=0;
#else
double M1=SECRET_M1, B1=SECRET_B1;
double M2=SECRET_M2, B2=SECRET_B2;
#endif
#define INTERSECT_X (B2 - B1) / (M1 - M2)
#define INTERSECT_Y (B2 * M1 - B1 * M2) / (M1 - M2)
int Road = 1, First_road = 1;
int Changed_direction = 0;
int Changed_road = 0;
double Total_distance = 0;
double Peak_speed = 0.0;
/* Computes the distance between two points */
double distance(double x1, double y1, double x2, double y2)
{
return sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));
}
/* Get the sign of a number*/
int sign(double x)
{
return (x > 0) ? 1 : ((x < 0) ? -1 : 0);
}
/**
* Set the m and b parameters based on the specified road
* Args:
* road (int): the enum representing the road
* m (double): The slope of the specified road
* b (double): the y intercept of the specified road
*/
void set_line_params(int road, double *m, double *b)
{
if (road == 1)
{
*m = M1;
*b = B1;
} else {
*m = M2;
*b = B2;
}
}
/**
* Finds the nearest point on a road (pependicular distance)
* Args:
* road (int): The enum integer that specifies the road
* x (double): The x coord of the input
* y (double): The y coord of the input
* Returns:
* (double) the x value of the point on the nearest road
*/
double nearest_point_on_road(double x, double y, int road)
{
double m_road = 0., b_road = 0.;
set_line_params(road, &m_road, &b_road);
double rslt_numerator = (x/m_road) + y - b_road;
double rslt_denominator = m_road + 1/m_road;
return rslt_numerator / rslt_denominator;
}
/**
* Finds the distance to the nearest road
* Args:
* road (int): The enum integer that specifies the road
* x (double): The x coord of the input
* y (double): The y coord of the input
* Returns:
* (double) the distance to the road
*/
double distance_to_road(int road, double x, double y)
{
double m_road = 0., b_road = 0.;
if (road == 1)
{
m_road = M1;
b_road = B1;
} else {
m_road = M2;
b_road = B2;
}
double rslt_numerator = fabs(b_road + m_road * x - y);
double rslt_denominator = pow(1 + pow(m_road, 2), 0.5);
return rslt_numerator / rslt_denominator;
}
/**
* Finds the closest road
* Args:
* road (int): The enum integer that specifies the road
* x (double): The x coord of the input
* y (double): The y coord of the input
* Returns:
* (int) The enum of the closest road
*/
int closest_road(double x, double y, int road)
{
if (distance_to_road(road, x, y) < 0.0001) return road;
else {
double road_one_dist = distance_to_road(1, x, y);
double road_two_dist = distance_to_road(2, x, y);
return (road_two_dist < road_one_dist) ? 2: 1;
}
}
/**
* A function that smooths and tracks input gps fix locations
* Args:
* time (double): The time delta since the last gps track
* x (double): The x coord of the input
* y (double): The y coord of the input
*/
void track(double time, double x, double y)
{
static int count = 0;
static double prior_x = 0.0;
static double prior_delta = 0.0;
if(count == 0)
{
Road = First_road = closest_road(x, y, 1);
prior_x = nearest_point_on_road(x, y, First_road);
} else {
double prior_m_road = 0., prior_b_road = 0.;
set_line_params(Road, &prior_m_road, &prior_b_road);
int curr_road = closest_road(x, y, Road);
double curr_m_road = 0., curr_b_road = 0.;
set_line_params(curr_road, &curr_m_road, &curr_b_road);
double curr_x = nearest_point_on_road(x, y, curr_road);
double dist = 0.;
if(curr_road == Road)
{
if(count == 1)
{
prior_delta = curr_x - prior_x;
} else {
double curr_delta = curr_x - prior_x;
if (sign(prior_delta) != sign(curr_delta)) Changed_direction++;
prior_delta = curr_delta;
}
dist = distance(prior_x, prior_m_road * prior_x + prior_b_road,
curr_x, curr_m_road * curr_x + curr_b_road);
} else {
double dist1 = distance(prior_x, prior_m_road * prior_x + prior_b_road,
INTERSECT_X, INTERSECT_Y);
double dist2 = distance(INTERSECT_X, INTERSECT_Y,
curr_x, curr_m_road * curr_x + curr_b_road);
dist = dist1 + dist2;
prior_delta = curr_x - INTERSECT_X;
Changed_direction++;
Changed_road++;
}
Total_distance += dist;
prior_x = curr_x;
Road = curr_road;
double curr_speed = dist / time;
if (curr_speed > Peak_speed)
Peak_speed = curr_speed;
}
count++;
}
int main()
{
double time, x, y;
int ret;
do
{
ret = scanf("%lf%lf%lf", &time, &x, &y); // get inputs from stdin
if (ret == 3)
track(time, x, y);
} while(ret == 3); // quit if invalid input
// print out final results
printf("Total distance = %.2lf\n", Total_distance);
printf("Peak speed = %.2lf\n", Peak_speed);
printf("# of changes in direction = %d\n", Changed_direction);
printf("# of changes in road = %d\n", Changed_road);
printf("First Road = %d, Last Road = %d\n", First_road, Road);
return 0;
} |
the_stack_data/151065.c |
int first(void *ptr)
{
return *(int*)(ptr+12);
// à ma premiere approche, ne connaissant pas/peu les pointeurs j'avais fais ceci
// return (int) ((int *) ptr)[3];
}
char second(void *ptr)
{
return *(char*)(ptr+6);
// Premiere approche
// return (char) ((char *) ptr)[6];
}
int third(void *ptr)
{
return *(int*)(ptr+45);
} |
the_stack_data/34511865.c | #include <time.h>
char *ctime(const time_t *t)
{
struct tm *tm = localtime(t);
if (!tm) return 0;
return asctime(tm);
}
|
the_stack_data/125140784.c | /*
* Copyright (C) 2000-2006 Erik Andersen <[email protected]>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <stdio.h>
#include <string.h>
#include <stddef.h>
#include <signal.h>
#include <unistd.h>
#include <sys/wait.h>
#include <stdlib.h>
#ifdef __UCLIBC_HAS_THREADS_NATIVE__
#include <sched.h>
#include <errno.h>
#include <bits/libc-lock.h>
#include <sysdep-cancel.h>
#endif
extern __typeof(system) __libc_system;
/* TODO: the cancellable version breaks on sparc currently,
* need to figure out why still
*/
#if !defined __UCLIBC_HAS_THREADS_NATIVE__ || defined __sparc__
/* uClinux-2.0 has vfork, but Linux 2.0 doesn't */
#include <sys/syscall.h>
#ifndef __NR_vfork
# define vfork fork
#endif
int __libc_system(const char *command)
{
int wait_val, pid;
struct sigaction sa, save_quit, save_int;
sigset_t save_mask;
if (command == 0)
return 1;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_IGN;
/* __sigemptyset(&sa.sa_mask); - done by memset() */
/* sa.sa_flags = 0; - done by memset() */
sigaction(SIGQUIT, &sa, &save_quit);
sigaction(SIGINT, &sa, &save_int);
__sigaddset(&sa.sa_mask, SIGCHLD);
sigprocmask(SIG_BLOCK, &sa.sa_mask, &save_mask);
if ((pid = vfork()) < 0) {
wait_val = -1;
goto out;
}
if (pid == 0) {
sigaction(SIGQUIT, &save_quit, NULL);
sigaction(SIGINT, &save_int, NULL);
sigprocmask(SIG_SETMASK, &save_mask, NULL);
execl("/bin/sh", "sh", "-c", command, (char *) 0);
_exit(127);
}
#if 0
__printf("Waiting for child %d\n", pid);
#endif
if (wait4(pid, &wait_val, 0, 0) == -1)
wait_val = -1;
out:
sigaction(SIGQUIT, &save_quit, NULL);
sigaction(SIGINT, &save_int, NULL);
sigprocmask(SIG_SETMASK, &save_mask, NULL);
return wait_val;
}
#else
/* We have to and actually can handle cancelable system(). The big
problem: we have to kill the child process if necessary. To do
this a cleanup handler has to be registered and is has to be able
to find the PID of the child. The main problem is to reliable have
the PID when needed. It is not necessary for the parent thread to
return. It might still be in the kernel when the cancellation
request comes. Therefore we have to use the clone() calls ability
to have the kernel write the PID into the user-level variable. */
libc_hidden_proto(sigaction)
libc_hidden_proto(waitpid)
#if defined __ia64__
# define FORK() \
INLINE_SYSCALL (clone2, 6, CLONE_PARENT_SETTID | SIGCHLD, NULL, 0, \
&pid, NULL, NULL)
#elif defined __sparc__
# define FORK() \
INLINE_CLONE_SYSCALL (CLONE_PARENT_SETTID | SIGCHLD, 0, &pid, NULL, NULL)
#elif defined __s390__
# define FORK() \
INLINE_SYSCALL (clone, 3, 0, CLONE_PARENT_SETTID | SIGCHLD, &pid)
#else
# define FORK() \
INLINE_SYSCALL (clone, 3, CLONE_PARENT_SETTID | SIGCHLD, 0, &pid)
#endif
static void cancel_handler (void *arg);
# define CLEANUP_HANDLER \
__libc_cleanup_region_start (1, cancel_handler, &pid)
# define CLEANUP_RESET \
__libc_cleanup_region_end (0)
static struct sigaction intr, quit;
static int sa_refcntr;
__libc_lock_define_initialized (static, lock);
# define DO_LOCK() __libc_lock_lock (lock)
# define DO_UNLOCK() __libc_lock_unlock (lock)
# define INIT_LOCK() ({ __libc_lock_init (lock); sa_refcntr = 0; })
# define ADD_REF() sa_refcntr++
# define SUB_REF() --sa_refcntr
/* Execute LINE as a shell command, returning its status. */
static int
do_system (const char *line)
{
int status, save;
pid_t pid;
struct sigaction sa;
sigset_t omask;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = SIG_IGN;
/*sa.sa_flags = 0; - done by memset */
/*__sigemptyset (&sa.sa_mask); - done by memset */
DO_LOCK ();
if (ADD_REF () == 0)
{
if (sigaction (SIGINT, &sa, &intr) < 0)
{
SUB_REF ();
goto out;
}
if (sigaction (SIGQUIT, &sa, &quit) < 0)
{
save = errno;
SUB_REF ();
goto out_restore_sigint;
}
}
DO_UNLOCK ();
/* We reuse the bitmap in the 'sa' structure. */
__sigaddset (&sa.sa_mask, SIGCHLD);
save = errno;
if (sigprocmask (SIG_BLOCK, &sa.sa_mask, &omask) < 0)
{
{
DO_LOCK ();
if (SUB_REF () == 0)
{
save = errno;
(void) sigaction (SIGQUIT, &quit, (struct sigaction *) NULL);
out_restore_sigint:
(void) sigaction (SIGINT, &intr, (struct sigaction *) NULL);
__set_errno (save);
}
out:
DO_UNLOCK ();
return -1;
}
}
CLEANUP_HANDLER;
pid = FORK ();
if (pid == (pid_t) 0)
{
/* Child side. */
const char *new_argv[4];
new_argv[0] = "/bin/sh";
new_argv[1] = "-c";
new_argv[2] = line;
new_argv[3] = NULL;
/* Restore the signals. */
(void) sigaction (SIGINT, &intr, (struct sigaction *) NULL);
(void) sigaction (SIGQUIT, &quit, (struct sigaction *) NULL);
(void) sigprocmask (SIG_SETMASK, &omask, (sigset_t *) NULL);
INIT_LOCK ();
/* Exec the shell. */
(void) execve ("/bin/sh", (char *const *) new_argv, __environ);
_exit (127);
}
else if (pid < (pid_t) 0)
/* The fork failed. */
status = -1;
else
/* Parent side. */
{
/* Note the system() is a cancellation point. But since we call
waitpid() which itself is a cancellation point we do not
have to do anything here. */
if (TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)) != pid)
status = -1;
}
CLEANUP_RESET;
save = errno;
DO_LOCK ();
if ((SUB_REF () == 0
&& (sigaction (SIGINT, &intr, (struct sigaction *) NULL)
| sigaction (SIGQUIT, &quit, (struct sigaction *) NULL)) != 0)
|| sigprocmask (SIG_SETMASK, &omask, (sigset_t *) NULL) != 0)
{
status = -1;
}
DO_UNLOCK ();
return status;
}
int
__libc_system (const char *line)
{
if (line == NULL)
/* Check that we have a command processor available. It might
not be available after a chroot(), for example. */
return do_system ("exit 0") == 0;
if (SINGLE_THREAD_P)
return do_system (line);
int oldtype = LIBC_CANCEL_ASYNC ();
int result = do_system (line);
LIBC_CANCEL_RESET (oldtype);
return result;
}
/* The cancellation handler. */
static void
cancel_handler (void *arg)
{
pid_t child = *(pid_t *) arg;
INTERNAL_SYSCALL_DECL (err);
INTERNAL_SYSCALL (kill, err, 2, child, SIGKILL);
TEMP_FAILURE_RETRY (waitpid (child, NULL, 0));
DO_LOCK ();
if (SUB_REF () == 0)
{
(void) sigaction (SIGQUIT, &quit, (struct sigaction *) NULL);
(void) sigaction (SIGINT, &intr, (struct sigaction *) NULL);
}
DO_UNLOCK ();
}
#endif
#ifdef IS_IN_libc
weak_alias(__libc_system,system)
#endif
|
the_stack_data/92325881.c | /*-------------------------------
SSDP amplification Scanner PoC on the dumb template C script.
Refined by Phenomite.
-------------------------------*/
#include <arpa/inet.h>
#include <ctype.h>
#include <errno.h>
#include <math.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/udp.h>
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
volatile int running_threads = 0;
volatile int found_srvs = 0;
volatile unsigned long per_thread = 0;
volatile unsigned long start = 0;
volatile unsigned long scanned = 0;
volatile int sleep_between = 0;
volatile int bytes_sent = 0;
volatile unsigned long hosts_done = 0;
FILE *fd;
char payload[] = "M-SEARCH\r\nST:ssdp:all\r\nMAN:\"ssdp:discover\"\r\n";
int payload_size = sizeof(payload);
void *flood(void *par1) {
running_threads++;
int thread_id = (int)par1;
unsigned long start_ip = htonl(ntohl(start) + (per_thread * thread_id));
unsigned long end = htonl(ntohl(start) + (per_thread * (thread_id + 1)));
unsigned long w;
int y;
unsigned char buf[65536];
memset(buf, 0x01, 84);
int sock;
if ((sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) {
perror("ssdp scan - phenomite :: cant open socket!");
exit(-1);
}
for (w = ntohl(start_ip); w < htonl(end); w++) {
struct sockaddr_in servaddr;
bzero(&servaddr, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = htonl(w);
servaddr.sin_port = htons(1900);
sendto(sock, payload, payload_size, 0, (struct sockaddr *)&servaddr,
sizeof(servaddr));
bytes_sent += payload_size;
scanned++;
hosts_done++;
}
close(sock);
running_threads--;
return;
}
void sighandler(int sig) {
fclose(fd);
printf("\n");
exit(0);
}
void *recievethread() {
printf("\n");
int saddr_size, data_size, sock_raw;
struct sockaddr_in saddr;
struct in_addr in;
unsigned char *buffer = (unsigned char *)malloc(65536);
sock_raw = socket(AF_INET, SOCK_RAW, IPPROTO_UDP);
if (sock_raw < 0) {
perror("ssdp scan - phenomite :: Socket error!");
exit(-1);
}
while (1) {
saddr_size = sizeof saddr;
data_size = recvfrom(sock_raw, buffer, 65536, 0, (struct sockaddr *)&saddr,
&saddr_size);
if (data_size < 0) {
perror("ssdp scan - phenomite :: Recvfrom error!");
exit(-1);
}
struct iphdr *iph = (struct iphdr *)buffer;
if (iph->protocol == 17) {
unsigned short iphdrlen = iph->ihl * 4;
struct udphdr *udph = (struct udphdr *)(buffer + iphdrlen);
unsigned char *payload = buffer + iphdrlen + payload_size;
if (ntohs(udph->source) == 1900) {
int body_length = data_size - iphdrlen - payload_size;
if (body_length > 40)
// Refuse to list it
{
found_srvs++;
fprintf(fd, "%s %d\n", inet_ntoa(saddr.sin_addr), body_length);
fflush(fd);
}
}
}
}
close(sock_raw);
}
int main(int argc, char *argv[]) {
if (argc < 6) {
fprintf(stderr, "SSDP Scan - Phenomite :: Improved 47 byte payload\r\n");
fprintf(stdout, "%s 1.0.0.0 255.255.255.255 ssdp.txt 2 1ms\n",
argv[0]); // 1.0.0.0 255.255.255.255 ssdp.txt 2 1ms
exit(-1);
}
fd = fopen(argv[3], "a");
sleep_between = atoi(argv[5]);
signal(SIGINT, &sighandler);
int threads = atoi(argv[4]);
pthread_t thread;
pthread_t listenthread;
pthread_create(&listenthread, NULL, &recievethread, NULL);
char *str_start = malloc(18);
memset(str_start, 0, 18);
str_start = argv[1];
char *str_end = malloc(18);
memset(str_end, 0, 18);
str_end = argv[2];
start = inet_addr(str_start);
per_thread =
(ntohl(inet_addr(str_end)) - ntohl(inet_addr(str_start))) / threads;
unsigned long toscan =
(ntohl(inet_addr(str_end)) - ntohl(inet_addr(str_start)));
int i;
for (i = 0; i < threads; i++) {
pthread_create(&thread, NULL, &flood, (void *)i);
}
sleep(1);
printf("\x1b[1;35mScanning... \r\n");
char *temp = (char *)malloc(17);
memset(temp, 0, 17);
sprintf(temp, "\x1b[0;36mSSDP Found");
printf("%-16s", temp);
memset(temp, 0, 17);
sprintf(temp, "\x1b[1;35mIP/s");
printf("%-16s", temp);
memset(temp, 0, 17);
sprintf(temp, "\x1b[0;36mBytes/s");
printf("%-16s", temp);
memset(temp, 0, 17);
sprintf(temp, "\x1b[1;35mThreads");
printf("%-16s", temp);
memset(temp, 0, 17);
sprintf(temp, "\x1b[0;36mPercent Done\x1b[1;37m");
printf("%s\r\n", temp);
char *new;
new = (char *)malloc(16 * 6);
while (running_threads > 0) {
printf("\r");
memset(new, '\0', 16 * 6);
sprintf(new, "%s|%-15lu", new, found_srvs);
sprintf(new, "%s|%-15d", new, scanned);
sprintf(new, "%s|%-15d", new, bytes_sent);
sprintf(new, "%s|%-15d", new, running_threads);
memset(temp, 0, 17);
int percent_done = ((double)(hosts_done) / (double)(toscan)) * 100;
sprintf(temp, "%d%%", percent_done);
sprintf(new, "%s|%s", new, temp);
printf("%s", new);
fflush(stdout);
bytes_sent = 0;
scanned = 0;
sleep(1);
}
printf("\n");
fclose(fd);
return 0;
} |
the_stack_data/81698.c | typedef enum {false,true} bool;
extern int __VERIFIER_nondet_int(void);
int main() {
int i;
int j;
int k;
int t;
i = __VERIFIER_nondet_int();
j = __VERIFIER_nondet_int();
k = __VERIFIER_nondet_int();
while (i <= 100 && j < k) {
i = j;
j = i + 1;
k = k - 1;
}
return 0;
}
|
the_stack_data/60056.c | // KASAN: stack-out-of-bounds Read in xfrm_state_find
// https://syzkaller.appspot.com/bug?id=b0e86fe42b01703cf0c726e3c358068dc3c42618
// status:open
// autogenerated by syzkaller (https://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <endian.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
uint64_t r[1] = {0xffffffffffffffff};
int main(void)
{
syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0);
long res = 0;
res = syscall(__NR_socket, 0xa, 2, 0);
if (res != -1)
r[0] = res;
*(uint64_t*)0x20000200 = htobe64(0);
*(uint64_t*)0x20000208 = htobe64(1);
*(uint8_t*)0x20000210 = 0xfe;
*(uint8_t*)0x20000211 = 0x80;
*(uint8_t*)0x20000212 = 0;
*(uint8_t*)0x20000213 = 0;
*(uint8_t*)0x20000214 = 0;
*(uint8_t*)0x20000215 = 0;
*(uint8_t*)0x20000216 = 0;
*(uint8_t*)0x20000217 = 0;
*(uint8_t*)0x20000218 = 0;
*(uint8_t*)0x20000219 = 0;
*(uint8_t*)0x2000021a = 0;
*(uint8_t*)0x2000021b = 0;
*(uint8_t*)0x2000021c = 0;
*(uint8_t*)0x2000021d = 0;
*(uint8_t*)0x2000021e = 0;
*(uint8_t*)0x2000021f = 0;
*(uint16_t*)0x20000220 = htobe16(0);
*(uint16_t*)0x20000222 = htobe16(0);
*(uint16_t*)0x20000224 = htobe16(0);
*(uint16_t*)0x20000226 = htobe16(0);
*(uint16_t*)0x20000228 = 2;
*(uint8_t*)0x2000022a = 0;
*(uint8_t*)0x2000022b = 0;
*(uint8_t*)0x2000022c = 0;
*(uint32_t*)0x20000230 = 0;
*(uint32_t*)0x20000234 = 0;
*(uint64_t*)0x20000238 = 0;
*(uint64_t*)0x20000240 = 0;
*(uint64_t*)0x20000248 = 0;
*(uint64_t*)0x20000250 = 0;
*(uint64_t*)0x20000258 = 0;
*(uint64_t*)0x20000260 = 0;
*(uint64_t*)0x20000268 = 0;
*(uint64_t*)0x20000270 = 0;
*(uint64_t*)0x20000278 = 0;
*(uint64_t*)0x20000280 = 0;
*(uint64_t*)0x20000288 = 0;
*(uint64_t*)0x20000290 = 3;
*(uint32_t*)0x20000298 = 0;
*(uint32_t*)0x2000029c = 0;
*(uint8_t*)0x200002a0 = 1;
*(uint8_t*)0x200002a1 = 0;
*(uint8_t*)0x200002a2 = 0;
*(uint8_t*)0x200002a3 = 0;
*(uint8_t*)0x200002a8 = 0xfe;
*(uint8_t*)0x200002a9 = 0x80;
*(uint8_t*)0x200002aa = 0;
*(uint8_t*)0x200002ab = 0;
*(uint8_t*)0x200002ac = 0;
*(uint8_t*)0x200002ad = 0;
*(uint8_t*)0x200002ae = 0;
*(uint8_t*)0x200002af = 0;
*(uint8_t*)0x200002b0 = 0;
*(uint8_t*)0x200002b1 = 0;
*(uint8_t*)0x200002b2 = 0;
*(uint8_t*)0x200002b3 = 0;
*(uint8_t*)0x200002b4 = 0;
*(uint8_t*)0x200002b5 = 0;
*(uint8_t*)0x200002b6 = 0;
*(uint8_t*)0x200002b7 = 0xaa;
*(uint32_t*)0x200002b8 = htobe32(0);
*(uint8_t*)0x200002bc = -1;
*(uint16_t*)0x200002c0 = 0xa;
*(uint8_t*)0x200002c4 = 0;
*(uint8_t*)0x200002c5 = 0;
*(uint8_t*)0x200002c6 = 0;
*(uint8_t*)0x200002c7 = 0;
*(uint8_t*)0x200002c8 = 0;
*(uint8_t*)0x200002c9 = 0;
*(uint8_t*)0x200002ca = 0;
*(uint8_t*)0x200002cb = 0;
*(uint8_t*)0x200002cc = 0;
*(uint8_t*)0x200002cd = 0;
*(uint8_t*)0x200002ce = 0;
*(uint8_t*)0x200002cf = 0;
*(uint8_t*)0x200002d0 = 0;
*(uint8_t*)0x200002d1 = 0;
*(uint8_t*)0x200002d2 = 0;
*(uint8_t*)0x200002d3 = 0;
*(uint32_t*)0x200002d4 = 0;
*(uint8_t*)0x200002d8 = 2;
*(uint8_t*)0x200002d9 = 0;
*(uint8_t*)0x200002da = 0xfe;
*(uint32_t*)0x200002dc = 0;
*(uint32_t*)0x200002e0 = 0;
*(uint32_t*)0x200002e4 = 0;
syscall(__NR_setsockopt, r[0], 0x29, 0x23, 0x20000200, 0xe8);
*(uint64_t*)0x20000a80 = 0x20000100;
*(uint16_t*)0x20000100 = 2;
*(uint16_t*)0x20000102 = htobe16(0xc67a);
*(uint32_t*)0x20000104 = htobe32(0);
*(uint8_t*)0x20000108 = 0;
*(uint8_t*)0x20000109 = 0;
*(uint8_t*)0x2000010a = 0;
*(uint8_t*)0x2000010b = 0;
*(uint8_t*)0x2000010c = 0;
*(uint8_t*)0x2000010d = 0;
*(uint8_t*)0x2000010e = 0;
*(uint8_t*)0x2000010f = 0;
*(uint32_t*)0x20000a88 = 0x80;
*(uint64_t*)0x20000a90 = 0x20000240;
*(uint64_t*)0x20000a98 = 0;
*(uint64_t*)0x20000aa0 = 0x20000280;
*(uint64_t*)0x20000aa8 = 0;
*(uint32_t*)0x20000ab0 = 0;
*(uint32_t*)0x20000ab8 = 0;
syscall(__NR_sendmmsg, r[0], 0x20000a80, 1, 0);
return 0;
}
|
the_stack_data/47710.c | #include<stdio.h>
int main()
{
int i,fact=1,number;
printf("Enter a number: ");
scanf("%d",&number);
for(i=1;i<=number;i++){
fact=fact*i;
}
printf("Factorial of %d is: %d",number,fact);
return 0;
}
|
the_stack_data/187642237.c | /* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef WIN32
#include "apr.h"
#include <process.h>
#include "httpd.h"
#include "http_main.h"
#include "http_log.h"
#include "http_config.h" /* for read_config */
#include "http_core.h" /* for get_remote_host */
#include "http_connection.h"
#include "http_vhost.h" /* for ap_update_vhost_given_ip */
#include "apr_portable.h"
#include "apr_thread_proc.h"
#include "apr_getopt.h"
#include "apr_strings.h"
#include "apr_lib.h"
#include "apr_shm.h"
#include "apr_thread_mutex.h"
#include "ap_mpm.h"
#include "ap_config.h"
#include "ap_listen.h"
#include "mpm_default.h"
#include "mpm_winnt.h"
#include "mpm_common.h"
#include <malloc.h>
#include "apr_atomic.h"
#include "apr_buckets.h"
#include "scoreboard.h"
#ifdef __MINGW32__
#include <mswsock.h>
#ifndef WSAID_ACCEPTEX
#define WSAID_ACCEPTEX \
{0xb5367df1, 0xcbac, 0x11cf, {0x95, 0xca, 0x00, 0x80, 0x5f, 0x48, 0xa1, 0x92}}
typedef BOOL (WINAPI *LPFN_ACCEPTEX)(SOCKET, SOCKET, PVOID, DWORD, DWORD, DWORD, LPDWORD, LPOVERLAPPED);
#endif /* WSAID_ACCEPTEX */
#ifndef WSAID_GETACCEPTEXSOCKADDRS
#define WSAID_GETACCEPTEXSOCKADDRS \
{0xb5367df2, 0xcbac, 0x11cf, {0x95, 0xca, 0x00, 0x80, 0x5f, 0x48, 0xa1, 0x92}}
typedef VOID (WINAPI *LPFN_GETACCEPTEXSOCKADDRS)(PVOID, DWORD, DWORD, DWORD,
struct sockaddr **, LPINT,
struct sockaddr **, LPINT);
#endif /* WSAID_GETACCEPTEXSOCKADDRS */
#endif /* __MINGW32__ */
/*
* The Windows MPM uses a queue of completion contexts that it passes
* between the accept threads and the worker threads. Declare the
* functions to access the queue and the structures passed on the
* queue in the header file to enable modules to access them
* if necessary. The queue resides in the MPM.
*/
#ifdef CONTAINING_RECORD
#undef CONTAINING_RECORD
#endif
#define CONTAINING_RECORD(address, type, field) ((type *)( \
(char *)(address) - \
(char *)(&((type *)0)->field)))
#if APR_HAVE_IPV6
#define PADDED_ADDR_SIZE (sizeof(SOCKADDR_IN6)+16)
#else
#define PADDED_ADDR_SIZE (sizeof(SOCKADDR_IN)+16)
#endif
APLOG_USE_MODULE(mpm_winnt);
/* Queue for managing the passing of winnt_conn_ctx_t between
* the accept and worker threads.
*/
typedef struct winnt_conn_ctx_t_s {
struct winnt_conn_ctx_t_s *next;
OVERLAPPED overlapped;
apr_socket_t *sock;
SOCKET accept_socket;
char buff[2*PADDED_ADDR_SIZE];
struct sockaddr *sa_server;
int sa_server_len;
struct sockaddr *sa_client;
int sa_client_len;
apr_pool_t *ptrans;
apr_bucket_alloc_t *ba;
apr_bucket *data;
#if APR_HAVE_IPV6
short socket_family;
#endif
} winnt_conn_ctx_t;
typedef enum {
IOCP_CONNECTION_ACCEPTED = 1,
IOCP_WAIT_FOR_RECEIVE = 2,
IOCP_WAIT_FOR_TRANSMITFILE = 3,
IOCP_SHUTDOWN = 4
} io_state_e;
static apr_pool_t *pchild;
static int shutdown_in_progress = 0;
static int workers_may_exit = 0;
static unsigned int g_blocked_threads = 0;
static HANDLE max_requests_per_child_event;
static apr_thread_mutex_t *child_lock;
static apr_thread_mutex_t *qlock;
static winnt_conn_ctx_t *qhead = NULL;
static winnt_conn_ctx_t *qtail = NULL;
static apr_uint32_t num_completion_contexts = 0;
static apr_uint32_t max_num_completion_contexts = 0;
static HANDLE ThreadDispatchIOCP = NULL;
static HANDLE qwait_event = NULL;
static void mpm_recycle_completion_context(winnt_conn_ctx_t *context)
{
/* Recycle the completion context.
* - clear the ptrans pool
* - put the context on the queue to be consumed by the accept thread
* Note:
* context->accept_socket may be in a disconnected but reusable
* state so -don't- close it.
*/
if (context) {
apr_pool_clear(context->ptrans);
context->ba = apr_bucket_alloc_create(context->ptrans);
context->next = NULL;
ResetEvent(context->overlapped.hEvent);
apr_thread_mutex_lock(qlock);
if (qtail) {
qtail->next = context;
} else {
qhead = context;
SetEvent(qwait_event);
}
qtail = context;
apr_thread_mutex_unlock(qlock);
}
}
static winnt_conn_ctx_t *mpm_get_completion_context(int *timeout)
{
apr_status_t rv;
winnt_conn_ctx_t *context = NULL;
*timeout = 0;
while (1) {
/* Grab a context off the queue */
apr_thread_mutex_lock(qlock);
if (qhead) {
context = qhead;
qhead = qhead->next;
if (!qhead)
qtail = NULL;
} else {
ResetEvent(qwait_event);
}
apr_thread_mutex_unlock(qlock);
if (!context) {
/* We failed to grab a context off the queue, consider allocating
* a new one out of the child pool. There may be up to
* (ap_threads_per_child + num_listeners) contexts in the system
* at once.
*/
if (num_completion_contexts >= max_num_completion_contexts) {
/* All workers are busy, need to wait for one */
static int reported = 0;
if (!reported) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf, APLOGNO(00326)
"Server ran out of threads to serve "
"requests. Consider raising the "
"ThreadsPerChild setting");
reported = 1;
}
/* Wait for a worker to free a context. Once per second, give
* the caller a chance to check for shutdown. If the wait
* succeeds, get the context off the queue. It must be
* available, since there's only one consumer.
*/
rv = WaitForSingleObject(qwait_event, 1000);
if (rv == WAIT_OBJECT_0)
continue;
else {
if (rv == WAIT_TIMEOUT) {
/* somewhat-normal condition where threads are busy */
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(00327)
"mpm_get_completion_context: Failed to get a "
"free context within 1 second");
*timeout = 1;
}
else {
/* should be the unexpected, generic WAIT_FAILED */
ap_log_error(APLOG_MARK, APLOG_WARNING, apr_get_os_error(),
ap_server_conf, APLOGNO(00328)
"mpm_get_completion_context: "
"WaitForSingleObject failed to get free context");
}
return NULL;
}
} else {
/* Allocate another context.
* Note: Multiple failures in the next two steps will cause
* the pchild pool to 'leak' storage. I don't think this
* is worth fixing...
*/
apr_allocator_t *allocator;
apr_thread_mutex_lock(child_lock);
context = (winnt_conn_ctx_t *)apr_pcalloc(pchild,
sizeof(winnt_conn_ctx_t));
context->overlapped.hEvent = CreateEvent(NULL, TRUE,
FALSE, NULL);
if (context->overlapped.hEvent == NULL) {
/* Hopefully this is a temporary condition ... */
ap_log_error(APLOG_MARK, APLOG_WARNING, apr_get_os_error(),
ap_server_conf, APLOGNO(00329)
"mpm_get_completion_context: "
"CreateEvent failed.");
apr_thread_mutex_unlock(child_lock);
return NULL;
}
/* Create the transaction pool */
apr_allocator_create(&allocator);
apr_allocator_max_free_set(allocator, ap_max_mem_free);
rv = apr_pool_create_ex(&context->ptrans, pchild, NULL,
allocator);
if (rv != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, APLOGNO(00330)
"mpm_get_completion_context: Failed "
"to create the transaction pool.");
CloseHandle(context->overlapped.hEvent);
apr_thread_mutex_unlock(child_lock);
return NULL;
}
apr_allocator_owner_set(allocator, context->ptrans);
apr_pool_tag(context->ptrans, "transaction");
context->accept_socket = INVALID_SOCKET;
context->ba = apr_bucket_alloc_create(context->ptrans);
apr_atomic_inc32(&num_completion_contexts);
apr_thread_mutex_unlock(child_lock);
break;
}
} else {
/* Got a context from the queue */
break;
}
}
return context;
}
/* Windows NT/2000 specific code...
* Accept processing for on Windows NT uses a producer/consumer queue
* model. An accept thread accepts connections off the network then issues
* PostQueuedCompletionStatus() to awake a thread blocked on the ThreadDispatch
* IOCompletionPort.
*
* winnt_accept()
* One or more accept threads run in this function, each of which accepts
* connections off the network and calls PostQueuedCompletionStatus() to
* queue an io completion packet to the ThreadDispatch IOCompletionPort.
* winnt_get_connection()
* Worker threads block on the ThreadDispatch IOCompletionPort awaiting
* connections to service.
*/
#define MAX_ACCEPTEX_ERR_COUNT 10
static unsigned int __stdcall winnt_accept(void *lr_)
{
ap_listen_rec *lr = (ap_listen_rec *)lr_;
apr_os_sock_info_t sockinfo;
winnt_conn_ctx_t *context = NULL;
DWORD BytesRead;
SOCKET nlsd;
LPFN_ACCEPTEX lpfnAcceptEx = NULL;
LPFN_GETACCEPTEXSOCKADDRS lpfnGetAcceptExSockaddrs = NULL;
GUID GuidAcceptEx = WSAID_ACCEPTEX;
GUID GuidGetAcceptExSockaddrs = WSAID_GETACCEPTEXSOCKADDRS;
core_server_config *core_sconf;
const char *accf_name;
int rv;
int accf;
int err_count = 0;
HANDLE events[3];
#if APR_HAVE_IPV6
SOCKADDR_STORAGE ss_listen;
int namelen = sizeof(ss_listen);
#endif
u_long zero = 0;
core_sconf = ap_get_core_module_config(ap_server_conf->module_config);
accf_name = apr_table_get(core_sconf->accf_map, lr->protocol);
if (!accf_name) {
accf = 0;
accf_name = "none";
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, ap_server_conf,
APLOGNO(02531) "winnt_accept: Listen protocol '%s' has "
"no known accept filter. Using 'none' instead",
lr->protocol);
}
else if (strcmp(accf_name, "data") == 0)
accf = 2;
else if (strcmp(accf_name, "connect") == 0)
accf = 1;
else if (strcmp(accf_name, "none") == 0)
accf = 0;
else {
accf = 0;
accf_name = "none";
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, ap_server_conf, APLOGNO(00331)
"winnt_accept: unrecognized AcceptFilter '%s', "
"only 'data', 'connect' or 'none' are valid. "
"Using 'none' instead", accf_name);
}
apr_os_sock_get(&nlsd, lr->sd);
#if APR_HAVE_IPV6
if (getsockname(nlsd, (struct sockaddr *)&ss_listen, &namelen) == SOCKET_ERROR) {
ap_log_error(APLOG_MARK, APLOG_ERR, apr_get_netos_error(),
ap_server_conf, APLOGNO(00332)
"winnt_accept: getsockname error on listening socket, "
"is IPv6 available?");
return 1;
}
#endif
if (accf > 0) /* 'data' or 'connect' */
{
if (WSAIoctl(nlsd, SIO_GET_EXTENSION_FUNCTION_POINTER,
&GuidAcceptEx, sizeof GuidAcceptEx,
&lpfnAcceptEx, sizeof lpfnAcceptEx,
&BytesRead, NULL, NULL) == SOCKET_ERROR) {
ap_log_error(APLOG_MARK, APLOG_ERR, apr_get_netos_error(),
ap_server_conf, APLOGNO(02322)
"winnt_accept: failed to retrieve AcceptEx, try 'AcceptFilter none'");
return 1;
}
if (WSAIoctl(nlsd, SIO_GET_EXTENSION_FUNCTION_POINTER,
&GuidGetAcceptExSockaddrs, sizeof GuidGetAcceptExSockaddrs,
&lpfnGetAcceptExSockaddrs, sizeof lpfnGetAcceptExSockaddrs,
&BytesRead, NULL, NULL) == SOCKET_ERROR) {
ap_log_error(APLOG_MARK, APLOG_ERR, apr_get_netos_error(),
ap_server_conf, APLOGNO(02323)
"winnt_accept: failed to retrieve GetAcceptExSockaddrs, try 'AcceptFilter none'");
return 1;
}
/* first, high priority event is an already accepted connection */
events[1] = exit_event;
events[2] = max_requests_per_child_event;
}
else /* accf == 0, 'none' */
{
reinit: /* target of data or connect upon too many AcceptEx failures */
/* last, low priority event is a not yet accepted connection */
events[0] = exit_event;
events[1] = max_requests_per_child_event;
events[2] = CreateEvent(NULL, FALSE, FALSE, NULL);
/* The event needs to be removed from the accepted socket,
* if not removed from the listen socket prior to accept(),
*/
rv = WSAEventSelect(nlsd, events[2], FD_ACCEPT);
if (rv) {
ap_log_error(APLOG_MARK, APLOG_ERR,
apr_get_netos_error(), ap_server_conf, APLOGNO(00333)
"WSAEventSelect() failed.");
CloseHandle(events[2]);
return 1;
}
}
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(00334)
"Child: Accept thread listening on %pI using AcceptFilter %s",
lr->bind_addr, accf_name);
while (!shutdown_in_progress) {
if (!context) {
int timeout;
context = mpm_get_completion_context(&timeout);
if (!context) {
if (!timeout) {
/* Hopefully a temporary condition in the provider? */
++err_count;
if (err_count > MAX_ACCEPTEX_ERR_COUNT) {
ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf, APLOGNO(00335)
"winnt_accept: Too many failures grabbing a "
"connection ctx. Aborting.");
break;
}
}
Sleep(100);
continue;
}
}
if (accf > 0) /* Either 'connect' or 'data' */
{
DWORD len;
char *buf;
/* Create and initialize the accept socket */
#if APR_HAVE_IPV6
if (context->accept_socket == INVALID_SOCKET) {
context->accept_socket = socket(ss_listen.ss_family, SOCK_STREAM,
IPPROTO_TCP);
context->socket_family = ss_listen.ss_family;
}
else if (context->socket_family != ss_listen.ss_family) {
closesocket(context->accept_socket);
context->accept_socket = socket(ss_listen.ss_family, SOCK_STREAM,
IPPROTO_TCP);
context->socket_family = ss_listen.ss_family;
}
#else
if (context->accept_socket == INVALID_SOCKET)
context->accept_socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
#endif
if (context->accept_socket == INVALID_SOCKET) {
ap_log_error(APLOG_MARK, APLOG_WARNING, apr_get_netos_error(),
ap_server_conf, APLOGNO(00336)
"winnt_accept: Failed to allocate an accept socket. "
"Temporary resource constraint? Try again.");
Sleep(100);
continue;
}
if (accf == 2) { /* 'data' */
len = APR_BUCKET_BUFF_SIZE;
buf = apr_bucket_alloc(len, context->ba);
len -= PADDED_ADDR_SIZE * 2;
}
else /* (accf == 1) 'connect' */ {
len = 0;
buf = context->buff;
}
/* AcceptEx on the completion context. The completion context will be
* signaled when a connection is accepted.
*/
if (!lpfnAcceptEx(nlsd, context->accept_socket, buf, len,
PADDED_ADDR_SIZE, PADDED_ADDR_SIZE, &BytesRead,
&context->overlapped)) {
rv = apr_get_netos_error();
if ((rv == APR_FROM_OS_ERROR(WSAECONNRESET)) ||
(rv == APR_FROM_OS_ERROR(WSAEACCES))) {
/* We can get here when:
* 1) the client disconnects early
* 2) handshake was incomplete
*/
if (accf == 2)
apr_bucket_free(buf);
closesocket(context->accept_socket);
context->accept_socket = INVALID_SOCKET;
continue;
}
else if ((rv == APR_FROM_OS_ERROR(WSAEINVAL)) ||
(rv == APR_FROM_OS_ERROR(WSAENOTSOCK))) {
/* We can get here when:
* 1) TransmitFile does not properly recycle the accept socket (typically
* because the client disconnected)
* 2) there is VPN or Firewall software installed with
* buggy WSAAccept or WSADuplicateSocket implementation
* 3) the dynamic address / adapter has changed
* Give five chances, then fall back on AcceptFilter 'none'
*/
if (accf == 2)
apr_bucket_free(buf);
closesocket(context->accept_socket);
context->accept_socket = INVALID_SOCKET;
++err_count;
if (err_count > MAX_ACCEPTEX_ERR_COUNT) {
ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, APLOGNO(00337)
"Child: Encountered too many AcceptEx "
"faults accepting client connections. "
"Possible causes: dynamic address renewal, "
"or incompatible VPN or firewall software. ");
ap_log_error(APLOG_MARK, APLOG_NOTICE, rv, ap_server_conf, APLOGNO(00338)
"winnt_mpm: falling back to "
"'AcceptFilter none'.");
err_count = 0;
accf = 0;
}
continue;
}
else if ((rv != APR_FROM_OS_ERROR(ERROR_IO_PENDING)) &&
(rv != APR_FROM_OS_ERROR(WSA_IO_PENDING))) {
if (accf == 2)
apr_bucket_free(buf);
closesocket(context->accept_socket);
context->accept_socket = INVALID_SOCKET;
++err_count;
if (err_count > MAX_ACCEPTEX_ERR_COUNT) {
ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, APLOGNO(00339)
"Child: Encountered too many AcceptEx "
"faults accepting client connections.");
ap_log_error(APLOG_MARK, APLOG_NOTICE, rv, ap_server_conf, APLOGNO(00340)
"winnt_mpm: falling back to "
"'AcceptFilter none'.");
err_count = 0;
accf = 0;
goto reinit;
}
continue;
}
err_count = 0;
events[0] = context->overlapped.hEvent;
do {
rv = WaitForMultipleObjectsEx(3, events, FALSE, INFINITE, TRUE);
} while (rv == WAIT_IO_COMPLETION);
if (rv == WAIT_OBJECT_0) {
if ((context->accept_socket != INVALID_SOCKET) &&
!GetOverlappedResult((HANDLE)context->accept_socket,
&context->overlapped,
&BytesRead, FALSE)) {
ap_log_error(APLOG_MARK, APLOG_WARNING,
apr_get_os_error(), ap_server_conf, APLOGNO(00341)
"winnt_accept: Asynchronous AcceptEx failed.");
closesocket(context->accept_socket);
context->accept_socket = INVALID_SOCKET;
}
}
else {
/* exit_event triggered or event handle was closed */
closesocket(context->accept_socket);
context->accept_socket = INVALID_SOCKET;
if (accf == 2)
apr_bucket_free(buf);
break;
}
if (context->accept_socket == INVALID_SOCKET) {
if (accf == 2)
apr_bucket_free(buf);
continue;
}
}
err_count = 0;
/* Potential optimization; consider handing off to the worker */
/* Inherit the listen socket settings. Required for
* shutdown() to work
*/
if (setsockopt(context->accept_socket, SOL_SOCKET,
SO_UPDATE_ACCEPT_CONTEXT, (char *)&nlsd,
sizeof(nlsd))) {
ap_log_error(APLOG_MARK, APLOG_WARNING, apr_get_netos_error(),
ap_server_conf, APLOGNO(00342)
"setsockopt(SO_UPDATE_ACCEPT_CONTEXT) failed.");
/* Not a failure condition. Keep running. */
}
/* Get the local & remote address
* TODO; error check
*/
lpfnGetAcceptExSockaddrs(buf, len, PADDED_ADDR_SIZE, PADDED_ADDR_SIZE,
&context->sa_server, &context->sa_server_len,
&context->sa_client, &context->sa_client_len);
/* For 'data', craft a bucket for our data result
* and pass to worker_main as context->overlapped.Pointer
*/
if (accf == 2 && BytesRead)
{
apr_bucket *b;
b = apr_bucket_heap_create(buf, APR_BUCKET_BUFF_SIZE,
apr_bucket_free, context->ba);
/* Adjust the bucket to refer to the actual bytes read */
b->length = BytesRead;
context->overlapped.Pointer = b;
}
else {
if (accf == 2) {
apr_bucket_free(buf);
}
context->overlapped.Pointer = NULL;
}
}
else /* (accf = 0) e.g. 'none' */
{
/* There is no socket reuse without AcceptEx() */
if (context->accept_socket != INVALID_SOCKET)
closesocket(context->accept_socket);
/* This could be a persistent event per-listener rather than
* per-accept. However, the event needs to be removed from
* the target socket if not removed from the listen socket
* prior to accept(), or the event select is inherited.
* and must be removed from the accepted socket.
*/
do {
rv = WaitForMultipleObjectsEx(3, events, FALSE, INFINITE, TRUE);
} while (rv == WAIT_IO_COMPLETION);
if (rv != WAIT_OBJECT_0 + 2) {
/* not FD_ACCEPT;
* exit_event triggered or event handle was closed
*/
break;
}
context->sa_server = (void *) context->buff;
context->sa_server_len = sizeof(context->buff) / 2;
context->sa_client_len = context->sa_server_len;
context->sa_client = (void *) (context->buff
+ context->sa_server_len);
context->accept_socket = accept(nlsd, context->sa_server,
&context->sa_server_len);
if (context->accept_socket == INVALID_SOCKET) {
rv = apr_get_netos_error();
if ( rv == APR_FROM_OS_ERROR(WSAECONNRESET)
|| rv == APR_FROM_OS_ERROR(WSAEINPROGRESS)
|| rv == APR_FROM_OS_ERROR(WSAEWOULDBLOCK) ) {
ap_log_error(APLOG_MARK, APLOG_DEBUG,
rv, ap_server_conf, APLOGNO(00343)
"accept() failed, retrying.");
continue;
}
/* A more serious error than 'retry', log it */
ap_log_error(APLOG_MARK, APLOG_WARNING,
rv, ap_server_conf, APLOGNO(00344)
"accept() failed.");
if ( rv == APR_FROM_OS_ERROR(WSAEMFILE)
|| rv == APR_FROM_OS_ERROR(WSAENOBUFS) ) {
/* Hopefully a temporary condition in the provider? */
Sleep(100);
++err_count;
if (err_count > MAX_ACCEPTEX_ERR_COUNT) {
ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, APLOGNO(00345)
"Child: Encountered too many accept() "
"resource faults, aborting.");
break;
}
continue;
}
break;
}
/* Per MSDN, cancel the inherited association of this socket
* to the WSAEventSelect API, and restore the state corresponding
* to apr_os_sock_make's default assumptions (really, a flaw within
* os_sock_make and os_sock_put that it does not query).
*/
WSAEventSelect(context->accept_socket, 0, 0);
context->overlapped.Pointer = NULL;
err_count = 0;
context->sa_server_len = sizeof(context->buff) / 2;
if (getsockname(context->accept_socket, context->sa_server,
&context->sa_server_len) == SOCKET_ERROR) {
ap_log_error(APLOG_MARK, APLOG_WARNING, apr_get_netos_error(), ap_server_conf, APLOGNO(00346)
"getsockname failed");
continue;
}
if ((getpeername(context->accept_socket, context->sa_client,
&context->sa_client_len)) == SOCKET_ERROR) {
ap_log_error(APLOG_MARK, APLOG_WARNING, apr_get_netos_error(), ap_server_conf, APLOGNO(00347)
"getpeername failed");
memset(&context->sa_client, '\0', sizeof(context->sa_client));
}
}
sockinfo.os_sock = &context->accept_socket;
sockinfo.local = context->sa_server;
sockinfo.remote = context->sa_client;
sockinfo.family = context->sa_server->sa_family;
sockinfo.type = SOCK_STREAM;
sockinfo.protocol = IPPROTO_TCP;
/* Restore the state corresponding to apr_os_sock_make's default
* assumption of timeout -1 (really, a flaw of os_sock_make and
* os_sock_put that it does not query to determine ->timeout).
* XXX: Upon a fix to APR, these three statements should disappear.
*/
ioctlsocket(context->accept_socket, FIONBIO, &zero);
setsockopt(context->accept_socket, SOL_SOCKET, SO_RCVTIMEO,
(char *) &zero, sizeof(zero));
setsockopt(context->accept_socket, SOL_SOCKET, SO_SNDTIMEO,
(char *) &zero, sizeof(zero));
apr_os_sock_make(&context->sock, &sockinfo, context->ptrans);
/* When a connection is received, send an io completion notification
* to the ThreadDispatchIOCP.
*/
PostQueuedCompletionStatus(ThreadDispatchIOCP, BytesRead,
IOCP_CONNECTION_ACCEPTED,
&context->overlapped);
context = NULL;
}
if (!accf)
CloseHandle(events[2]);
if (!shutdown_in_progress) {
/* Yow, hit an irrecoverable error! Tell the child to die. */
SetEvent(exit_event);
}
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf, APLOGNO(00348)
"Child: Accept thread exiting.");
return 0;
}
static winnt_conn_ctx_t *winnt_get_connection(winnt_conn_ctx_t *context)
{
int rc;
DWORD BytesRead;
LPOVERLAPPED pol;
#ifdef _WIN64
ULONG_PTR CompKey;
#else
DWORD CompKey;
#endif
mpm_recycle_completion_context(context);
apr_atomic_inc32(&g_blocked_threads);
while (1) {
if (workers_may_exit) {
apr_atomic_dec32(&g_blocked_threads);
return NULL;
}
rc = GetQueuedCompletionStatus(ThreadDispatchIOCP, &BytesRead,
&CompKey, &pol, INFINITE);
if (!rc) {
rc = apr_get_os_error();
ap_log_error(APLOG_MARK, APLOG_DEBUG, rc, ap_server_conf, APLOGNO(00349)
"Child: GetQueuedComplationStatus returned %d",
rc);
continue;
}
switch (CompKey) {
case IOCP_CONNECTION_ACCEPTED:
context = CONTAINING_RECORD(pol, winnt_conn_ctx_t, overlapped);
break;
case IOCP_SHUTDOWN:
apr_atomic_dec32(&g_blocked_threads);
return NULL;
default:
apr_atomic_dec32(&g_blocked_threads);
return NULL;
}
break;
}
apr_atomic_dec32(&g_blocked_threads);
return context;
}
apr_status_t winnt_insert_network_bucket(conn_rec *c,
apr_bucket_brigade *bb,
apr_socket_t *socket)
{
apr_bucket *e;
winnt_conn_ctx_t *context = ap_get_module_config(c->conn_config,
&mpm_winnt_module);
if (context == NULL || (e = context->overlapped.Pointer) == NULL)
return AP_DECLINED;
/* seed the brigade with AcceptEx read heap bucket */
APR_BRIGADE_INSERT_HEAD(bb, e);
/* also seed the brigade with the client socket. */
e = apr_bucket_socket_create(socket, c->bucket_alloc);
APR_BRIGADE_INSERT_TAIL(bb, e);
return APR_SUCCESS;
}
/*
* worker_main()
* Main entry point for the worker threads. Worker threads block in
* win*_get_connection() awaiting a connection to service.
*/
static DWORD __stdcall worker_main(void *thread_num_val)
{
apr_thread_t *thd;
apr_os_thread_t osthd;
static int requests_this_child = 0;
winnt_conn_ctx_t *context = NULL;
int thread_num = (int)thread_num_val;
ap_sb_handle_t *sbh;
apr_bucket *e;
int rc;
conn_rec *c;
apr_int32_t disconnected;
osthd = apr_os_thread_current();
while (1) {
ap_update_child_status_from_indexes(0, thread_num, SERVER_READY, NULL);
/* Grab a connection off the network */
context = winnt_get_connection(context);
if (!context) {
/* Time for the thread to exit */
break;
}
/* Have we hit MaxConnectionsPerChild connections? */
if (ap_max_requests_per_child) {
requests_this_child++;
if (requests_this_child > ap_max_requests_per_child) {
SetEvent(max_requests_per_child_event);
}
}
e = context->overlapped.Pointer;
ap_create_sb_handle(&sbh, context->ptrans, 0, thread_num);
c = ap_run_create_connection(context->ptrans, ap_server_conf,
context->sock, thread_num, sbh,
context->ba);
if (!c) {
/* ap_run_create_connection closes the socket on failure */
context->accept_socket = INVALID_SOCKET;
if (e) {
apr_bucket_free(e);
}
continue;
}
thd = NULL;
apr_os_thread_put(&thd, &osthd, context->ptrans);
c->current_thread = thd;
/* follow ap_process_connection(c, context->sock) logic
* as it left us no chance to reinject our first data bucket.
*/
ap_update_vhost_given_ip(c);
rc = ap_run_pre_connection(c, context->sock);
if (rc != OK && rc != DONE) {
c->aborted = 1;
}
if (e && c->aborted) {
apr_bucket_free(e);
}
else {
ap_set_module_config(c->conn_config, &mpm_winnt_module, context);
}
if (!c->aborted) {
ap_run_process_connection(c);
}
apr_socket_opt_get(context->sock, APR_SO_DISCONNECTED, &disconnected);
if (!disconnected) {
context->accept_socket = INVALID_SOCKET;
if (!c->aborted) {
ap_lingering_close(c);
}
}
}
ap_update_child_status_from_indexes(0, thread_num, SERVER_DEAD, NULL);
return 0;
}
static void cleanup_thread(HANDLE *handles, int *thread_cnt,
int thread_to_clean)
{
int i;
CloseHandle(handles[thread_to_clean]);
for (i = thread_to_clean; i < ((*thread_cnt) - 1); i++)
handles[i] = handles[i + 1];
(*thread_cnt)--;
}
/*
* child_main()
* Entry point for the main control thread for the child process.
* This thread creates the accept thread, worker threads and
* monitors the child process for maintenance and shutdown
* events.
*/
static void create_listener_thread(void)
{
unsigned tid;
int num_listeners = 0;
/* Start an accept thread per listener
* XXX: Why would we have a NULL sd in our listeners?
*/
ap_listen_rec *lr;
/* Number of completion_contexts allowed in the system is
* (ap_threads_per_child + num_listeners). We need the additional
* completion contexts to prevent server hangs when ThreadsPerChild
* is configured to something less than or equal to the number
* of listeners. This is not a usual case, but people have
* encountered it.
*/
for (lr = ap_listeners; lr ; lr = lr->next) {
num_listeners++;
}
max_num_completion_contexts = ap_threads_per_child + num_listeners;
/* Now start a thread per listener */
for (lr = ap_listeners; lr; lr = lr->next) {
if (lr->sd != NULL) {
/* A smaller stack is sufficient.
* To convert to CreateThread, the returned handle cannot be
* ignored, it must be closed/joined.
*/
_beginthreadex(NULL, 65536, winnt_accept,
(void *) lr, stack_res_flag, &tid);
}
}
}
void child_main(apr_pool_t *pconf, DWORD parent_pid)
{
apr_status_t status;
apr_hash_t *ht;
ap_listen_rec *lr;
HANDLE child_events[3];
HANDLE *child_handles;
int listener_started = 0;
int threads_created = 0;
int watch_thread;
int time_remains;
int cld;
DWORD tid;
int rv;
int i;
int num_events;
apr_pool_create(&pchild, pconf);
apr_pool_tag(pchild, "pchild");
ap_run_child_init(pchild, ap_server_conf);
ht = apr_hash_make(pchild);
/* Initialize the child_events */
max_requests_per_child_event = CreateEvent(NULL, TRUE, FALSE, NULL);
if (!max_requests_per_child_event) {
ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(), ap_server_conf, APLOGNO(00350)
"Child: Failed to create a max_requests event.");
exit(APEXIT_CHILDINIT);
}
child_events[0] = exit_event;
child_events[1] = max_requests_per_child_event;
if (parent_pid != my_pid) {
child_events[2] = OpenProcess(SYNCHRONIZE, FALSE, parent_pid);
if (child_events[2] == NULL) {
num_events = 2;
ap_log_error(APLOG_MARK, APLOG_ERR, apr_get_os_error(), ap_server_conf, APLOGNO(02643)
"Child: Failed to open handle to parent process %ld; "
"will not react to abrupt parent termination", parent_pid);
}
else {
num_events = 3;
}
}
else {
/* presumably -DONE_PROCESS */
child_events[2] = NULL;
num_events = 2;
}
/*
* Wait until we have permission to start accepting connections.
* start_mutex is used to ensure that only one child ever
* goes into the listen/accept loop at once.
*/
status = apr_proc_mutex_lock(start_mutex);
if (status != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_ERR, status, ap_server_conf, APLOGNO(00351)
"Child: Failed to acquire the start_mutex. "
"Process will exit.");
exit(APEXIT_CHILDINIT);
}
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf, APLOGNO(00352)
"Child: Acquired the start mutex.");
/*
* Create the worker thread dispatch IOCompletionPort
*/
/* Create the worker thread dispatch IOCP */
ThreadDispatchIOCP = CreateIoCompletionPort(INVALID_HANDLE_VALUE,
NULL, 0, 0);
apr_thread_mutex_create(&qlock, APR_THREAD_MUTEX_DEFAULT, pchild);
qwait_event = CreateEvent(NULL, TRUE, FALSE, NULL);
if (!qwait_event) {
ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(),
ap_server_conf, APLOGNO(00353)
"Child: Failed to create a qwait event.");
exit(APEXIT_CHILDINIT);
}
/*
* Create the pool of worker threads
*/
ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf, APLOGNO(00354)
"Child: Starting %d worker threads.", ap_threads_per_child);
child_handles = (HANDLE) apr_pcalloc(pchild, ap_threads_per_child
* sizeof(HANDLE));
apr_thread_mutex_create(&child_lock, APR_THREAD_MUTEX_DEFAULT, pchild);
while (1) {
for (i = 0; i < ap_threads_per_child; i++) {
int *score_idx;
int status = ap_scoreboard_image->servers[0][i].status;
if (status != SERVER_GRACEFUL && status != SERVER_DEAD) {
continue;
}
ap_update_child_status_from_indexes(0, i, SERVER_STARTING, NULL);
child_handles[i] = CreateThread(NULL, ap_thread_stacksize,
worker_main, (void *) i,
stack_res_flag, &tid);
if (child_handles[i] == 0) {
ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(),
ap_server_conf, APLOGNO(00355)
"Child: CreateThread failed. Unable to "
"create all worker threads. Created %d of the %d "
"threads requested with the ThreadsPerChild "
"configuration directive.",
threads_created, ap_threads_per_child);
ap_signal_parent(SIGNAL_PARENT_SHUTDOWN);
goto shutdown;
}
threads_created++;
/* Save the score board index in ht keyed to the thread handle.
* We need this when cleaning up threads down below...
*/
apr_thread_mutex_lock(child_lock);
score_idx = apr_pcalloc(pchild, sizeof(int));
*score_idx = i;
apr_hash_set(ht, &child_handles[i], sizeof(HANDLE), score_idx);
apr_thread_mutex_unlock(child_lock);
}
/* Start the listener only when workers are available */
if (!listener_started && threads_created) {
create_listener_thread();
listener_started = 1;
winnt_mpm_state = AP_MPMQ_RUNNING;
}
if (threads_created == ap_threads_per_child) {
break;
}
/* Check to see if the child has been told to exit */
if (WaitForSingleObject(exit_event, 0) != WAIT_TIMEOUT) {
break;
}
/* wait for previous generation to clean up an entry in the scoreboard
*/
apr_sleep(1 * APR_USEC_PER_SEC);
}
/* Wait for one of these events:
* exit_event:
* The exit_event is signaled by the parent process to notify
* the child that it is time to exit.
*
* max_requests_per_child_event:
* This event is signaled by the worker threads to indicate that
* the process has handled MaxConnectionsPerChild connections.
*
* parent process exiting
*
* TIMEOUT:
* To do periodic maintenance on the server (check for thread exits,
* number of completion contexts, etc.)
*
* XXX: thread exits *aren't* being checked.
*
* XXX: other_child - we need the process handles to the other children
* in order to map them to apr_proc_other_child_read (which is not
* named well, it's more like a_p_o_c_died.)
*
* XXX: however - if we get a_p_o_c handle inheritance working, and
* the parent process creates other children and passes the pipes
* to our worker processes, then we have no business doing such
* things in the child_main loop, but should happen in master_main.
*/
while (1) {
#if !APR_HAS_OTHER_CHILD
rv = WaitForMultipleObjects(num_events, (HANDLE *)child_events, FALSE, INFINITE);
cld = rv - WAIT_OBJECT_0;
#else
/* THIS IS THE EXPECTED BUILD VARIATION -- APR_HAS_OTHER_CHILD */
rv = WaitForMultipleObjects(num_events, (HANDLE *)child_events, FALSE, 1000);
cld = rv - WAIT_OBJECT_0;
if (rv == WAIT_TIMEOUT) {
apr_proc_other_child_refresh_all(APR_OC_REASON_RUNNING);
}
else
#endif
if (rv == WAIT_FAILED) {
/* Something serious is wrong */
ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(),
ap_server_conf, APLOGNO(00356)
"Child: WAIT_FAILED -- shutting down server");
/* check handle validity to identify a possible culprit */
for (i = 0; i < num_events; i++) {
DWORD out_flags;
if (0 == GetHandleInformation(child_events[i], &out_flags)) {
ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(),
ap_server_conf, APLOGNO(02644)
"Child: Event handle #%d (%pp) is invalid",
i, child_events[i]);
}
}
break;
}
else if (cld == 0) {
/* Exit event was signaled */
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf, APLOGNO(00357)
"Child: Exit event signaled. Child process is "
"ending.");
break;
}
else if (cld == 2) {
/* The parent is dead. Shutdown the child process. */
ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf, APLOGNO(02538)
"Child: Parent process exited abruptly. Child process "
"is ending");
break;
}
else {
/* MaxConnectionsPerChild event set by the worker threads.
* Signal the parent to restart
*/
ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf, APLOGNO(00358)
"Child: Process exiting because it reached "
"MaxConnectionsPerChild. Signaling the parent to "
"restart a new child process.");
ap_signal_parent(SIGNAL_PARENT_RESTART);
break;
}
}
/*
* Time to shutdown the child process
*/
shutdown:
winnt_mpm_state = AP_MPMQ_STOPPING;
/* Close the listening sockets. Note, we must close the listeners
* before closing any accept sockets pending in AcceptEx to prevent
* memory leaks in the kernel.
*/
for (lr = ap_listeners; lr ; lr = lr->next) {
apr_socket_close(lr->sd);
}
/* Shutdown listener threads and pending AcceptEx sockets
* but allow the worker threads to continue consuming from
* the queue of accepted connections.
*/
shutdown_in_progress = 1;
Sleep(1000);
/* Tell the worker threads to exit */
workers_may_exit = 1;
/* Release the start_mutex to let the new process (in the restart
* scenario) a chance to begin accepting and servicing requests
*/
rv = apr_proc_mutex_unlock(start_mutex);
if (rv == APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf, APLOGNO(00359)
"Child: Released the start mutex");
}
else {
ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, APLOGNO(00360)
"Child: Failure releasing the start mutex");
}
/* Shutdown the worker threads
* Post worker threads blocked on the ThreadDispatch IOCompletion port
*/
while (g_blocked_threads > 0) {
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf, APLOGNO(00361)
"Child: %d threads blocked on the completion port",
g_blocked_threads);
for (i=g_blocked_threads; i > 0; i--) {
PostQueuedCompletionStatus(ThreadDispatchIOCP, 0,
IOCP_SHUTDOWN, NULL);
}
Sleep(1000);
}
/* Empty the accept queue of completion contexts */
apr_thread_mutex_lock(qlock);
while (qhead) {
CloseHandle(qhead->overlapped.hEvent);
closesocket(qhead->accept_socket);
qhead = qhead->next;
}
apr_thread_mutex_unlock(qlock);
/* Give busy threads a chance to service their connections
* (no more than the global server timeout period which
* we track in msec remaining).
*/
watch_thread = 0;
time_remains = (int)(ap_server_conf->timeout / APR_TIME_C(1000));
while (threads_created)
{
int nFailsafe = MAXIMUM_WAIT_OBJECTS;
DWORD dwRet;
/* Every time we roll over to wait on the first group
* of MAXIMUM_WAIT_OBJECTS threads, take a breather,
* and infrequently update the error log.
*/
if (watch_thread >= threads_created) {
if ((time_remains -= 100) < 0)
break;
/* Every 30 seconds give an update */
if ((time_remains % 30000) == 0) {
ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS,
ap_server_conf, APLOGNO(00362)
"Child: Waiting %d more seconds "
"for %d worker threads to finish.",
time_remains / 1000, threads_created);
}
/* We'll poll from the top, 10 times per second */
Sleep(100);
watch_thread = 0;
}
/* Fairness, on each iteration we will pick up with the thread
* after the one we just removed, even if it's a single thread.
* We don't block here.
*/
dwRet = WaitForMultipleObjects(min(threads_created - watch_thread,
MAXIMUM_WAIT_OBJECTS),
child_handles + watch_thread, 0, 0);
if (dwRet == WAIT_FAILED) {
break;
}
if (dwRet == WAIT_TIMEOUT) {
/* none ready */
watch_thread += MAXIMUM_WAIT_OBJECTS;
continue;
}
else if (dwRet >= WAIT_ABANDONED_0) {
/* We just got the ownership of the object, which
* should happen at most MAXIMUM_WAIT_OBJECTS times.
* It does NOT mean that the object is signaled.
*/
if ((nFailsafe--) < 1)
break;
}
else {
watch_thread += (dwRet - WAIT_OBJECT_0);
if (watch_thread >= threads_created)
break;
cleanup_thread(child_handles, &threads_created, watch_thread);
}
}
/* Kill remaining threads off the hard way */
if (threads_created) {
ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf, APLOGNO(00363)
"Child: Terminating %d threads that failed to exit.",
threads_created);
}
for (i = 0; i < threads_created; i++) {
int *idx;
TerminateThread(child_handles[i], 1);
CloseHandle(child_handles[i]);
/* Reset the scoreboard entry for the thread we just whacked */
idx = apr_hash_get(ht, &child_handles[i], sizeof(HANDLE));
if (idx) {
ap_update_child_status_from_indexes(0, *idx, SERVER_DEAD, NULL);
}
}
ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf, APLOGNO(00364)
"Child: All worker threads have exited.");
apr_thread_mutex_destroy(child_lock);
apr_thread_mutex_destroy(qlock);
CloseHandle(qwait_event);
apr_pool_destroy(pchild);
CloseHandle(exit_event);
if (child_events[2] != NULL) {
CloseHandle(child_events[2]);
}
}
#endif /* def WIN32 */
|
the_stack_data/122014512.c | #include <sys/types.h>
#include <errno.h>
int
_chown(const char *path, uid_t owner, gid_t group)
{
errno = ENOSYS;
return -1;
}
|
the_stack_data/154831082.c | // Test needle overflow in strstr function
// RUN: %clang_asan %s -o %t && env ASAN_OPTIONS=$ASAN_OPTIONS:strict_string_checks=true not %run %t 2>&1 | FileCheck %s
// Test intercept_strstr asan option
// Disable other interceptors because strlen may be called inside strstr
// RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:intercept_strstr=false:replace_str=false %run %t 2>&1
#include <assert.h>
#include <string.h>
int main(int argc, char **argv) {
char *r = 0;
char s1[] = "ab";
char s2[] = {'c'};
char s3 = 0;
r = strstr(s1, s2);
// CHECK:'s{{[2|3]}}' <== Memory access at offset {{[0-9]+ .*}}flows this variable
assert(r == 0);
return 0;
}
|
the_stack_data/211081246.c | /*
* POK header
*
* The following file is a part of the POK project. Any modification should
* made according to the POK licence. You CANNOT use this file or a part of
* this file is this part of a file for your own project
*
* For more information on the POK licence, please see our LICENCE FILE
*
* Please follow the coding guidelines described in doc/CODING_GUIDELINES
*
* Copyright (c) 2007-2009 POK team
*
* Created by julien on Thu Jan 15 23:34:13 2009
*/
#ifdef POK_NEEDS_MUTEXES
#include <types.h>
#include <errno.h>
#include <core/time.h>
#include <core/lockobj.h>
#include <core/mutex.h>
#include <core/syscall.h>
pok_ret_t pok_mutex_trylock (const pok_mutex_id_t id, const uint64_t us)
{
pok_lockobj_lockattr_t lockattr;
lockattr.operation = LOCKOBJ_OPERATION_LOCK;
if (us > 0)
{
pok_time_get (&lockattr.time);
lockattr.time += us*1000;
}
lockattr.obj_kind = POK_LOCKOBJ_KIND_MUTEX;
return (pok_syscall2 (POK_SYSCALL_LOCKOBJ_OPERATION, (uint32_t)id, (uint32_t)&lockattr));
}
#endif
|
the_stack_data/666164.c | /*******************************************************************************
Copyright (C), 2011-2012, Andrew Min Chang
File name: timeMark.h
Description:
This file provide simple interface to mark process running time within the program.
Author: Andrew Chang (Zhang Min)
History:
2012-08-24: File created
--------------------------------------------------------------
Copyright information:
This file was intended to be under GPL protocol. However, I may use this library
in my working as I am an employee. And my company may require me to keep it se-
cret. Therefore, this file is neither open source nor under GPL control.
********************************************************************************/
#include <stdio.h>
#include <sys/time.h>
static struct timeval startTime = {0, 0};
static void staticPrintTime()
{
struct timeval currTime;
struct timezone dummyTZ;
if (0 == startTime.tv_sec)
{
gettimeofday(&startTime, &dummyTZ);
printf("000.000000sec\n");
}
else
{
gettimeofday(&currTime, &dummyTZ);
currTime.tv_usec -= startTime.tv_usec;
if ((signed int)(currTime.tv_usec) < 0)
{
currTime.tv_usec += 1000000;
currTime.tv_sec -= (startTime.tv_sec + 1);
}
else
{
currTime.tv_sec -= startTime.tv_sec;
}
printf("%03ld.%06ldsec\n", currTime.tv_sec, currTime.tv_usec);
}
}
void AMCTimeMark()
{
printf("##TIME: ");
staticPrintTime();
return;
}
void AMCTimeMarkDetailed(char *file, int line)
{
printf("##TIME: %s, Line %d: ", file, line);
staticPrintTime();
return;
}
|
the_stack_data/46498.c | #include <stdio.h>
int main ()
{
int i, j, count ;
for (i = 20;;i++)
{
for (j = 1, count = 0; j <= 20; j++,count++)
{
if (i % j != 0)
break ;
}
if (count == 20)
break ;
}
printf ("Smallest: %i\n",i) ;
return 0 ;
}
|
the_stack_data/80510.c | #define _GNU_SOURCE
#include<stdio.h>
#include<string.h>
//#define STR
int main(int argc,char *argv[])
{
int i,j;
const char a[] = "abcdwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww";
char buf[50000];
char *p;
int flg=0;
if(argc>1) {
if(*argv[1]=='s') flg=1;
}
for( i = 0; i < 0xfffff; i++ )
{
buf[0] = 0;
p=buf;
for(j=0;j<50;j++) {
#ifdef STR
strcat(buf,a);
strcat(buf,"|");
#else
if(flg) {
p=stpcpy( p, a);
*p++='|';
*p=0;
} else {
p+=sprintf(p,"%s|",a);
}
#endif
}
}
return 0;
}
|
the_stack_data/544691.c | #include <stdio.h>
#define MAX 8
int main(void) {
int a[MAX], i;
printf("Enter %d integers:", MAX);
for (i = 0; i < MAX; i++)
scanf("%d", &a[i]);
for (i = MAX - 1; i >= 0; i--)
printf("%d ", a[i]);
}
|
the_stack_data/817361.c | /*-------------------------------------------------------------------------
*
* vpool.c
*
* Memory pool implementation for version cluster
*
*
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* src/backend/storage/vcluster/vpool.c
*
*-------------------------------------------------------------------------
*/
#ifdef HYU_LLT
#include "postgres.h"
/*
* VPoolShmemSize
*
* compute the size of shared memory for a vpool
*/
Size
VPoolShmemSize(int size_pool, int bytes_entry)
{
Size size = 0;
/* add the size of the VPool structure*/
size = add_size(size, sizeof(VPool));
/* add the size of the memory pool with the given size */
size = add_size(size, (mul_size(size_pool, bytes_entry));
return size;
}
/*
* VPoolShmemInit
*
* Initialize vpool in shared memory with given size
*/
VPool*
VPoolShmemInit(char *pool_name, int size_pool, int bytes_entry)
{
bool foundPool,
foundPoolIntr;
VPool *vpool;
char internal_pool_name[128];
/* Initialize VPool structure */
vpool = (VPool *)ShmemInitStruct(pool_name, sizeof(VPool), &foundPool);
vpool->size_pool = size_pool;
vpool->bytes_entry = bytes_entry;
/* Initialize memory pool for VPool */
sprintf(internal_pool_name, "%s_internal", pool_name);
vpool->pool_ptr = ShmemInitStruct(internal_pool_name,
pool_size * bytes_entry,
&foundPoolIntr);
/* Setup freelist of the pool */
vpool->freelist = NULL;
for (int i = 0; i < size_pool; i++) {
char *entry = (vpool->pool_ptr + (i * bytes_entry);
*((char**)entry) = vpool->freelist;
vpool->freelist = entry;
}
return vpool;
}
#endif /* HYU_LLT */
|
the_stack_data/723385.c | #include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <ctype.h>
bool checkQuestions(char *line, uint32_t *mask, uint32_t *mask2) {
uint32_t count = 0;
uint32_t m = 0;
while (*line >= 'a' && *line <= 'z') {
uint32_t i = *line++ - 'a';
m |= (1 << i);
count++;
}
if (*mask == 0) { // init mask2 can not be done with mask2
*mask2 = m;
}
*mask |= m;
if (count > 0) {
*mask2 &= m;
}
return count == 0;
}
uint32_t count(uint32_t mask) {
uint32_t count = 0;
for (uint32_t i = 0; i < 27; i++) {
if (mask & 1) {
count++;
}
mask >>= 1;
}
return count;
}
int main(void) {
FILE* f = fopen("input6.txt", "r");
if (f != NULL) {
char buf[512];
uint32_t trueCount1 = 0;
uint32_t trueCount2 = 0;
uint32_t mask1 = 0;
uint32_t mask2 = 0;
while (fgets(buf, sizeof buf, f) != NULL) {
if (checkQuestions(buf, &mask1, &mask2)) {
trueCount1 += count(mask1);
trueCount2 += count(mask2);
mask1 = 0;
mask2 = 0;
}
}
trueCount1 += count(mask1);
trueCount2 += count(mask2);
printf("sum of anyone in a groups = %d\n", trueCount1);
printf("sum of ereryone in a groups = %d\n", trueCount2);
fclose(f);
}
return 0;
}
|
the_stack_data/92326711.c | // NO FUNCIONA BIEN PORQUE ENVIAMOS T = 128. Para que funcione bien debemos mandar la info
// tal que: 4 Paco 5 Lopez, de manera que sepamos cuantos chars tenemos que leer a la salida
// Hay que terminar de implementar esto en el hijo
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <sys/wait.h>
#include <stdlib.h>
#define T 128
/* El padre va a leer unos argumentos, los mandara al hijo y este
* los imprimira por pantalla. */
int main(int argc, char *argv[]){
// Creamos la PIPE
int p[2];
if (pipe(p) < 0){
perror("pipe");
return -1;
}
// Variables
char nombre[T];
char apellido[T];
int leidos;
// Nos clonamos: fork()
pid_t pid;
if((pid = fork()) < 0){
perror("fork");
return -1;
}
if( pid > 0){
// Codigo del padre
printf("Introduce nombre: \n");
leidos = read(0, nombre, T);
nombre[leidos - 1] = '\0';
printf("Introduce apellido: \n");
leidos = read(0, nombre, T);
apellido[leidos - 1] = '\0';
// Cerramos el extemo de la PIPE que no necesitamos
if(close(p[0]) < 0){
perror("close");
return -1;
}
// Enviamos los datos a nuestro hijo
int longitud = strlen(nombre);
write(p[1], &longitud, sizeof(longitud));
write(p[1], nombre, longitud);
longitud = strlen(apellido);
write(p[1], &longitud, sizeof(longitud));
write(p[1], apellido, longitud);
// Cerramos la PIPE
if(close(p[1])){
perror("Close");
return -1;
}
// Esperamos al hijo
wait(0);
} else {
// Codigo del hijo
// Cerramos lo que no necesitamos
if(close(p[1]) < 0) {
perror("close");
return -1;
}
leidos = read(p[0], nombre, T);
nombre[leidos] = '\0'; // Volvemos a poner el \0 ya que al pasarlo por el pipe solo pasa el string
printf("Nombre = %s\n", nombre);
leidos = read(p[0], apellido, T);
apellido[leidos] = '\0';
printf("Apellido = %s\n", apellido);
// Terminamos
exit(0);
}
return 0;
}
|
the_stack_data/82908.c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
puts("");
puts("*************************************************");
puts("*************************************************");
puts("** __ __ __ __ __ __ __ **");
puts("** |__| |__| |__ |__ | _ | | | |__| | \\ **");
puts("** | | | __| __| |/ \\| |__| | \\ |__/ **");
puts("** **");
puts("** __ __ __ __ __ ___ __ __ **");
puts("** | _ |__ |\\ | |__ |__| |__| | | | |__| **");
puts("** |__| |__ | \\| |__ | \\ | | | |__| | \\ **");
puts("** **");
puts("*************************************************");
puts("*************************************************");
puts("** **");
puts("** Options: **");
puts("** **");
puts("** 1. Single password **");
puts("** 2. Multiple passwords **");
puts("** **");
puts("*************************************************");
puts("*************************************************");
puts("");
int op;
scanf("%d", &op);
while (op != 1 && op != 2) {
puts("Not a valid option.");
scanf("%d", &op);
}
puts("");
int amount = 1;
if (op == 2) {
printf("Type the number of passwords: ");
scanf("%d", &amount);
}
puts("");
printf("Type the password's length: ");
int length;
scanf("%d", &length);
puts("");
puts("***************************************");
puts("***************************************");
puts("** **");
puts("** Character options: **");
puts("** **");
puts("** 1. Special characters **");
puts("** 2. Numbers **");
puts("** **");
puts("** Sum the desired options' numbers. **");
puts("** It's possible to choose none. **");
puts("** **");
puts("***************************************");
puts("***************************************");
puts("");
int **ranges = malloc(3 * sizeof(int *));
ranges[0] = malloc(2 * sizeof(int));
ranges[1] = malloc(2 * sizeof(int));
ranges[2] = malloc(2 * sizeof(int));
int ranges_amount = 0;
int sum;
scanf("%d", &sum);
while (sum < 0 && sum > 3) {
puts("Not a valid sum.");
scanf("%d", &sum);
}
switch (sum) {
case 0:
ranges_amount = 2;
ranges[0][0] = 65;
ranges[0][1] = 90;
ranges[1][0] = 97;
ranges[1][1] = 122;
break;
case 1:
ranges_amount = 2;
ranges[0][0] = 32;
ranges[0][1] = 47;
ranges[1][0] = 58;
ranges[1][1] = 126;
break;
case 2:
ranges_amount = 3;
ranges[0][0] = 48;
ranges[0][1] = 57;
ranges[1][0] = 65;
ranges[1][1] = 90;
ranges[2][0] = 97;
ranges[2][1] = 122;
break;
case 3:
ranges_amount = 1;
ranges[0][0] = 32;
ranges[0][1] = 126;
break;
}
puts("");
int k = 0;
char *characters = malloc(95);
for (int i = 0; i < ranges_amount; i++) {
for (int j = ranges[i][0]; j <= ranges[i][1]; j++) {
characters[k++] = j;
}
}
char *password = malloc(length + 1);
if (op == 1)
puts("Final password:");
else
puts("Final passwords:");
for (int i = 0; i < amount; i++) {
time_t t;
srand((unsigned) time(&t) + i);
for (int j = 0; j < length; j++) {
int index = rand() % k;
password[j] = characters[index];
}
password[length] = '\0';
printf("%s\n", password);
}
puts("");
return 0;
}
|
the_stack_data/232955315.c | #include <stdio.h>
int silnia (unsigned int liczba) {
int i, sil = 1;
for (i = 2; i <= liczba; i++)
sil *= i;
return sil;
}
int main()
{
int n;
printf("Podaj liczbę całkowitą: ");
scanf("%d", &n);
printf("silnia z %d = %d\n", n, silnia(n));
return 0;
}
|
the_stack_data/939452.c | /********************************************************************************************************
* @file zcl_multistate_input_attr.c
*
* @brief This is the source file for zcl_multistate_input_attr
*
* @author Zigbee Group
* @date 2021
*
* @par Copyright (c) 2021, Telink Semiconductor (Shanghai) Co., Ltd. ("TELINK")
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************************************/
#if 0
/**********************************************************************
* INCLUDES
*/
#include "../zcl_include.h"
/**********************************************************************
* LOCAL CONSTANTS
*/
/**********************************************************************
* LOCAL TYPES
*/
/**********************************************************************
* LOCAL VARIABLES
*/
#ifdef ZCL_MULITSTATE_INPUT
#ifdef ZCL_MULTISTATE_INPUT_ATTR_STATE_TEXT_ENBLE
u8 zcl_attr_mulInput_stateText[ZCL_MULTISTATE_INPUT_MAX_LENGTH] = {0};
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_DESCRIPTION_ENBLE
u8 zcl_attr_mulInput_description[ZCL_MULTISTATE_INPUT_MAX_LENGTH] = {0};
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_NUM_OF_STATES_ENBLE
u16 zcl_attr_mulInput_numOfStates = 0;
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_OUT_OF_SERVICE_ENBLE
bool zcl_attr_mulInput_outOfService = FALSE;
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_PRESENT_VALUE_ENBLE
u16 zcl_attr_mulInput_presentValue = 0;
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_RELIABLILITY_ENBLE
u8 zcl_attr_mulInput_reliability = 0x00;
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_STATUS_FLAGS_ENBLE
u8 zcl_attr_mulInput_statusFlags = 0;
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_APP_TYPE_ENBLE
u32 zcl_attr_mulInput_appType = 0;
#endif
const zclAttrInfo_t multistate_input_attrTbl[] =
{
#ifdef ZCL_MULTISTATE_INPUT_ATTR_STATE_TEXT_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_STATE_TEXT, ZCL_DATA_TYPE_CHAR_STR, ACCESS_CONTROL_READ | ACCESS_CONTROL_WRITE, (u8*)zcl_attr_mulInput_stateText},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_DESCRIPTION_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_DESCRIPTION, ZCL_DATA_TYPE_CHAR_STR, ACCESS_CONTROL_READ | ACCESS_CONTROL_WRITE, (u8*)zcl_attr_mulInput_description},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_NUM_OF_STATES_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_NUM_OF_STATES, ZCL_DATA_TYPE_UINT16, ACCESS_CONTROL_READ | ACCESS_CONTROL_WRITE, (u8*)&zcl_attr_mulInput_numOfStates},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_OUT_OF_SERVICE_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_OUT_OF_SERVICE, ZCL_DATA_TYPE_BOOLEAN, ACCESS_CONTROL_READ | ACCESS_CONTROL_WRITE, (u8*)&zcl_attr_mulInput_outOfService},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_PRESENT_VALUE_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_PRESENT_VALUE, ZCL_DATA_TYPE_UINT16, ACCESS_CONTROL_READ | ACCESS_CONTROL_WRITE, (u8*)&zcl_attr_mulInput_presentValue},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_RELIABLILITY_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_RELIABLILITY, ZCL_DATA_TYPE_ENUM8, ACCESS_CONTROL_READ | ACCESS_CONTROL_WRITE, (u8*)&zcl_attr_mulInput_reliability},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_STATUS_FLAGS_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_STATUS_FLAGS, ZCL_DATA_TYPE_BITMAP8, ACCESS_CONTROL_READ, (u8*)&zcl_attr_mulInput_statusFlags},
#endif
#ifdef ZCL_MULTISTATE_INPUT_ATTR_APP_TYPE_ENBLE
{ ZCL_MULTISTATE_INPUT_ATTRID_APP_TYPE, ZCL_DATA_TYPE_UINT32, ACCESS_CONTROL_READ, (u8*)&zcl_attr_mulInput_appType},
#endif
{ ZCL_ATTRID_GLOBAL_CLUSTER_REVISION, ZCL_DATA_TYPE_UINT16, ACCESS_CONTROL_READ, (u8*)&zcl_attr_global_clusterRevision},
};
const u8 zcl_multistate_input_attrNum = ( sizeof(multistate_input_attrTbl) / sizeof(zclAttrInfo_t) );
#endif /* ZCL_MULISTATE_INPUT */
#endif
|
the_stack_data/44880.c | int D[1024][1024];
int C[1024][1024];
int A[1024][1024];
int B[1024][1024];
int alpha, beta;
void gemm() {
for (int i = 0; i < 1024; i++)
for (int j = 0; j < 1024; j++)
D[i][j] = beta * C[i][j];
#pragma scop
for (int i = 0; i < 1024; i++)
for (int j = 0; j < 1024; j++)
for (int k = 0; k < 1024; k++)
D[i][j] += alpha * A[i][k] * B[k][j];
#pragma endscop
}
|
the_stack_data/545519.c | /* Pointer assignments program */
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
struct node {
int data;
struct node* next;
};
void print_list(struct node* head) {
while (head != NULL) {
printf("%d -> ", head->data);
head = head->next;
}
printf("NULL\n");
}
struct node* create_node(int data) {
struct node* newNode = (struct node*)malloc(sizeof(struct node));
newNode->data = data;
newNode->next = NULL;
return newNode;
}
void append_data(struct node** headRef, int data) {
assert(headRef != NULL);
if (*headRef == NULL) {
*headRef = create_node(data);
return;
}
struct node* head = *headRef;
while (head->next != NULL) {
head = head->next;
}
head->next = create_node(data);
}
void remove_duplicates(struct node* source) {
if (source == NULL) {
return;
}
struct node* curr = source->next;
struct node* prev = source;
while (curr != NULL) {
if (curr != NULL && curr->data == prev->data) {
prev->next = curr->next;
curr->next = NULL;
free(curr);
curr = prev->next;
continue;
}
prev = curr;
curr = curr->next;
}
}
int main() {
struct node* head = NULL;
append_data(&head, 4);
append_data(&head, 6);
append_data(&head, 8);
append_data(&head, 8);
append_data(&head, 8);
append_data(&head, 12);
append_data(&head, 12);
print_list(head);
remove_duplicates(head);
print_list(head);
}
|
the_stack_data/231394225.c | #define _SVID_SOURCE
#include <sys/ipc.h>
#include <sys/shm.h>
#define PERM_RO 0644
int shmem_create( key_t key, size_t mem_size_bytes )
{
return shmget( key, mem_size_bytes, IPC_CREAT | PERM_RO ); // read only to others
}
int shmem_destroy( int h_shmem )
{
return shmctl( h_shmem, IPC_RMID, 0L );
}
void* shmem_open( key_t key, size_t mem_size_bytes )
{
void* rv;
int h;
h = shmget( key, mem_size_bytes, PERM_RO );
if ( h == -1 )
return 0L;
rv = shmat( h, 0L, 0 );
if ( rv == (void*)-1 )
return 0L;
return rv;
}
int shmem_close( void* shmem_addr )
{
return shmdt( shmem_addr );
}
|
the_stack_data/73575653.c | /*************************************************************************/
/* */
/* SNU-RT Benchmark Suite for Worst Case Timing Analysis */
/* ===================================================== */
/* Collected and Modified by S.-S. Lim */
/* [email protected] */
/* Real-Time Research Group */
/* Seoul National University */
/* */
/* */
/* < Features > - restrictions for our experimental environment */
/* */
/* 1. Completely structured. */
/* - There are no unconditional jumps. */
/* - There are no exit from loop bodies. */
/* (There are no 'break' or 'return' in loop bodies) */
/* 2. No 'switch' statements. */
/* 3. No 'do..while' statements. */
/* 4. Expressions are restricted. */
/* - There are no multiple expressions joined by 'or', */
/* 'and' operations. */
/* 5. No library calls. */
/* - All the functions needed are implemented in the */
/* source file. */
/* */
/* */
/*************************************************************************/
/* */
/* FILE: qurt.c */
/* SOURCE : Turbo C Programming for Engineering by Hyun Soo Ahn */
/* */
/* DESCRIPTION : */
/* */
/* Root computation of quadratic equations. */
/* The real and imaginary parts of the solution are stored in the */
/* array x1[] and x2[]. */
/* */
/* REMARK : */
/* */
/* EXECUTION TIME : */
/* */
/* */
/*************************************************************************/
/*
** Benchmark Suite for Real-Time Applications, by Sung-Soo Lim
**
** III-7. qurt.c : the root computation of a quadratic equation
** (from the book C Programming for EEs by Hyun Soon Ahn)
*/
#define DEBUG 1
#define END_SIM \
asm(".word 0x22222222");
#ifdef DEBUG
#include <stdio.h>
#endif
double a[3], x1[2], x2[2];
int flag;
int qurt();
double fabs(double n)
{
double f;
if (n >= 0) f = n;
else f = -n;
return f;
}
double sqrt(val)
double val;
{
double x = val/10;
double dx;
double diff;
double min_tol = 0.00001;
int i, flag;
flag = 0;
if (val == 0 ) x = 0;
else {
for (i=1;i<20;i++)
{
if (!flag) {
dx = (val - (x*x)) / (2.0 * x);
x = x + dx;
diff = val - (x*x);
if (fabs(diff) <= min_tol) flag = 1;
}
else
x =x;
}
}
return (x);
}
int main()
{
#ifdef DEBUG
int i = 0;
#endif
int flag;
a[0] = 1.0;
a[1] = -3.0;
a[2] = 2.0;
qurt();
a[0] = 1.0;
a[1] = -2.0;
a[2] = 1.0;
qurt();
a[0] = 1.0;
a[1] = -4.0;
a[2] = 8.0;
qurt();
#ifdef DEBUG
for (i = 0; i<2; i++) {
printf("x1[%i]: %f\n",i,x1[i]);
printf("x2[%i]: %f\n",i,x2[i]);
}
#endif
END_SIM;
return 0;
}
int qurt()
{
double d, w1, w2;
if(a[0] == 0.0) return(999);
d = a[1]*a[1] - 4 * a[0] * a[2];
w1 = 2.0 * a[0];
w2 = sqrt(fabs(d));
if(d > 0.0)
{
flag = 1;
x1[0] = (-a[1] + w2) / w1;
x1[1] = 0.0;
x2[0] = (-a[1] - w2) / w1;
x2[1] = 0.0;
return(0);
}
else if(d == 0.0)
{
flag = 0;
x1[0] = -a[1] / w1;
x1[1] = 0.0;
x2[0] = x1[0];
x2[1] = 0.0;
return(0);
}
else
{
flag = -1;
w2 /= w1;
x1[0] = -a[1] / w1;
x1[1] = w2;
x2[0] = x1[0];
x2[1] = -w2;
return(0);
}
}
|
the_stack_data/162642773.c | /*
* Copyright 2016 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <stdio.h>
#include <setjmp.h>
#include <stdlib.h>
#include <string.h>
int bottom, top;
int run(int y) {
// confuse stack
char *s = (char *)alloca(100);
memset(s, 1, 100);
s[y] = y;
s[y / 2] = y * 2;
volatile int x = s[y];
top = (int)alloca(4);
if (x <= 2) return x;
jmp_buf buf;
printf("setjmp of %d\n", x);
if (setjmp(buf) == 0) {
printf("going\n");
x += run(x / 2);
longjmp(buf, 1);
}
printf("back\n");
return x / 2;
}
int main(int argc, char **argv) {
int sum = 0;
for (int i = 0; i < argc * 2; i++) {
bottom = (int)alloca(4);
sum += run(10);
// scorch the earth
if (bottom < top) {
memset((void *)bottom, 1, top - bottom);
} else {
memset((void *)top, 1, bottom - top);
}
}
printf("%d\n", sum);
return sum;
}
|
the_stack_data/103035.c | #include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *f;
f = fopen("/proc/stat", "r");
size_t user, nice, system,idle;
if (f != NULL){
int x = fscanf(f,"%*s %llu %llu %llu %llu",&user,&nice,&system,&idle);
printf("nums = %d\n", x);
}
fclose(f);
size_t p_total = user+nice+system+idle;
size_t p_idle = idle;
sleep(1);
f = fopen("/proc/stat", "r");
if (f != NULL){
fscanf(f, "%*s %llu %llu %llu %llu",&user, &nice, &system, &idle);
}
fclose(f);
double below = user+nice+system+idle - p_total;
double above = idle - p_idle;
printf("usage = %.2lf %%\n", (1 - above / below) * 100);
return 0;
}
|
the_stack_data/107953971.c | /*
FUNCTION
<<strchr>>---search for character in string
INDEX
strchr
ANSI_SYNOPSIS
#include <string.h>
char * strchr(const char *<[string]>, int <[c]>);
TRAD_SYNOPSIS
#include <string.h>
char * strchr(<[string]>, <[c]>);
const char *<[string]>;
int <[c]>;
DESCRIPTION
This function finds the first occurence of <[c]> (converted to
a char) in the string pointed to by <[string]> (including the
terminating null character).
RETURNS
Returns a pointer to the located character, or a null pointer
if <[c]> does not occur in <[string]>.
PORTABILITY
<<strchr>> is ANSI C.
<<strchr>> requires no supporting OS subroutines.
QUICKREF
strchr ansi pure
*/
#include <stddef.h>
#include <limits.h>
/* Nonzero if X is not aligned on a "long" boundary. */
#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))
/* How many bytes are loaded each iteration of the word copy loop. */
#define LBLOCKSIZE (sizeof (long))
#if LONG_MAX == 2147483647L
#define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080)
#else
#if LONG_MAX == 9223372036854775807L
/* Nonzero if X (a long int) contains a NULL byte. */
#define DETECTNULL(X) (((X) - 0x0101010101010101) & ~(X) & 0x8080808080808080)
#else
#error long int is not a 32bit or 64bit type.
#endif
#endif
/* DETECTCHAR returns nonzero if (long)X contains the byte used
to fill (long)MASK. */
#define DETECTCHAR(X,MASK) (DETECTNULL(X ^ MASK))
char *strchr(const char *s1, int i)
{
const unsigned char *s = (const unsigned char *)s1;
unsigned char c = i;
#if !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__)
unsigned long mask,j;
unsigned long *aligned_addr;
/* Special case for finding 0. */
if (!c)
{
while (UNALIGNED (s))
{
if (!*s)
return (char *) s;
s++;
}
/* Operate a word at a time. */
aligned_addr = (unsigned long *) s;
while (!DETECTNULL (*aligned_addr))
aligned_addr++;
/* Found the end of string. */
s = (const unsigned char *) aligned_addr;
while (*s)
s++;
return (char *) s;
}
/* All other bytes. Align the pointer, then search a long at a time. */
while (UNALIGNED (s))
{
if (!*s)
return NULL;
if (*s == c)
return (char *) s;
s++;
}
mask = c;
for (j = 8; j < LBLOCKSIZE * 8; j <<= 1)
mask = (mask << j) | mask;
aligned_addr = (unsigned long *) s;
while (!DETECTNULL (*aligned_addr) && !DETECTCHAR (*aligned_addr, mask))
aligned_addr++;
/* The block of bytes currently pointed to by aligned_addr
contains either a null or the target char, or both. We
catch it using the bytewise search. */
s = (unsigned char *) aligned_addr;
#endif /* not PREFER_SIZE_OVER_SPEED */
while (*s && *s != c)
s++;
if (*s == c)
return (char *)s;
return NULL;
}
|
the_stack_data/92327499.c | struct int_pair_s {
int x, y;
};
typedef struct int_pair_s int_pair;
struct has_padding {
int x;
int:1;
int y;
};
typedef struct { int a, b; } anon;
void entry (const unsigned sz, int buf[const]) {
// anonymous and nested anonymous structs
struct {
struct { int x, y; } n;
int z;
} local = { .n.x = 1, .n.y = 2, .z = 3}; // initializers
int i = 0;
buf[i++] = local.n.x;
buf[i++] = local.n.y;
buf[i++] = local.z;
struct int_pair_s pair1, pair2;
pair1.x = 10;
pair1.y = 20;
pair2 = pair1; // struct assignment
buf[i++] = pair2.x;
buf[i++] = pair2.y;
struct int_pair_s uninit = {0};
buf[i++] = uninit.x;
buf[i++] = uninit.y;
struct { struct { int x; }; struct { int y; }; } z = {0};
buf[i++] = z.x;
buf[i++] = z.y;
}
|
the_stack_data/124773.c | //Program to calculate the number of possible moves of Knight in a chess board of 8x8
//Just by knowing the current position of the knight in Chess board whose origin is (0,0)
#include<stdio.h>
void main()
{
int x,y,sum=0,flag=1;
while(flag==1)
{
printf("\n Enter the coordinates of x,y:");
scanf("%d %d",&x,&y);
if(!(x>7 || y>7 || x<0 ||y<0))
{
if (x+2<=7 && y+1<=7)
sum+=1;
if (x+2<=7 && y-1>=0)
sum+=1;
if (x-2>=0 && y+1<=7)
sum+=1;
if (x-2>=0 && y-1>=0)
sum+=1;
if (x+1<=7 && y+2<=7)
sum+=1;
if (x+1<=7 && y-2>=0)
sum+=1;
if (x-1>=0 && y+2<=7)
sum+=1;
if (x-1>=0 && y-2>=0)
sum+=1;
flag=0;
}
else
{
printf("Enter the valid coordinate \n");
flag=1;
}
}
printf("The no of possible moves for (%d,%d) is %d",x,y,sum);
}
|
the_stack_data/75137007.c | #1 "axi_interfaces.c"
#1 "axi_interfaces.c" 1
#1 "<built-in>" 1
#1 "<built-in>" 3
#147 "<built-in>" 3
#1 "<command line>" 1
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h" 1
/* autopilot_ssdm_op.h*/
/*
#- (c) Copyright 2011-2015 Xilinx, Inc. All rights reserved.
#-
#- This file contains confidential and proprietary information
#- of Xilinx, Inc. and is protected under U.S. and
#- international copyright and other intellectual property
#- laws.
#-
#- DISCLAIMER
#- This disclaimer is not a license and does not grant any
#- rights to the materials distributed herewith. Except as
#- otherwise provided in a valid license issued to you by
#- Xilinx, and to the maximum extent permitted by applicable
#- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
#- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
#- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
#- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
#- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
#- (2) Xilinx shall not be liable (whether in contract or tort,
#- including negligence, or under any other theory of
#- liability) for any loss or damage of any kind or nature
#- related to, arising under or in connection with these
#- materials, including for any direct, or any indirect,
#- special, incidental, or consequential loss or damage
#- (including loss of data, profits, goodwill, or any type of
#- loss or damage suffered as a result of any action brought
#- by a third party) even if such damage or loss was
#- reasonably foreseeable or Xilinx had been advised of the
#- possibility of the same.
#-
#- CRITICAL APPLICATIONS
#- Xilinx products are not designed or intended to be fail-
#- safe, or for use in any application requiring fail-safe
#- performance, such as life-support or safety devices or
#- systems, Class III medical devices, nuclear facilities,
#- applications related to the deployment of airbags, or any
#- other applications that could lead to death, personal
#- injury, or severe property or environmental damage
#- (individually and collectively, "Critical
#- Applications"). Customer assumes the sole risk and
#- liability of any use of Xilinx products in Critical
#- Applications, subject only to applicable laws and
#- regulations governing limitations on product liability.
#-
#- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
#- PART OF THIS FILE AT ALL TIMES.
#- ************************************************************************
*
* $Id$
*/
#280 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/common/technology/autopilot\\etc/autopilot_ssdm_op.h"
/*#define AP_SPEC_ATTR __attribute__ ((pure))*/
/****** SSDM Intrinsics: OPERATIONS ***/
// Interface operations
//typedef unsigned int __attribute__ ((bitwidth(1))) _uint1_;
void _ssdm_op_IfRead() __attribute__ ((nothrow));
void _ssdm_op_IfWrite() __attribute__ ((nothrow));
//_uint1_ _ssdm_op_IfNbRead() SSDM_OP_ATTR;
//_uint1_ _ssdm_op_IfNbWrite() SSDM_OP_ATTR;
//_uint1_ _ssdm_op_IfCanRead() SSDM_OP_ATTR;
//_uint1_ _ssdm_op_IfCanWrite() SSDM_OP_ATTR;
// Stream Intrinsics
void _ssdm_StreamRead() __attribute__ ((nothrow));
void _ssdm_StreamWrite() __attribute__ ((nothrow));
//_uint1_ _ssdm_StreamNbRead() SSDM_OP_ATTR;
//_uint1_ _ssdm_StreamNbWrite() SSDM_OP_ATTR;
//_uint1_ _ssdm_StreamCanRead() SSDM_OP_ATTR;
//_uint1_ _ssdm_StreamCanWrite() SSDM_OP_ATTR;
// Misc
void _ssdm_op_MemShiftRead() __attribute__ ((nothrow));
void _ssdm_op_Wait() __attribute__ ((nothrow));
void _ssdm_op_Poll() __attribute__ ((nothrow));
void _ssdm_op_Return() __attribute__ ((nothrow));
/* SSDM Intrinsics: SPECIFICATIONS */
void _ssdm_op_SpecSynModule() __attribute__ ((nothrow));
void _ssdm_op_SpecTopModule() __attribute__ ((nothrow));
void _ssdm_op_SpecProcessDecl() __attribute__ ((nothrow));
void _ssdm_op_SpecProcessDef() __attribute__ ((nothrow));
void _ssdm_op_SpecPort() __attribute__ ((nothrow));
void _ssdm_op_SpecConnection() __attribute__ ((nothrow));
void _ssdm_op_SpecChannel() __attribute__ ((nothrow));
void _ssdm_op_SpecSensitive() __attribute__ ((nothrow));
void _ssdm_op_SpecModuleInst() __attribute__ ((nothrow));
void _ssdm_op_SpecPortMap() __attribute__ ((nothrow));
void _ssdm_op_SpecReset() __attribute__ ((nothrow));
void _ssdm_op_SpecPlatform() __attribute__ ((nothrow));
void _ssdm_op_SpecClockDomain() __attribute__ ((nothrow));
void _ssdm_op_SpecPowerDomain() __attribute__ ((nothrow));
int _ssdm_op_SpecRegionBegin() __attribute__ ((nothrow));
int _ssdm_op_SpecRegionEnd() __attribute__ ((nothrow));
void _ssdm_op_SpecLoopName() __attribute__ ((nothrow));
void _ssdm_op_SpecLoopTripCount() __attribute__ ((nothrow));
int _ssdm_op_SpecStateBegin() __attribute__ ((nothrow));
int _ssdm_op_SpecStateEnd() __attribute__ ((nothrow));
void _ssdm_op_SpecInterface() __attribute__ ((nothrow));
void _ssdm_op_SpecPipeline() __attribute__ ((nothrow));
void _ssdm_op_SpecDataflowPipeline() __attribute__ ((nothrow));
void _ssdm_op_SpecLatency() __attribute__ ((nothrow));
void _ssdm_op_SpecParallel() __attribute__ ((nothrow));
void _ssdm_op_SpecProtocol() __attribute__ ((nothrow));
void _ssdm_op_SpecOccurrence() __attribute__ ((nothrow));
void _ssdm_op_SpecResource() __attribute__ ((nothrow));
void _ssdm_op_SpecResourceLimit() __attribute__ ((nothrow));
void _ssdm_op_SpecCHCore() __attribute__ ((nothrow));
void _ssdm_op_SpecFUCore() __attribute__ ((nothrow));
void _ssdm_op_SpecIFCore() __attribute__ ((nothrow));
void _ssdm_op_SpecIPCore() __attribute__ ((nothrow));
void _ssdm_op_SpecKeepValue() __attribute__ ((nothrow));
void _ssdm_op_SpecMemCore() __attribute__ ((nothrow));
void _ssdm_op_SpecExt() __attribute__ ((nothrow));
/*void* _ssdm_op_SpecProcess() SSDM_SPEC_ATTR;
void* _ssdm_op_SpecEdge() SSDM_SPEC_ATTR; */
/* Presynthesis directive functions */
void _ssdm_SpecArrayDimSize() __attribute__ ((nothrow));
void _ssdm_RegionBegin() __attribute__ ((nothrow));
void _ssdm_RegionEnd() __attribute__ ((nothrow));
void _ssdm_Unroll() __attribute__ ((nothrow));
void _ssdm_UnrollRegion() __attribute__ ((nothrow));
void _ssdm_InlineAll() __attribute__ ((nothrow));
void _ssdm_InlineLoop() __attribute__ ((nothrow));
void _ssdm_Inline() __attribute__ ((nothrow));
void _ssdm_InlineSelf() __attribute__ ((nothrow));
void _ssdm_InlineRegion() __attribute__ ((nothrow));
void _ssdm_SpecArrayMap() __attribute__ ((nothrow));
void _ssdm_SpecArrayPartition() __attribute__ ((nothrow));
void _ssdm_SpecArrayReshape() __attribute__ ((nothrow));
void _ssdm_SpecStream() __attribute__ ((nothrow));
void _ssdm_SpecExpr() __attribute__ ((nothrow));
void _ssdm_SpecExprBalance() __attribute__ ((nothrow));
void _ssdm_SpecDependence() __attribute__ ((nothrow));
void _ssdm_SpecLoopMerge() __attribute__ ((nothrow));
void _ssdm_SpecLoopFlatten() __attribute__ ((nothrow));
void _ssdm_SpecLoopRewind() __attribute__ ((nothrow));
void _ssdm_SpecFuncInstantiation() __attribute__ ((nothrow));
void _ssdm_SpecFuncBuffer() __attribute__ ((nothrow));
void _ssdm_SpecFuncExtract() __attribute__ ((nothrow));
void _ssdm_SpecConstant() __attribute__ ((nothrow));
void _ssdm_DataPack() __attribute__ ((nothrow));
void _ssdm_SpecDataPack() __attribute__ ((nothrow));
void _ssdm_op_SpecBitsMap() __attribute__ ((nothrow));
void _ssdm_op_SpecLicense() __attribute__ ((nothrow));
/*#define _ssdm_op_WaitUntil(X) while (!(X)) _ssdm_op_Wait(1);
#define _ssdm_op_Delayed(X) X */
#7 "<command line>" 2
#1 "<built-in>" 2
#1 "axi_interfaces.c" 2
/*******************************************************************************
Vendor: Xilinx
Associated Filename: axi_interfaces.c
Purpose: Vivado HLS tutorial example
Device: All
Revision History: March 1, 2013 - initial release
*******************************************************************************
Copyright 2008 - 2013 Xilinx, Inc. All rights reserved.
This file contains confidential and proprietary information of Xilinx, Inc. and
is protected under U.S. and international copyright and other intellectual
property laws.
DISCLAIMER
This disclaimer is not a license and does not grant any rights to the materials
distributed herewith. Except as otherwise provided in a valid license issued to
you by Xilinx, and to the maximum extent permitted by applicable law:
(1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL FAULTS, AND XILINX
HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY,
INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, OR
FITNESS FOR ANY PARTICULAR PURPOSE; and (2) Xilinx shall not be liable (whether
in contract or tort, including negligence, or under any other theory of
liability) for any loss or damage of any kind or nature related to, arising under
or in connection with these materials, including for any direct, or any indirect,
special, incidental, or consequential loss or damage (including loss of data,
profits, goodwill, or any type of loss or damage suffered as a result of any
action brought by a third party) even if such damage or loss was reasonably
foreseeable or Xilinx had been advised of the possibility of the same.
CRITICAL APPLICATIONS
Xilinx products are not designed or intended to be fail-safe, or for use in any
application requiring fail-safe performance, such as life-support or safety
devices or systems, Class III medical devices, nuclear facilities, applications
related to the deployment of airbags, or any other applications that could lead
to death, personal injury, or severe property or environmental damage
(individually and collectively, "Critical Applications"). Customer asresultes the
sole risk and liability of any use of Xilinx products in Critical Applications,
subject only to applicable laws and regulations governing limitations on product
liability.
THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE AT
ALL TIMES.
*******************************************************************************/
#1 "./axi_interfaces.h" 1
/*******************************************************************************
Vendor: Xilinx
Associated Filename: axi_interfaces.h
Purpose: Vivado HLS tutorial example
Device: All
Revision History: March 1, 2013 - initial release
*******************************************************************************
Copyright 2008 - 2013 Xilinx, Inc. All rights reserved.
This file contains confidential and proprietary information of Xilinx, Inc. and
is protected under U.S. and international copyright and other intellectual
property laws.
DISCLAIMER
This disclaimer is not a license and does not grant any rights to the materials
distributed herewith. Except as otherwise provided in a valid license issued to
you by Xilinx, and to the maximum extent permitted by applicable law:
(1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL FAULTS, AND XILINX
HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY,
INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, OR
FITNESS FOR ANY PARTICULAR PURPOSE; and (2) Xilinx shall not be liable (whether
in contract or tort, including negligence, or under any other theory of
liability) for any loss or damage of any kind or nature related to, arising under
or in connection with these materials, including for any direct, or any indirect,
special, incidental, or consequential loss or damage (including loss of data,
profits, goodwill, or any type of loss or damage suffered as a result of any
action brought by a third party) even if such damage or loss was reasonably
foreseeable or Xilinx had been advised of the possibility of the same.
CRITICAL APPLICATIONS
Xilinx products are not designed or intended to be fail-safe, or for use in any
application requiring fail-safe performance, such as life-support or safety
devices or systems, Class III medical devices, nuclear facilities, applications
related to the deployment of airbags, or any other applications that could lead
to death, personal injury, or severe property or environmental damage
(individually and collectively, "Critical Applications"). Customer asresultes the
sole risk and liability of any use of Xilinx products in Critical Applications,
subject only to applicable laws and regulations governing limitations on product
liability.
THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE AT
ALL TIMES.
*******************************************************************************/
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#18 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 3
/* mingw.org's version macros: these make gcc to define
MINGW32_SUPPORTS_MT_EH and to use the _CRT_MT global
and the __mingwthr_key_dtor() function from the MinGW
CRT in its private gthr-win32.h header. */
/* MS does not prefix symbols by underscores for 64-bit. */
/* As we have to support older gcc version, which are using underscores
as symbol prefix for x64, we have to check here for the user label
prefix defined by gcc. */
#62 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 3
/* Use alias for msvcr80 export of get/set_output_format. */
/* Set VC specific compiler target macros. */
#10 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3
/* C/C++ specific language defines. */
#32 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/* Note the extern. This is needed to work around GCC's
limitations in handling dllimport attribute. */
#147 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/* Attribute `nonnull' was valid as of gcc 3.3. We don't use GCC's
variadiac macro facility, because variadic macros cause syntax
errors with --traditional-cpp. */
#225 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/* High byte is the major version, low byte is the minor. */
#247 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/*typedef int __int128 __attribute__ ((__mode__ (TI)));*/
#277 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#674 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/sdks/_mingw_directx.h" 1 3
#674 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/sdks/_mingw_ddk.h" 1 3
#675 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3
#13 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 2 3
#pragma pack(push,_CRT_PACKING)
typedef __builtin_va_list __gnuc_va_list;
typedef __gnuc_va_list va_list;
#46 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 3
/* Use GCC builtins */
#102 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 3
#pragma pack(pop)
#277 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3
#pragma pack(push,_CRT_PACKING)
#316 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/* We have to define _DLL for gcc based mingw version. This define is set
by VC, when DLL-based runtime is used. So, gcc based runtime just have
DLL-base runtime, therefore this define has to be set.
As our headers are possibly used by windows compiler having a static
C-runtime, we make this definition gnu compiler specific here. */
#370 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
__extension__ typedef unsigned long long size_t;
#380 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
__extension__ typedef long long ssize_t;
#392 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
__extension__ typedef long long intptr_t;
#405 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
__extension__ typedef unsigned long long uintptr_t;
#418 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
__extension__ typedef long long ptrdiff_t;
#428 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
typedef unsigned short wchar_t;
typedef unsigned short wint_t;
typedef unsigned short wctype_t;
#456 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
typedef int errno_t;
typedef long __time32_t;
__extension__ typedef long long __time64_t;
typedef __time64_t time_t;
#518 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/* _dowildcard is an int that controls the globbing of the command line.
* The MinGW32 (mingw.org) runtime calls it _CRT_glob, so we are adding
* a compatibility definition here: you can use either of _CRT_glob or
* _dowildcard .
* If _dowildcard is non-zero, the command line will be globbed: *.*
* will be expanded to be all files in the startup directory.
* In the mingw-w64 library a _dowildcard variable is defined as being
* 0, therefore command line globbing is DISABLED by default. To turn it
* on and to leave wildcard command line processing MS's globbing code,
* include a line in one of your source modules defining _dowildcard and
* setting it to -1, like so:
* int _dowildcard = -1;
*/
#605 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3
/* MSVC-isms: */
struct threadlocaleinfostruct;
struct threadmbcinfostruct;
typedef struct threadlocaleinfostruct *pthreadlocinfo;
typedef struct threadmbcinfostruct *pthreadmbcinfo;
struct __lc_time_data;
typedef struct localeinfo_struct {
pthreadlocinfo locinfo;
pthreadmbcinfo mbcinfo;
} _locale_tstruct,*_locale_t;
typedef struct tagLC_ID {
unsigned short wLanguage;
unsigned short wCountry;
unsigned short wCodePage;
} LC_ID,*LPLC_ID;
typedef struct threadlocaleinfostruct {
int refcount;
unsigned int lc_codepage;
unsigned int lc_collate_cp;
unsigned long lc_handle[6];
LC_ID lc_id[6];
struct {
char *locale;
wchar_t *wlocale;
int *refcount;
int *wrefcount;
} lc_category[6];
int lc_clike;
int mb_cur_max;
int *lconv_intl_refcount;
int *lconv_num_refcount;
int *lconv_mon_refcount;
struct lconv *lconv;
int *ctype1_refcount;
unsigned short *ctype1;
const unsigned short *pctype;
const unsigned char *pclmap;
const unsigned char *pcumap;
struct __lc_time_data *lc_time_curr;
} threadlocinfo;
/* mingw-w64 specific functions: */
const char *__mingw_get_crt_info (void);
#pragma pack(pop)
#9 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw_print_push.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
/* Undefine __mingw_<printf> macros. */
#11 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3
#pragma pack(push,_CRT_PACKING)
#26 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
struct _iobuf {
char *_ptr;
int _cnt;
char *_base;
int _flag;
int _file;
int _charbuf;
int _bufsiz;
char *_tmpfname;
};
typedef struct _iobuf FILE;
#84 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
typedef long _off_t;
typedef long off_t;
__extension__ typedef long long _off64_t;
__extension__ typedef long long off64_t;
__attribute__ ((__dllimport__)) FILE * __iob_func(void);
#120 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
__extension__ typedef long long fpos_t;
#157 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
__attribute__ ((__dllimport__)) int _filbuf(FILE *_File);
__attribute__ ((__dllimport__)) int _flsbuf(int _Ch,FILE *_File);
__attribute__ ((__dllimport__)) FILE * _fsopen(const char *_Filename,const char *_Mode,int _ShFlag);
void clearerr(FILE *_File);
int fclose(FILE *_File);
__attribute__ ((__dllimport__)) int _fcloseall(void);
__attribute__ ((__dllimport__)) FILE * _fdopen(int _FileHandle,const char *_Mode);
int feof(FILE *_File);
int ferror(FILE *_File);
int fflush(FILE *_File);
int fgetc(FILE *_File);
__attribute__ ((__dllimport__)) int _fgetchar(void);
int fgetpos(FILE * __restrict__ _File ,fpos_t * __restrict__ _Pos);
char * fgets(char * __restrict__ _Buf,int _MaxCount,FILE * __restrict__ _File);
__attribute__ ((__dllimport__)) int _fileno(FILE *_File);
__attribute__ ((__dllimport__)) char * _tempnam(const char *_DirName,const char *_FilePrefix);
__attribute__ ((__dllimport__)) int _flushall(void);
FILE * fopen(const char * __restrict__ _Filename,const char * __restrict__ _Mode) ;
FILE *fopen64(const char * __restrict__ filename,const char * __restrict__ mode);
int fprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,...);
int fputc(int _Ch,FILE *_File);
__attribute__ ((__dllimport__)) int _fputchar(int _Ch);
int fputs(const char * __restrict__ _Str,FILE * __restrict__ _File);
size_t fread(void * __restrict__ _DstBuf,size_t _ElementSize,size_t _Count,FILE * __restrict__ _File);
FILE * freopen(const char * __restrict__ _Filename,const char * __restrict__ _Mode,FILE * __restrict__ _File) ;
int fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...) ;
int _fscanf_l(FILE * __restrict__ _File,const char * __restrict__ _Format,_locale_t locale,...) ;
int fsetpos(FILE *_File,const fpos_t *_Pos);
int fseek(FILE *_File,long _Offset,int _Origin);
int fseeko64(FILE* stream, _off64_t offset, int whence);
long ftell(FILE *_File);
_off64_t ftello64(FILE * stream);
__extension__ int _fseeki64(FILE *_File,long long _Offset,int _Origin);
__extension__ long long _ftelli64(FILE *_File);
size_t fwrite(const void * __restrict__ _Str,size_t _Size,size_t _Count,FILE * __restrict__ _File);
int getc(FILE *_File);
int getchar(void);
__attribute__ ((__dllimport__)) int _getmaxstdio(void);
char * gets(char *_Buffer) ;
int _getw(FILE *_File);
void perror(const char *_ErrMsg);
__attribute__ ((__dllimport__)) int _pclose(FILE *_File);
__attribute__ ((__dllimport__)) FILE * _popen(const char *_Command,const char *_Mode);
int printf(const char * __restrict__ _Format,...);
int putc(int _Ch,FILE *_File);
int putchar(int _Ch);
int puts(const char *_Str);
__attribute__ ((__dllimport__)) int _putw(int _Word,FILE *_File);
int remove(const char *_Filename);
int rename(const char *_OldFilename,const char *_NewFilename);
__attribute__ ((__dllimport__)) int _unlink(const char *_Filename);
int unlink(const char *_Filename) ;
void rewind(FILE *_File);
__attribute__ ((__dllimport__)) int _rmtmp(void);
int scanf(const char * __restrict__ _Format,...) ;
int _scanf_l(const char * __restrict__ format,_locale_t locale,... ) ;
void setbuf(FILE * __restrict__ _File,char * __restrict__ _Buffer) ;
__attribute__ ((__dllimport__)) int _setmaxstdio(int _Max);
__attribute__ ((__dllimport__)) unsigned int _set_output_format(unsigned int _Format);
__attribute__ ((__dllimport__)) unsigned int _get_output_format(void);
unsigned int __mingw_set_output_format(unsigned int _Format);
unsigned int __mingw_get_output_format(void);
int setvbuf(FILE * __restrict__ _File,char * __restrict__ _Buf,int _Mode,size_t _Size);
__attribute__ ((__dllimport__)) int _scprintf(const char * __restrict__ _Format,...);
int sscanf(const char * __restrict__ _Src,const char * __restrict__ _Format,...) ;
int _sscanf_l(const char * __restrict__ buffer,const char * __restrict__ format,_locale_t locale,...) ;
__attribute__ ((__dllimport__)) int _snscanf(const char * __restrict__ _Src,size_t _MaxCount,const char * __restrict__ _Format,...) ;
__attribute__ ((__dllimport__)) int _snscanf_l(const char * __restrict__ input,size_t length,const char * __restrict__ format,_locale_t locale,...) ;
FILE * tmpfile(void) ;
char * tmpnam(char *_Buffer);
int ungetc(int _Ch,FILE *_File);
int vfprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,va_list _ArgList);
int vprintf(const char * __restrict__ _Format,va_list _ArgList);
/* Make sure macros are not defined. */
extern
__attribute__((__format__ (gnu_printf, 3, 0))) __attribute__ ((__nonnull__ (3)))
int __mingw_vsnprintf(char * __restrict__ _DstBuf,size_t _MaxCount,const char * __restrict__ _Format,
va_list _ArgList);
extern
__attribute__((__format__ (gnu_printf, 3, 4))) __attribute__ ((__nonnull__ (3)))
int __mingw_snprintf(char * __restrict__ s, size_t n, const char * __restrict__ format, ...);
extern
__attribute__((__format__ (gnu_printf, 1, 2))) __attribute__ ((__nonnull__ (1)))
int __mingw_printf(const char * __restrict__ , ... ) __attribute__ ((__nothrow__));
extern
__attribute__((__format__ (gnu_printf, 1, 0))) __attribute__ ((__nonnull__ (1)))
int __mingw_vprintf (const char * __restrict__ , va_list) __attribute__ ((__nothrow__));
extern
__attribute__((__format__ (gnu_printf, 2, 3))) __attribute__ ((__nonnull__ (2)))
int __mingw_fprintf (FILE * __restrict__ , const char * __restrict__ , ...) __attribute__ ((__nothrow__));
extern
__attribute__((__format__ (gnu_printf, 2, 0))) __attribute__ ((__nonnull__ (2)))
int __mingw_vfprintf (FILE * __restrict__ , const char * __restrict__ , va_list) __attribute__ ((__nothrow__));
extern
__attribute__((__format__ (gnu_printf, 2, 3))) __attribute__ ((__nonnull__ (2)))
int __mingw_sprintf (char * __restrict__ , const char * __restrict__ , ...) __attribute__ ((__nothrow__));
extern
__attribute__((__format__ (gnu_printf, 2, 0))) __attribute__ ((__nonnull__ (2)))
int __mingw_vsprintf (char * __restrict__ , const char * __restrict__ , va_list) __attribute__ ((__nothrow__));
__attribute__ ((__dllimport__)) int _snprintf(char * __restrict__ _Dest,size_t _Count,const char * __restrict__ _Format,...) ;
__attribute__ ((__dllimport__)) int _snprintf_l(char * __restrict__ buffer,size_t count,const char * __restrict__ format,_locale_t locale,...) ;
__attribute__ ((__dllimport__)) int _vsnprintf(char * __restrict__ _Dest,size_t _Count,const char * __restrict__ _Format,va_list _Args) ;
__attribute__ ((__dllimport__)) int _vsnprintf_l(char * __restrict__ buffer,size_t count,const char * __restrict__ format,_locale_t locale,va_list argptr) ;
int sprintf(char * __restrict__ _Dest,const char * __restrict__ _Format,...) ;
int _sprintf_l(char * __restrict__ buffer,const char * __restrict__ format,_locale_t locale,...) ;
int vsprintf(char * __restrict__ _Dest,const char * __restrict__ _Format,va_list _Args) ;
/* this is here to deal with software defining
* vsnprintf as _vsnprintf, eg. libxml2. */
int vsnprintf(char * __restrict__ _DstBuf,size_t _MaxCount,const char * __restrict__ _Format,va_list _ArgList) ;
int snprintf(char * __restrict__ s, size_t n, const char * __restrict__ format, ...);
#312 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
int vscanf(const char * __restrict__ Format, va_list argp);
int vfscanf (FILE * __restrict__ fp, const char * __restrict__ Format,va_list argp);
int vsscanf (const char * __restrict__ _Str,const char * __restrict__ Format,va_list argp);
__attribute__ ((__dllimport__)) int _vscprintf(const char * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _set_printf_count_output(int _Value);
__attribute__ ((__dllimport__)) int _get_printf_count_output(void);
#330 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
__attribute__ ((__dllimport__)) FILE * _wfsopen(const wchar_t *_Filename,const wchar_t *_Mode,int _ShFlag);
wint_t fgetwc(FILE *_File);
__attribute__ ((__dllimport__)) wint_t _fgetwchar(void);
wint_t fputwc(wchar_t _Ch,FILE *_File);
__attribute__ ((__dllimport__)) wint_t _fputwchar(wchar_t _Ch);
wint_t getwc(FILE *_File);
wint_t getwchar(void);
wint_t putwc(wchar_t _Ch,FILE *_File);
wint_t putwchar(wchar_t _Ch);
wint_t ungetwc(wint_t _Ch,FILE *_File);
wchar_t * fgetws(wchar_t * __restrict__ _Dst,int _SizeInWords,FILE * __restrict__ _File);
int fputws(const wchar_t * __restrict__ _Str,FILE * __restrict__ _File);
__attribute__ ((__dllimport__)) wchar_t * _getws(wchar_t *_String) ;
__attribute__ ((__dllimport__)) int _putws(const wchar_t *_Str);
int fwprintf(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,...);
int wprintf(const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _scwprintf(const wchar_t * __restrict__ _Format,...);
int vfwprintf(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,va_list _ArgList);
int vwprintf(const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int swprintf(wchar_t * __restrict__ , const wchar_t * __restrict__ , ...) ;
__attribute__ ((__dllimport__)) int _swprintf_l(wchar_t * __restrict__ buffer,size_t count,const wchar_t * __restrict__ format,_locale_t locale,... ) ;
__attribute__ ((__dllimport__)) int vswprintf(wchar_t * __restrict__ , const wchar_t * __restrict__ ,va_list) ;
__attribute__ ((__dllimport__)) int _swprintf_c(wchar_t * __restrict__ _DstBuf,size_t _SizeInWords,const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _vswprintf_c(wchar_t * __restrict__ _DstBuf,size_t _SizeInWords,const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _snwprintf(wchar_t * __restrict__ _Dest,size_t _Count,const wchar_t * __restrict__ _Format,...) ;
__attribute__ ((__dllimport__)) int _vsnwprintf(wchar_t * __restrict__ _Dest,size_t _Count,const wchar_t * __restrict__ _Format,va_list _Args) ;
int snwprintf (wchar_t * __restrict__ s, size_t n, const wchar_t * __restrict__ format, ...);
int vsnwprintf (wchar_t * __restrict__ , size_t, const wchar_t * __restrict__ , va_list);
#373 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
int vwscanf (const wchar_t * __restrict__ , va_list);
int vfwscanf (FILE * __restrict__ ,const wchar_t * __restrict__ ,va_list);
int vswscanf (const wchar_t * __restrict__ ,const wchar_t * __restrict__ ,va_list);
__attribute__ ((__dllimport__)) int _fwprintf_p(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _wprintf_p(const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _vfwprintf_p(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _vwprintf_p(const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _swprintf_p(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _vswprintf_p(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _scwprintf_p(const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _vscwprintf_p(const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _wprintf_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _wprintf_p_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _vwprintf_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _vwprintf_p_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _fwprintf_l(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _fwprintf_p_l(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _vfwprintf_l(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _vfwprintf_p_l(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _swprintf_c_l(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _swprintf_p_l(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _vswprintf_c_l(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _vswprintf_p_l(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _scwprintf_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _scwprintf_p_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _vscwprintf_p_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
__attribute__ ((__dllimport__)) int _snwprintf_l(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
__attribute__ ((__dllimport__)) int _vsnwprintf_l(wchar_t * __restrict__ _DstBuf,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList) ;
__attribute__ ((__dllimport__)) int _swprintf(wchar_t * __restrict__ _Dest,const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _vswprintf(wchar_t * __restrict__ _Dest,const wchar_t * __restrict__ _Format,va_list _Args);
__attribute__ ((__dllimport__)) int __swprintf_l(wchar_t * __restrict__ _Dest,const wchar_t * __restrict__ _Format,_locale_t _Plocinfo,...) ;
__attribute__ ((__dllimport__)) int _vswprintf_l(wchar_t * __restrict__ buffer,size_t count,const wchar_t * __restrict__ format,_locale_t locale,va_list argptr) ;
__attribute__ ((__dllimport__)) int __vswprintf_l(wchar_t * __restrict__ _Dest,const wchar_t * __restrict__ _Format,_locale_t _Plocinfo,va_list _Args) ;
#417 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
__attribute__ ((__dllimport__)) wchar_t * _wtempnam(const wchar_t *_Directory,const wchar_t *_FilePrefix);
__attribute__ ((__dllimport__)) int _vscwprintf(const wchar_t * __restrict__ _Format,va_list _ArgList);
__attribute__ ((__dllimport__)) int _vscwprintf_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,va_list _ArgList);
int fwscanf(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,...) ;
__attribute__ ((__dllimport__)) int _fwscanf_l(FILE * __restrict__ _File,const wchar_t * __restrict__ _Format,_locale_t _Locale,...) ;
int swscanf(const wchar_t * __restrict__ _Src,const wchar_t * __restrict__ _Format,...) ;
__attribute__ ((__dllimport__)) int _swscanf_l(const wchar_t * __restrict__ _Src,const wchar_t * __restrict__ _Format,_locale_t _Locale,...) ;
__attribute__ ((__dllimport__)) int _snwscanf(const wchar_t * __restrict__ _Src,size_t _MaxCount,const wchar_t * __restrict__ _Format,...);
__attribute__ ((__dllimport__)) int _snwscanf_l(const wchar_t * __restrict__ _Src,size_t _MaxCount,const wchar_t * __restrict__ _Format,_locale_t _Locale,...);
int wscanf(const wchar_t * __restrict__ _Format,...) ;
__attribute__ ((__dllimport__)) int _wscanf_l(const wchar_t * __restrict__ _Format,_locale_t _Locale,...) ;
__attribute__ ((__dllimport__)) FILE * _wfdopen(int _FileHandle ,const wchar_t *_Mode);
__attribute__ ((__dllimport__)) FILE * _wfopen(const wchar_t * __restrict__ _Filename,const wchar_t *__restrict__ _Mode) ;
__attribute__ ((__dllimport__)) FILE * _wfreopen(const wchar_t * __restrict__ _Filename,const wchar_t * __restrict__ _Mode,FILE * __restrict__ _OldFile) ;
__attribute__ ((__dllimport__)) void _wperror(const wchar_t *_ErrMsg);
__attribute__ ((__dllimport__)) FILE * _wpopen(const wchar_t *_Command,const wchar_t *_Mode);
__attribute__ ((__dllimport__)) int _wremove(const wchar_t *_Filename);
__attribute__ ((__dllimport__)) wchar_t * _wtmpnam(wchar_t *_Buffer);
__attribute__ ((__dllimport__)) wint_t _fgetwc_nolock(FILE *_File);
__attribute__ ((__dllimport__)) wint_t _fputwc_nolock(wchar_t _Ch,FILE *_File);
__attribute__ ((__dllimport__)) wint_t _ungetwc_nolock(wint_t _Ch,FILE *_File);
#475 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3
__attribute__ ((__dllimport__)) void _lock_file(FILE *_File);
__attribute__ ((__dllimport__)) void _unlock_file(FILE *_File);
__attribute__ ((__dllimport__)) int _fclose_nolock(FILE *_File);
__attribute__ ((__dllimport__)) int _fflush_nolock(FILE *_File);
__attribute__ ((__dllimport__)) size_t _fread_nolock(void * __restrict__ _DstBuf,size_t _ElementSize,size_t _Count,FILE * __restrict__ _File);
__attribute__ ((__dllimport__)) int _fseek_nolock(FILE *_File,long _Offset,int _Origin);
__attribute__ ((__dllimport__)) long _ftell_nolock(FILE *_File);
__extension__ __attribute__ ((__dllimport__)) int _fseeki64_nolock(FILE *_File,long long _Offset,int _Origin);
__extension__ __attribute__ ((__dllimport__)) long long _ftelli64_nolock(FILE *_File);
__attribute__ ((__dllimport__)) size_t _fwrite_nolock(const void * __restrict__ _DstBuf,size_t _Size,size_t _Count,FILE * __restrict__ _File);
__attribute__ ((__dllimport__)) int _ungetc_nolock(int _Ch,FILE *_File);
char * tempnam(const char *_Directory,const char *_FilePrefix) ;
int fcloseall(void) ;
FILE * fdopen(int _FileHandle,const char *_Format) ;
int fgetchar(void) ;
int fileno(FILE *_File) ;
int flushall(void) ;
int fputchar(int _Ch) ;
int getw(FILE *_File) ;
int putw(int _Ch,FILE *_File) ;
int rmtmp(void) ;
#pragma pack(pop)
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/stdio_s.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#9 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/stdio_s.h" 2 3
#509 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3
#1 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw_print_pop.h" 1 3
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
/* Define __mingw_<printf> macros. */
#511 "C:/opt/winprog/Xilinx/Vivado_HLS/2015.2/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3
#49 "./axi_interfaces.h" 2
typedef short din_t;
typedef short dout_t;
typedef int dacc_t;
void axi_interfaces (dout_t d_o[8 * 4], din_t d_i[8 * 4]);
#47 "axi_interfaces.c" 2
// The data comes in organized in a single array.
// - The first sample for the first channel (CHAN)
// - Then the first sample for the 2nd channel etc.
// The channels are accumulated independently
// E.g. For 8 channels:
// Array Order : 0 1 2 3 4 5 6 7 8 9 10 etc. 16 etc...
// Sample Order: A0 B0 C0 D0 E0 F0 G0 H0 A1 B1 C2 etc. A2 etc...
// Output Order: A0 B0 C0 D0 E0 F0 G0 H0 A0+A1 B0+B1 C0+C2 etc. A0+A1+A2 etc...
void axi_interfaces (dout_t d_o[8 * 4], din_t d_i[8 * 4]) {_ssdm_SpecArrayDimSize(d_o,8 * 4);_ssdm_SpecArrayDimSize(d_i,8 * 4);
_ssdm_op_SpecInterface(0, "s_axilite", 0, 0, 0, 0, "", "", "");
#57 "axi_interfaces.c"
_ssdm_op_SpecInterface(d_i, "axis", 0, 0, 0, 0, "", "", "");
#57 "axi_interfaces.c"
_ssdm_SpecArrayPartition( d_i, 1, "CYCLIC", 8, "");
#57 "axi_interfaces.c"
_ssdm_op_SpecInterface(d_o, "axis", 0, 0, 0, 0, "", "", "");
#57 "axi_interfaces.c"
_ssdm_SpecArrayPartition( d_o, 1, "CYCLIC", 8, "");
#57 "axi_interfaces.c"
int i, rem;
// Store accumulated data
static dacc_t acc[8];
// Accumulate each channel
For_Loop: for (i=0;i<8 * 4;i++) {
_ssdm_op_SpecPipeline(1, 1, 1, 0, ""); _ssdm_SpecLoopRewind(0, "");
#64 "axi_interfaces.c"
_ssdm_Unroll(1, 0, 8, "");
#64 "axi_interfaces.c"
rem=i%8;
acc[rem] = acc[rem] + d_i[i];
d_o[i] = acc[rem];
}
}
|
the_stack_data/334969.c | /* Autogenerated: 'src/ExtractionOCaml/unsaturated_solinas' --static --use-value-barrier 25519 64 '(auto)' '2^255 - 19' carry_mul carry_square carry add sub opp selectznz to_bytes from_bytes carry_scmul121666 */
/* curve description: 25519 */
/* machine_wordsize = 64 (from "64") */
/* requested operations: carry_mul, carry_square, carry, add, sub, opp, selectznz, to_bytes, from_bytes, carry_scmul121666 */
/* n = 5 (from "(auto)") */
/* s-c = 2^255 - [(1, 19)] (from "2^255 - 19") */
/* tight_bounds_multiplier = 1 (from "") */
/* */
/* Computed values: */
/* carry_chain = [0, 1, 2, 3, 4, 0, 1] */
/* eval z = z[0] + (z[1] << 51) + (z[2] << 102) + (z[3] << 153) + (z[4] << 204) */
/* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */
/* balance = [0xfffffffffffda, 0xffffffffffffe, 0xffffffffffffe, 0xffffffffffffe, 0xffffffffffffe] */
#include <stdint.h>
typedef unsigned char fiat_25519_uint1;
typedef signed char fiat_25519_int1;
#ifdef __GNUC__
# define FIAT_25519_FIAT_EXTENSION __extension__
#else
# define FIAT_25519_FIAT_EXTENSION
#endif
FIAT_25519_FIAT_EXTENSION typedef signed __int128 fiat_25519_int128;
FIAT_25519_FIAT_EXTENSION typedef unsigned __int128 fiat_25519_uint128;
#if (-1 & 3) != 3
#error "This code only works on a two's complement system"
#endif
#if !defined(FIAT_25519_NO_ASM) && (defined(__GNUC__) || defined(__clang__))
static __inline__ uint64_t fiat_25519_value_barrier_u64(uint64_t a) {
__asm__("" : "+r"(a) : /* no inputs */);
return a;
}
#else
# define fiat_25519_value_barrier_u64(x) (x)
#endif
/*
* The function fiat_25519_addcarryx_u51 is an addition with carry.
*
* Postconditions:
* out1 = (arg1 + arg2 + arg3) mod 2^51
* out2 = ⌊(arg1 + arg2 + arg3) / 2^51⌋
*
* Input Bounds:
* arg1: [0x0 ~> 0x1]
* arg2: [0x0 ~> 0x7ffffffffffff]
* arg3: [0x0 ~> 0x7ffffffffffff]
* Output Bounds:
* out1: [0x0 ~> 0x7ffffffffffff]
* out2: [0x0 ~> 0x1]
*/
static void fiat_25519_addcarryx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
uint64_t x1;
uint64_t x2;
fiat_25519_uint1 x3;
x1 = ((arg1 + arg2) + arg3);
x2 = (x1 & UINT64_C(0x7ffffffffffff));
x3 = (fiat_25519_uint1)(x1 >> 51);
*out1 = x2;
*out2 = x3;
}
/*
* The function fiat_25519_subborrowx_u51 is a subtraction with borrow.
*
* Postconditions:
* out1 = (-arg1 + arg2 + -arg3) mod 2^51
* out2 = -⌊(-arg1 + arg2 + -arg3) / 2^51⌋
*
* Input Bounds:
* arg1: [0x0 ~> 0x1]
* arg2: [0x0 ~> 0x7ffffffffffff]
* arg3: [0x0 ~> 0x7ffffffffffff]
* Output Bounds:
* out1: [0x0 ~> 0x7ffffffffffff]
* out2: [0x0 ~> 0x1]
*/
static void fiat_25519_subborrowx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
int64_t x1;
fiat_25519_int1 x2;
uint64_t x3;
x1 = ((int64_t)(arg2 - (int64_t)arg1) - (int64_t)arg3);
x2 = (fiat_25519_int1)(x1 >> 51);
x3 = (x1 & UINT64_C(0x7ffffffffffff));
*out1 = x3;
*out2 = (fiat_25519_uint1)(0x0 - x2);
}
/*
* The function fiat_25519_cmovznz_u64 is a single-word conditional move.
*
* Postconditions:
* out1 = (if arg1 = 0 then arg2 else arg3)
*
* Input Bounds:
* arg1: [0x0 ~> 0x1]
* arg2: [0x0 ~> 0xffffffffffffffff]
* arg3: [0x0 ~> 0xffffffffffffffff]
* Output Bounds:
* out1: [0x0 ~> 0xffffffffffffffff]
*/
static void fiat_25519_cmovznz_u64(uint64_t* out1, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
fiat_25519_uint1 x1;
uint64_t x2;
uint64_t x3;
x1 = (!(!arg1));
x2 = ((fiat_25519_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff));
x3 = ((fiat_25519_value_barrier_u64(x2) & arg3) | (fiat_25519_value_barrier_u64((~x2)) & arg2));
*out1 = x3;
}
/*
* The function fiat_25519_carry_mul multiplies two field elements and reduces the result.
*
* Postconditions:
* eval out1 mod m = (eval arg1 * eval arg2) mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
* arg2: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
*/
static void fiat_25519_carry_mul(uint64_t out1[5], const uint64_t arg1[5], const uint64_t arg2[5]) {
fiat_25519_uint128 x1;
fiat_25519_uint128 x2;
fiat_25519_uint128 x3;
fiat_25519_uint128 x4;
fiat_25519_uint128 x5;
fiat_25519_uint128 x6;
fiat_25519_uint128 x7;
fiat_25519_uint128 x8;
fiat_25519_uint128 x9;
fiat_25519_uint128 x10;
fiat_25519_uint128 x11;
fiat_25519_uint128 x12;
fiat_25519_uint128 x13;
fiat_25519_uint128 x14;
fiat_25519_uint128 x15;
fiat_25519_uint128 x16;
fiat_25519_uint128 x17;
fiat_25519_uint128 x18;
fiat_25519_uint128 x19;
fiat_25519_uint128 x20;
fiat_25519_uint128 x21;
fiat_25519_uint128 x22;
fiat_25519_uint128 x23;
fiat_25519_uint128 x24;
fiat_25519_uint128 x25;
fiat_25519_uint128 x26;
uint64_t x27;
uint64_t x28;
fiat_25519_uint128 x29;
fiat_25519_uint128 x30;
fiat_25519_uint128 x31;
fiat_25519_uint128 x32;
fiat_25519_uint128 x33;
uint64_t x34;
uint64_t x35;
fiat_25519_uint128 x36;
uint64_t x37;
uint64_t x38;
fiat_25519_uint128 x39;
uint64_t x40;
uint64_t x41;
fiat_25519_uint128 x42;
uint64_t x43;
uint64_t x44;
uint64_t x45;
uint64_t x46;
uint64_t x47;
uint64_t x48;
uint64_t x49;
fiat_25519_uint1 x50;
uint64_t x51;
uint64_t x52;
x1 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[4]) * UINT8_C(0x13)));
x2 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[3]) * UINT8_C(0x13)));
x3 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[2]) * UINT8_C(0x13)));
x4 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[1]) * UINT8_C(0x13)));
x5 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[4]) * UINT8_C(0x13)));
x6 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[3]) * UINT8_C(0x13)));
x7 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[2]) * UINT8_C(0x13)));
x8 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[4]) * UINT8_C(0x13)));
x9 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[3]) * UINT8_C(0x13)));
x10 = ((fiat_25519_uint128)(arg1[1]) * ((arg2[4]) * UINT8_C(0x13)));
x11 = ((fiat_25519_uint128)(arg1[4]) * (arg2[0]));
x12 = ((fiat_25519_uint128)(arg1[3]) * (arg2[1]));
x13 = ((fiat_25519_uint128)(arg1[3]) * (arg2[0]));
x14 = ((fiat_25519_uint128)(arg1[2]) * (arg2[2]));
x15 = ((fiat_25519_uint128)(arg1[2]) * (arg2[1]));
x16 = ((fiat_25519_uint128)(arg1[2]) * (arg2[0]));
x17 = ((fiat_25519_uint128)(arg1[1]) * (arg2[3]));
x18 = ((fiat_25519_uint128)(arg1[1]) * (arg2[2]));
x19 = ((fiat_25519_uint128)(arg1[1]) * (arg2[1]));
x20 = ((fiat_25519_uint128)(arg1[1]) * (arg2[0]));
x21 = ((fiat_25519_uint128)(arg1[0]) * (arg2[4]));
x22 = ((fiat_25519_uint128)(arg1[0]) * (arg2[3]));
x23 = ((fiat_25519_uint128)(arg1[0]) * (arg2[2]));
x24 = ((fiat_25519_uint128)(arg1[0]) * (arg2[1]));
x25 = ((fiat_25519_uint128)(arg1[0]) * (arg2[0]));
x26 = (x25 + (x10 + (x9 + (x7 + x4))));
x27 = (uint64_t)(x26 >> 51);
x28 = (uint64_t)(x26 & UINT64_C(0x7ffffffffffff));
x29 = (x21 + (x17 + (x14 + (x12 + x11))));
x30 = (x22 + (x18 + (x15 + (x13 + x1))));
x31 = (x23 + (x19 + (x16 + (x5 + x2))));
x32 = (x24 + (x20 + (x8 + (x6 + x3))));
x33 = (x27 + x32);
x34 = (uint64_t)(x33 >> 51);
x35 = (uint64_t)(x33 & UINT64_C(0x7ffffffffffff));
x36 = (x34 + x31);
x37 = (uint64_t)(x36 >> 51);
x38 = (uint64_t)(x36 & UINT64_C(0x7ffffffffffff));
x39 = (x37 + x30);
x40 = (uint64_t)(x39 >> 51);
x41 = (uint64_t)(x39 & UINT64_C(0x7ffffffffffff));
x42 = (x40 + x29);
x43 = (uint64_t)(x42 >> 51);
x44 = (uint64_t)(x42 & UINT64_C(0x7ffffffffffff));
x45 = (x43 * UINT8_C(0x13));
x46 = (x28 + x45);
x47 = (x46 >> 51);
x48 = (x46 & UINT64_C(0x7ffffffffffff));
x49 = (x47 + x35);
x50 = (fiat_25519_uint1)(x49 >> 51);
x51 = (x49 & UINT64_C(0x7ffffffffffff));
x52 = (x50 + x38);
out1[0] = x48;
out1[1] = x51;
out1[2] = x52;
out1[3] = x41;
out1[4] = x44;
}
/*
* The function fiat_25519_carry_square squares a field element and reduces the result.
*
* Postconditions:
* eval out1 mod m = (eval arg1 * eval arg1) mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
*/
static void fiat_25519_carry_square(uint64_t out1[5], const uint64_t arg1[5]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
uint64_t x6;
uint64_t x7;
uint64_t x8;
fiat_25519_uint128 x9;
fiat_25519_uint128 x10;
fiat_25519_uint128 x11;
fiat_25519_uint128 x12;
fiat_25519_uint128 x13;
fiat_25519_uint128 x14;
fiat_25519_uint128 x15;
fiat_25519_uint128 x16;
fiat_25519_uint128 x17;
fiat_25519_uint128 x18;
fiat_25519_uint128 x19;
fiat_25519_uint128 x20;
fiat_25519_uint128 x21;
fiat_25519_uint128 x22;
fiat_25519_uint128 x23;
fiat_25519_uint128 x24;
uint64_t x25;
uint64_t x26;
fiat_25519_uint128 x27;
fiat_25519_uint128 x28;
fiat_25519_uint128 x29;
fiat_25519_uint128 x30;
fiat_25519_uint128 x31;
uint64_t x32;
uint64_t x33;
fiat_25519_uint128 x34;
uint64_t x35;
uint64_t x36;
fiat_25519_uint128 x37;
uint64_t x38;
uint64_t x39;
fiat_25519_uint128 x40;
uint64_t x41;
uint64_t x42;
uint64_t x43;
uint64_t x44;
uint64_t x45;
uint64_t x46;
uint64_t x47;
fiat_25519_uint1 x48;
uint64_t x49;
uint64_t x50;
x1 = ((arg1[4]) * UINT8_C(0x13));
x2 = (x1 * 0x2);
x3 = ((arg1[4]) * 0x2);
x4 = ((arg1[3]) * UINT8_C(0x13));
x5 = (x4 * 0x2);
x6 = ((arg1[3]) * 0x2);
x7 = ((arg1[2]) * 0x2);
x8 = ((arg1[1]) * 0x2);
x9 = ((fiat_25519_uint128)(arg1[4]) * x1);
x10 = ((fiat_25519_uint128)(arg1[3]) * x2);
x11 = ((fiat_25519_uint128)(arg1[3]) * x4);
x12 = ((fiat_25519_uint128)(arg1[2]) * x2);
x13 = ((fiat_25519_uint128)(arg1[2]) * x5);
x14 = ((fiat_25519_uint128)(arg1[2]) * (arg1[2]));
x15 = ((fiat_25519_uint128)(arg1[1]) * x2);
x16 = ((fiat_25519_uint128)(arg1[1]) * x6);
x17 = ((fiat_25519_uint128)(arg1[1]) * x7);
x18 = ((fiat_25519_uint128)(arg1[1]) * (arg1[1]));
x19 = ((fiat_25519_uint128)(arg1[0]) * x3);
x20 = ((fiat_25519_uint128)(arg1[0]) * x6);
x21 = ((fiat_25519_uint128)(arg1[0]) * x7);
x22 = ((fiat_25519_uint128)(arg1[0]) * x8);
x23 = ((fiat_25519_uint128)(arg1[0]) * (arg1[0]));
x24 = (x23 + (x15 + x13));
x25 = (uint64_t)(x24 >> 51);
x26 = (uint64_t)(x24 & UINT64_C(0x7ffffffffffff));
x27 = (x19 + (x16 + x14));
x28 = (x20 + (x17 + x9));
x29 = (x21 + (x18 + x10));
x30 = (x22 + (x12 + x11));
x31 = (x25 + x30);
x32 = (uint64_t)(x31 >> 51);
x33 = (uint64_t)(x31 & UINT64_C(0x7ffffffffffff));
x34 = (x32 + x29);
x35 = (uint64_t)(x34 >> 51);
x36 = (uint64_t)(x34 & UINT64_C(0x7ffffffffffff));
x37 = (x35 + x28);
x38 = (uint64_t)(x37 >> 51);
x39 = (uint64_t)(x37 & UINT64_C(0x7ffffffffffff));
x40 = (x38 + x27);
x41 = (uint64_t)(x40 >> 51);
x42 = (uint64_t)(x40 & UINT64_C(0x7ffffffffffff));
x43 = (x41 * UINT8_C(0x13));
x44 = (x26 + x43);
x45 = (x44 >> 51);
x46 = (x44 & UINT64_C(0x7ffffffffffff));
x47 = (x45 + x33);
x48 = (fiat_25519_uint1)(x47 >> 51);
x49 = (x47 & UINT64_C(0x7ffffffffffff));
x50 = (x48 + x36);
out1[0] = x46;
out1[1] = x49;
out1[2] = x50;
out1[3] = x39;
out1[4] = x42;
}
/*
* The function fiat_25519_carry reduces a field element.
*
* Postconditions:
* eval out1 mod m = eval arg1 mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
*/
static void fiat_25519_carry(uint64_t out1[5], const uint64_t arg1[5]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
uint64_t x6;
uint64_t x7;
uint64_t x8;
uint64_t x9;
uint64_t x10;
uint64_t x11;
uint64_t x12;
x1 = (arg1[0]);
x2 = ((x1 >> 51) + (arg1[1]));
x3 = ((x2 >> 51) + (arg1[2]));
x4 = ((x3 >> 51) + (arg1[3]));
x5 = ((x4 >> 51) + (arg1[4]));
x6 = ((x1 & UINT64_C(0x7ffffffffffff)) + ((x5 >> 51) * UINT8_C(0x13)));
x7 = ((fiat_25519_uint1)(x6 >> 51) + (x2 & UINT64_C(0x7ffffffffffff)));
x8 = (x6 & UINT64_C(0x7ffffffffffff));
x9 = (x7 & UINT64_C(0x7ffffffffffff));
x10 = ((fiat_25519_uint1)(x7 >> 51) + (x3 & UINT64_C(0x7ffffffffffff)));
x11 = (x4 & UINT64_C(0x7ffffffffffff));
x12 = (x5 & UINT64_C(0x7ffffffffffff));
out1[0] = x8;
out1[1] = x9;
out1[2] = x10;
out1[3] = x11;
out1[4] = x12;
}
/*
* The function fiat_25519_add adds two field elements.
*
* Postconditions:
* eval out1 mod m = (eval arg1 + eval arg2) mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
* arg2: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
*/
static void fiat_25519_add(uint64_t out1[5], const uint64_t arg1[5], const uint64_t arg2[5]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
x1 = ((arg1[0]) + (arg2[0]));
x2 = ((arg1[1]) + (arg2[1]));
x3 = ((arg1[2]) + (arg2[2]));
x4 = ((arg1[3]) + (arg2[3]));
x5 = ((arg1[4]) + (arg2[4]));
out1[0] = x1;
out1[1] = x2;
out1[2] = x3;
out1[3] = x4;
out1[4] = x5;
}
/*
* The function fiat_25519_sub subtracts two field elements.
*
* Postconditions:
* eval out1 mod m = (eval arg1 - eval arg2) mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
* arg2: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
*/
static void fiat_25519_sub(uint64_t out1[5], const uint64_t arg1[5], const uint64_t arg2[5]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
x1 = ((UINT64_C(0xfffffffffffda) + (arg1[0])) - (arg2[0]));
x2 = ((UINT64_C(0xffffffffffffe) + (arg1[1])) - (arg2[1]));
x3 = ((UINT64_C(0xffffffffffffe) + (arg1[2])) - (arg2[2]));
x4 = ((UINT64_C(0xffffffffffffe) + (arg1[3])) - (arg2[3]));
x5 = ((UINT64_C(0xffffffffffffe) + (arg1[4])) - (arg2[4]));
out1[0] = x1;
out1[1] = x2;
out1[2] = x3;
out1[3] = x4;
out1[4] = x5;
}
/*
* The function fiat_25519_opp negates a field element.
*
* Postconditions:
* eval out1 mod m = -eval arg1 mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
*/
static void fiat_25519_opp(uint64_t out1[5], const uint64_t arg1[5]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
x1 = (UINT64_C(0xfffffffffffda) - (arg1[0]));
x2 = (UINT64_C(0xffffffffffffe) - (arg1[1]));
x3 = (UINT64_C(0xffffffffffffe) - (arg1[2]));
x4 = (UINT64_C(0xffffffffffffe) - (arg1[3]));
x5 = (UINT64_C(0xffffffffffffe) - (arg1[4]));
out1[0] = x1;
out1[1] = x2;
out1[2] = x3;
out1[3] = x4;
out1[4] = x5;
}
/*
* The function fiat_25519_selectznz is a multi-limb conditional select.
*
* Postconditions:
* eval out1 = (if arg1 = 0 then eval arg2 else eval arg3)
*
* Input Bounds:
* arg1: [0x0 ~> 0x1]
* arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
static void fiat_25519_selectznz(uint64_t out1[5], fiat_25519_uint1 arg1, const uint64_t arg2[5], const uint64_t arg3[5]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
fiat_25519_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0]));
fiat_25519_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1]));
fiat_25519_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2]));
fiat_25519_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3]));
fiat_25519_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4]));
out1[0] = x1;
out1[1] = x2;
out1[2] = x3;
out1[3] = x4;
out1[4] = x5;
}
/*
* The function fiat_25519_to_bytes serializes a field element to bytes in little-endian order.
*
* Postconditions:
* out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31]
*
* Input Bounds:
* arg1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]]
*/
static void fiat_25519_to_bytes(uint8_t out1[32], const uint64_t arg1[5]) {
uint64_t x1;
fiat_25519_uint1 x2;
uint64_t x3;
fiat_25519_uint1 x4;
uint64_t x5;
fiat_25519_uint1 x6;
uint64_t x7;
fiat_25519_uint1 x8;
uint64_t x9;
fiat_25519_uint1 x10;
uint64_t x11;
uint64_t x12;
fiat_25519_uint1 x13;
uint64_t x14;
fiat_25519_uint1 x15;
uint64_t x16;
fiat_25519_uint1 x17;
uint64_t x18;
fiat_25519_uint1 x19;
uint64_t x20;
fiat_25519_uint1 x21;
uint64_t x22;
uint64_t x23;
uint64_t x24;
uint64_t x25;
uint8_t x26;
uint64_t x27;
uint8_t x28;
uint64_t x29;
uint8_t x30;
uint64_t x31;
uint8_t x32;
uint64_t x33;
uint8_t x34;
uint64_t x35;
uint8_t x36;
uint8_t x37;
uint64_t x38;
uint8_t x39;
uint64_t x40;
uint8_t x41;
uint64_t x42;
uint8_t x43;
uint64_t x44;
uint8_t x45;
uint64_t x46;
uint8_t x47;
uint64_t x48;
uint8_t x49;
uint8_t x50;
uint64_t x51;
uint8_t x52;
uint64_t x53;
uint8_t x54;
uint64_t x55;
uint8_t x56;
uint64_t x57;
uint8_t x58;
uint64_t x59;
uint8_t x60;
uint64_t x61;
uint8_t x62;
uint64_t x63;
uint8_t x64;
fiat_25519_uint1 x65;
uint64_t x66;
uint8_t x67;
uint64_t x68;
uint8_t x69;
uint64_t x70;
uint8_t x71;
uint64_t x72;
uint8_t x73;
uint64_t x74;
uint8_t x75;
uint64_t x76;
uint8_t x77;
uint8_t x78;
uint64_t x79;
uint8_t x80;
uint64_t x81;
uint8_t x82;
uint64_t x83;
uint8_t x84;
uint64_t x85;
uint8_t x86;
uint64_t x87;
uint8_t x88;
uint64_t x89;
uint8_t x90;
uint8_t x91;
fiat_25519_subborrowx_u51(&x1, &x2, 0x0, (arg1[0]), UINT64_C(0x7ffffffffffed));
fiat_25519_subborrowx_u51(&x3, &x4, x2, (arg1[1]), UINT64_C(0x7ffffffffffff));
fiat_25519_subborrowx_u51(&x5, &x6, x4, (arg1[2]), UINT64_C(0x7ffffffffffff));
fiat_25519_subborrowx_u51(&x7, &x8, x6, (arg1[3]), UINT64_C(0x7ffffffffffff));
fiat_25519_subborrowx_u51(&x9, &x10, x8, (arg1[4]), UINT64_C(0x7ffffffffffff));
fiat_25519_cmovznz_u64(&x11, x10, 0x0, UINT64_C(0xffffffffffffffff));
fiat_25519_addcarryx_u51(&x12, &x13, 0x0, x1, (x11 & UINT64_C(0x7ffffffffffed)));
fiat_25519_addcarryx_u51(&x14, &x15, x13, x3, (x11 & UINT64_C(0x7ffffffffffff)));
fiat_25519_addcarryx_u51(&x16, &x17, x15, x5, (x11 & UINT64_C(0x7ffffffffffff)));
fiat_25519_addcarryx_u51(&x18, &x19, x17, x7, (x11 & UINT64_C(0x7ffffffffffff)));
fiat_25519_addcarryx_u51(&x20, &x21, x19, x9, (x11 & UINT64_C(0x7ffffffffffff)));
x22 = (x20 << 4);
x23 = (x18 * (uint64_t)0x2);
x24 = (x16 << 6);
x25 = (x14 << 3);
x26 = (uint8_t)(x12 & UINT8_C(0xff));
x27 = (x12 >> 8);
x28 = (uint8_t)(x27 & UINT8_C(0xff));
x29 = (x27 >> 8);
x30 = (uint8_t)(x29 & UINT8_C(0xff));
x31 = (x29 >> 8);
x32 = (uint8_t)(x31 & UINT8_C(0xff));
x33 = (x31 >> 8);
x34 = (uint8_t)(x33 & UINT8_C(0xff));
x35 = (x33 >> 8);
x36 = (uint8_t)(x35 & UINT8_C(0xff));
x37 = (uint8_t)(x35 >> 8);
x38 = (x25 + (uint64_t)x37);
x39 = (uint8_t)(x38 & UINT8_C(0xff));
x40 = (x38 >> 8);
x41 = (uint8_t)(x40 & UINT8_C(0xff));
x42 = (x40 >> 8);
x43 = (uint8_t)(x42 & UINT8_C(0xff));
x44 = (x42 >> 8);
x45 = (uint8_t)(x44 & UINT8_C(0xff));
x46 = (x44 >> 8);
x47 = (uint8_t)(x46 & UINT8_C(0xff));
x48 = (x46 >> 8);
x49 = (uint8_t)(x48 & UINT8_C(0xff));
x50 = (uint8_t)(x48 >> 8);
x51 = (x24 + (uint64_t)x50);
x52 = (uint8_t)(x51 & UINT8_C(0xff));
x53 = (x51 >> 8);
x54 = (uint8_t)(x53 & UINT8_C(0xff));
x55 = (x53 >> 8);
x56 = (uint8_t)(x55 & UINT8_C(0xff));
x57 = (x55 >> 8);
x58 = (uint8_t)(x57 & UINT8_C(0xff));
x59 = (x57 >> 8);
x60 = (uint8_t)(x59 & UINT8_C(0xff));
x61 = (x59 >> 8);
x62 = (uint8_t)(x61 & UINT8_C(0xff));
x63 = (x61 >> 8);
x64 = (uint8_t)(x63 & UINT8_C(0xff));
x65 = (fiat_25519_uint1)(x63 >> 8);
x66 = (x23 + (uint64_t)x65);
x67 = (uint8_t)(x66 & UINT8_C(0xff));
x68 = (x66 >> 8);
x69 = (uint8_t)(x68 & UINT8_C(0xff));
x70 = (x68 >> 8);
x71 = (uint8_t)(x70 & UINT8_C(0xff));
x72 = (x70 >> 8);
x73 = (uint8_t)(x72 & UINT8_C(0xff));
x74 = (x72 >> 8);
x75 = (uint8_t)(x74 & UINT8_C(0xff));
x76 = (x74 >> 8);
x77 = (uint8_t)(x76 & UINT8_C(0xff));
x78 = (uint8_t)(x76 >> 8);
x79 = (x22 + (uint64_t)x78);
x80 = (uint8_t)(x79 & UINT8_C(0xff));
x81 = (x79 >> 8);
x82 = (uint8_t)(x81 & UINT8_C(0xff));
x83 = (x81 >> 8);
x84 = (uint8_t)(x83 & UINT8_C(0xff));
x85 = (x83 >> 8);
x86 = (uint8_t)(x85 & UINT8_C(0xff));
x87 = (x85 >> 8);
x88 = (uint8_t)(x87 & UINT8_C(0xff));
x89 = (x87 >> 8);
x90 = (uint8_t)(x89 & UINT8_C(0xff));
x91 = (uint8_t)(x89 >> 8);
out1[0] = x26;
out1[1] = x28;
out1[2] = x30;
out1[3] = x32;
out1[4] = x34;
out1[5] = x36;
out1[6] = x39;
out1[7] = x41;
out1[8] = x43;
out1[9] = x45;
out1[10] = x47;
out1[11] = x49;
out1[12] = x52;
out1[13] = x54;
out1[14] = x56;
out1[15] = x58;
out1[16] = x60;
out1[17] = x62;
out1[18] = x64;
out1[19] = x67;
out1[20] = x69;
out1[21] = x71;
out1[22] = x73;
out1[23] = x75;
out1[24] = x77;
out1[25] = x80;
out1[26] = x82;
out1[27] = x84;
out1[28] = x86;
out1[29] = x88;
out1[30] = x90;
out1[31] = x91;
}
/*
* The function fiat_25519_from_bytes deserializes a field element from bytes in little-endian order.
*
* Postconditions:
* eval out1 mod m = bytes_eval arg1 mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]]
* Output Bounds:
* out1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
*/
static void fiat_25519_from_bytes(uint64_t out1[5], const uint8_t arg1[32]) {
uint64_t x1;
uint64_t x2;
uint64_t x3;
uint64_t x4;
uint64_t x5;
uint64_t x6;
uint64_t x7;
uint64_t x8;
uint64_t x9;
uint64_t x10;
uint64_t x11;
uint64_t x12;
uint64_t x13;
uint64_t x14;
uint64_t x15;
uint64_t x16;
uint64_t x17;
uint64_t x18;
uint64_t x19;
uint64_t x20;
uint64_t x21;
uint64_t x22;
uint64_t x23;
uint64_t x24;
uint64_t x25;
uint64_t x26;
uint64_t x27;
uint64_t x28;
uint64_t x29;
uint64_t x30;
uint64_t x31;
uint8_t x32;
uint64_t x33;
uint64_t x34;
uint64_t x35;
uint64_t x36;
uint64_t x37;
uint64_t x38;
uint64_t x39;
uint8_t x40;
uint64_t x41;
uint64_t x42;
uint64_t x43;
uint64_t x44;
uint64_t x45;
uint64_t x46;
uint64_t x47;
uint8_t x48;
uint64_t x49;
uint64_t x50;
uint64_t x51;
uint64_t x52;
uint64_t x53;
uint64_t x54;
uint64_t x55;
uint64_t x56;
uint8_t x57;
uint64_t x58;
uint64_t x59;
uint64_t x60;
uint64_t x61;
uint64_t x62;
uint64_t x63;
uint64_t x64;
uint8_t x65;
uint64_t x66;
uint64_t x67;
uint64_t x68;
uint64_t x69;
uint64_t x70;
uint64_t x71;
x1 = ((uint64_t)(arg1[31]) << 44);
x2 = ((uint64_t)(arg1[30]) << 36);
x3 = ((uint64_t)(arg1[29]) << 28);
x4 = ((uint64_t)(arg1[28]) << 20);
x5 = ((uint64_t)(arg1[27]) << 12);
x6 = ((uint64_t)(arg1[26]) << 4);
x7 = ((uint64_t)(arg1[25]) << 47);
x8 = ((uint64_t)(arg1[24]) << 39);
x9 = ((uint64_t)(arg1[23]) << 31);
x10 = ((uint64_t)(arg1[22]) << 23);
x11 = ((uint64_t)(arg1[21]) << 15);
x12 = ((uint64_t)(arg1[20]) << 7);
x13 = ((uint64_t)(arg1[19]) << 50);
x14 = ((uint64_t)(arg1[18]) << 42);
x15 = ((uint64_t)(arg1[17]) << 34);
x16 = ((uint64_t)(arg1[16]) << 26);
x17 = ((uint64_t)(arg1[15]) << 18);
x18 = ((uint64_t)(arg1[14]) << 10);
x19 = ((uint64_t)(arg1[13]) << 2);
x20 = ((uint64_t)(arg1[12]) << 45);
x21 = ((uint64_t)(arg1[11]) << 37);
x22 = ((uint64_t)(arg1[10]) << 29);
x23 = ((uint64_t)(arg1[9]) << 21);
x24 = ((uint64_t)(arg1[8]) << 13);
x25 = ((uint64_t)(arg1[7]) << 5);
x26 = ((uint64_t)(arg1[6]) << 48);
x27 = ((uint64_t)(arg1[5]) << 40);
x28 = ((uint64_t)(arg1[4]) << 32);
x29 = ((uint64_t)(arg1[3]) << 24);
x30 = ((uint64_t)(arg1[2]) << 16);
x31 = ((uint64_t)(arg1[1]) << 8);
x32 = (arg1[0]);
x33 = (x31 + (uint64_t)x32);
x34 = (x30 + x33);
x35 = (x29 + x34);
x36 = (x28 + x35);
x37 = (x27 + x36);
x38 = (x26 + x37);
x39 = (x38 & UINT64_C(0x7ffffffffffff));
x40 = (uint8_t)(x38 >> 51);
x41 = (x25 + (uint64_t)x40);
x42 = (x24 + x41);
x43 = (x23 + x42);
x44 = (x22 + x43);
x45 = (x21 + x44);
x46 = (x20 + x45);
x47 = (x46 & UINT64_C(0x7ffffffffffff));
x48 = (uint8_t)(x46 >> 51);
x49 = (x19 + (uint64_t)x48);
x50 = (x18 + x49);
x51 = (x17 + x50);
x52 = (x16 + x51);
x53 = (x15 + x52);
x54 = (x14 + x53);
x55 = (x13 + x54);
x56 = (x55 & UINT64_C(0x7ffffffffffff));
x57 = (uint8_t)(x55 >> 51);
x58 = (x12 + (uint64_t)x57);
x59 = (x11 + x58);
x60 = (x10 + x59);
x61 = (x9 + x60);
x62 = (x8 + x61);
x63 = (x7 + x62);
x64 = (x63 & UINT64_C(0x7ffffffffffff));
x65 = (uint8_t)(x63 >> 51);
x66 = (x6 + (uint64_t)x65);
x67 = (x5 + x66);
x68 = (x4 + x67);
x69 = (x3 + x68);
x70 = (x2 + x69);
x71 = (x1 + x70);
out1[0] = x39;
out1[1] = x47;
out1[2] = x56;
out1[3] = x64;
out1[4] = x71;
}
/*
* The function fiat_25519_carry_scmul_121666 multiplies a field element by 121666 and reduces the result.
*
* Postconditions:
* eval out1 mod m = (121666 * eval arg1) mod m
*
* Input Bounds:
* arg1: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]]
* Output Bounds:
* out1: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]]
*/
static void fiat_25519_carry_scmul_121666(uint64_t out1[5], const uint64_t arg1[5]) {
fiat_25519_uint128 x1;
fiat_25519_uint128 x2;
fiat_25519_uint128 x3;
fiat_25519_uint128 x4;
fiat_25519_uint128 x5;
uint64_t x6;
uint64_t x7;
fiat_25519_uint128 x8;
uint64_t x9;
uint64_t x10;
fiat_25519_uint128 x11;
uint64_t x12;
uint64_t x13;
fiat_25519_uint128 x14;
uint64_t x15;
uint64_t x16;
fiat_25519_uint128 x17;
uint64_t x18;
uint64_t x19;
uint64_t x20;
uint64_t x21;
fiat_25519_uint1 x22;
uint64_t x23;
uint64_t x24;
fiat_25519_uint1 x25;
uint64_t x26;
uint64_t x27;
x1 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[4]));
x2 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[3]));
x3 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[2]));
x4 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[1]));
x5 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[0]));
x6 = (uint64_t)(x5 >> 51);
x7 = (uint64_t)(x5 & UINT64_C(0x7ffffffffffff));
x8 = (x6 + x4);
x9 = (uint64_t)(x8 >> 51);
x10 = (uint64_t)(x8 & UINT64_C(0x7ffffffffffff));
x11 = (x9 + x3);
x12 = (uint64_t)(x11 >> 51);
x13 = (uint64_t)(x11 & UINT64_C(0x7ffffffffffff));
x14 = (x12 + x2);
x15 = (uint64_t)(x14 >> 51);
x16 = (uint64_t)(x14 & UINT64_C(0x7ffffffffffff));
x17 = (x15 + x1);
x18 = (uint64_t)(x17 >> 51);
x19 = (uint64_t)(x17 & UINT64_C(0x7ffffffffffff));
x20 = (x18 * UINT8_C(0x13));
x21 = (x7 + x20);
x22 = (fiat_25519_uint1)(x21 >> 51);
x23 = (x21 & UINT64_C(0x7ffffffffffff));
x24 = (x22 + x10);
x25 = (fiat_25519_uint1)(x24 >> 51);
x26 = (x24 & UINT64_C(0x7ffffffffffff));
x27 = (x25 + x13);
out1[0] = x23;
out1[1] = x26;
out1[2] = x27;
out1[3] = x16;
out1[4] = x19;
}
|
the_stack_data/15740.c | #include <stdio.h>
int main()
{
printf("#include <stdio.h>\nint main(void)\n{\n printf(\"Hello World\\n\");\n return 0;\n}\n");
system("pause");
return 0;
} |
the_stack_data/192330497.c | /*
* Copyright (c) Meta Platforms, Inc. and its affiliates.
*
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
#define assert(b) \
if (!(b)) \
abort();
static volatile int quit = 0;
static void handler(int sig, siginfo_t* info, void* ucontext) {
static char msg[64];
quit = 1;
size_t n = snprintf(msg, 64, "[OK] received signal %u\n", info->si_signo);
write(STDOUT_FILENO, msg, n);
}
int main(int argc, char* argv[]) {
int ret;
sigset_t sigset, sigset_old;
struct sigaction old, new;
memset(&old, 0, sizeof(old));
memset(&new, 0, sizeof(new));
sigemptyset(&sigset);
sigemptyset(&sigset_old);
sigaddset(&sigset, SIGALRM);
sigaddset(&sigset, SIGVTALRM);
new.sa_sigaction = handler;
new.sa_mask = sigset;
new.sa_flags = SA_RESTART | SA_SIGINFO;
ret = sigaction(SIGALRM, &new, &old);
if (ret < 0) {
perror("rt_sigaction");
exit(1);
}
ret = sigprocmask(SIG_UNBLOCK, &sigset, &sigset_old);
assert(ret >= 0);
ret = sigaction(SIGALRM, NULL, &old);
if (ret < 0) {
perror("rt_sigaction");
exit(1);
}
assert((unsigned long)old.sa_sigaction == (unsigned long)handler);
alarm(1);
while (!quit)
;
return 0;
}
|
the_stack_data/32006.c |
#include <stdio.h>
int
ExportedFromExe ()
{
printf ("This output produced by ExportedFromExe.\n");
return 0;
}
int main()
{
printf ("Hello, world\n");
return 0;
}
|
the_stack_data/1598.c | #include <sys/mman.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
#include <pthread.h>
char *__strchrnul(const char *, int);
char *__shm_mapname(const char *name, char *buf)
{
char *p;
while (*name == '/') name++;
if (*(p = __strchrnul(name, '/')) || p==name ||
(p-name <= 2 && name[0]=='.' && p[-1]=='.')) {
errno = EINVAL;
return 0;
}
if (p-name > NAME_MAX) {
errno = ENAMETOOLONG;
return 0;
}
memcpy(buf, "/dev/shm/", 9);
memcpy(buf+9, name, p-name+1);
return buf;
}
int shm_open(const char *name, int flag, mode_t mode)
{
int cs;
char buf[NAME_MAX+10];
if (!(name = __shm_mapname(name, buf))) return -1;
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
int fd = open(name, flag|O_NOFOLLOW|O_CLOEXEC|O_NONBLOCK, mode);
pthread_setcancelstate(cs, 0);
return fd;
}
int shm_unlink(const char *name)
{
char buf[NAME_MAX+10];
if (!(name = __shm_mapname(name, buf))) return -1;
return unlink(name);
}
|
the_stack_data/125141547.c | #include<stdio.h>
void insertionSort(int arr[], int arrSize) {
int i, j, k;
// Algorithm for sorting.
for (i = 1; i < arrSize; i++)
for (j = 0; j < i; j++)
if (arr[j] > arr[i]) {
int temp = arr[i];
for (k = i; k > j; k--)
arr[k] = arr[k - 1];
arr[j] = temp;
}
//End of algorithm.
}
/*
int main()
{
int arr[' '],arrSize,i;
printf("Enter size of the array :: ");
scanf("%d",&arrSize);
printf("\nEnter elements of the array ::\n");
for(i=0; i<arrSize; i++)
scanf("%d",&arr[i]);
insertionSort(arr,arrSize);
printf("\nSorted array ::");
for(i=0; i<arrSize; i++)
printf(" %d",arr[i]);
return 0;
}
*/
|
the_stack_data/215769268.c | void test(int parent){
parent = blkcg_parent ( parent ) ;} |
the_stack_data/58717.c | #define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main()
{
/*
Object
- "An object is simply a block of memory that can store a value." (KNK p. 487)
- Object has more develped meaning in C++ and Object Oriented Programming (OOP)
Identifiers
- Names for variables, functions, macros, and other entities. (KNK p. 25)
*/
/*
lvalue is an expression 'referring' to an object. (K&R p.197)
L-value : left side of an assignment
R-value : right side, variable, constant, expressions (KNK p. 67)
*/
/*
Identifiers have scope.
Objects have storage duration.
Variables and functions have one of the following linkages:
external linkage, internal linkage, or no linkage.
*/
return 0;
} |
the_stack_data/558906.c | /**
******************************************************************************
* @file stm32h7xx_ll_spi.c
* @author MCD Application Team
* @brief SPI LL module driver.
******************************************************************************
* @attention
*
* <h2><center>© Copyright (c) 2017 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
#if defined(USE_FULL_LL_DRIVER)
/* Includes ------------------------------------------------------------------*/
#include "stm32h7xx_ll_spi.h"
#include "stm32h7xx_ll_bus.h"
#include "stm32h7xx_ll_rcc.h"
#ifdef GENERATOR_I2S_PRESENT
#include "stm32h7xx_ll_rcc.h"
#endif /* GENERATOR_I2S_PRESENT*/
#ifdef USE_FULL_ASSERT
#include "stm32_assert.h"
#else
#define assert_param(expr) ((void)0)
#endif
/** @addtogroup STM32H7xx_LL_Driver
* @{
*/
#if defined(SPI1) || defined(SPI2) || defined(SPI3) || defined(SPI4) || defined(SPI5) || defined(SPI6)
/** @addtogroup SPI_LL
* @{
*/
/* Private types -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private constants ---------------------------------------------------------*/
/* Private macros ------------------------------------------------------------*/
/** @addtogroup SPI_LL_Private_Macros
* @{
*/
#define IS_LL_SPI_MODE(__VALUE__) (((__VALUE__) == LL_SPI_MODE_MASTER) \
|| ((__VALUE__) == LL_SPI_MODE_SLAVE))
#define IS_LL_SPI_SS_IDLENESS(__VALUE__) (((__VALUE__) == LL_SPI_SS_IDLENESS_00CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_01CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_02CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_03CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_04CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_05CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_06CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_07CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_08CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_09CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_10CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_11CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_12CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_13CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_14CYCLE) \
|| ((__VALUE__) == LL_SPI_SS_IDLENESS_15CYCLE))
#define IS_LL_SPI_ID_IDLENESS(__VALUE__) (((__VALUE__) == LL_SPI_ID_IDLENESS_00CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_01CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_02CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_03CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_04CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_05CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_06CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_07CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_08CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_09CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_10CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_11CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_12CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_13CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_14CYCLE) \
|| ((__VALUE__) == LL_SPI_ID_IDLENESS_15CYCLE))
#define IS_LL_SPI_TXCRCINIT_PATTERN(__VALUE__) (((__VALUE__) == LL_SPI_TXCRCINIT_ALL_ZERO_PATTERN) \
|| ((__VALUE__) == LL_SPI_TXCRCINIT_ALL_ONES_PATTERN))
#define IS_LL_SPI_RXCRCINIT_PATTERN(__VALUE__) (((__VALUE__) == LL_SPI_RXCRCINIT_ALL_ZERO_PATTERN) \
|| ((__VALUE__) == LL_SPI_RXCRCINIT_ALL_ONES_PATTERN))
#define IS_LL_SPI_UDR_CONFIG_REGISTER(__VALUE__) (((__VALUE__) == LL_SPI_UDR_CONFIG_REGISTER_PATTERN) \
|| ((__VALUE__) == LL_SPI_UDR_CONFIG_LAST_RECEIVED) \
|| ((__VALUE__) == LL_SPI_UDR_CONFIG_LAST_TRANSMITTED))
#define IS_LL_SPI_UDR_DETECT_BEGIN_DATA(__VALUE__) (((__VALUE__) == LL_SPI_UDR_DETECT_BEGIN_DATA_FRAME) \
|| ((__VALUE__) == LL_SPI_UDR_DETECT_END_DATA_FRAME) \
|| ((__VALUE__) == LL_SPI_UDR_DETECT_BEGIN_ACTIVE_NSS))
#define IS_LL_SPI_PROTOCOL(__VALUE__) (((__VALUE__) == LL_SPI_PROTOCOL_MOTOROLA) \
|| ((__VALUE__) == LL_SPI_PROTOCOL_TI))
#define IS_LL_SPI_PHASE(__VALUE__) (((__VALUE__) == LL_SPI_PHASE_1EDGE) \
|| ((__VALUE__) == LL_SPI_PHASE_2EDGE))
#define IS_LL_SPI_POLARITY(__VALUE__) (((__VALUE__) == LL_SPI_POLARITY_LOW) \
|| ((__VALUE__) == LL_SPI_POLARITY_HIGH))
#define IS_LL_SPI_BAUDRATEPRESCALER(__VALUE__) (((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV2) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV4) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV8) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV16) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV32) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV64) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV128) \
|| ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV256))
#define IS_LL_SPI_BITORDER(__VALUE__) (((__VALUE__) == LL_SPI_LSB_FIRST) \
|| ((__VALUE__) == LL_SPI_MSB_FIRST))
#define IS_LL_SPI_TRANSFER_DIRECTION(__VALUE__) (((__VALUE__) == LL_SPI_FULL_DUPLEX) \
|| ((__VALUE__) == LL_SPI_SIMPLEX_TX) \
|| ((__VALUE__) == LL_SPI_SIMPLEX_RX) \
|| ((__VALUE__) == LL_SPI_HALF_DUPLEX_RX) \
|| ((__VALUE__) == LL_SPI_HALF_DUPLEX_TX))
#define IS_LL_SPI_DATAWIDTH(__VALUE__) (((__VALUE__) == LL_SPI_DATAWIDTH_4BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_5BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_6BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_7BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_8BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_9BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_10BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_11BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_12BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_13BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_14BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_15BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_16BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_17BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_18BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_19BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_20BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_21BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_22BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_23BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_24BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_25BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_26BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_27BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_28BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_29BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_30BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_31BIT) \
|| ((__VALUE__) == LL_SPI_DATAWIDTH_32BIT))
#define IS_LL_SPI_FIFO_TH(__VALUE__) (((__VALUE__) == LL_SPI_FIFO_TH_01DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_02DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_03DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_04DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_05DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_06DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_07DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_08DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_09DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_10DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_11DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_12DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_13DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_14DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_15DATA) \
|| ((__VALUE__) == LL_SPI_FIFO_TH_16DATA))
#define IS_LL_SPI_CRC(__VALUE__) (((__VALUE__) == LL_SPI_CRC_4BIT) \
|| ((__VALUE__) == LL_SPI_CRC_5BIT) \
|| ((__VALUE__) == LL_SPI_CRC_6BIT) \
|| ((__VALUE__) == LL_SPI_CRC_7BIT) \
|| ((__VALUE__) == LL_SPI_CRC_8BIT) \
|| ((__VALUE__) == LL_SPI_CRC_9BIT) \
|| ((__VALUE__) == LL_SPI_CRC_10BIT) \
|| ((__VALUE__) == LL_SPI_CRC_11BIT) \
|| ((__VALUE__) == LL_SPI_CRC_12BIT) \
|| ((__VALUE__) == LL_SPI_CRC_13BIT) \
|| ((__VALUE__) == LL_SPI_CRC_14BIT) \
|| ((__VALUE__) == LL_SPI_CRC_15BIT) \
|| ((__VALUE__) == LL_SPI_CRC_16BIT) \
|| ((__VALUE__) == LL_SPI_CRC_17BIT) \
|| ((__VALUE__) == LL_SPI_CRC_18BIT) \
|| ((__VALUE__) == LL_SPI_CRC_19BIT) \
|| ((__VALUE__) == LL_SPI_CRC_20BIT) \
|| ((__VALUE__) == LL_SPI_CRC_21BIT) \
|| ((__VALUE__) == LL_SPI_CRC_22BIT) \
|| ((__VALUE__) == LL_SPI_CRC_23BIT) \
|| ((__VALUE__) == LL_SPI_CRC_24BIT) \
|| ((__VALUE__) == LL_SPI_CRC_25BIT) \
|| ((__VALUE__) == LL_SPI_CRC_26BIT) \
|| ((__VALUE__) == LL_SPI_CRC_27BIT) \
|| ((__VALUE__) == LL_SPI_CRC_28BIT) \
|| ((__VALUE__) == LL_SPI_CRC_29BIT) \
|| ((__VALUE__) == LL_SPI_CRC_30BIT) \
|| ((__VALUE__) == LL_SPI_CRC_31BIT) \
|| ((__VALUE__) == LL_SPI_CRC_32BIT))
#define IS_LL_SPI_NSS(__VALUE__) (((__VALUE__) == LL_SPI_NSS_SOFT) \
|| ((__VALUE__) == LL_SPI_NSS_HARD_INPUT) \
|| ((__VALUE__) == LL_SPI_NSS_HARD_OUTPUT))
#define IS_LL_SPI_RX_FIFO(__VALUE__) (((__VALUE__) == LL_SPI_RX_FIFO_0PACKET) \
|| ((__VALUE__) == LL_SPI_RX_FIFO_1PACKET) \
|| ((__VALUE__) == LL_SPI_RX_FIFO_2PACKET) \
|| ((__VALUE__) == LL_SPI_RX_FIFO_3PACKET))
#define IS_LL_SPI_CRCCALCULATION(__VALUE__) (((__VALUE__) == LL_SPI_CRCCALCULATION_ENABLE) \
|| ((__VALUE__) == LL_SPI_CRCCALCULATION_DISABLE))
#define IS_LL_SPI_CRC_POLYNOMIAL(__VALUE__) ((__VALUE__) >= 0x1UL)
/**
* @}
*/
/* Private function prototypes -----------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @addtogroup SPI_LL_Exported_Functions
* @{
*/
/** @addtogroup SPI_LL_EF_Init
* @{
*/
/**
* @brief De-initialize the SPI registers to their default reset values.
* @param SPIx SPI Instance
* @retval An ErrorStatus enumeration value:
* - SUCCESS: SPI registers are de-initialized
* - ERROR: SPI registers are not de-initialized
*/
ErrorStatus LL_SPI_DeInit(SPI_TypeDef *SPIx)
{
ErrorStatus status = ERROR;
/* Check the parameters */
assert_param(IS_SPI_ALL_INSTANCE(SPIx));
#if defined(SPI1)
if (SPIx == SPI1)
{
/* Force reset of SPI clock */
LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI1);
/* Release reset of SPI clock */
LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI1);
status = SUCCESS;
}
#endif /* SPI1 */
#if defined(SPI2)
if (SPIx == SPI2)
{
/* Force reset of SPI clock */
LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI2);
/* Release reset of SPI clock */
LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI2);
status = SUCCESS;
}
#endif /* SPI2 */
#if defined(SPI3)
if (SPIx == SPI3)
{
/* Force reset of SPI clock */
LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI3);
/* Release reset of SPI clock */
LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI3);
status = SUCCESS;
}
#endif /* SPI3 */
#if defined(SPI4)
if (SPIx == SPI4)
{
/* Force reset of SPI clock */
LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI4);
/* Release reset of SPI clock */
LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI4);
status = SUCCESS;
}
#endif /* SPI4 */
#if defined(SPI5)
if (SPIx == SPI5)
{
/* Force reset of SPI clock */
LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI5);
/* Release reset of SPI clock */
LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI5);
status = SUCCESS;
}
#endif /* SPI5 */
#if defined(SPI6)
if (SPIx == SPI6)
{
/* Force reset of SPI clock */
LL_APB4_GRP1_ForceReset(LL_APB4_GRP1_PERIPH_SPI6);
/* Release reset of SPI clock */
LL_APB4_GRP1_ReleaseReset(LL_APB4_GRP1_PERIPH_SPI6);
status = SUCCESS;
}
#endif /* SPI6 */
return status;
}
/**
* @brief Initialize the SPI registers according to the specified parameters in SPI_InitStruct.
* @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0),
* SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned.
* @param SPIx SPI Instance
* @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure
* @retval An ErrorStatus enumeration value. (Return always SUCCESS)
*/
ErrorStatus LL_SPI_Init(SPI_TypeDef *SPIx, LL_SPI_InitTypeDef *SPI_InitStruct)
{
ErrorStatus status = ERROR;
uint32_t tmp_nss;
uint32_t tmp_mode;
/* Check the SPI Instance SPIx*/
assert_param(IS_SPI_ALL_INSTANCE(SPIx));
/* Check the SPI parameters from SPI_InitStruct*/
assert_param(IS_LL_SPI_TRANSFER_DIRECTION(SPI_InitStruct->TransferDirection));
assert_param(IS_LL_SPI_MODE(SPI_InitStruct->Mode));
assert_param(IS_LL_SPI_DATAWIDTH(SPI_InitStruct->DataWidth));
assert_param(IS_LL_SPI_POLARITY(SPI_InitStruct->ClockPolarity));
assert_param(IS_LL_SPI_PHASE(SPI_InitStruct->ClockPhase));
assert_param(IS_LL_SPI_NSS(SPI_InitStruct->NSS));
assert_param(IS_LL_SPI_BAUDRATEPRESCALER(SPI_InitStruct->BaudRate));
assert_param(IS_LL_SPI_BITORDER(SPI_InitStruct->BitOrder));
assert_param(IS_LL_SPI_CRCCALCULATION(SPI_InitStruct->CRCCalculation));
if (LL_SPI_IsEnabled(SPIx) == 0x00000000UL)
{
/*---------------------------- SPIx CFG1 Configuration ------------------------
* Configure SPIx CFG1 with parameters:
* - Master Baud Rate : SPI_CFG1_MBR[2:0] bits
* - CRC Computation Enable : SPI_CFG1_CRCEN bit
* - Length of data frame : SPI_CFG1_DSIZE[4:0] bits
*/
MODIFY_REG(SPIx->CFG1, SPI_CFG1_MBR | SPI_CFG1_CRCEN | SPI_CFG1_DSIZE,
SPI_InitStruct->BaudRate | SPI_InitStruct->CRCCalculation | SPI_InitStruct->DataWidth);
tmp_nss = SPI_InitStruct->NSS;
tmp_mode = SPI_InitStruct->Mode;
/* Checks to setup Internal SS signal level and avoid a MODF Error */
if ((LL_SPI_GetNSSPolarity(SPIx) == LL_SPI_NSS_POLARITY_LOW) && (tmp_nss == LL_SPI_NSS_SOFT) && (tmp_mode == LL_SPI_MODE_MASTER))
{
LL_SPI_SetInternalSSLevel(SPIx, LL_SPI_SS_LEVEL_HIGH);
}
/*---------------------------- SPIx CFG2 Configuration ------------------------
* Configure SPIx CFG2 with parameters:
* - NSS management : SPI_CFG2_SSM, SPI_CFG2_SSOE bits
* - ClockPolarity : SPI_CFG2_CPOL bit
* - ClockPhase : SPI_CFG2_CPHA bit
* - BitOrder : SPI_CFG2_LSBFRST bit
* - Master/Slave Mode : SPI_CFG2_MASTER bit
* - SPI Mode : SPI_CFG2_COMM[1:0] bits
*/
MODIFY_REG(SPIx->CFG2, SPI_CFG2_SSM | SPI_CFG2_SSOE |
SPI_CFG2_CPOL | SPI_CFG2_CPHA |
SPI_CFG2_LSBFRST | SPI_CFG2_MASTER | SPI_CFG2_COMM,
SPI_InitStruct->NSS | SPI_InitStruct->ClockPolarity |
SPI_InitStruct->ClockPhase | SPI_InitStruct->BitOrder |
SPI_InitStruct->Mode | (SPI_InitStruct->TransferDirection & SPI_CFG2_COMM));
/*---------------------------- SPIx CR1 Configuration ------------------------
* Configure SPIx CR1 with parameter:
* - Half Duplex Direction : SPI_CR1_HDDIR bit
*/
MODIFY_REG(SPIx->CR1, SPI_CR1_HDDIR, SPI_InitStruct->TransferDirection & SPI_CR1_HDDIR);
/*---------------------------- SPIx CRCPOLY Configuration ----------------------
* Configure SPIx CRCPOLY with parameter:
* - CRCPoly : CRCPOLY[31:0] bits
*/
if (SPI_InitStruct->CRCCalculation == LL_SPI_CRCCALCULATION_ENABLE)
{
assert_param(IS_LL_SPI_CRC_POLYNOMIAL(SPI_InitStruct->CRCPoly));
LL_SPI_SetCRCPolynomial(SPIx, SPI_InitStruct->CRCPoly);
}
/* Activate the SPI mode (Reset I2SMOD bit in I2SCFGR register) */
CLEAR_BIT(SPIx->I2SCFGR, SPI_I2SCFGR_I2SMOD);
status = SUCCESS;
}
return status;
}
/**
* @brief Set each @ref LL_SPI_InitTypeDef field to default value.
* @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure
* whose fields will be set to default values.
* @retval None
*/
void LL_SPI_StructInit(LL_SPI_InitTypeDef *SPI_InitStruct)
{
/* Set SPI_InitStruct fields to default values */
SPI_InitStruct->TransferDirection = LL_SPI_FULL_DUPLEX;
SPI_InitStruct->Mode = LL_SPI_MODE_SLAVE;
SPI_InitStruct->DataWidth = LL_SPI_DATAWIDTH_8BIT;
SPI_InitStruct->ClockPolarity = LL_SPI_POLARITY_LOW;
SPI_InitStruct->ClockPhase = LL_SPI_PHASE_1EDGE;
SPI_InitStruct->NSS = LL_SPI_NSS_HARD_INPUT;
SPI_InitStruct->BaudRate = LL_SPI_BAUDRATEPRESCALER_DIV2;
SPI_InitStruct->BitOrder = LL_SPI_MSB_FIRST;
SPI_InitStruct->CRCCalculation = LL_SPI_CRCCALCULATION_DISABLE;
SPI_InitStruct->CRCPoly = 7UL;
}
/** @addtogroup I2S_LL
* @{
*/
/* Private types -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private constants ---------------------------------------------------------*/
/** @defgroup I2S_LL_Private_Constants I2S Private Constants
* @{
*/
/* I2S registers Masks */
#define I2S_I2SCFGR_CLEAR_MASK (SPI_I2SCFGR_CHLEN | SPI_I2SCFGR_DATLEN | \
SPI_I2SCFGR_DATFMT | SPI_I2SCFGR_CKPOL | \
SPI_I2SCFGR_I2SSTD | SPI_I2SCFGR_MCKOE | \
SPI_I2SCFGR_I2SCFG | SPI_I2SCFGR_I2SMOD )
/**
* @}
*/
/* Private macros ------------------------------------------------------------*/
/** @defgroup I2S_LL_Private_Macros I2S Private Macros
* @{
*/
#define IS_LL_I2S_DATAFORMAT(__VALUE__) (((__VALUE__) == LL_I2S_DATAFORMAT_16B) \
|| ((__VALUE__) == LL_I2S_DATAFORMAT_16B_EXTENDED) \
|| ((__VALUE__) == LL_I2S_DATAFORMAT_24B) \
|| ((__VALUE__) == LL_I2S_DATAFORMAT_24B_LEFT_ALIGNED) \
|| ((__VALUE__) == LL_I2S_DATAFORMAT_32B))
#define IS_LL_I2S_CHANNEL_LENGTH_TYPE (__VALUE__) (((__VALUE__) == LL_I2S_SLAVE_VARIABLE_CH_LENGTH) \
|| ((__VALUE__) == LL_I2S_SLAVE_FIXED_CH_LENGTH))
#define IS_LL_I2S_CKPOL(__VALUE__) (((__VALUE__) == LL_I2S_POLARITY_LOW) \
|| ((__VALUE__) == LL_I2S_POLARITY_HIGH))
#define IS_LL_I2S_STANDARD(__VALUE__) (((__VALUE__) == LL_I2S_STANDARD_PHILIPS) \
|| ((__VALUE__) == LL_I2S_STANDARD_MSB) \
|| ((__VALUE__) == LL_I2S_STANDARD_LSB) \
|| ((__VALUE__) == LL_I2S_STANDARD_PCM_SHORT) \
|| ((__VALUE__) == LL_I2S_STANDARD_PCM_LONG))
#define IS_LL_I2S_MODE(__VALUE__) (((__VALUE__) == LL_I2S_MODE_SLAVE_TX) \
|| ((__VALUE__) == LL_I2S_MODE_SLAVE_RX) \
|| ((__VALUE__) == LL_I2S_MODE_SLAVE_FULL_DUPLEX) \
|| ((__VALUE__) == LL_I2S_MODE_MASTER_TX) \
|| ((__VALUE__) == LL_I2S_MODE_MASTER_RX) \
|| ((__VALUE__) == LL_I2S_MODE_MASTER_FULL_DUPLEX))
#define IS_LL_I2S_MCLK_OUTPUT(__VALUE__) (((__VALUE__) == LL_I2S_MCLK_OUTPUT_ENABLE) \
|| ((__VALUE__) == LL_I2S_MCLK_OUTPUT_DISABLE))
#define IS_LL_I2S_AUDIO_FREQ(__VALUE__) ((((__VALUE__) >= LL_I2S_AUDIOFREQ_8K) \
&& ((__VALUE__) <= LL_I2S_AUDIOFREQ_192K)) \
|| ((__VALUE__) == LL_I2S_AUDIOFREQ_DEFAULT))
#define IS_LL_I2S_PRESCALER_LINEAR(__VALUE__) ((__VALUE__) <= 0xFFUL)
#define IS_LL_I2S_PRESCALER_PARITY(__VALUE__) (((__VALUE__) == LL_I2S_PRESCALER_PARITY_EVEN) \
|| ((__VALUE__) == LL_I2S_PRESCALER_PARITY_ODD))
#define IS_LL_I2S_FIFO_TH (__VALUE__) (((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_01DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_02DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_03DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_04DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_05DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_06DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_07DATA) \
|| ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_08DATA))
#define IS_LL_I2S_BIT_ORDER(__VALUE__) (((__VALUE__) == LL_I2S_LSB_FIRST) \
|| ((__VALUE__) == LL_I2S_MSB_FIRST))
/**
* @}
*/
/* Private function prototypes -----------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @addtogroup I2S_LL_Exported_Functions
* @{
*/
/** @addtogroup I2S_LL_EF_Init
* @{
*/
/**
* @brief De-initialize the SPI/I2S registers to their default reset values.
* @param SPIx SPI Instance
* @retval An ErrorStatus enumeration value:
* - SUCCESS: SPI registers are de-initialized
* - ERROR: SPI registers are not de-initialized
*/
ErrorStatus LL_I2S_DeInit(SPI_TypeDef *SPIx)
{
return LL_SPI_DeInit(SPIx);
}
/**
* @brief Initializes the SPI/I2S registers according to the specified parameters in I2S_InitStruct.
* @note As some bits in I2S configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0),
* SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned.
* @note I2S (SPI) source clock must be ready before calling this function. Otherwise will results in wrong programming.
* @param SPIx SPI Instance
* @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure
* @retval An ErrorStatus enumeration value:
* - SUCCESS: SPI registers are Initialized
* - ERROR: SPI registers are not Initialized
*/
ErrorStatus LL_I2S_Init(SPI_TypeDef *SPIx, LL_I2S_InitTypeDef *I2S_InitStruct)
{
uint32_t i2sdiv = 0UL, i2sodd = 0UL, packetlength = 1UL, ispcm = 0UL;
uint32_t tmp;
uint32_t sourceclock;
ErrorStatus status = ERROR;
/* Check the I2S parameters */
assert_param(IS_I2S_ALL_INSTANCE(SPIx));
assert_param(IS_LL_I2S_MODE(I2S_InitStruct->Mode));
assert_param(IS_LL_I2S_STANDARD(I2S_InitStruct->Standard));
assert_param(IS_LL_I2S_DATAFORMAT(I2S_InitStruct->DataFormat));
assert_param(IS_LL_I2S_MCLK_OUTPUT(I2S_InitStruct->MCLKOutput));
assert_param(IS_LL_I2S_AUDIO_FREQ(I2S_InitStruct->AudioFreq));
assert_param(IS_LL_I2S_CKPOL(I2S_InitStruct->ClockPolarity));
/* Check that SPE bit is set to 0 in order to be sure that SPI/I2S block is disabled.
* In this case, it is useless to check if the I2SMOD bit is set to 0 because
* this bit I2SMOD only serves to select the desired mode.
*/
if (LL_SPI_IsEnabled(SPIx) == 0x00000000UL)
{
/*---------------------------- SPIx I2SCFGR Configuration --------------------
* Configure SPIx I2SCFGR with parameters:
* - Mode : SPI_I2SCFGR_I2SCFG[2:0] bits
* - Standard : SPI_I2SCFGR_I2SSTD[1:0] and SPI_I2SCFGR_PCMSYNC bits
* - DataFormat : SPI_I2SCFGR_CHLEN, SPI_I2SCFGR_DATFMT and SPI_I2SCFGR_DATLEN[1:0] bits
* - ClockPolarity : SPI_I2SCFGR_CKPOL bit
* - MCLKOutput : SPI_I2SPR_MCKOE bit
* - I2S mode : SPI_I2SCFGR_I2SMOD bit
*/
/* Write to SPIx I2SCFGR */
MODIFY_REG(SPIx->I2SCFGR,
I2S_I2SCFGR_CLEAR_MASK,
I2S_InitStruct->Mode | I2S_InitStruct->Standard |
I2S_InitStruct->DataFormat | I2S_InitStruct->ClockPolarity |
I2S_InitStruct->MCLKOutput | SPI_I2SCFGR_I2SMOD);
/*---------------------------- SPIx I2SCFGR Configuration ----------------------
* Configure SPIx I2SCFGR with parameters:
* - AudioFreq : SPI_I2SCFGR_I2SDIV[7:0] and SPI_I2SCFGR_ODD bits
*/
/* If the requested audio frequency is not the default, compute the prescaler (i2sodd, i2sdiv)
* else, default values are used: i2sodd = 0U, i2sdiv = 0U.
*/
if (I2S_InitStruct->AudioFreq != LL_I2S_AUDIOFREQ_DEFAULT)
{
/* Check the frame length (For the Prescaler computing)
* Default value: LL_I2S_DATAFORMAT_16B (packetlength = 1U).
*/
if (I2S_InitStruct->DataFormat != LL_I2S_DATAFORMAT_16B)
{
/* Packet length is 32 bits */
packetlength = 2UL;
}
/* Check if PCM standard is used */
if ((I2S_InitStruct->Standard == LL_I2S_STANDARD_PCM_SHORT) ||
(I2S_InitStruct->Standard == LL_I2S_STANDARD_PCM_LONG))
{
ispcm = 1UL;
}
/* Get the I2S (SPI) source clock value */
sourceclock = LL_RCC_GetSPIClockFreq(LL_RCC_SPI123_CLKSOURCE);
/* Compute the Real divider depending on the MCLK output state with a fixed point */
if (I2S_InitStruct->MCLKOutput == LL_I2S_MCLK_OUTPUT_ENABLE)
{
/* MCLK output is enabled */
tmp = (((sourceclock / (256UL >> ispcm)) * 16UL) / I2S_InitStruct->AudioFreq) + 8UL;
}
else
{
/* MCLK output is disabled */
tmp = (((sourceclock / ((32UL >> ispcm) * packetlength)) * 16UL) / I2S_InitStruct->AudioFreq) + 8UL;
}
/* Remove the fixed point */
tmp = tmp / 16UL;
/* Check the parity of the divider */
i2sodd = tmp & 0x1UL;
/* Compute the i2sdiv prescaler */
i2sdiv = tmp / 2UL;
}
/* Test if the obtain values are forbiden or out of range */
if (((i2sodd == 1UL) && (i2sdiv == 1UL)) || (i2sdiv > 0xFFUL))
{
/* Set the default values */
i2sdiv = 0UL;
i2sodd = 0UL;
}
/* Write to SPIx I2SCFGR register the computed value */
MODIFY_REG(SPIx->I2SCFGR,
SPI_I2SCFGR_ODD | SPI_I2SCFGR_I2SDIV,
(i2sodd << SPI_I2SCFGR_ODD_Pos) | (i2sdiv << SPI_I2SCFGR_I2SDIV_Pos));
status = SUCCESS;
}
return status;
}
/**
* @brief Set each @ref LL_I2S_InitTypeDef field to default value.
* @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure
* whose fields will be set to default values.
* @retval None
*/
void LL_I2S_StructInit(LL_I2S_InitTypeDef *I2S_InitStruct)
{
/*--------------- Reset I2S init structure parameters values -----------------*/
I2S_InitStruct->Mode = LL_I2S_MODE_SLAVE_TX;
I2S_InitStruct->Standard = LL_I2S_STANDARD_PHILIPS;
I2S_InitStruct->DataFormat = LL_I2S_DATAFORMAT_16B;
I2S_InitStruct->MCLKOutput = LL_I2S_MCLK_OUTPUT_DISABLE;
I2S_InitStruct->AudioFreq = LL_I2S_AUDIOFREQ_DEFAULT;
I2S_InitStruct->ClockPolarity = LL_I2S_POLARITY_LOW;
}
/**
* @brief Set linear and parity prescaler.
* @note To calculate value of PrescalerLinear(I2SDIV[7:0] bits) and PrescalerParity(ODD bit)\n
* Check Audio frequency table and formulas inside Reference Manual (SPI/I2S).
* @param SPIx SPI Instance
* @param PrescalerLinear Value between Min_Data=0x00 and Max_Data=0xFF
* @note PrescalerLinear '1' is not authorized with parity LL_I2S_PRESCALER_PARITY_ODD
* @param PrescalerParity This parameter can be one of the following values:
* @arg @ref LL_I2S_PRESCALER_PARITY_EVEN
* @arg @ref LL_I2S_PRESCALER_PARITY_ODD
* @retval None
*/
void LL_I2S_ConfigPrescaler(SPI_TypeDef *SPIx, uint32_t PrescalerLinear, uint32_t PrescalerParity)
{
/* Check the I2S parameters */
assert_param(IS_I2S_ALL_INSTANCE(SPIx));
assert_param(IS_LL_I2S_PRESCALER_LINEAR(PrescalerLinear));
assert_param(IS_LL_I2S_PRESCALER_PARITY(PrescalerParity));
/* Write to SPIx I2SPR */
MODIFY_REG(SPIx->I2SCFGR, SPI_I2SCFGR_I2SDIV | SPI_I2SCFGR_ODD, (PrescalerLinear << SPI_I2SCFGR_I2SDIV_Pos) |
(PrescalerParity << SPI_I2SCFGR_ODD_Pos));
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#endif /* defined(SPI1) || defined(SPI2) || defined(SPI3) || defined(SPI4) || defined(SPI5) || defined(SPI6) */
/**
* @}
*/
/**
* @}
*/
#endif /* USE_FULL_LL_DRIVER */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
the_stack_data/18887058.c | /**Crear un nº de procesos.*/
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h> // igual que printf pero solo para texto
#include <wait.h>
#include <ctype.h> //toupper
#include <limits.h> //Se utiliza para saber el tamaño de un tipo de dato como long int o float y no el de una variblae concreta
#include <sys/mman.h>
#define CANTIDAD 100000
int main(void)
{
pid_t procesos[CANTIDAD];
for(int i=0; i<CANTIDAD; i++)
{
procesos[i] = fork();
if (procesos[i] ==0) break;
while(wait(NULL)>0);
}
return 0;
}
|
the_stack_data/243894223.c | /*
* Copyright (c) 2012 Apple Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. Please obtain a copy of the License at
* http://www.opensource.apple.com/apsl/ and read it before using this
* file.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
* Please see the License for the specific language governing rights and
* limitations under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
/*
CFWindowsUtilities.c
Copyright (c) 2008-2012, Apple Inc. All rights reserved.
Responsibility: Tony Parker
*/
#if DEPLOYMENT_TARGET_WINDOWS
#include <CoreFoundation/CFArray.h>
#include <CoreFoundation/CFString.h>
#include "CFInternal.h"
#include "CFPriv.h"
#include <shlobj.h>
#include <sys/stat.h>
CF_EXPORT bool OSAtomicCompareAndSwapPtr(void *oldp, void *newp, void *volatile *dst)
{
return oldp == InterlockedCompareExchangePointer(dst, newp, oldp);
}
CF_EXPORT bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst)
{
return oldl == InterlockedCompareExchange(dst, newl, oldl);
}
CF_EXPORT bool OSAtomicCompareAndSwapPtrBarrier(void *oldp, void *newp, void *volatile *dst)
{
return oldp == InterlockedCompareExchangePointer(dst, newp, oldp);
}
CF_EXPORT int32_t OSAtomicDecrement32Barrier(volatile int32_t *dst)
{
return InterlockedDecrement((volatile long *)dst);
}
CF_EXPORT int32_t OSAtomicIncrement32Barrier(volatile int32_t *dst)
{
return InterlockedIncrement((volatile long *)dst);
}
CF_EXPORT int32_t OSAtomicAdd32Barrier( int32_t theAmount, volatile int32_t *theValue ) {
return (InterlockedExchangeAdd((volatile LONG *)theValue, theAmount) + theAmount);
}
CF_EXPORT bool OSAtomicCompareAndSwap32Barrier(int32_t oldValue, int32_t newValue, volatile int32_t *theValue) {
return oldValue == InterlockedCompareExchange((long *)theValue, newValue, oldValue);
}
CF_EXPORT int32_t OSAtomicAdd32( int32_t theAmount, volatile int32_t *theValue ) {
return (InterlockedExchangeAdd((volatile LONG *)theValue, theAmount) + theAmount);
}
CF_EXPORT int32_t OSAtomicIncrement32(volatile int32_t *theValue) {
return InterlockedIncrement((volatile long *)theValue);
}
CF_EXPORT int32_t OSAtomicDecrement32(volatile int32_t *theValue) {
return InterlockedDecrement((volatile long *)theValue);
}
// These 64-bit versions of InterlockedCompareExchange are only available on client Vista and later, so we can't use them (yet).
/*
CF_EXPORT bool OSAtomicCompareAndSwap64( int64_t __oldValue, int64_t __newValue, volatile int64_t *__theValue ) {
return __oldValue == InterlockedCompareExchange64((volatile LONGLONG *)__theValue, __newValue, __oldValue);
}
CF_EXPORT bool OSAtomicCompareAndSwap64Barrier( int64_t __oldValue, int64_t __newValue, volatile int64_t *__theValue ) {
return __oldValue == InterlockedCompareExchange64((volatile LONGLONG *)__theValue, __newValue, __oldValue);
}
CF_EXPORT int64_t OSAtomicAdd64( int64_t __theAmount, volatile int64_t *__theValue ) {
return (InterlockedExchangeAdd64((volatile LONGLONG *)__theValue, __theAmount) + __theAmount);
}
CF_EXPORT int64_t OSAtomicAdd64Barrier( int64_t __theAmount, volatile int64_t *__theValue ) {
retun (InterlockedExchangeAdd64((volatile LONGLONG *)__theValue, __theAmount) + __theAmount);
}
*/
void OSMemoryBarrier() {
MemoryBarrier();
}
void _CFGetFrameworkPath(wchar_t *path, int maxLength) {
#ifdef _DEBUG
// might be nice to get this from the project file at some point
wchar_t *DLLFileName = L"CoreFoundation_debug.dll";
#else
wchar_t *DLLFileName = L"CoreFoundation.dll";
#endif
path[0] = path[1] = 0;
DWORD wResult;
CFIndex idx;
HMODULE ourModule = GetModuleHandleW(DLLFileName);
CFAssert(ourModule, __kCFLogAssertion, "GetModuleHandle failed");
wResult = GetModuleFileNameW(ourModule, path, maxLength);
CFAssert1(wResult > 0, __kCFLogAssertion, "GetModuleFileName failed: %d", GetLastError());
CFAssert1(wResult < maxLength, __kCFLogAssertion, "GetModuleFileName result truncated: %s", path);
// strip off last component, the DLL name
for (idx = wResult - 1; idx; idx--) {
if ('\\' == path[idx]) {
path[idx] = '\0';
break;
}
}
}
#endif
|
the_stack_data/61295.c | // Copyright (c) 2017 Intel Corporation
//
// 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.
#if defined(LINUX32)
#include "vm_sys_info.h"
#include "vm_file.h"
#include <time.h>
#include <sys/utsname.h>
#include <unistd.h>
#include <sys/sysinfo.h>
uint32_t vm_sys_info_get_cpu_num(void)
{
return sysconf(_SC_NPROCESSORS_CONF); /* on Linux *_CONF will return number of _logical_ processors */
} /* uint32_t vm_sys_info_get_cpu_num(void) */
void vm_sys_info_get_cpu_name(vm_char *cpu_name)
{
FILE *pFile = NULL;
vm_char buf[_MAX_LEN];
vm_char tmp_buf[_MAX_LEN] = { 0 };
size_t len;
/* check error(s) */
if (NULL == cpu_name)
return;
pFile = vm_file_fopen(VM_STRING("/proc/cpuinfo"), "r");
if (!pFile)
return;
while ((vm_file_fgets(buf, _MAX_LEN, pFile)))
{
if (!vm_string_strncmp(buf, VM_STRING("vendor_id"), 9))
{
vm_string_strncpy_s(tmp_buf, _MAX_LEN, (vm_char*)(buf + 12), vm_string_strnlen_s(buf, _MAX_LEN) - 13);
}
else if (!vm_string_strncmp(buf, VM_STRING("model name"), 10))
{
if ((len = vm_string_strnlen_s(buf, _MAX_LEN) - 14) > 8)
vm_string_strncpy_s(cpu_name, _MAX_LEN, (vm_char *)(buf + 13), len);
else
vm_string_snprintf(cpu_name, PATH_MAX, VM_STRING("%s"), tmp_buf);
}
}
fclose(pFile);
} /* void vm_sys_info_get_cpu_name(vm_char *cpu_name) */
void vm_sys_info_get_vga_card(vm_char *vga_card)
{
/* check error(s) */
if (NULL == vga_card)
return;
} /* void vm_sys_info_get_vga_card(vm_char *vga_card) */
void vm_sys_info_get_os_name(vm_char *os_name)
{
struct utsname buf;
/* check error(s) */
if (NULL == os_name)
return;
uname(&buf);
vm_string_sprintf(os_name, VM_STRING("%s %s"), buf.sysname, buf.release);
} /* void vm_sys_info_get_os_name(vm_char *os_name) */
void vm_sys_info_get_computer_name(vm_char *computer_name)
{
/* check error(s) */
if (NULL == computer_name)
return;
gethostname(computer_name, 128);
} /* void vm_sys_info_get_computer_name(vm_char *computer_name) */
void vm_sys_info_get_program_name(vm_char *program_name)
{
/* check error(s) */
if (NULL == program_name)
return;
vm_char path[PATH_MAX] = {0,};
size_t i = 0;
if(readlink("/proc/self/exe", path, sizeof(path)) == -1)
{
// Add error handling
}
i = vm_string_strrchr(path, (vm_char)('/')) - path + 1;
vm_string_strncpy_s(program_name, PATH_MAX, path + i, vm_string_strnlen_s(path, PATH_MAX) - i);
} /* void vm_sys_info_get_program_name(vm_char *program_name) */
void vm_sys_info_get_program_path(vm_char *program_path)
{
vm_char path[ PATH_MAX ] = {0,};
size_t i = 0;
/* check error(s) */
if (NULL == program_path)
return;
if (readlink("/proc/self/exe", path, sizeof(path)) == -1)
{
// Add error handling
}
i = vm_string_strrchr(path, (vm_char)('/')) - path + 1;
vm_string_strncpy_s(program_path, PATH_MAX, path, i-1);
program_path[i - 1] = 0;
} /* void vm_sys_info_get_program_path(vm_char *program_path) */
uint32_t vm_sys_info_get_cpu_speed(void)
{
double ret = 0;
FILE *pFile = NULL;
vm_char buf[PATH_MAX];
pFile = vm_file_fopen(VM_STRING("/proc/cpuinfo"), "r" );
if (!pFile)
return 1000;
while ((vm_file_fgets(buf, PATH_MAX, pFile)))
{
if (!vm_string_strncmp(buf, VM_STRING("cpu MHz"), 7))
{
ret = vm_string_atol((vm_char *)(buf + 10));
break;
}
}
fclose(pFile);
return ((uint32_t) ret);
} /* uint32_t vm_sys_info_get_cpu_speed(void) */
uint32_t vm_sys_info_get_mem_size(void)
{
struct sysinfo info;
sysinfo(&info);
return (uint32_t)((double)info.totalram / (1024 * 1024) + 0.5);
} /* uint32_t vm_sys_info_get_mem_size(void) */
#else
# pragma warning( disable: 4206 )
#endif /* LINUX32 */
|
the_stack_data/126703136.c | #include <stdio.h>
#include <string.h>
#include <time.h>
int main(int argc, char **argv){
FILE *fp;
fp = fopen("./words_alpha.txt", "r");
char *word = argv[1];
char buffer[1024];
clock_t timer;
timer = clock();
while(fscanf(fp, "%1023s", buffer) ==1){
if(strcmp(buffer, word) == 0){
//printf("%s", word);
//printf(" was found.\n");
break;
}
}
timer = clock()-timer;
fclose(fp);
double time_taken = ((double)timer)/CLOCKS_PER_SEC;
//printf("%f\n", time_taken);
FILE *fp2 = fopen("./logs/clog.txt", "a");
fprintf(fp2, "%f\n", time_taken);
fclose(fp2);
}
|
the_stack_data/122014459.c | // this is the tcp part that comes right after login-mmo-1-http-accountserver.c
// peer0_0 = client > server
char peer0_0[] = {
0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x00 };
char peer0_1[] = {
0x2e, 0x82, 0x13, 0x83, 0x00, 0x00, 0x18, 0x84,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
char peer1_0[] = {
0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x7a, 0x09 };
char peer1_1[] = {
0x2e, 0x94, 0x00, 0x00, 0x77, 0xe8, 0x2e, 0x6c,
0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x73, 0x65,
0xbd, 0xbc, 0x13, 0x83, 0x21, 0xbc, 0x00, 0x0e,
0x31, 0x39, 0x32, 0x2e, 0x31, 0x36, 0x38, 0x2e,
0x31, 0x37, 0x38, 0x2e, 0x32, 0x38 };
char peer0_2[] = {
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x00, 0x00 };
char peer0_3[] = {
0x01, 0x82, 0x00, 0x00, 0x00, 0x00, 0x18, 0x89,
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x06, 0x61, 0x73, 0x64, 0x61,
0x73, 0x64, 0x21, 0xbc, 0x00, 0x06, 0x61, 0x73,
0x64, 0x61, 0x73, 0x64 };
char peer1_2[] = {
0x00, 0x00, 0x26, 0xc7, 0x01, 0x00, 0x7a, 0x09 };
char peer1_3[] = {
0x04, 0x97, 0x00, 0x84, 0x77, 0xe8, 0x2e, 0xa3,
0x00, 0x00, 0x26, 0xb7, 0x00, 0x00, 0x20, 0x0a,
0x21, 0xbc, 0x00, 0x0a, 0x30, 0x2e, 0x30, 0x31,
0x33, 0x37, 0x3a, 0x32, 0x36, 0x32, 0x21, 0xbc,
0x12, 0xa3, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62,
0x6c, 0x65, 0x2f, 0x43, 0x65, 0x70, 0x68, 0x69,
0x64, 0x5f, 0x31, 0x37, 0x5e, 0x31, 0x33, 0x35,
0x30, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x5e, 0x41, 0x64, 0x6d, 0x6f, 0x6e, 0x69,
0x73, 0x68, 0x65, 0x72, 0x20, 0x33, 0x32, 0x32,
0x33, 0x39, 0x30, 0x37, 0x36, 0x35, 0x39, 0x2e,
0x33, 0x39, 0x31, 0x37, 0x37, 0x38, 0x20, 0x2d,
0x31, 0x39, 0x39, 0x31, 0x36, 0x31, 0x38, 0x36,
0x36, 0x34, 0x2e, 0x34, 0x39, 0x31, 0x38, 0x39,
0x36, 0x20, 0x2d, 0x36, 0x38, 0x31, 0x34, 0x38,
0x35, 0x36, 0x38, 0x33, 0x37, 0x2e, 0x31, 0x33,
0x39, 0x39, 0x32, 0x38, 0x20, 0x63, 0x6f, 0x6e,
0x66, 0x65, 0x64, 0x0a, 0x30, 0x20, 0x73, 0x74,
0x61, 0x72, 0x64, 0x61, 0x74, 0x65, 0x20, 0x64,
0x61, 0x74, 0x61, 0x20, 0x31, 0x30, 0x20, 0x30,
0x2e, 0x30, 0x30, 0x34, 0x33, 0x3a, 0x32, 0x35,
0x31, 0x0a, 0x30, 0x20, 0x6d, 0x69, 0x73, 0x73,
0x69, 0x6f, 0x6e, 0x20, 0x64, 0x61, 0x74, 0x61,
0x20, 0x20, 0x31, 0x30, 0x0a, 0x76, 0x69, 0x73,
0x69, 0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75,
0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x50, 0x61,
0x6e, 0x64, 0x65, 0x79, 0x20, 0x31, 0x20, 0x30,
0x20, 0x0a, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65,
0x64, 0x5f, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62,
0x6c, 0x65, 0x2f, 0x53, 0x74, 0x69, 0x72, 0x6c,
0x69, 0x6e, 0x67, 0x20, 0x31, 0x20, 0x30, 0x20,
0x0a, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64,
0x5f, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c,
0x65, 0x2f, 0x4f, 0x6c, 0x64, 0x7a, 0x69, 0x65,
0x79, 0x20, 0x31, 0x20, 0x30, 0x20, 0x0a, 0x76,
0x69, 0x73, 0x69, 0x74, 0x65, 0x64, 0x5f, 0x43,
0x72, 0x75, 0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f,
0x43, 0x61, 0x72, 0x64, 0x65, 0x6c, 0x6c, 0x20,
0x31, 0x20, 0x30, 0x20, 0x0a, 0x76, 0x69, 0x73,
0x69, 0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75,
0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x45, 0x78,
0x69, 0x6c, 0x65, 0x20, 0x31, 0x20, 0x30, 0x20,
0x0a, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64,
0x5f, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c,
0x65, 0x2f, 0x45, 0x6e, 0x79, 0x6f, 0x20, 0x31,
0x20, 0x31, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69,
0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63,
0x69, 0x62, 0x6c, 0x65, 0x2f, 0x43, 0x65, 0x70,
0x68, 0x69, 0x64, 0x5f, 0x31, 0x37, 0x20, 0x31,
0x20, 0x31, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69,
0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63,
0x69, 0x62, 0x6c, 0x65, 0x2f, 0x31, 0x37, 0x2d,
0x61, 0x72, 0x20, 0x31, 0x20, 0x30, 0x20, 0x0a,
0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64, 0x5f,
0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c, 0x65,
0x2f, 0x41, 0x67, 0x65, 0x61, 0x20, 0x31, 0x20,
0x30, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69, 0x74,
0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x45, 0x76, 0x65, 0x72,
0x65, 0x74, 0x74, 0x20, 0x31, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x6d, 0x69, 0x73, 0x73, 0x69,
0x6f, 0x6e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x33, 0x0a,
0x39, 0x20, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x66,
0x72, 0x6f, 0x6d, 0x31, 0x20, 0x31, 0x33, 0x20,
0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c, 0x65,
0x2f, 0x45, 0x6e, 0x79, 0x6f, 0x0a, 0x34, 0x20,
0x6e, 0x65, 0x77, 0x73, 0x31, 0x20, 0x33, 0x38,
0x20, 0x23, 0x61, 0x73, 0x64, 0x61, 0x73, 0x64,
0x20, 0x68, 0x61, 0x73, 0x20, 0x75, 0x6e, 0x64,
0x6f, 0x63, 0x6b, 0x65, 0x64, 0x20, 0x66, 0x72,
0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x41,
0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x73, 0x0a,
0x31, 0x37, 0x20, 0x75, 0x6e, 0x69, 0x74, 0x5f,
0x74, 0x6f, 0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f,
0x77, 0x69, 0x74, 0x68, 0x31, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x70, 0x79, 0x74, 0x68, 0x6f,
0x6e, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x31,
0x20, 0x30, 0x20, 0x20, 0x0a, 0x30, 0x20, 0x6e,
0x65, 0x77, 0x73, 0x20, 0x64, 0x61, 0x74, 0x61,
0x20, 0x31, 0x0a, 0x0a, 0x30, 0x20, 0x66, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x62,
0x65, 0x67, 0x69, 0x6e, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31,
0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x31,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20 };
char peer1_4[] = {
0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31,
0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x35, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x30,
0x2e, 0x32, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31 };
char peer1_5[] = {
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d, 0x30, 0x2e,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x39, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x31,
0x20, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x38, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x36, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x39, 0x20, 0x2d,
0x30, 0x2e, 0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x39, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x39, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30,
0x2e, 0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x38, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x36, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x39, 0x20, 0x2d, 0x30,
0x2e, 0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x30, 0x2e,
0x38, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d };
char peer1_6[] = {
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x35, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x32, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x34, 0x20,
0x30, 0x20, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x34,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30 };
char peer1_7[] = {
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x2e, 0x38, 0x20,
0x2d, 0x30, 0x2e, 0x34, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x34, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x0a, 0x21, 0xbc, 0x13,
0xdb, 0x4b, 0x65, 0x79, 0x2c, 0x4d, 0x61, 0x78,
0x5f, 0x4c, 0x69, 0x66, 0x65, 0x73, 0x75, 0x70,
0x70, 0x6f, 0x72, 0x74, 0x5f, 0x46, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x2c, 0x43, 0x61, 0x72, 0x67, 0x6f,
0x5f, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2c,
0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x5f,
0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f,
0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x2c, 0x50,
0x69, 0x74, 0x63, 0x68, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f, 0x55, 0x70,
0x2c, 0x43, 0x6f, 0x6d, 0x6d, 0x5f, 0x46, 0x75,
0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
0x69, 0x74, 0x79, 0x2c, 0x52, 0x61, 0x70, 0x69,
0x64, 0x5f, 0x4d, 0x65, 0x73, 0x68, 0x2c, 0x57,
0x61, 0x72, 0x70, 0x5f, 0x4d, 0x69, 0x6e, 0x5f,
0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69 };
char peer1_8[] = {
0x65, 0x72, 0x2c, 0x50, 0x69, 0x74, 0x63, 0x68,
0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f,
0x72, 0x2c, 0x52, 0x6f, 0x6c, 0x6c, 0x5f, 0x47,
0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f,
0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x41, 0x72,
0x6d, 0x6f, 0x72, 0x5f, 0x42, 0x61, 0x63, 0x6b,
0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
0x4c, 0x65, 0x66, 0x74, 0x2c, 0x55, 0x6e, 0x69,
0x74, 0x5f, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x2c,
0x45, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2c,
0x4e, 0x75, 0x6d, 0x5f, 0x41, 0x6e, 0x69, 0x6d,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x74,
0x61, 0x67, 0x65, 0x73, 0x2c, 0x52, 0x6f, 0x6c,
0x6c, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72, 0x6e,
0x6f, 0x72, 0x2c, 0x46, 0x69, 0x72, 0x65, 0x43,
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x46,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61,
0x6c, 0x69, 0x74, 0x79, 0x2c, 0x4c, 0x6f, 0x63,
0x6b, 0x5f, 0x43, 0x6f, 0x6e, 0x65, 0x2c, 0x43,
0x6c, 0x6f, 0x61, 0x6b, 0x5f, 0x52, 0x61, 0x74,
0x65, 0x2c, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x5f, 0x42, 0x61, 0x63, 0x6b, 0x5f, 0x54, 0x6f,
0x70, 0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c,
0x41, 0x72, 0x6d, 0x6f, 0x72, 0x5f, 0x42, 0x61,
0x63, 0x6b, 0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f,
0x6d, 0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c,
0x53, 0x6c, 0x69, 0x64, 0x65, 0x5f, 0x53, 0x74,
0x61, 0x72, 0x74, 0x2c, 0x44, 0x69, 0x72, 0x65,
0x63, 0x74, 0x6f, 0x72, 0x79, 0x2c, 0x53, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x4c, 0x65, 0x61,
0x6b, 0x2c, 0x44, 0x6f, 0x63, 0x6b, 0x2c, 0x48,
0x69, 0x64, 0x64, 0x65, 0x6e, 0x5f, 0x48, 0x6f,
0x6c, 0x64, 0x5f, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
0x65, 0x2c, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69,
0x6e, 0x67, 0x5f, 0x43, 0x6f, 0x6e, 0x65, 0x2c,
0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x46,
0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x54, 0x6f, 0x70,
0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x53,
0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x46, 0x72,
0x6f, 0x6e, 0x74, 0x5f, 0x42, 0x6f, 0x74, 0x74,
0x6f, 0x6d, 0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c,
0x45, 0x78, 0x70, 0x6c, 0x6f, 0x73, 0x69, 0x6f,
0x6e, 0x2c, 0x4d, 0x61, 0x6e, 0x65, 0x75, 0x76,
0x65, 0x72, 0x5f, 0x52, 0x6f, 0x6c, 0x6c, 0x2c,
0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x42,
0x61, 0x63, 0x6b, 0x5f, 0x54, 0x6f, 0x70, 0x5f,
0x4c, 0x65, 0x66, 0x74, 0x2c, 0x55, 0x73, 0x65,
0x5f, 0x42, 0x53, 0x50, 0x2c, 0x53, 0x75, 0x62,
0x5f, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x2c, 0x43,
0x6c, 0x6f, 0x61, 0x6b, 0x5f, 0x45, 0x6e, 0x65,
0x72, 0x67, 0x79, 0x2c, 0x45, 0x43, 0x4d, 0x5f,
0x52, 0x65, 0x73, 0x69, 0x73, 0x74, 0x2c, 0x52,
0x65, 0x74, 0x72, 0x6f, 0x5f, 0x41, 0x63, 0x63,
0x65, 0x6c, 0x2c, 0x48, 0x75, 0x6c, 0x6c, 0x2c,
0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x2c, 0x48,
0x75, 0x64, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
0x2c, 0x4a, 0x75, 0x6d, 0x70, 0x5f, 0x44, 0x72,
0x69, 0x76, 0x65, 0x5f, 0x44, 0x65, 0x6c, 0x61,
0x79, 0x2c, 0x4a, 0x75, 0x6d, 0x70, 0x5f, 0x44,
0x72, 0x69, 0x76, 0x65, 0x5f, 0x50, 0x72, 0x65,
0x73, 0x65, 0x6e, 0x74, 0x2c, 0x54, 0x6f, 0x70,
0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x2c, 0x4d,
0x61, 0x6e, 0x65, 0x75, 0x76, 0x65, 0x72, 0x5f,
0x50, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x43, 0x6f,
0x63, 0x6b, 0x70, 0x69, 0x74, 0x59, 0x2c, 0x4d,
0x61, 0x73, 0x73, 0x2c, 0x53, 0x68, 0x69, 0x65,
0x6c, 0x64, 0x5f, 0x4d, 0x65, 0x73, 0x68, 0x2c,
0x46, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x5f,
0x41, 0x63, 0x63, 0x65, 0x6c, 0x2c, 0x41, 0x72,
0x6d, 0x6f, 0x72, 0x5f, 0x46, 0x72, 0x6f, 0x6e,
0x74, 0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d,
0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x52,
0x61, 0x64, 0x61, 0x72, 0x5f, 0x43, 0x6f, 0x6c,
0x6f, 0x72, 0x2c, 0x41, 0x72, 0x6d, 0x6f, 0x72,
0x5f, 0x42, 0x61, 0x63, 0x6b, 0x5f, 0x54, 0x6f,
0x70, 0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c,
0x43, 0x6f, 0x63, 0x6b, 0x70, 0x69, 0x74, 0x5a,
0x2c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x62, 0x75,
0x72, 0x6e, 0x65, 0x72, 0x5f, 0x53, 0x70, 0x65,
0x65, 0x64, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x2c, 0x41, 0x72, 0x6d, 0x6f,
0x72, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x5f,
0x54, 0x6f, 0x70, 0x5f, 0x52, 0x69, 0x67, 0x68,
0x74, 0x2c, 0x4d, 0x6f, 0x6d, 0x65, 0x6e, 0x74,
0x5f, 0x4f, 0x66, 0x5f, 0x49, 0x6e, 0x65, 0x72,
0x74, 0x69, 0x61, 0x2c, 0x4e, 0x61, 0x6d, 0x65,
0x2c, 0x4d, 0x61, 0x78, 0x5f, 0x43, 0x6f, 0x6e,
0x65, 0x2c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x70, 0x65,
0x65, 0x64, 0x2c, 0x43, 0x68, 0x75, 0x6e, 0x6b,
0x5f, 0x30, 0x2c, 0x4c, 0x65, 0x66, 0x74, 0x5f,
0x41, 0x63, 0x63, 0x65, 0x6c, 0x2c, 0x55, 0x73,
0x65, 0x5f, 0x52, 0x61, 0x70, 0x69, 0x64, 0x2c,
0x42, 0x53, 0x50, 0x5f, 0x4d, 0x65, 0x73, 0x68,
0x2c, 0x46, 0x75, 0x65, 0x6c, 0x5f, 0x43, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x2c, 0x53,
0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x52, 0x65,
0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2c, 0x43,
0x6c, 0x6f, 0x61, 0x6b, 0x5f, 0x4d, 0x69, 0x6e,
0x2c, 0x52, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x41,
0x63, 0x63, 0x65, 0x6c, 0x2c, 0x4d, 0x61, 0x78,
0x5f, 0x48, 0x75, 0x64, 0x5f, 0x46, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x2c, 0x54, 0x65, 0x78, 0x74, 0x75,
0x61, 0x6c, 0x5f, 0x44, 0x65, 0x73, 0x63, 0x72 };
char peer1_9[] = {
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x48,
0x6f, 0x6c, 0x64, 0x5f, 0x56, 0x6f, 0x6c, 0x75,
0x6d, 0x65, 0x2c, 0x59, 0x61, 0x77, 0x5f, 0x47,
0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f,
0x4c, 0x65, 0x66, 0x74, 0x2c, 0x53, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x42, 0x61, 0x63, 0x6b,
0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x41, 0x66,
0x74, 0x65, 0x72, 0x62, 0x75, 0x72, 0x6e, 0x65,
0x72, 0x5f, 0x54, 0x79, 0x70, 0x65, 0x2c, 0x43,
0x6f, 0x6d, 0x62, 0x61, 0x74, 0x5f, 0x52, 0x6f,
0x6c, 0x65, 0x2c, 0x4f, 0x75, 0x74, 0x73, 0x79,
0x73, 0x74, 0x65, 0x6d, 0x5f, 0x4a, 0x75, 0x6d,
0x70, 0x5f, 0x43, 0x6f, 0x73, 0x74, 0x2c, 0x41,
0x72, 0x6d, 0x6f, 0x72, 0x5f, 0x46, 0x72, 0x6f,
0x6e, 0x74, 0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f,
0x6d, 0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c, 0x50,
0x69, 0x74, 0x63, 0x68, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f, 0x44, 0x6f,
0x77, 0x6e, 0x2c, 0x53, 0x68, 0x69, 0x65, 0x6c,
0x64, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x5f,
0x54, 0x6f, 0x70, 0x5f, 0x4c, 0x65, 0x66, 0x74,
0x2c, 0x52, 0x65, 0x70, 0x61, 0x69, 0x72, 0x5f,
0x44, 0x72, 0x6f, 0x69, 0x64, 0x2c, 0x57, 0x61,
0x72, 0x70, 0x5f, 0x43, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x2c, 0x57, 0x61, 0x72,
0x70, 0x5f, 0x55, 0x73, 0x61, 0x67, 0x65, 0x5f,
0x43, 0x6f, 0x73, 0x74, 0x2c, 0x43, 0x61, 0x6e,
0x5f, 0x43, 0x6c, 0x6f, 0x61, 0x6b, 0x2c, 0x43,
0x61, 0x72, 0x67, 0x6f, 0x2c, 0x41, 0x66, 0x74,
0x65, 0x72, 0x62, 0x75, 0x72, 0x6e, 0x65, 0x72,
0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x2c, 0x43,
0x6f, 0x63, 0x6b, 0x70, 0x69, 0x74, 0x58, 0x2c,
0x57, 0x6f, 0x72, 0x6d, 0x68, 0x6f, 0x6c, 0x65,
0x2c, 0x4d, 0x61, 0x78, 0x5f, 0x46, 0x69, 0x72,
0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2c, 0x53,
0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x45, 0x66,
0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79,
0x2c, 0x4d, 0x61, 0x78, 0x5f, 0x53, 0x50, 0x45,
0x43, 0x44, 0x72, 0x69, 0x76, 0x65, 0x5f, 0x46,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61,
0x6c, 0x69, 0x74, 0x79, 0x2c, 0x53, 0x70, 0x65,
0x63, 0x5f, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x64,
0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x53,
0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x46, 0x72,
0x6f, 0x6e, 0x74, 0x5f, 0x42, 0x6f, 0x74, 0x74,
0x6f, 0x6d, 0x5f, 0x52, 0x69, 0x67, 0x68, 0x74,
0x2c, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f,
0x54, 0x79, 0x70, 0x65, 0x2c, 0x4e, 0x6f, 0x44,
0x61, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x61, 0x72,
0x74, 0x69, 0x63, 0x6c, 0x65, 0x73, 0x2c, 0x4d,
0x61, 0x6e, 0x65, 0x75, 0x76, 0x65, 0x72, 0x5f,
0x59, 0x61, 0x77, 0x2c, 0x52, 0x61, 0x64, 0x61,
0x72, 0x5f, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x2c,
0x41, 0x66, 0x74, 0x65, 0x72, 0x62, 0x75, 0x72,
0x6e, 0x65, 0x72, 0x5f, 0x55, 0x73, 0x61, 0x67,
0x65, 0x5f, 0x43, 0x6f, 0x73, 0x74, 0x2c, 0x53,
0x6c, 0x69, 0x64, 0x65, 0x5f, 0x45, 0x6e, 0x64,
0x2c, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65,
0x5f, 0x53, 0x75, 0x62, 0x75, 0x6e, 0x69, 0x74,
0x73, 0x2c, 0x41, 0x72, 0x6d, 0x6f, 0x72, 0x5f,
0x46, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x54, 0x6f,
0x70, 0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c, 0x43,
0x6f, 0x63, 0x6b, 0x70, 0x69, 0x74, 0x2c, 0x48,
0x65, 0x61, 0x74, 0x5f, 0x53, 0x69, 0x6e, 0x6b,
0x5f, 0x52, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x2c,
0x53, 0x50, 0x45, 0x43, 0x44, 0x72, 0x69, 0x76,
0x65, 0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2c,
0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x2c, 0x48,
0x75, 0x64, 0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79,
0x2c, 0x4e, 0x65, 0x74, 0x5f, 0x43, 0x6f, 0x6d,
0x6d, 0x2c, 0x49, 0x54, 0x54, 0x53, 0x2c, 0x59,
0x61, 0x77, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x2c, 0x43, 0x6c, 0x6f, 0x61,
0x6b, 0x5f, 0x47, 0x6c, 0x61, 0x73, 0x73, 0x2c,
0x2c, 0x59, 0x61, 0x77, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f, 0x52, 0x69,
0x67, 0x68, 0x74, 0x2c, 0x41, 0x72, 0x6d, 0x6f,
0x72, 0x5f, 0x42, 0x61, 0x63, 0x6b, 0x5f, 0x54,
0x6f, 0x70, 0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c,
0x54, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x61,
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2c, 0x50,
0x72, 0x6f, 0x68, 0x69, 0x62, 0x69, 0x74, 0x65,
0x64, 0x5f, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64,
0x65, 0x73, 0x2c, 0x52, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x5f, 0x52, 0x65, 0x63, 0x68, 0x61,
0x72, 0x67, 0x65, 0x2c, 0x45, 0x43, 0x4d, 0x5f,
0x52, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x2c, 0x50,
0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x43,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x2c, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
0x41, 0x63, 0x63, 0x65, 0x6c, 0x2c, 0x41, 0x63,
0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x2c, 0x55,
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73, 0x2c,
0x52, 0x6f, 0x6c, 0x6c, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f, 0x4c, 0x65,
0x66, 0x74, 0x2c, 0x57, 0x61, 0x72, 0x70, 0x5f,
0x4d, 0x61, 0x78, 0x5f, 0x4d, 0x75, 0x6c, 0x74,
0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x2c, 0x45,
0x63, 0x6d, 0x5f, 0x44, 0x72, 0x61, 0x69, 0x6e,
0x2c, 0x4c, 0x69, 0x66, 0x65, 0x73, 0x75, 0x70,
0x70, 0x6f, 0x72, 0x74, 0x5f, 0x46, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x2c, 0x4d, 0x65, 0x73, 0x68, 0x2c,
0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x42,
0x61, 0x63, 0x6b, 0x5f, 0x42, 0x6f, 0x74, 0x74,
0x6f, 0x6d, 0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c,
0x43, 0x61, 0x6e, 0x5f, 0x4c, 0x6f, 0x63, 0x6b,
0x2c, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x44,
0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x53,
0x70, 0x65, 0x65, 0x64, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x2c, 0x4d, 0x61,
0x78, 0x5f, 0x43, 0x6f, 0x6d, 0x6d, 0x5f, 0x46,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61,
0x6c, 0x69, 0x74, 0x79, 0x2c, 0x4e, 0x75, 0x6d,
0x5f, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2c,
0x53, 0x6f, 0x75, 0x6e, 0x64, 0x0a, 0x41, 0x64,
0x6d, 0x6f, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x72,
0x2c, 0x31, 0x2c, 0x2c, 0x31, 0x34, 0x30, 0x30,
0x2c, 0x36, 0x30, 0x2c, 0x31, 0x2c, 0x2c, 0x31,
0x2c, 0x36, 0x30, 0x2c, 0x36, 0x35, 0x2c, 0x32,
0x30, 0x30, 0x2c, 0x30, 0x2e, 0x37, 0x36, 0x2c,
0x30, 0x2c, 0x30, 0x2c, 0x36, 0x35, 0x2c, 0x31 };
char peer1_10[] = {
0x2c, 0x34, 0x32, 0x2c, 0x30, 0x2c, 0x38, 0x30,
0x30, 0x2c, 0x32, 0x30, 0x30, 0x2c, 0x30, 0x2c,
0x2e, 0x2f, 0x76, 0x65, 0x73, 0x73, 0x65, 0x6c,
0x73, 0x2f, 0x41, 0x64, 0x6d, 0x6f, 0x6e, 0x69,
0x73, 0x68, 0x65, 0x72, 0x2c, 0x30, 0x2c, 0x2c,
0x30, 0x2c, 0x35, 0x2e, 0x39, 0x39, 0x39, 0x39,
0x39, 0x2c, 0x38, 0x30, 0x30, 0x2c, 0x38, 0x30,
0x30, 0x2c, 0x2c, 0x35, 0x30, 0x30, 0x30, 0x30,
0x2c, 0x2c, 0x2c, 0x2c, 0x30, 0x2c, 0x30, 0x2c,
0x31, 0x36, 0x30, 0x30, 0x30, 0x2c, 0x37, 0x30,
0x30, 0x2c, 0x22, 0x7b, 0x48, 0x65, 0x61, 0x76,
0x79, 0x49, 0x6f, 0x6e, 0x42, 0x65, 0x61, 0x6d,
0x3b, 0x2d, 0x31, 0x3b, 0x30, 0x3b, 0x4c, 0x49,
0x47, 0x48, 0x54, 0x20, 0x4d, 0x45, 0x44, 0x49,
0x55, 0x4d, 0x20, 0x48, 0x45, 0x41, 0x56, 0x59,
0x20, 0x3b, 0x32, 0x2e, 0x33, 0x35, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x36, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x30, 0x2e, 0x33,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x7d,
0x7b, 0x48, 0x65, 0x61, 0x76, 0x79, 0x49, 0x6f,
0x6e, 0x42, 0x65, 0x61, 0x6d, 0x3b, 0x2d, 0x31,
0x3b, 0x30, 0x3b, 0x4c, 0x49, 0x47, 0x48, 0x54,
0x20, 0x4d, 0x45, 0x44, 0x49, 0x55, 0x4d, 0x20,
0x48, 0x45, 0x41, 0x56, 0x59, 0x20, 0x3b, 0x2d,
0x32, 0x2e, 0x33, 0x35, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x36, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x30, 0x2e, 0x33, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48,
0x65, 0x61, 0x76, 0x79, 0x49, 0x6f, 0x6e, 0x42,
0x65, 0x61, 0x6d, 0x3b, 0x2d, 0x31, 0x3b, 0x30,
0x3b, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d,
0x45, 0x44, 0x49, 0x55, 0x4d, 0x20, 0x48, 0x45,
0x41, 0x56, 0x59, 0x20, 0x3b, 0x2d, 0x31, 0x2e,
0x37, 0x35, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x2d,
0x31, 0x30, 0x2e, 0x35, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x39, 0x2e, 0x35, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48, 0x65,
0x61, 0x76, 0x79, 0x49, 0x6f, 0x6e, 0x42, 0x65,
0x61, 0x6d, 0x3b, 0x2d, 0x31, 0x3b, 0x30, 0x3b,
0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d, 0x45,
0x44, 0x49, 0x55, 0x4d, 0x20, 0x48, 0x45, 0x41,
0x56, 0x59, 0x20, 0x3b, 0x31, 0x2e, 0x37, 0x35,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x2d, 0x31, 0x30,
0x2e, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x39, 0x2e, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x7d, 0x7b, 0x50, 0x75, 0x67, 0x69,
0x6c, 0x69, 0x73, 0x74, 0x3b, 0x2d, 0x31, 0x3b,
0x30, 0x3b, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x20,
0x3b, 0x38, 0x2e, 0x31, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x2d, 0x33, 0x2e, 0x35, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x2d, 0x31, 0x2e, 0x36,
0x35, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x7d,
0x7b, 0x50, 0x75, 0x67, 0x69, 0x6c, 0x69, 0x73,
0x74, 0x3b, 0x2d, 0x31, 0x3b, 0x30, 0x3b, 0x4c,
0x49, 0x47, 0x48, 0x54, 0x20, 0x3b, 0x2d, 0x38,
0x2e, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x2d, 0x33, 0x2e, 0x35, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x2d, 0x31, 0x2e, 0x36, 0x35, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48,
0x65, 0x61, 0x74, 0x53, 0x65, 0x65, 0x6b, 0x65,
0x72, 0x3b, 0x35, 0x3b, 0x31, 0x35, 0x3b, 0x4c,
0x49, 0x47, 0x48, 0x54, 0x2d, 0x4d, 0x49, 0x53 };
char peer1_11[] = {
0x53, 0x49, 0x4c, 0x45, 0x20, 0x4d, 0x45, 0x44,
0x49, 0x55, 0x4d, 0x2d, 0x4d, 0x49, 0x53, 0x53,
0x49, 0x4c, 0x45, 0x20, 0x3b, 0x2d, 0x30, 0x2e,
0x33, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x2d,
0x30, 0x2e, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48, 0x65, 0x61,
0x74, 0x53, 0x65, 0x65, 0x6b, 0x65, 0x72, 0x3b,
0x35, 0x3b, 0x31, 0x35, 0x3b, 0x4c, 0x49, 0x47,
0x48, 0x54, 0x2d, 0x4d, 0x49, 0x53, 0x53, 0x49,
0x4c, 0x45, 0x20, 0x4d, 0x45, 0x44, 0x49, 0x55,
0x4d, 0x2d, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4c,
0x45, 0x20, 0x3b, 0x30, 0x2e, 0x33, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x2d, 0x30, 0x2e, 0x31,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x7d, 0x7b, 0x54, 0x6f, 0x72, 0x70, 0x65, 0x64,
0x6f, 0x3b, 0x33, 0x3b, 0x33, 0x30, 0x30, 0x3b,
0x48, 0x45, 0x41, 0x56, 0x59, 0x2d, 0x4d, 0x49,
0x53, 0x53, 0x49, 0x4c, 0x45, 0x20, 0x3b, 0x2d,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x7d, 0x22, 0x2c, 0x61,
0x64, 0x6d, 0x6f, 0x6e, 0x69, 0x73, 0x68, 0x65,
0x72, 0x2d, 0x68, 0x75, 0x64, 0x2e, 0x73, 0x70,
0x72, 0x69, 0x74, 0x65, 0x2c, 0x31, 0x2c, 0x31,
0x2c, 0x34, 0x30, 0x30, 0x30, 0x2c, 0x35, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x38, 0x2e, 0x32, 0x36,
0x2c, 0x33, 0x36, 0x30, 0x2c, 0x61, 0x64, 0x6d,
0x6f, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x72, 0x2d,
0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x62,
0x66, 0x78, 0x6d, 0x2c, 0x32, 0x30, 0x30, 0x30,
0x30, 0x2c, 0x32, 0x30, 0x30, 0x2c, 0x31, 0x2c,
0x32, 0x30, 0x30, 0x2c, 0x39, 0x2e, 0x36, 0x2c,
0x32, 0x35, 0x30, 0x2c, 0x32, 0x30, 0x30, 0x2c,
0x33, 0x36, 0x30, 0x2c, 0x41, 0x64, 0x6d, 0x6f,
0x6e, 0x69, 0x73, 0x68, 0x65, 0x72, 0x2c, 0x31,
0x38, 0x30, 0x2c, 0x2c, 0x2c, 0x34, 0x30, 0x30,
0x30, 0x2c, 0x2c, 0x2c, 0x32, 0x32, 0x2e, 0x39,
0x32, 0x2c, 0x33, 0x36, 0x2c, 0x30, 0x2c, 0x34,
0x30, 0x30, 0x30, 0x2c, 0x22, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x22, 0x2c, 0x50, 0x75, 0x72, 0x69, 0x73,
0x74, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x20,
0x61, 0x73, 0x73, 0x61, 0x75, 0x6c, 0x74, 0x20,
0x63, 0x72, 0x61, 0x66, 0x74, 0x2c, 0x31, 0x35,
0x30, 0x2c, 0x35, 0x35, 0x2c, 0x2c, 0x31, 0x2c,
0x46, 0x49, 0x47, 0x48, 0x54, 0x45, 0x52, 0x2c,
0x32, 0x30, 0x30, 0x2c, 0x32, 0x30, 0x30, 0x2c,
0x36, 0x30, 0x2c, 0x2c, 0x30, 0x2c, 0x36, 0x35,
0x30, 0x2c, 0x31, 0x32, 0x30, 0x2c, 0x30, 0x2c,
0x2c, 0x32, 0x34, 0x30, 0x30, 0x30, 0x2c, 0x30,
0x2c, 0x30, 0x2c, 0x31, 0x2c, 0x31, 0x2c, 0x31,
0x2c, 0x30, 0x2c, 0x38, 0x30, 0x30, 0x2c, 0x56,
0x65, 0x73, 0x73, 0x65, 0x6c, 0x2c, 0x2c, 0x35,
0x30, 0x30, 0x30, 0x30, 0x2c, 0x33, 0x65, 0x2b,
0x30, 0x38, 0x2c, 0x34, 0x2c, 0x30, 0x2c, 0x2c };
char peer1_12[] = {
0x32, 0x30, 0x30, 0x2c, 0x6e, 0x6f, 0x2d, 0x63,
0x6f, 0x63, 0x6b, 0x70, 0x69, 0x74, 0x2c, 0x30,
0x2c, 0x31, 0x2c, 0x2c, 0x22, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x22, 0x2c, 0x2c, 0x30, 0x2c, 0x35, 0x35,
0x2c, 0x30, 0x2c, 0x2c, 0x35, 0x35, 0x2c, 0x32,
0x30, 0x30, 0x2c, 0x70, 0x2c, 0x22, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79,
0x5f, 0x6d, 0x6f, 0x72, 0x65, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x3b, 0x6d, 0x75, 0x6c,
0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f,
0x6d, 0x6f, 0x72, 0x65, 0x74, 0x68, 0x72, 0x75,
0x73, 0x74, 0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x73, 0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73,
0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72,
0x65, 0x67, 0x75, 0x6e, 0x72, 0x65, 0x63, 0x68,
0x61, 0x72, 0x67, 0x65, 0x3b, 0x6d, 0x75, 0x6c,
0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f,
0x6d, 0x6f, 0x72, 0x65, 0x73, 0x68, 0x69, 0x65,
0x6c, 0x64, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72,
0x67, 0x65, 0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x69, 0x6e,
0x67, 0x3b, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64,
0x65, 0x73, 0x2f, 0x4f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x3a, 0x31, 0x3b, 0x75,
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73, 0x2f,
0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x73, 0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2f, 0x52, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x3a, 0x31,
0x3b, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65,
0x73, 0x2f, 0x41, 0x72, 0x6d, 0x6f, 0x72, 0x3a,
0x31, 0x3b, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64,
0x65, 0x73, 0x2f, 0x53, 0x65, 0x6e, 0x73, 0x6f,
0x72, 0x73, 0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2f, 0x53, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x53, 0x79, 0x73,
0x74, 0x65, 0x6d, 0x73, 0x3a, 0x31, 0x3b, 0x75,
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73, 0x2f,
0x50, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65,
0x72, 0x5f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x65,
0x72, 0x73, 0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2f, 0x52, 0x65,
0x70, 0x61, 0x69, 0x72, 0x5f, 0x53, 0x79, 0x73,
0x74, 0x65, 0x6d, 0x73, 0x3a, 0x31, 0x3b, 0x75,
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73, 0x2f,
0x45, 0x43, 0x4d, 0x5f, 0x53, 0x79, 0x73, 0x74,
0x65, 0x6d, 0x73, 0x3a, 0x31, 0x22, 0x2c, 0x31,
0x31, 0x35, 0x2c, 0x32, 0x2c, 0x37, 0x30, 0x30,
0x2c, 0x34, 0x30, 0x30, 0x30, 0x2c, 0x2c, 0x2c,
0x36, 0x35, 0x2c, 0x31, 0x2c, 0x30, 0x2c, 0x31,
0x2c, 0x22, 0x7b, 0x61, 0x64, 0x6d, 0x6f, 0x6e,
0x69, 0x73, 0x68, 0x65, 0x72, 0x2e, 0x62, 0x66,
0x78, 0x6d, 0x3b, 0x3b, 0x7d, 0x22, 0x2c, 0x2c,
0x31, 0x2c, 0x22, 0x7b, 0x73, 0x75, 0x70, 0x65,
0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d,
0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x34,
0x2e, 0x35, 0x3b, 0x31, 0x2e, 0x38, 0x3b, 0x2d,
0x31, 0x33, 0x2e, 0x38, 0x35, 0x3b, 0x35, 0x3b,
0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75,
0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e,
0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x35, 0x2e, 0x31, 0x3b, 0x32, 0x2e, 0x37,
0x35, 0x3b, 0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35,
0x3b, 0x35, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d,
0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f,
0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62,
0x66, 0x78, 0x6d, 0x3b, 0x33, 0x2e, 0x39, 0x35,
0x3b, 0x32, 0x2e, 0x37, 0x35, 0x3b, 0x2d, 0x31,
0x33, 0x2e, 0x38, 0x35, 0x3b, 0x35, 0x3b, 0x3b,
0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70,
0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62,
0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b,
0x2d, 0x34, 0x2e, 0x35, 0x3b, 0x31, 0x2e, 0x38,
0x3b, 0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35, 0x3b,
0x35, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b,
0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76,
0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66,
0x78, 0x6d, 0x3b, 0x2d, 0x35, 0x2e, 0x31, 0x3b,
0x32, 0x2e, 0x37, 0x35, 0x3b, 0x2d, 0x31, 0x33,
0x2e, 0x38, 0x35, 0x3b, 0x35, 0x3b, 0x3b, 0x3b,
0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65,
0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d,
0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d,
0x33, 0x2e, 0x39, 0x35, 0x3b, 0x32, 0x2e, 0x37,
0x35, 0x3b, 0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35,
0x3b, 0x35, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d,
0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f,
0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62,
0x66, 0x78, 0x6d, 0x3b, 0x34, 0x2e, 0x35, 0x3b,
0x2e, 0x33, 0x35, 0x3b, 0x2d, 0x31, 0x33, 0x2e,
0x38, 0x35, 0x3b, 0x31, 0x32, 0x3b, 0x3b, 0x3b,
0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65,
0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d,
0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d,
0x34, 0x2e, 0x35, 0x3b, 0x2e, 0x33, 0x35, 0x3b,
0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35, 0x3b, 0x31,
0x32, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b,
0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76,
0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66,
0x78, 0x6d, 0x3b, 0x36, 0x2e, 0x34, 0x35, 0x3b,
0x2d, 0x34, 0x2e, 0x38, 0x3b, 0x2d, 0x31, 0x32,
0x2e, 0x33, 0x3b, 0x34, 0x3b, 0x3b, 0x3b, 0x3b,
0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65, 0x72,
0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70,
0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x35, 0x2e,
0x34, 0x35, 0x3b, 0x2d, 0x34, 0x2e, 0x38, 0x3b,
0x2d, 0x31, 0x32, 0x2e, 0x33, 0x3b, 0x34, 0x3b,
0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75,
0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e };
char peer1_13[] = {
0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x34, 0x2e, 0x35, 0x3b, 0x2d, 0x34, 0x2e,
0x38, 0x3b, 0x2d, 0x31, 0x32, 0x2e, 0x33, 0x3b,
0x34, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b,
0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76,
0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66,
0x78, 0x6d, 0x3b, 0x2d, 0x36, 0x2e, 0x34, 0x35,
0x3b, 0x2d, 0x34, 0x2e, 0x38, 0x3b, 0x2d, 0x31,
0x32, 0x2e, 0x33, 0x3b, 0x34, 0x3b, 0x3b, 0x3b,
0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65,
0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d,
0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d,
0x35, 0x2e, 0x34, 0x35, 0x3b, 0x2d, 0x34, 0x2e,
0x38, 0x3b, 0x2d, 0x31, 0x32, 0x2e, 0x33, 0x3b,
0x34, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b,
0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76,
0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66,
0x78, 0x6d, 0x3b, 0x2d, 0x34, 0x2e, 0x35, 0x3b,
0x2d, 0x34, 0x2e, 0x38, 0x3b, 0x2d, 0x31, 0x32,
0x2e, 0x33, 0x3b, 0x34, 0x3b, 0x3b, 0x3b, 0x3b,
0x3b, 0x7d, 0x22, 0x2c, 0x32, 0x35, 0x30, 0x2c,
0x31, 0x2c, 0x2c, 0x22, 0x3b, 0x3b, 0x3b, 0x3b,
0x3b, 0x3b, 0x22, 0x2c, 0x21, 0xbc, 0x00, 0x19,
0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c, 0x65,
0x2f, 0x43, 0x65, 0x70, 0x68, 0x69, 0x64, 0x5f,
0x31, 0x37, 0x2e, 0x73, 0x79, 0x73, 0x74, 0x65,
0x6d, 0xbc, 0x00, 0x00, 0xbc, 0x00, 0x00 };
char peer0_4[] = {
0x00, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x00 };
char peer1_14[] = {
0x00, 0x00, 0x00, 0x3a, 0x01, 0x00, 0x7a, 0x09,
0x21, 0x94, 0x00, 0x00, 0x77, 0xe8, 0x2f, 0x13,
0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x3b, 0xc0,
0x21, 0xbc, 0x00, 0x04, 0x67, 0x61, 0x6d, 0x65,
0x21, 0xbc, 0x00, 0x1e, 0x57, 0x65, 0x6c, 0x63,
0x6f, 0x6d, 0x65, 0x2c, 0x20, 0x61, 0x73, 0x64,
0x61, 0x73, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74,
0x68, 0x65, 0x20, 0x73, 0x65, 0x72, 0x76, 0x65,
0x72, 0x2e };
char peer0_5[] = {
0x1e, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x31,
0x00, 0x00, 0x00, 0x24, 0x00, 0x10, 0x00, 0x00,
0xbb, 0x00, 0xbc, 0x00, 0x01, 0xbb, 0x01, 0x21,
0xbc, 0x00, 0x19, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x43, 0x65, 0x70, 0x68,
0x69, 0x64, 0x5f, 0x31, 0x37, 0x2e, 0x73, 0x79,
0x73, 0x74, 0x65, 0x6d };
char peer1_15[] = {
0x00, 0x00, 0x00, 0x34, 0x01, 0x00, 0x7a, 0x09 };
char peer1_16[] = {
0x1e, 0x00, 0x00, 0x00, 0x77, 0xe8, 0x2f, 0x19,
0x00, 0x00, 0x00, 0x24, 0x00, 0x10, 0x52, 0x59,
0xbb, 0x01, 0xbc, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x19, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c,
0x65, 0x2f, 0x43, 0x65, 0x70, 0x68, 0x69, 0x64,
0x5f, 0x31, 0x37, 0x2e, 0x73, 0x79, 0x73, 0x74,
0x65, 0x6d, 0xbb, 0x01 };
char peer0_6[] = {
0x00, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x00 };
char peer0_7[] = {
0x1e, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x31,
0x00, 0x00, 0x00, 0x24, 0x00, 0x10, 0x00, 0x00,
0xbb, 0x02, 0xbc, 0x00, 0x01, 0xbb, 0x01, 0x21,
0xbc, 0x00, 0x19, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x43, 0x65, 0x70, 0x68,
0x69, 0x64, 0x5f, 0x31, 0x37, 0x2e, 0x73, 0x79,
0x73, 0x74, 0x65, 0x6d };
char peer1_17[] = {
0x00, 0x00, 0x04, 0x06, 0x01, 0x00, 0x7a, 0x09 };
char peer1_18[] = {
0x1e, 0x96, 0x00, 0x00, 0x77, 0xe8, 0x2f, 0x61,
0x00, 0x00, 0x03, 0xf6, 0x00, 0x10, 0x6c, 0x0d,
0xbb, 0x05, 0x21, 0xbc, 0x00, 0x19, 0x43, 0x72,
0x75, 0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x43,
0x65, 0x70, 0x68, 0x69, 0x64, 0x5f, 0x31, 0x37,
0x2e, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0xbe,
0x00, 0x00, 0x14, 0x94, 0xbc, 0x03, 0xce, 0x2c,
0x3c, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x20,
0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x43, 0x65,
0x70, 0x68, 0x69, 0x64, 0x5f, 0x31, 0x37, 0x22,
0x20, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f,
0x75, 0x6e, 0x64, 0x3d, 0x22, 0x62, 0x61, 0x63,
0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x73,
0x2f, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x22, 0x20,
0x6e, 0x65, 0x61, 0x72, 0x73, 0x74, 0x61, 0x72,
0x73, 0x3d, 0x22, 0x35, 0x30, 0x30, 0x22, 0x20,
0x73, 0x74, 0x61, 0x72, 0x73, 0x3d, 0x22, 0x31,
0x30, 0x30, 0x30, 0x22, 0x20, 0x73, 0x74, 0x61,
0x72, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x3d,
0x22, 0x31, 0x35, 0x30, 0x22, 0x20, 0x73, 0x63,
0x61, 0x6c, 0x65, 0x73, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x3d, 0x22, 0x31, 0x30, 0x30, 0x30, 0x22,
0x3e, 0x0a, 0x3c, 0x4c, 0x69, 0x67, 0x68, 0x74,
0x3e, 0x0a, 0x09, 0x3c, 0x61, 0x6d, 0x62, 0x69,
0x65, 0x6e, 0x74, 0x20, 0x72, 0x65, 0x64, 0x3d,
0x22, 0x30, 0x2e, 0x30, 0x35, 0x22, 0x20, 0x67,
0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22, 0x30, 0x2e,
0x30, 0x35, 0x22, 0x20, 0x62, 0x6c, 0x75, 0x65,
0x3d, 0x22, 0x30, 0x2e, 0x30, 0x35, 0x22, 0x2f,
0x3e, 0x0a, 0x09, 0x3c, 0x64, 0x69, 0x66, 0x66,
0x75, 0x73, 0x65, 0x20, 0x72, 0x65, 0x64, 0x3d,
0x22, 0x30, 0x2e, 0x38, 0x37, 0x22, 0x20, 0x67,
0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22, 0x30, 0x2e,
0x38, 0x35, 0x22, 0x20, 0x62, 0x6c, 0x75, 0x65,
0x3d, 0x22, 0x30, 0x2e, 0x37, 0x36, 0x22, 0x2f,
0x3e, 0x0a, 0x09, 0x3c, 0x73, 0x70, 0x65, 0x63,
0x75, 0x6c, 0x61, 0x72, 0x20, 0x72, 0x65, 0x64,
0x3d, 0x22, 0x30, 0x2e, 0x32, 0x35, 0x22, 0x20,
0x67, 0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22, 0x30,
0x2e, 0x32, 0x35, 0x22, 0x20, 0x62, 0x6c, 0x75,
0x65, 0x3d, 0x22, 0x30, 0x2e, 0x32, 0x30, 0x22,
0x2f, 0x3e, 0x0a, 0x3c, 0x2f, 0x4c, 0x69, 0x67,
0x68, 0x74, 0x3e, 0x0a, 0x3c, 0x4c, 0x69, 0x67,
0x68, 0x74, 0x3e, 0x0a, 0x09, 0x3c, 0x61, 0x6d,
0x62, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x72, 0x65,
0x64, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x35, 0x22,
0x20, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22,
0x30, 0x2e, 0x30, 0x35, 0x22, 0x20, 0x62, 0x6c,
0x75, 0x65, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x35,
0x22, 0x2f, 0x3e, 0x0a, 0x09, 0x3c, 0x64, 0x69,
0x66, 0x66, 0x75, 0x73, 0x65, 0x20, 0x72, 0x65,
0x64, 0x3d, 0x22, 0x30, 0x2e, 0x38, 0x36, 0x22,
0x20, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22,
0x30, 0x2e, 0x34, 0x35, 0x22, 0x20, 0x62, 0x6c,
0x75, 0x65, 0x3d, 0x22, 0x30, 0x2e, 0x33, 0x34,
0x22, 0x2f, 0x3e, 0x0a, 0x09, 0x3c, 0x73, 0x70,
0x65, 0x63, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x72,
0x65, 0x64, 0x3d, 0x22, 0x30, 0x2e, 0x32, 0x22,
0x20, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22,
0x30, 0x2e, 0x32, 0x22, 0x20, 0x62, 0x6c, 0x75,
0x65, 0x3d, 0x22, 0x30, 0x2e, 0x31, 0x35, 0x22,
0x2f, 0x3e, 0x0a, 0x3c, 0x2f, 0x4c, 0x69, 0x67,
0x68, 0x74, 0x3e, 0x0a, 0x0a, 0x3c, 0x41, 0x73,
0x74, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x20, 0x6e,
0x61, 0x6d, 0x65, 0x3d, 0x22, 0x22, 0x20, 0x66,
0x69, 0x6c, 0x65, 0x3d, 0x22, 0x41, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x4a, 0x75, 0x6d, 0x70, 0x54,
0x68, 0x69, 0x6e, 0x22, 0x20, 0x72, 0x69, 0x3d,
0x22, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x72, 0x6a,
0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x72,
0x6b, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, 0x20,
0x73, 0x69, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22,
0x20, 0x73, 0x6a, 0x3d, 0x22, 0x30, 0x2e, 0x30,
0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x78, 0x3d, 0x22, 0x2d, 0x38,
0x31, 0x37, 0x35, 0x30, 0x33, 0x37, 0x36, 0x2e,
0x30, 0x22, 0x20, 0x79, 0x3d, 0x22, 0x2d, 0x33,
0x30, 0x31, 0x35, 0x30, 0x31, 0x37, 0x36, 0x2e,
0x30, 0x22, 0x20, 0x7a, 0x3d, 0x22, 0x2d, 0x37,
0x30, 0x37, 0x38, 0x31, 0x39, 0x31, 0x32, 0x2e,
0x30, 0x22, 0x20, 0x20, 0x2f, 0x3e, 0x0a, 0x0a,
0x3c, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x20,
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d, 0x22,
0x30, 0x30, 0x30, 0x38, 0x34, 0x22, 0x20, 0x6e,
0x61, 0x6d, 0x65, 0x3d, 0x22, 0x4a, 0x75, 0x6d,
0x70, 0x54, 0x6f, 0x31, 0x37, 0x2d, 0x61, 0x72,
0x22, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x3d, 0x22,
0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x75, 0x72, 0x65, 0x22, 0x20, 0x72, 0x69,
0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x72,
0x6a, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, 0x20,
0x72, 0x6b, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22,
0x20, 0x73, 0x69, 0x3d, 0x22, 0x30, 0x2e, 0x30,
0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22, 0x30,
0x2e, 0x30, 0x22, 0x20, 0x72, 0x61, 0x64, 0x69,
0x75, 0x73, 0x3d, 0x22, 0x32, 0x2e, 0x30, 0x22,
0x20, 0x78, 0x3d, 0x22, 0x2d, 0x38, 0x31, 0x37,
0x35, 0x30, 0x33, 0x37, 0x36, 0x2e, 0x30, 0x22,
0x20, 0x79, 0x3d, 0x22, 0x2d, 0x33, 0x30, 0x31,
0x35, 0x30, 0x31, 0x37, 0x36, 0x2e, 0x30, 0x22,
0x20, 0x7a, 0x3d, 0x22, 0x2d, 0x37, 0x30, 0x37,
0x38, 0x31, 0x39, 0x31, 0x32, 0x2e, 0x30, 0x22,
0x20, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x3d, 0x22,
0x4f, 0x4e, 0x45, 0x20, 0x4f, 0x4e, 0x45, 0x22,
0x20, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x43, 0x72,
0x75, 0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x31,
0x37, 0x2d, 0x61, 0x72, 0x22, 0x20, 0x66, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x6b,
0x6c, 0x6b, 0x6b, 0x22, 0x20, 0x20, 0x3e, 0x0a,
0x3c, 0x2f, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x3e, 0x0a, 0x0a, 0x3c, 0x50, 0x6c, 0x61, 0x6e,
0x65, 0x74, 0x20, 0x73, 0x65, 0x72, 0x69, 0x61,
0x6c, 0x3d, 0x22, 0x30, 0x30, 0x30, 0x38, 0x37,
0x22, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
0x43, 0x65, 0x70, 0x68, 0x69, 0x64, 0x5f, 0x31,
0x37, 0x20, 0x41, 0x22, 0x20, 0x66, 0x69, 0x6c,
0x65, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x72, 0x73,
0x2f, 0x77, 0x68, 0x69, 0x74, 0x65, 0x5f, 0x73,
0x74, 0x61, 0x72, 0x2e, 0x74, 0x65, 0x78, 0x74,
0x75, 0x72, 0x65, 0x22, 0x20, 0x72, 0x69, 0x3d,
0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22, 0x30,
0x2e, 0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22,
0x30, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x69, 0x3d,
0x22, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6a,
0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x73 };
char peer1_19[] = {
0x6b, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x00, 0x00,
0x04, 0x03, 0x01, 0x00, 0x7a, 0x09, 0x1e, 0x96,
0x00, 0x00, 0x77, 0xe8, 0x2f, 0x62, 0x00, 0x00,
0x03, 0xf3, 0x00, 0x10, 0x6c, 0x0d, 0xbb, 0x06,
0xbc, 0x03, 0xed, 0x2c, 0x22, 0x20, 0x72, 0x61,
0x64, 0x69, 0x75, 0x73, 0x3d, 0x22, 0x37, 0x34,
0x36, 0x30, 0x30, 0x30, 0x2e, 0x30, 0x22, 0x20,
0x78, 0x3d, 0x22, 0x30, 0x22, 0x20, 0x79, 0x3d,
0x22, 0x30, 0x22, 0x20, 0x7a, 0x3d, 0x22, 0x30,
0x22, 0x20, 0x20, 0x52, 0x65, 0x64, 0x3d, 0x22,
0x30, 0x2e, 0x39, 0x35, 0x22, 0x20, 0x47, 0x72,
0x65, 0x65, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x39,
0x33, 0x22, 0x20, 0x42, 0x6c, 0x75, 0x65, 0x3d,
0x22, 0x30, 0x2e, 0x36, 0x34, 0x22, 0x20, 0x52,
0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x4e, 0x6f,
0x4c, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, 0x74,
0x72, 0x75, 0x65, 0x22, 0x20, 0x6c, 0x69, 0x67,
0x68, 0x74, 0x3d, 0x22, 0x30, 0x22, 0x3e, 0x0a,
0x09, 0x3c, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d,
0x22, 0x30, 0x30, 0x30, 0x39, 0x30, 0x22, 0x20,
0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x41, 0x74,
0x6c, 0x61, 0x6e, 0x74, 0x69, 0x73, 0x22, 0x20,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x69, 0x6c,
0x65, 0x3d, 0x22, 0x70, 0x6c, 0x61, 0x6e, 0x65,
0x74, 0x73, 0x2f, 0x6f, 0x63, 0x65, 0x61, 0x6e,
0x2e, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65,
0x7c, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x73,
0x2f, 0x6f, 0x63, 0x65, 0x61, 0x6e, 0x5f, 0x73,
0x70, 0x65, 0x63, 0x75, 0x6c, 0x61, 0x72, 0x2e,
0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x7c,
0x70, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x73, 0x2f,
0x65, 0x61, 0x72, 0x74, 0x68, 0x2f, 0x65, 0x61,
0x72, 0x74, 0x68, 0x5f, 0x63, 0x6c, 0x6f, 0x75,
0x64, 0x73, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x75,
0x72, 0x65, 0x22, 0x20, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x74, 0x65, 0x63, 0x68, 0x6e, 0x69, 0x71,
0x75, 0x65, 0x3d, 0x22, 0x65, 0x61, 0x72, 0x74,
0x68, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75,
0x6e, 0x69, 0x74, 0x3d, 0x22, 0x6f, 0x63, 0x65,
0x61, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x72, 0x69, 0x3d, 0x22, 0x31, 0x32, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x72,
0x6a, 0x3d, 0x22, 0x2d, 0x38, 0x34, 0x33, 0x36,
0x2e, 0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22,
0x2d, 0x31, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22,
0x2d, 0x31, 0x32, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6a,
0x3d, 0x22, 0x2d, 0x31, 0x35, 0x30, 0x30, 0x30,
0x30, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d,
0x22, 0x31, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x72, 0x61, 0x64, 0x69, 0x75,
0x73, 0x3d, 0x22, 0x35, 0x30, 0x30, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x78, 0x3d, 0x22, 0x31, 0x32, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x79, 0x3d,
0x22, 0x2d, 0x31, 0x30, 0x30, 0x30, 0x30, 0x22,
0x20, 0x7a, 0x3d, 0x22, 0x2d, 0x31, 0x31, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20,
0x79, 0x65, 0x61, 0x72, 0x3d, 0x20, 0x22, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x22, 0x20, 0x64, 0x61, 0x79, 0x3d, 0x22,
0x38, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x52, 0x65, 0x64, 0x3d, 0x22,
0x30, 0x22, 0x20, 0x47, 0x72, 0x65, 0x65, 0x6e,
0x3d, 0x22, 0x30, 0x22, 0x20, 0x42, 0x6c, 0x75,
0x65, 0x3d, 0x22, 0x30, 0x22, 0x20, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x44, 0x52, 0x65, 0x64, 0x3d,
0x22, 0x30, 0x2e, 0x38, 0x37, 0x22, 0x20, 0x44,
0x47, 0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22, 0x30,
0x2e, 0x38, 0x37, 0x22, 0x20, 0x44, 0x42, 0x6c,
0x75, 0x65, 0x3d, 0x22, 0x30, 0x2e, 0x38, 0x37,
0x22, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x53,
0x52, 0x65, 0x64, 0x3d, 0x22, 0x30, 0x2e, 0x38,
0x35, 0x22, 0x20, 0x53, 0x47, 0x72, 0x65, 0x65,
0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x38, 0x35, 0x22,
0x20, 0x53, 0x42, 0x6c, 0x75, 0x65, 0x3d, 0x22,
0x30, 0x2e, 0x38, 0x35, 0x22, 0x20, 0x3e, 0x0a,
0x09, 0x3c, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d,
0x22, 0x30, 0x30, 0x30, 0x39, 0x33, 0x22, 0x20,
0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x50, 0x68,
0x69, 0x6c, 0x6c, 0x69, 0x65, 0x73, 0x22, 0x20,
0x66, 0x69, 0x6c, 0x65, 0x3d, 0x22, 0x70, 0x6c,
0x61, 0x6e, 0x65, 0x74, 0x73, 0x2f, 0x72, 0x6f,
0x63, 0x6b, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x75,
0x72, 0x65, 0x22, 0x20, 0x72, 0x69, 0x3d, 0x22,
0x2d, 0x34, 0x36, 0x38, 0x34, 0x33, 0x34, 0x2e,
0x37, 0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22, 0x2d,
0x33, 0x36, 0x31, 0x35, 0x34, 0x31, 0x22, 0x20,
0x72, 0x6b, 0x3d, 0x22, 0x34, 0x33, 0x33, 0x35,
0x35, 0x39, 0x2e, 0x37, 0x35, 0x30, 0x30, 0x30,
0x30, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22, 0x2d,
0x34, 0x31, 0x32, 0x31, 0x37, 0x32, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x73,
0x6a, 0x3d, 0x22, 0x33, 0x30, 0x30, 0x34, 0x36,
0x33, 0x2e, 0x35, 0x22, 0x20, 0x73, 0x6b, 0x3d,
0x22, 0x2d, 0x34, 0x39, 0x38, 0x31, 0x36, 0x33,
0x2e, 0x35, 0x22, 0x20, 0x72, 0x61, 0x64, 0x69,
0x75, 0x73, 0x3d, 0x22, 0x31, 0x36, 0x36, 0x31,
0x2e, 0x39, 0x38, 0x30, 0x36, 0x32, 0x35, 0x30,
0x30, 0x22, 0x20, 0x78, 0x3d, 0x22, 0x2d, 0x34,
0x36, 0x38, 0x34, 0x33, 0x34, 0x22, 0x20, 0x79,
0x3d, 0x22, 0x2d, 0x33, 0x36, 0x31, 0x35, 0x34,
0x31, 0x22, 0x20, 0x7a, 0x3d, 0x22, 0x34, 0x33,
0x33, 0x35, 0x35, 0x39, 0x22, 0x20, 0x79, 0x65,
0x61, 0x72, 0x3d, 0x22, 0x38, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x64, 0x61,
0x79, 0x3d, 0x22, 0x34, 0x39, 0x38, 0x30, 0x30,
0x30, 0x2e, 0x32, 0x37, 0x36, 0x37, 0x39, 0x34,
0x22, 0x20, 0x20, 0x3e, 0x0a, 0x09, 0x3c, 0x2f,
0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x3e, 0x0a,
0x09, 0x3c, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d,
0x22, 0x30, 0x30, 0x30, 0x39, 0x36, 0x22, 0x20,
0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x4a, 0x75,
0x6d, 0x70, 0x54, 0x6f, 0x45, 0x6e, 0x79, 0x6f };
char peer1_20[] = {
0x22, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x3d, 0x22,
0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x00, 0x00, 0x04, 0x03, 0x01, 0x00, 0x7a,
0x09, 0x1e, 0x96, 0x00, 0x00, 0x77, 0xe8, 0x2f,
0x62, 0x00, 0x00, 0x03, 0xf3, 0x00, 0x10, 0x19,
0x0a, 0xbb, 0x06, 0xbc, 0x03, 0xed, 0x2c, 0x75,
0x72, 0x65, 0x22, 0x20, 0x72, 0x69, 0x3d, 0x22,
0x32, 0x33, 0x34, 0x33, 0x34, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x72,
0x6a, 0x3d, 0x22, 0x31, 0x30, 0x33, 0x30, 0x36,
0x30, 0x2e, 0x30, 0x30, 0x37, 0x38, 0x31, 0x32,
0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22, 0x39, 0x32,
0x30, 0x39, 0x35, 0x38, 0x2e, 0x38, 0x37, 0x35,
0x30, 0x30, 0x30, 0x22, 0x20, 0x73, 0x69, 0x3d,
0x22, 0x34, 0x37, 0x31, 0x33, 0x36, 0x34, 0x2e,
0x37, 0x35, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20,
0x73, 0x6a, 0x3d, 0x22, 0x2d, 0x35, 0x31, 0x37,
0x31, 0x35, 0x34, 0x2e, 0x32, 0x35, 0x30, 0x30,
0x30, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22,
0x2d, 0x36, 0x32, 0x30, 0x36, 0x37, 0x2e, 0x35,
0x37, 0x34, 0x32, 0x31, 0x39, 0x22, 0x20, 0x72,
0x61, 0x64, 0x69, 0x75, 0x73, 0x3d, 0x22, 0x30,
0x2e, 0x39, 0x35, 0x37, 0x37, 0x31, 0x37, 0x35,
0x31, 0x22, 0x20, 0x78, 0x3d, 0x22, 0x2d, 0x31,
0x33, 0x31, 0x32, 0x39, 0x32, 0x30, 0x2e, 0x32,
0x35, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x79,
0x3d, 0x22, 0x2d, 0x37, 0x31, 0x37, 0x31, 0x33,
0x32, 0x2e, 0x36, 0x32, 0x35, 0x30, 0x30, 0x30,
0x22, 0x20, 0x7a, 0x3d, 0x22, 0x31, 0x30, 0x36,
0x30, 0x33, 0x31, 0x35, 0x2e, 0x36, 0x32, 0x35,
0x30, 0x30, 0x30, 0x22, 0x20, 0x79, 0x65, 0x61,
0x72, 0x3d, 0x20, 0x22, 0x38, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x2e, 0x37, 0x35, 0x30,
0x30, 0x30, 0x30, 0x22, 0x20, 0x64, 0x61, 0x79,
0x3d, 0x22, 0x33, 0x30, 0x33, 0x2e, 0x36, 0x32,
0x31, 0x38, 0x35, 0x37, 0x22, 0x20, 0x61, 0x6c,
0x70, 0x68, 0x61, 0x3d, 0x22, 0x4f, 0x4e, 0x45,
0x20, 0x4f, 0x4e, 0x45, 0x22, 0x20, 0x64, 0x65,
0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x3d, 0x22, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x45, 0x6e, 0x79, 0x6f,
0x22, 0x20, 0x66, 0x61, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x3d, 0x22, 0x6b, 0x6c, 0x6b, 0x6b, 0x22,
0x20, 0x20, 0x3e, 0x0a, 0x09, 0x3c, 0x2f, 0x50,
0x6c, 0x61, 0x6e, 0x65, 0x74, 0x3e, 0x0a, 0x09,
0x3c, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x20,
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d, 0x22,
0x30, 0x30, 0x30, 0x39, 0x39, 0x22, 0x20, 0x6e,
0x61, 0x6d, 0x65, 0x3d, 0x22, 0x4a, 0x75, 0x6d,
0x70, 0x54, 0x6f, 0x43, 0x61, 0x72, 0x64, 0x65,
0x6c, 0x6c, 0x22, 0x20, 0x66, 0x69, 0x6c, 0x65,
0x3d, 0x22, 0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x74,
0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x22, 0x20,
0x72, 0x69, 0x3d, 0x22, 0x2d, 0x32, 0x35, 0x34,
0x32, 0x31, 0x36, 0x2e, 0x35, 0x39, 0x33, 0x37,
0x35, 0x30, 0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22,
0x2d, 0x34, 0x32, 0x33, 0x36, 0x37, 0x38, 0x2e,
0x34, 0x33, 0x37, 0x35, 0x30, 0x30, 0x22, 0x20,
0x72, 0x6b, 0x3d, 0x22, 0x2d, 0x33, 0x37, 0x32,
0x34, 0x31, 0x31, 0x2e, 0x38, 0x37, 0x35, 0x30,
0x30, 0x30, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22,
0x2d, 0x34, 0x35, 0x35, 0x38, 0x32, 0x34, 0x2e,
0x35, 0x36, 0x32, 0x35, 0x30, 0x30, 0x22, 0x20,
0x73, 0x6a, 0x3d, 0x22, 0x34, 0x37, 0x39, 0x38,
0x30, 0x33, 0x2e, 0x34, 0x33, 0x37, 0x35, 0x30,
0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22, 0x2d,
0x32, 0x33, 0x34, 0x36, 0x39, 0x37, 0x2e, 0x36,
0x35, 0x36, 0x32, 0x35, 0x30, 0x22, 0x20, 0x72,
0x61, 0x64, 0x69, 0x75, 0x73, 0x3d, 0x22, 0x31,
0x2e, 0x33, 0x30, 0x34, 0x37, 0x37, 0x33, 0x37,
0x31, 0x22, 0x20, 0x78, 0x3d, 0x22, 0x39, 0x39,
0x37, 0x30, 0x30, 0x30, 0x2e, 0x35, 0x36, 0x32,
0x35, 0x30, 0x30, 0x22, 0x20, 0x79, 0x3d, 0x22,
0x2d, 0x34, 0x35, 0x35, 0x34, 0x34, 0x31, 0x2e,
0x37, 0x35, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20,
0x7a, 0x3d, 0x22, 0x37, 0x35, 0x33, 0x32, 0x33,
0x32, 0x2e, 0x36, 0x38, 0x37, 0x35, 0x30, 0x30,
0x22, 0x20, 0x79, 0x65, 0x61, 0x72, 0x3d, 0x20,
0x22, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x2e, 0x35, 0x22, 0x20, 0x64, 0x61, 0x79,
0x3d, 0x22, 0x37, 0x36, 0x31, 0x2e, 0x37, 0x37,
0x30, 0x30, 0x38, 0x31, 0x22, 0x20, 0x61, 0x6c,
0x70, 0x68, 0x61, 0x3d, 0x22, 0x4f, 0x4e, 0x45,
0x20, 0x4f, 0x4e, 0x45, 0x22, 0x20, 0x64, 0x65,
0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x3d, 0x22, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x43, 0x61, 0x72, 0x64,
0x65, 0x6c, 0x6c, 0x22, 0x20, 0x66, 0x61, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x6b, 0x6c,
0x6b, 0x6b, 0x22, 0x20, 0x20, 0x3e, 0x0a, 0x09,
0x3c, 0x2f, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x3e, 0x0a, 0x09, 0x3c, 0x55, 0x6e, 0x69, 0x74,
0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d,
0x22, 0x30, 0x30, 0x31, 0x32, 0x30, 0x22, 0x20,
0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x41, 0x74,
0x61, 0x72, 0x61, 0x78, 0x69, 0x61, 0x22, 0x20,
0x66, 0x69, 0x6c, 0x65, 0x3d, 0x22, 0x46, 0x69,
0x67, 0x68, 0x74, 0x65, 0x72, 0x5f, 0x42, 0x61,
0x72, 0x72, 0x61, 0x63, 0x6b, 0x73, 0x22, 0x20,
0x72, 0x6a, 0x3d, 0x22, 0x2d, 0x34, 0x30, 0x30,
0x30, 0x30, 0x2e, 0x35, 0x39, 0x33, 0x37, 0x35,
0x30, 0x22, 0x20, 0x72, 0x69, 0x3d, 0x22, 0x2d,
0x34, 0x32, 0x2e, 0x34, 0x33, 0x37, 0x35, 0x30,
0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22, 0x2d,
0x34, 0x37, 0x30, 0x30, 0x30, 0x2e, 0x38, 0x37,
0x35, 0x30, 0x30, 0x30, 0x22, 0x20, 0x73, 0x6a };
char peer1_21[] = {
0x3d, 0x22, 0x34, 0x30, 0x30, 0x30, 0x30, 0x2e,
0x35, 0x36, 0x32, 0x35, 0x30, 0x30, 0x22, 0x20,
0x73, 0x6b, 0x3d, 0x22, 0x34, 0x37, 0x30, 0x30,
0x30, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22, 0x34,
0x32, 0x22, 0x20, 0x72, 0x61, 0x64, 0x69, 0x75,
0x73, 0x3d, 0x22, 0x31, 0x33, 0x30, 0x2e, 0x34,
0x37, 0x37, 0x33, 0x37, 0x31, 0x22, 0x20, 0x20,
0x78, 0x3d, 0x22, 0x2d, 0x34, 0x32, 0x22, 0x20,
0x79, 0x3d, 0x22, 0x2d, 0x34, 0x30, 0x30, 0x30,
0x30, 0x22, 0x20, 0x7a, 0x3d, 0x22, 0x2d, 0x34,
0x37, 0x30, 0x30, 0x30, 0x22, 0x20, 0x79, 0x65,
0x61, 0x72, 0x3d, 0x20, 0x22, 0x34, 0x33, 0x38,
0x31, 0x30, 0x36, 0x33, 0x2e, 0x35, 0x22, 0x20,
0x64, 0x61, 0x79, 0x3d, 0x22, 0x37, 0x36, 0x31,
0x22, 0x20, 0x66, 0x61, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x3d, 0x22, 0x6b, 0x6c, 0x6b, 0x6b, 0x22,
0x20, 0x20, 0x3e, 0x0a, 0x09, 0x3c, 0x2f, 0x55,
0x6e, 0x69, 0x74, 0x3e, 0x0a, 0x09, 0x3c, 0x2f,
0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x3e, 0x0a,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x50, 0x6c,
0x61, 0x6e, 0x65, 0x74, 0x20, 0x73, 0x65, 0x72,
0x69, 0x61, 0x6c, 0x3d, 0x22, 0x30, 0x30, 0x31,
0x30, 0x32, 0x22, 0x20, 0x6e, 0x61, 0x6d, 0x65,
0x3d, 0x22, 0x4a, 0x75, 0x6d, 0x70, 0x54, 0x6f,
0x4f, 0x6c, 0x64, 0x7a, 0x69, 0x65, 0x79, 0x22,
0x20, 0x66, 0x69, 0x6c, 0x00, 0x00, 0x04, 0x03,
0x01, 0x00, 0x7a, 0x09, 0x1e, 0x96, 0x00, 0x00,
0x77, 0xe8, 0x2f, 0x62, 0x00, 0x00, 0x03, 0xf3,
0x00, 0x10, 0x6c, 0x0d, 0xbb, 0x06, 0xbc, 0x03,
0xed, 0x2c, 0x65, 0x3d, 0x22, 0x6a, 0x75, 0x6d,
0x70, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72,
0x65, 0x22, 0x20, 0x72, 0x69, 0x3d, 0x22, 0x31,
0x34, 0x31, 0x38, 0x30, 0x37, 0x39, 0x32, 0x34,
0x2e, 0x30, 0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22,
0x34, 0x33, 0x31, 0x32, 0x35, 0x37, 0x39, 0x32,
0x2e, 0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22,
0x31, 0x30, 0x34, 0x30, 0x30, 0x39, 0x30, 0x33,
0x2e, 0x30, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22,
0x2d, 0x33, 0x36, 0x34, 0x32, 0x31, 0x31, 0x36,
0x2e, 0x35, 0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22,
0x2d, 0x35, 0x31, 0x32, 0x38, 0x31, 0x32, 0x33,
0x2e, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22,
0x2d, 0x31, 0x34, 0x31, 0x38, 0x30, 0x37, 0x39,
0x32, 0x34, 0x2e, 0x30, 0x22, 0x20, 0x72, 0x61,
0x64, 0x69, 0x75, 0x73, 0x3d, 0x22, 0x32, 0x2e,
0x36, 0x33, 0x38, 0x30, 0x30, 0x30, 0x37, 0x39,
0x22, 0x20, 0x20, 0x79, 0x65, 0x61, 0x72, 0x3d,
0x20, 0x22, 0x37, 0x30, 0x35, 0x37, 0x37, 0x37,
0x30, 0x34, 0x30, 0x30, 0x2e, 0x30, 0x22, 0x20,
0x64, 0x61, 0x79, 0x3d, 0x22, 0x35, 0x33, 0x36,
0x2e, 0x36, 0x32, 0x38, 0x38, 0x34, 0x35, 0x22,
0x20, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x3d, 0x22,
0x4f, 0x4e, 0x45, 0x20, 0x4f, 0x4e, 0x45, 0x22,
0x20, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x43, 0x72,
0x75, 0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x4f,
0x6c, 0x64, 0x7a, 0x69, 0x65, 0x79, 0x22, 0x20,
0x66, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3d,
0x22, 0x6b, 0x6c, 0x6b, 0x6b, 0x22, 0x20, 0x20,
0x3e, 0x0a, 0x09, 0x09, 0x3c, 0x55, 0x6e, 0x69,
0x74, 0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
0x3d, 0x22, 0x30, 0x30, 0x31, 0x32, 0x33, 0x22,
0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x50,
0x6c, 0x61, 0x69, 0x6e, 0x66, 0x69, 0x65, 0x6c,
0x64, 0x22, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x3d,
0x22, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x22, 0x20,
0x72, 0x69, 0x3d, 0x22, 0x32, 0x35, 0x30, 0x30,
0x30, 0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22, 0x32,
0x35, 0x30, 0x30, 0x30, 0x22, 0x20, 0x72, 0x6b,
0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x73,
0x69, 0x3d, 0x22, 0x2d, 0x32, 0x36, 0x30, 0x30,
0x30, 0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22, 0x2d,
0x32, 0x34, 0x30, 0x30, 0x30, 0x22, 0x20, 0x73,
0x6b, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x22,
0x20, 0x78, 0x3d, 0x22, 0x32, 0x35, 0x30, 0x30,
0x30, 0x22, 0x20, 0x79, 0x3d, 0x22, 0x32, 0x35,
0x30, 0x30, 0x30, 0x22, 0x20, 0x7a, 0x3d, 0x22,
0x30, 0x2e, 0x30, 0x22, 0x20, 0x79, 0x65, 0x61,
0x72, 0x3d, 0x20, 0x22, 0x38, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x22, 0x20, 0x66, 0x61, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x6b, 0x6c,
0x6b, 0x6b, 0x22, 0x3e, 0x0a, 0x09, 0x09, 0x3c,
0x2f, 0x55, 0x6e, 0x69, 0x74, 0x3e, 0x0a, 0x09,
0x3c, 0x2f, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x20, 0x73,
0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d, 0x22, 0x30,
0x30, 0x31, 0x30, 0x35, 0x22, 0x20, 0x6e, 0x61,
0x6d, 0x65, 0x3d, 0x22, 0x4a, 0x75, 0x6d, 0x70,
0x54, 0x6f, 0x45, 0x76, 0x65, 0x72, 0x65, 0x74,
0x74, 0x22, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x3d,
0x22, 0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x74, 0x65,
0x78, 0x74, 0x75, 0x72, 0x65, 0x22, 0x20, 0x72,
0x69, 0x3d, 0x22, 0x2d, 0x32, 0x30, 0x30, 0x38,
0x30, 0x36, 0x38, 0x32, 0x2e, 0x30, 0x22, 0x20,
0x72, 0x6a, 0x3d, 0x22, 0x34, 0x32, 0x36, 0x39,
0x30, 0x32, 0x37, 0x36, 0x2e, 0x30, 0x22, 0x20,
0x72, 0x6b, 0x3d, 0x22, 0x31, 0x35, 0x37, 0x36,
0x33, 0x34, 0x36, 0x37, 0x32, 0x2e, 0x30, 0x22,
0x20, 0x73, 0x69, 0x3d, 0x22, 0x37, 0x32, 0x31,
0x31, 0x34, 0x31, 0x37, 0x36, 0x2e, 0x30, 0x22,
0x20, 0x73, 0x6a, 0x3d, 0x22, 0x2d, 0x36, 0x31,
0x33, 0x33, 0x31, 0x31, 0x39, 0x39, 0x2e, 0x30,
0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22, 0x2d, 0x39,
0x36, 0x31, 0x31, 0x31, 0x35, 0x36, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x72, 0x61, 0x64, 0x69, 0x75,
0x73, 0x3d, 0x22, 0x33, 0x2e, 0x31, 0x31, 0x37,
0x33, 0x38, 0x30, 0x33, 0x37, 0x22, 0x20, 0x20,
0x79, 0x65, 0x61, 0x72, 0x3d, 0x20, 0x22, 0x37,
0x37, 0x37, 0x38, 0x35, 0x31, 0x31, 0x32, 0x30,
0x30, 0x2e, 0x30, 0x22, 0x20, 0x64, 0x61, 0x79,
0x3d, 0x22, 0x34, 0x33, 0x31, 0x2e, 0x35, 0x34,
0x37, 0x39, 0x37, 0x34, 0x22, 0x20, 0x61, 0x6c,
0x70, 0x68, 0x61, 0x3d, 0x22, 0x4f, 0x4e, 0x45,
0x20, 0x4f, 0x4e, 0x45, 0x22, 0x20, 0x64, 0x65,
0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x3d, 0x22, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x45, 0x76, 0x65, 0x72,
0x65, 0x74, 0x74, 0x22, 0x20, 0x66, 0x61, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x6b, 0x6c,
0x6b, 0x6b, 0x22, 0x20, 0x20, 0x3e, 0x0a, 0x09,
0x3c, 0x2f, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x20, 0x73,
0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d, 0x22, 0x30,
0x30, 0x31, 0x30, 0x38, 0x22, 0x20, 0x6e, 0x61,
0x6d, 0x65, 0x3d, 0x22, 0x4a, 0x75, 0x6d, 0x70,
0x54, 0x6f, 0x53, 0x74, 0x69, 0x72, 0x6c, 0x69 };
char peer1_22[] = {
0x6e, 0x67, 0x22, 0x20, 0x66, 0x69, 0x6c, 0x65,
0x3d, 0x22, 0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x74,
0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x22, 0x20,
0x72, 0x69, 0x3d, 0x22, 0x2d, 0x31, 0x38, 0x32,
0x32, 0x38, 0x32, 0x32, 0x38, 0x37, 0x2e, 0x30,
0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22, 0x2d, 0x31,
0x35, 0x39, 0x34, 0x37, 0x39, 0x37, 0x34, 0x2e,
0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22, 0x2d,
0x32, 0x33, 0x35, 0x33, 0x32, 0x36, 0x32, 0x34,
0x2e, 0x30, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22,
0x2d, 0x33, 0x31, 0x34, 0x32, 0x33, 0x39, 0x33,
0x34, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6a, 0x3d,
0x22, 0x39, 0x34, 0x34, 0x34, 0x39, 0x35, 0x31,
0x36, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d,
0x22, 0x2d, 0x31, 0x36, 0x38, 0x33, 0x38, 0x31,
0x2e, 0x36, 0x37, 0x31, 0x38, 0x37, 0x35, 0x22,
0x20, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x3d,
0x22, 0x32, 0x2e, 0x31, 0x30, 0x30, 0x37, 0x38,
0x38, 0x38, 0x38, 0x22, 0x20, 0x78, 0x3d, 0x22,
0x37, 0x37, 0x30, 0x30, 0x37, 0x39, 0x37, 0x36,
0x2e, 0x30, 0x22, 0x20, 0x79, 0x3d, 0x22, 0x2d,
0x32, 0x38, 0x32, 0x36, 0x37, 0x31, 0x34, 0x30,
0x2e, 0x30, 0x22, 0x20, 0x7a, 0x3d, 0x22, 0x2d,
0x35, 0x31, 0x32, 0x33, 0x36, 0x30, 0x34, 0x38,
0x2e, 0x30, 0x22, 0x20, 0x79, 0x65, 0x61, 0x72,
0x3d, 0x20, 0x22, 0x33, 0x36, 0x38, 0x38, 0x35,
0x34, 0x32, 0x38, 0x30, 0x30, 0x2e, 0x30, 0x00,
0x00, 0x04, 0x03, 0x01, 0x00, 0x7a, 0x09, 0x1e,
0x96, 0x00, 0x00, 0x77, 0xe8, 0x2f, 0x62, 0x00,
0x00, 0x03, 0xf3, 0x00, 0x10, 0x19, 0x0a, 0xbb,
0x06, 0xbc, 0x03, 0xed, 0x2c, 0x22, 0x20, 0x64,
0x61, 0x79, 0x3d, 0x22, 0x32, 0x31, 0x32, 0x2e,
0x35, 0x36, 0x33, 0x33, 0x38, 0x35, 0x22, 0x20,
0x61, 0x6c, 0x70, 0x68, 0x61, 0x3d, 0x22, 0x4f,
0x4e, 0x45, 0x20, 0x4f, 0x4e, 0x45, 0x22, 0x20,
0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x43, 0x72, 0x75,
0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x53, 0x74,
0x69, 0x72, 0x6c, 0x69, 0x6e, 0x67, 0x22, 0x20,
0x66, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3d,
0x22, 0x6b, 0x6c, 0x6b, 0x6b, 0x22, 0x20, 0x20,
0x3e, 0x0a, 0x09, 0x3c, 0x2f, 0x50, 0x6c, 0x61,
0x6e, 0x65, 0x74, 0x3e, 0x0a, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x50, 0x6c, 0x61, 0x6e, 0x65,
0x74, 0x20, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
0x3d, 0x22, 0x30, 0x30, 0x31, 0x31, 0x31, 0x22,
0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x43,
0x65, 0x70, 0x68, 0x69, 0x64, 0x5f, 0x31, 0x37,
0x20, 0x42, 0x22, 0x20, 0x66, 0x69, 0x6c, 0x65,
0x3d, 0x22, 0x73, 0x74, 0x61, 0x72, 0x73, 0x2f,
0x72, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x72,
0x2e, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65,
0x22, 0x20, 0x72, 0x69, 0x3d, 0x22, 0x30, 0x2e };
char peer1_23[] = {
0x30, 0x22, 0x20, 0x72, 0x6a, 0x3d, 0x22, 0x37,
0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x2e, 0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d,
0x22, 0x31, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x73,
0x69, 0x3d, 0x22, 0x2d, 0x31, 0x35, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2e, 0x30,
0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d, 0x22, 0x30,
0x2e, 0x30, 0x22, 0x20, 0x72, 0x61, 0x64, 0x69,
0x75, 0x73, 0x3d, 0x22, 0x31, 0x30, 0x32, 0x36,
0x32, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x78, 0x3d,
0x22, 0x30, 0x22, 0x20, 0x79, 0x3d, 0x22, 0x30,
0x22, 0x20, 0x7a, 0x3d, 0x22, 0x30, 0x22, 0x20,
0x20, 0x52, 0x65, 0x64, 0x3d, 0x22, 0x30, 0x2e,
0x39, 0x35, 0x30, 0x30, 0x30, 0x30, 0x22, 0x20,
0x47, 0x72, 0x65, 0x65, 0x6e, 0x3d, 0x22, 0x30,
0x2e, 0x32, 0x30, 0x37, 0x32, 0x38, 0x39, 0x22,
0x20, 0x42, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x30,
0x2e, 0x31, 0x31, 0x39, 0x31, 0x37, 0x30, 0x22,
0x20, 0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74,
0x4e, 0x6f, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x3d,
0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x20, 0x6c,
0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, 0x31, 0x22,
0x3e, 0x0a, 0x09, 0x09, 0x3c, 0x50, 0x6c, 0x61,
0x6e, 0x65, 0x74, 0x20, 0x73, 0x65, 0x72, 0x69,
0x61, 0x6c, 0x3d, 0x22, 0x30, 0x30, 0x31, 0x31,
0x34, 0x22, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
0x22, 0x57, 0x69, 0x6c, 0x65, 0x79, 0x22, 0x20,
0x66, 0x69, 0x6c, 0x65, 0x3d, 0x22, 0x70, 0x6c,
0x61, 0x6e, 0x65, 0x74, 0x73, 0x2f, 0x6d, 0x6f,
0x6c, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x75, 0x72, 0x65, 0x22, 0x20, 0x72, 0x69,
0x3d, 0x22, 0x2d, 0x36, 0x35, 0x32, 0x32, 0x36,
0x37, 0x36, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x72,
0x6a, 0x3d, 0x22, 0x31, 0x39, 0x37, 0x39, 0x33,
0x32, 0x31, 0x38, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x22, 0x20, 0x72, 0x6b, 0x3d, 0x22,
0x33, 0x30, 0x30, 0x32, 0x30, 0x30, 0x30, 0x36,
0x2e, 0x22, 0x20, 0x73, 0x69, 0x3d, 0x22, 0x32,
0x33, 0x34, 0x39, 0x32, 0x30, 0x31, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22, 0x2d,
0x32, 0x35, 0x34, 0x30, 0x38, 0x39, 0x32, 0x33,
0x32, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d,
0x22, 0x2d, 0x31, 0x31, 0x36, 0x34, 0x38, 0x36,
0x38, 0x35, 0x36, 0x2e, 0x30, 0x22, 0x20, 0x72,
0x61, 0x64, 0x69, 0x75, 0x73, 0x3d, 0x22, 0x33,
0x35, 0x36, 0x34, 0x2e, 0x33, 0x39, 0x32, 0x35,
0x30, 0x30, 0x30, 0x30, 0x22, 0x20, 0x79, 0x65,
0x61, 0x72, 0x3d, 0x20, 0x22, 0x39, 0x31, 0x33,
0x38, 0x36, 0x37, 0x31, 0x33, 0x36, 0x30, 0x2e,
0x30, 0x22, 0x20, 0x64, 0x61, 0x79, 0x3d, 0x22,
0x37, 0x32, 0x31, 0x2e, 0x30, 0x34, 0x34, 0x30,
0x36, 0x37, 0x22, 0x20, 0x20, 0x3e, 0x0a, 0x09,
0x09, 0x09, 0x3c, 0x55, 0x6e, 0x69, 0x74, 0x20,
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x3d, 0x22,
0x30, 0x30, 0x31, 0x32, 0x36, 0x22, 0x20, 0x6e,
0x61, 0x6d, 0x65, 0x3d, 0x22, 0x53, 0x65, 0x72,
0x65, 0x6e, 0x69, 0x74, 0x79, 0x22, 0x20, 0x66,
0x69, 0x6c, 0x65, 0x3d, 0x22, 0x4d, 0x69, 0x6e,
0x69, 0x6e, 0x67, 0x42, 0x61, 0x73, 0x65, 0x22,
0x20, 0x72, 0x6a, 0x3d, 0x22, 0x2d, 0x32, 0x35,
0x34, 0x32, 0x31, 0x2e, 0x35, 0x39, 0x33, 0x37,
0x35, 0x30, 0x22, 0x20, 0x72, 0x69, 0x3d, 0x22,
0x2d, 0x32, 0x32, 0x33, 0x36, 0x37, 0x2e, 0x34,
0x33, 0x37, 0x35, 0x30, 0x30, 0x22, 0x20, 0x72,
0x6b, 0x3d, 0x22, 0x2d, 0x32, 0x37, 0x32, 0x34,
0x31, 0x2e, 0x38, 0x37, 0x35, 0x30, 0x30, 0x30,
0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22, 0x2d, 0x32,
0x35, 0x35, 0x38, 0x32, 0x2e, 0x35, 0x36, 0x32,
0x35, 0x30, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d,
0x22, 0x32, 0x37, 0x39, 0x38, 0x30, 0x2e, 0x34,
0x33, 0x37, 0x35, 0x30, 0x30, 0x22, 0x20, 0x73,
0x69, 0x3d, 0x22, 0x2d, 0x32, 0x33, 0x34, 0x36,
0x39, 0x2e, 0x36, 0x35, 0x36, 0x32, 0x35, 0x30,
0x22, 0x20, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73,
0x3d, 0x22, 0x31, 0x33, 0x30, 0x2e, 0x34, 0x37,
0x37, 0x33, 0x37, 0x31, 0x22, 0x20, 0x78, 0x3d,
0x22, 0x39, 0x39, 0x37, 0x30, 0x30, 0x30, 0x2e,
0x35, 0x36, 0x32, 0x35, 0x30, 0x30, 0x22, 0x20,
0x79, 0x3d, 0x22, 0x2d, 0x34, 0x35, 0x35, 0x34,
0x34, 0x31, 0x2e, 0x37, 0x35, 0x30, 0x30, 0x30,
0x30, 0x22, 0x20, 0x7a, 0x3d, 0x22, 0x37, 0x35,
0x33, 0x32, 0x33, 0x32, 0x2e, 0x36, 0x38, 0x37,
0x35, 0x30, 0x30, 0x22, 0x20, 0x79, 0x65, 0x61,
0x72, 0x3d, 0x20, 0x22, 0x39, 0x33, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x2e, 0x35, 0x22, 0x20,
0x64, 0x61, 0x79, 0x3d, 0x22, 0x37, 0x36, 0x31,
0x2e, 0x37, 0x37, 0x30, 0x30, 0x38, 0x31, 0x22,
0x20, 0x66, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x3d, 0x22, 0x6b, 0x6c, 0x6b, 0x6b, 0x22, 0x20,
0x20, 0x3e, 0x0a, 0x09, 0x09, 0x3c, 0x2f, 0x55,
0x6e, 0x69, 0x74, 0x3e, 0x0a, 0x09, 0x09, 0x3c,
0x2f, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x3e,
0x0a, 0x09, 0x09, 0x3c, 0x50, 0x6c, 0x61, 0x6e,
0x65, 0x74, 0x20, 0x73, 0x65, 0x72, 0x69, 0x61,
0x6c, 0x3d, 0x22, 0x30, 0x30, 0x31, 0x31, 0x37,
0x22, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
0x42, 0x72, 0x6f, 0x61, 0x64, 0x77, 0x61, 0x79,
0x22, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x3d, 0x22,
0x73, 0x6f, 0x6c, 0x2f, 0x67, 0x61, 0x6e, 0x79,
0x6d, 0x65, 0x64, 0x65, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x75, 0x72, 0x65, 0x7c, 0x70, 0x6c, 0x61,
0x6e, 0x65, 0x00, 0x00, 0x01, 0x28, 0x01, 0x00,
0x7a, 0x09, 0x1e, 0x95, 0x00, 0x00, 0x77, 0xe8,
0x2f, 0x63, 0x00, 0x00, 0x01, 0x18, 0x00, 0x10,
0x61, 0x63, 0xbb, 0x07, 0xbc, 0x01, 0x12, 0x2c,
0x74, 0x73, 0x2f, 0x72, 0x6f, 0x63, 0x6b, 0x2e,
0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x22,
0x20, 0x72, 0x69, 0x3d, 0x22, 0x33, 0x30, 0x32,
0x31, 0x35, 0x33, 0x38, 0x32, 0x2e, 0x30, 0x22,
0x20, 0x72, 0x6a, 0x3d, 0x22, 0x31, 0x38, 0x32,
0x35, 0x38, 0x32, 0x35, 0x32, 0x2e, 0x30, 0x22,
0x20, 0x72, 0x6b, 0x3d, 0x22, 0x2d, 0x33, 0x30,
0x37, 0x38, 0x30, 0x33, 0x30, 0x32, 0x2e, 0x30,
0x22, 0x20, 0x73, 0x69, 0x3d, 0x22, 0x2d, 0x35,
0x32, 0x37, 0x36, 0x31, 0x39, 0x39, 0x32, 0x2e,
0x30, 0x22, 0x20, 0x73, 0x6a, 0x3d, 0x22, 0x2d,
0x31, 0x33, 0x33, 0x30, 0x31, 0x39, 0x30, 0x34,
0x38, 0x2e, 0x30, 0x22, 0x20, 0x73, 0x6b, 0x3d,
0x22, 0x2d, 0x31, 0x33, 0x30, 0x36, 0x39, 0x37,
0x38, 0x34, 0x38, 0x2e, 0x30, 0x22, 0x20, 0x72,
0x61, 0x64, 0x69, 0x75, 0x73, 0x3d, 0x22, 0x34,
0x33, 0x30, 0x35, 0x2e, 0x30, 0x36, 0x32, 0x31,
0x38, 0x37, 0x35, 0x30, 0x22, 0x20, 0x78, 0x3d,
0x22, 0x2d, 0x33, 0x37, 0x39, 0x38, 0x31, 0x36,
0x34, 0x38, 0x2e, 0x30, 0x22, 0x20, 0x79, 0x3d,
0x22, 0x31, 0x38, 0x37, 0x35, 0x31, 0x33, 0x39 };
char peer1_24[] = {
0x32, 0x30, 0x2e, 0x30, 0x22, 0x20, 0x7a, 0x3d,
0x22, 0x34, 0x32, 0x34, 0x39, 0x37, 0x39, 0x33,
0x32, 0x2e, 0x30, 0x22, 0x20, 0x79, 0x65, 0x61,
0x72, 0x3d, 0x20, 0x22, 0x37, 0x38, 0x36, 0x32,
0x35, 0x39, 0x38, 0x34, 0x30, 0x30, 0x2e, 0x30,
0x22, 0x20, 0x64, 0x61, 0x79, 0x3d, 0x22, 0x36,
0x35, 0x32, 0x2e, 0x36, 0x37, 0x38, 0x33, 0x34,
0x35, 0x22, 0x20, 0x20, 0x3e, 0x0a, 0x09, 0x09,
0x3c, 0x2f, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74,
0x3e, 0x0a, 0x09, 0x3c, 0x2f, 0x50, 0x6c, 0x61,
0x6e, 0x65, 0x74, 0x3e, 0x0a, 0x0a, 0x3c, 0x2f,
0x50, 0x6c, 0x61, 0x6e, 0x65, 0x74, 0x3e, 0x0a,
0x3c, 0x2f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
0x3e, 0x0a };
char peer0_8[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_9[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_10[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_11[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_12[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_13[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_14[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_15[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_16[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_17[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_18[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_19[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_20[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_21[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_22[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_23[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_24[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_25[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_26[] = {
0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x00 };
char peer0_27[] = {
0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x19, 0x87,
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
0xbc, 0x1a, 0x73 };
char peer0_28[] = {
0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x00 };
char peer0_29[] = {
0x0c, 0x82, 0x00, 0x84, 0x77, 0xe8, 0x31, 0x91,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
char peer1_25[] = {
0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x7a, 0x09 };
char peer1_26[] = {
0x31, 0x94, 0x00, 0x00, 0x77, 0xe8, 0x32, 0x41,
0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x95, 0x09,
0xbc, 0x02, 0x02, 0x21, 0xbc, 0x00, 0x09, 0x6a,
0x75, 0x6d, 0x70, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x43, 0x01, 0x00, 0x7a, 0x09, 0x0f, 0x94, 0x00,
0x84, 0x77, 0xe8, 0x32, 0x41, 0x00, 0x00, 0x00,
0x33, 0x00, 0x00, 0x69, 0x73, 0xd4, 0xd9, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xd5, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b,
0x00, 0x00, 0x00, 0x00, 0xd6, 0x7c, 0x28, 0xdf,
0x40, 0x09, 0xb4, 0xf3, 0x3b, 0x42, 0x7c, 0xb9,
0x1a, 0x88, 0x64, 0xb5, 0x04, 0x6f, 0xc1, 0x7c,
0xbc, 0xbf, 0x90, 0x8b, 0x00, 0x6b, 0x39, 0xc2,
0x00, 0x00, 0x28, 0x9d, 0x01, 0x00, 0x7a, 0x09,
0x0d, 0x97, 0x00, 0x00, 0x77, 0xe8, 0x32, 0x41,
0x00, 0x00, 0x28, 0x8d, 0x00, 0x00, 0x20, 0x0a,
0xbb, 0x01, 0xbd, 0xbc, 0x00, 0x84, 0x21, 0xbc,
0x00, 0x06, 0x61, 0x73, 0x64, 0x61, 0x73, 0x64,
0x21, 0xbc, 0x12, 0x87, 0x43, 0x72, 0x75, 0x63,
0x69, 0x62, 0x6c, 0x65, 0x2f, 0x43, 0x65, 0x70,
0x68, 0x69, 0x64, 0x5f, 0x31, 0x37, 0x5e, 0x31,
0x33, 0x35, 0x30, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x5e, 0x41, 0x64, 0x6d, 0x6f,
0x6e, 0x69, 0x73, 0x68, 0x65, 0x72, 0x20, 0x31,
0x32, 0x30, 0x30, 0x35, 0x32, 0x37, 0x37, 0x39,
0x33, 0x32, 0x38, 0x2e, 0x38, 0x37, 0x31, 0x37,
0x30, 0x34, 0x20, 0x2d, 0x31, 0x36, 0x32, 0x36,
0x32, 0x35, 0x37, 0x31, 0x2e, 0x31, 0x34, 0x31,
0x36, 0x31, 0x34, 0x20, 0x2d, 0x31, 0x30, 0x39,
0x31, 0x36, 0x39, 0x33, 0x38, 0x30, 0x32, 0x34,
0x30, 0x2e, 0x37, 0x34, 0x38, 0x39, 0x36, 0x32,
0x20, 0x63, 0x6f, 0x6e, 0x66, 0x65, 0x64, 0x0a,
0x30, 0x20, 0x73, 0x74, 0x61, 0x72, 0x64, 0x61,
0x74, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20,
0x31, 0x30, 0x20, 0x30, 0x2e, 0x30, 0x31, 0x33,
0x37, 0x3a, 0x32, 0x37, 0x32, 0x0a, 0x30, 0x20,
0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x20,
0x64, 0x61, 0x74, 0x61, 0x20, 0x20, 0x31, 0x30,
0x0a, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64,
0x5f, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c,
0x65, 0x2f, 0x4f, 0x6c, 0x64, 0x7a, 0x69, 0x65,
0x79, 0x20, 0x31, 0x20, 0x30, 0x20, 0x0a, 0x76,
0x69, 0x73, 0x69, 0x74, 0x65, 0x64, 0x5f, 0x43,
0x72, 0x75, 0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f,
0x53, 0x74, 0x69, 0x72, 0x6c, 0x69, 0x6e, 0x67,
0x20, 0x31, 0x20, 0x30, 0x20, 0x0a, 0x76, 0x69,
0x73, 0x69, 0x74, 0x65, 0x64, 0x5f, 0x43, 0x72,
0x75, 0x63, 0x69, 0x62, 0x6c, 0x65, 0x2f, 0x50,
0x61, 0x6e, 0x64, 0x65, 0x79, 0x20, 0x31, 0x20,
0x30, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69, 0x74,
0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63, 0x69,
0x62, 0x6c, 0x65, 0x2f, 0x43, 0x61, 0x72, 0x64,
0x65, 0x6c, 0x6c, 0x20, 0x31, 0x20, 0x30, 0x20,
0x0a, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64,
0x5f, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c,
0x65, 0x2f, 0x45, 0x6e, 0x79, 0x6f, 0x20, 0x31,
0x20, 0x31, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69,
0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63,
0x69, 0x62, 0x6c, 0x65, 0x2f, 0x45, 0x78, 0x69,
0x6c, 0x65, 0x20, 0x31, 0x20, 0x30, 0x20, 0x0a,
0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64, 0x5f,
0x43, 0x72, 0x75, 0x63, 0x69, 0x62, 0x6c, 0x65,
0x2f, 0x31, 0x37, 0x2d, 0x61, 0x72, 0x20, 0x31,
0x20, 0x30, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69,
0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63,
0x69, 0x62, 0x6c, 0x65, 0x2f, 0x43, 0x65, 0x70,
0x68, 0x69, 0x64, 0x5f, 0x31, 0x37, 0x20, 0x31,
0x20, 0x31, 0x20, 0x0a, 0x76, 0x69, 0x73, 0x69,
0x74, 0x65, 0x64, 0x5f, 0x43, 0x72, 0x75, 0x63,
0x69, 0x62, 0x6c, 0x65, 0x2f, 0x45, 0x76, 0x65,
0x72, 0x65, 0x74, 0x74, 0x20, 0x31, 0x20, 0x30,
0x20, 0x0a, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65,
0x64, 0x5f, 0x43, 0x72, 0x75, 0x63, 0x69, 0x62,
0x6c, 0x65, 0x2f, 0x41, 0x67, 0x65, 0x61, 0x20,
0x31, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x6d,
0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74,
0x61, 0x20, 0x32, 0x0a, 0x34, 0x20, 0x6e, 0x65,
0x77, 0x73, 0x31, 0x20, 0x33, 0x38, 0x20, 0x23,
0x61, 0x73, 0x64, 0x61, 0x73, 0x64, 0x20, 0x68,
0x61, 0x73, 0x20, 0x75, 0x6e, 0x64, 0x6f, 0x63,
0x6b, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d,
0x20, 0x74, 0x68, 0x65, 0x20, 0x41, 0x74, 0x6c,
0x61, 0x6e, 0x74, 0x69, 0x73, 0x0a, 0x31, 0x37,
0x20, 0x75, 0x6e, 0x69, 0x74, 0x5f, 0x74, 0x6f,
0x5f, 0x64, 0x6f, 0x63, 0x6b, 0x5f, 0x77, 0x69,
0x74, 0x68, 0x31, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x70, 0x79, 0x74, 0x68, 0x6f, 0x6e, 0x20,
0x64, 0x61, 0x74, 0x61, 0x20, 0x31, 0x20, 0x30,
0x20, 0x20, 0x0a, 0x30, 0x20, 0x6e, 0x65, 0x77,
0x73, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x31,
0x0a, 0x0a, 0x30, 0x20, 0x66, 0x61, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x73, 0x20, 0x62, 0x65, 0x67,
0x69, 0x6e, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31,
0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d, 0x30,
0x2e, 0x31, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30 };
char peer1_27[] = {
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x31, 0x20, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x31, 0x20,
0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x31,
0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x31, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20 };
char peer1_28[] = {
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x2d, 0x30, 0x2e, 0x32,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x32, 0x20, 0x31, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x2e,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x39, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e,
0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x36, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d };
char peer1_29[] = {
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x39, 0x20, 0x2d, 0x30, 0x2e,
0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e,
0x39, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x39, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x39,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x36, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x39, 0x20, 0x2d, 0x30, 0x2e, 0x39,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x38, 0x20, 0x2d, 0x30, 0x2e, 0x38, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d, 0x30, 0x2e,
0x35, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x2d, 0x30,
0x2e, 0x32, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30 };
char peer1_30[] = {
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e, 0x35,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x30, 0x2e,
0x35, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x2d, 0x30, 0x2e,
0x35, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x35, 0x20, 0x31, 0x20, 0x2d, 0x30, 0x2e,
0x35, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x2d,
0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x2e,
0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x38, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x31, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x2e,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x2d,
0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x31, 0x20,
0x30, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30 };
char peer1_31[] = {
0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e, 0x31, 0x20,
0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x38,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x34, 0x20, 0x30, 0x20,
0x31, 0x20, 0x2d, 0x30, 0x2e, 0x34, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20,
0x2d, 0x30, 0x2e, 0x35, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30, 0x2e,
0x32, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x2d, 0x30,
0x2e, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x30, 0x2e, 0x34, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30 };
char peer1_32[] = {
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x2d, 0x31, 0x20, 0x2d,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x20, 0x30, 0x2e, 0x38, 0x20, 0x30, 0x20, 0x30,
0x20, 0x0a, 0x30, 0x20, 0x30, 0x20, 0x2d, 0x30,
0x2e, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x31, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x2d, 0x30, 0x2e, 0x32, 0x20,
0x2d, 0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x2d,
0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30,
0x20, 0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x2e, 0x38, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x31,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x0a,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x32, 0x20,
0x30, 0x2e, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x2d, 0x31,
0x20, 0x2d, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x2d, 0x31, 0x20, 0x2d, 0x31, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x2e, 0x32, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x31, 0x20,
0x30, 0x20, 0x31, 0x20, 0x30, 0x20, 0x30, 0x20,
0x0a, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30,
0x20, 0x31, 0x20, 0x30, 0x20, 0x0a, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20,
0x31, 0x20, 0x0a, 0x21, 0xbc, 0x13, 0xdb, 0x4b,
0x65, 0x79, 0x2c, 0x4d, 0x61, 0x78, 0x5f, 0x4c,
0x69, 0x66, 0x65, 0x73, 0x75, 0x70, 0x70, 0x6f,
0x72, 0x74, 0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79,
0x2c, 0x43, 0x61, 0x72, 0x67, 0x6f, 0x5f, 0x49,
0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2c, 0x55, 0x70,
0x67, 0x72, 0x61, 0x64, 0x65, 0x5f, 0x53, 0x74,
0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x56, 0x6f,
0x6c, 0x75, 0x6d, 0x65, 0x2c, 0x50, 0x69, 0x74,
0x63, 0x68, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x5f, 0x55, 0x70, 0x2c, 0x43,
0x6f, 0x6d, 0x6d, 0x5f, 0x46, 0x75, 0x6e, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74,
0x79, 0x2c, 0x52, 0x61, 0x70, 0x69, 0x64, 0x5f,
0x4d, 0x65, 0x73, 0x68, 0x2c, 0x57, 0x61, 0x72,
0x70, 0x5f, 0x4d, 0x69, 0x6e, 0x5f, 0x4d, 0x75,
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72,
0x2c, 0x50, 0x69, 0x74, 0x63, 0x68, 0x5f, 0x47,
0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f, 0x72, 0x2c,
0x52, 0x6f, 0x6c, 0x6c, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f, 0x52, 0x69,
0x67, 0x68, 0x74, 0x2c, 0x41, 0x72, 0x6d, 0x6f,
0x72, 0x5f, 0x42, 0x61, 0x63, 0x6b, 0x5f, 0x42,
0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x4c, 0x65,
0x66, 0x74, 0x2c, 0x55, 0x6e, 0x69, 0x74, 0x5f,
0x53, 0x63, 0x61, 0x6c, 0x65, 0x2c, 0x45, 0x71,
0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
0x53, 0x70, 0x61, 0x63, 0x65, 0x2c, 0x4e, 0x75,
0x6d, 0x5f, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x74, 0x61, 0x67,
0x65, 0x73, 0x2c, 0x52, 0x6f, 0x6c, 0x6c, 0x5f,
0x47, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f, 0x72,
0x2c, 0x46, 0x69, 0x72, 0x65, 0x43, 0x6f, 0x6e,
0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x46, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x2c, 0x4c, 0x6f, 0x63, 0x6b, 0x5f,
0x43, 0x6f, 0x6e, 0x65, 0x2c, 0x43, 0x6c, 0x6f,
0x61, 0x6b, 0x5f, 0x52, 0x61, 0x74, 0x65, 0x2c,
0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x42,
0x61, 0x63, 0x6b, 0x5f, 0x54, 0x6f, 0x70, 0x5f,
0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x41, 0x72,
0x6d, 0x6f, 0x72, 0x5f, 0x42, 0x61, 0x63, 0x6b,
0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x53, 0x6c,
0x69, 0x64, 0x65, 0x5f, 0x53, 0x74, 0x61, 0x72,
0x74, 0x2c, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x2c, 0x53, 0x68, 0x69, 0x65,
0x6c, 0x64, 0x5f, 0x4c, 0x65, 0x61, 0x6b, 0x2c,
0x44, 0x6f, 0x63, 0x6b, 0x2c, 0x48, 0x69, 0x64,
0x64, 0x65, 0x6e, 0x5f, 0x48, 0x6f, 0x6c, 0x64,
0x5f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x2c,
0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
0x5f, 0x43, 0x6f, 0x6e, 0x65, 0x2c, 0x53, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x46, 0x72, 0x6f,
0x6e, 0x74, 0x5f, 0x54, 0x6f, 0x70, 0x5f, 0x52,
0x69, 0x67, 0x68, 0x74, 0x2c, 0x53, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x46, 0x72, 0x6f, 0x6e,
0x74, 0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d };
char peer1_33[] = {
0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c, 0x45, 0x78,
0x70, 0x6c, 0x6f, 0x73, 0x69, 0x6f, 0x6e, 0x2c,
0x4d, 0x61, 0x6e, 0x65, 0x75, 0x76, 0x65, 0x72,
0x5f, 0x52, 0x6f, 0x6c, 0x6c, 0x2c, 0x53, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x42, 0x61, 0x63,
0x6b, 0x5f, 0x54, 0x6f, 0x70, 0x5f, 0x4c, 0x65,
0x66, 0x74, 0x2c, 0x55, 0x73, 0x65, 0x5f, 0x42,
0x53, 0x50, 0x2c, 0x53, 0x75, 0x62, 0x5f, 0x55,
0x6e, 0x69, 0x74, 0x73, 0x2c, 0x43, 0x6c, 0x6f,
0x61, 0x6b, 0x5f, 0x45, 0x6e, 0x65, 0x72, 0x67,
0x79, 0x2c, 0x45, 0x43, 0x4d, 0x5f, 0x52, 0x65,
0x73, 0x69, 0x73, 0x74, 0x2c, 0x52, 0x65, 0x74,
0x72, 0x6f, 0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c,
0x2c, 0x48, 0x75, 0x6c, 0x6c, 0x2c, 0x4d, 0x6f,
0x75, 0x6e, 0x74, 0x73, 0x2c, 0x48, 0x75, 0x64,
0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2c, 0x4a,
0x75, 0x6d, 0x70, 0x5f, 0x44, 0x72, 0x69, 0x76,
0x65, 0x5f, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x2c,
0x4a, 0x75, 0x6d, 0x70, 0x5f, 0x44, 0x72, 0x69,
0x76, 0x65, 0x5f, 0x50, 0x72, 0x65, 0x73, 0x65,
0x6e, 0x74, 0x2c, 0x54, 0x6f, 0x70, 0x5f, 0x41,
0x63, 0x63, 0x65, 0x6c, 0x2c, 0x4d, 0x61, 0x6e,
0x65, 0x75, 0x76, 0x65, 0x72, 0x5f, 0x50, 0x69,
0x74, 0x63, 0x68, 0x2c, 0x43, 0x6f, 0x63, 0x6b,
0x70, 0x69, 0x74, 0x59, 0x2c, 0x4d, 0x61, 0x73,
0x73, 0x2c, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x5f, 0x4d, 0x65, 0x73, 0x68, 0x2c, 0x46, 0x6f,
0x72, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x41, 0x63,
0x63, 0x65, 0x6c, 0x2c, 0x41, 0x72, 0x6d, 0x6f,
0x72, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x5f,
0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x52,
0x69, 0x67, 0x68, 0x74, 0x2c, 0x52, 0x61, 0x64,
0x61, 0x72, 0x5f, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
0x2c, 0x41, 0x72, 0x6d, 0x6f, 0x72, 0x5f, 0x42,
0x61, 0x63, 0x6b, 0x5f, 0x54, 0x6f, 0x70, 0x5f,
0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x43, 0x6f,
0x63, 0x6b, 0x70, 0x69, 0x74, 0x5a, 0x2c, 0x41,
0x66, 0x74, 0x65, 0x72, 0x62, 0x75, 0x72, 0x6e,
0x65, 0x72, 0x5f, 0x53, 0x70, 0x65, 0x65, 0x64,
0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f,
0x72, 0x2c, 0x41, 0x72, 0x6d, 0x6f, 0x72, 0x5f,
0x46, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x54, 0x6f,
0x70, 0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c,
0x4d, 0x6f, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x4f,
0x66, 0x5f, 0x49, 0x6e, 0x65, 0x72, 0x74, 0x69,
0x61, 0x2c, 0x4e, 0x61, 0x6d, 0x65, 0x2c, 0x4d,
0x61, 0x78, 0x5f, 0x43, 0x6f, 0x6e, 0x65, 0x2c,
0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x53, 0x70, 0x65, 0x65, 0x64,
0x2c, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x5f, 0x30,
0x2c, 0x4c, 0x65, 0x66, 0x74, 0x5f, 0x41, 0x63,
0x63, 0x65, 0x6c, 0x2c, 0x55, 0x73, 0x65, 0x5f,
0x52, 0x61, 0x70, 0x69, 0x64, 0x2c, 0x42, 0x53,
0x50, 0x5f, 0x4d, 0x65, 0x73, 0x68, 0x2c, 0x46,
0x75, 0x65, 0x6c, 0x5f, 0x43, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x79, 0x2c, 0x53, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x52, 0x65, 0x63, 0x68,
0x61, 0x72, 0x67, 0x65, 0x2c, 0x43, 0x6c, 0x6f,
0x61, 0x6b, 0x5f, 0x4d, 0x69, 0x6e, 0x2c, 0x52,
0x69, 0x67, 0x68, 0x74, 0x5f, 0x41, 0x63, 0x63,
0x65, 0x6c, 0x2c, 0x4d, 0x61, 0x78, 0x5f, 0x48,
0x75, 0x64, 0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79,
0x2c, 0x54, 0x65, 0x78, 0x74, 0x75, 0x61, 0x6c,
0x5f, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x48, 0x6f, 0x6c,
0x64, 0x5f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
0x2c, 0x59, 0x61, 0x77, 0x5f, 0x47, 0x6f, 0x76,
0x65, 0x72, 0x6e, 0x6f, 0x72, 0x5f, 0x4c, 0x65,
0x66, 0x74, 0x2c, 0x53, 0x68, 0x69, 0x65, 0x6c,
0x64, 0x5f, 0x42, 0x61, 0x63, 0x6b, 0x5f, 0x42,
0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x52, 0x69,
0x67, 0x68, 0x74, 0x2c, 0x41, 0x66, 0x74, 0x65,
0x72, 0x62, 0x75, 0x72, 0x6e, 0x65, 0x72, 0x5f,
0x54, 0x79, 0x70, 0x65, 0x2c, 0x43, 0x6f, 0x6d,
0x62, 0x61, 0x74, 0x5f, 0x52, 0x6f, 0x6c, 0x65,
0x2c, 0x4f, 0x75, 0x74, 0x73, 0x79, 0x73, 0x74,
0x65, 0x6d, 0x5f, 0x4a, 0x75, 0x6d, 0x70, 0x5f,
0x43, 0x6f, 0x73, 0x74, 0x2c, 0x41, 0x72, 0x6d,
0x6f, 0x72, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74,
0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
0x4c, 0x65, 0x66, 0x74, 0x2c, 0x50, 0x69, 0x74,
0x63, 0x68, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x5f, 0x44, 0x6f, 0x77, 0x6e,
0x2c, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f,
0x46, 0x72, 0x6f, 0x6e, 0x74, 0x5f, 0x54, 0x6f,
0x70, 0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c, 0x52,
0x65, 0x70, 0x61, 0x69, 0x72, 0x5f, 0x44, 0x72,
0x6f, 0x69, 0x64, 0x2c, 0x57, 0x61, 0x72, 0x70,
0x5f, 0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x2c, 0x57, 0x61, 0x72, 0x70, 0x5f,
0x55, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x43, 0x6f,
0x73, 0x74, 0x2c, 0x43, 0x61, 0x6e, 0x5f, 0x43,
0x6c, 0x6f, 0x61, 0x6b, 0x2c, 0x43, 0x61, 0x72,
0x67, 0x6f, 0x2c, 0x41, 0x66, 0x74, 0x65, 0x72,
0x62, 0x75, 0x72, 0x6e, 0x65, 0x72, 0x5f, 0x41,
0x63, 0x63, 0x65, 0x6c, 0x2c, 0x43, 0x6f, 0x63,
0x6b, 0x70, 0x69, 0x74, 0x58, 0x2c, 0x57, 0x6f,
0x72, 0x6d, 0x68, 0x6f, 0x6c, 0x65, 0x2c, 0x4d,
0x61, 0x78, 0x5f, 0x46, 0x69, 0x72, 0x65, 0x43,
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x46,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61,
0x6c, 0x69, 0x74, 0x79, 0x2c, 0x53, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x45, 0x66, 0x66, 0x69,
0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x2c, 0x4d,
0x61, 0x78, 0x5f, 0x53, 0x50, 0x45, 0x43, 0x44,
0x72, 0x69, 0x76, 0x65, 0x5f, 0x46, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x2c, 0x53, 0x70, 0x65, 0x63, 0x5f,
0x49, 0x6e, 0x74, 0x65, 0x72, 0x64, 0x69, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x53, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x46, 0x72, 0x6f, 0x6e,
0x74, 0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d,
0x5f, 0x52, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x4f,
0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x54, 0x79,
0x70, 0x65, 0x2c, 0x4e, 0x6f, 0x44, 0x61, 0x6d,
0x61, 0x67, 0x65, 0x50, 0x61, 0x72, 0x74, 0x69,
0x63, 0x6c, 0x65, 0x73, 0x2c, 0x4d, 0x61, 0x6e,
0x65, 0x75, 0x76, 0x65, 0x72, 0x5f, 0x59, 0x61,
0x77, 0x2c, 0x52, 0x61, 0x64, 0x61, 0x72, 0x5f,
0x52, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x41, 0x66,
0x74, 0x65, 0x72, 0x62, 0x75, 0x72, 0x6e, 0x65,
0x72, 0x5f, 0x55, 0x73, 0x61, 0x67, 0x65, 0x5f,
0x43, 0x6f, 0x73, 0x74, 0x2c, 0x53, 0x6c, 0x69,
0x64, 0x65, 0x5f, 0x45, 0x6e, 0x64, 0x2c, 0x43,
0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x5f, 0x53,
0x75, 0x62, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x2c,
0x41, 0x72, 0x6d, 0x6f, 0x72, 0x5f, 0x46, 0x72 };
char peer1_34[] = {
0x6f, 0x6e, 0x74, 0x5f, 0x54, 0x6f, 0x70, 0x5f,
0x4c, 0x65, 0x66, 0x74, 0x2c, 0x43, 0x6f, 0x63,
0x6b, 0x70, 0x69, 0x74, 0x2c, 0x48, 0x65, 0x61,
0x74, 0x5f, 0x53, 0x69, 0x6e, 0x6b, 0x5f, 0x52,
0x61, 0x74, 0x69, 0x6e, 0x67, 0x2c, 0x53, 0x50,
0x45, 0x43, 0x44, 0x72, 0x69, 0x76, 0x65, 0x5f,
0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x61, 0x6c, 0x69, 0x74, 0x79, 0x2c, 0x53, 0x54,
0x41, 0x54, 0x55, 0x53, 0x2c, 0x48, 0x75, 0x64,
0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2c, 0x4e,
0x65, 0x74, 0x5f, 0x43, 0x6f, 0x6d, 0x6d, 0x2c,
0x49, 0x54, 0x54, 0x53, 0x2c, 0x59, 0x61, 0x77,
0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6f,
0x72, 0x2c, 0x43, 0x6c, 0x6f, 0x61, 0x6b, 0x5f,
0x47, 0x6c, 0x61, 0x73, 0x73, 0x2c, 0x2c, 0x59,
0x61, 0x77, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x5f, 0x52, 0x69, 0x67, 0x68,
0x74, 0x2c, 0x41, 0x72, 0x6d, 0x6f, 0x72, 0x5f,
0x42, 0x61, 0x63, 0x6b, 0x5f, 0x54, 0x6f, 0x70,
0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c, 0x54, 0x72,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x61, 0x62, 0x69,
0x6c, 0x69, 0x74, 0x79, 0x2c, 0x50, 0x72, 0x6f,
0x68, 0x69, 0x62, 0x69, 0x74, 0x65, 0x64, 0x5f,
0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73,
0x2c, 0x52, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x5f, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
0x65, 0x2c, 0x45, 0x43, 0x4d, 0x5f, 0x52, 0x61,
0x74, 0x69, 0x6e, 0x67, 0x2c, 0x50, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x5f, 0x43, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x2c, 0x42,
0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x41, 0x63,
0x63, 0x65, 0x6c, 0x2c, 0x41, 0x63, 0x74, 0x69,
0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x41,
0x63, 0x63, 0x65, 0x6c, 0x2c, 0x55, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2c, 0x52, 0x6f,
0x6c, 0x6c, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x5f, 0x4c, 0x65, 0x66, 0x74,
0x2c, 0x57, 0x61, 0x72, 0x70, 0x5f, 0x4d, 0x61,
0x78, 0x5f, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70,
0x6c, 0x69, 0x65, 0x72, 0x2c, 0x45, 0x63, 0x6d,
0x5f, 0x44, 0x72, 0x61, 0x69, 0x6e, 0x2c, 0x4c,
0x69, 0x66, 0x65, 0x73, 0x75, 0x70, 0x70, 0x6f,
0x72, 0x74, 0x5f, 0x46, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79,
0x2c, 0x4d, 0x65, 0x73, 0x68, 0x2c, 0x53, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x42, 0x61, 0x63,
0x6b, 0x5f, 0x42, 0x6f, 0x74, 0x74, 0x6f, 0x6d,
0x5f, 0x4c, 0x65, 0x66, 0x74, 0x2c, 0x43, 0x61,
0x6e, 0x5f, 0x4c, 0x6f, 0x63, 0x6b, 0x2c, 0x4c,
0x69, 0x67, 0x68, 0x74, 0x2c, 0x44, 0x65, 0x66,
0x61, 0x75, 0x6c, 0x74, 0x5f, 0x53, 0x70, 0x65,
0x65, 0x64, 0x5f, 0x47, 0x6f, 0x76, 0x65, 0x72,
0x6e, 0x6f, 0x72, 0x2c, 0x4d, 0x61, 0x78, 0x5f,
0x43, 0x6f, 0x6d, 0x6d, 0x5f, 0x46, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x2c, 0x4e, 0x75, 0x6d, 0x5f, 0x43,
0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2c, 0x53, 0x6f,
0x75, 0x6e, 0x64, 0x0a, 0x41, 0x64, 0x6d, 0x6f,
0x6e, 0x69, 0x73, 0x68, 0x65, 0x72, 0x2c, 0x31,
0x2c, 0x2c, 0x31, 0x34, 0x30, 0x30, 0x2c, 0x36,
0x30, 0x2c, 0x31, 0x2c, 0x2c, 0x31, 0x2c, 0x36,
0x30, 0x2c, 0x36, 0x35, 0x2c, 0x32, 0x30, 0x30,
0x2c, 0x30, 0x2e, 0x37, 0x36, 0x2c, 0x30, 0x2c,
0x30, 0x2c, 0x36, 0x35, 0x2c, 0x31, 0x2c, 0x34,
0x32, 0x2c, 0x30, 0x2c, 0x38, 0x30, 0x30, 0x2c,
0x32, 0x30, 0x30, 0x2c, 0x30, 0x2c, 0x2e, 0x2f,
0x76, 0x65, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x2f,
0x41, 0x64, 0x6d, 0x6f, 0x6e, 0x69, 0x73, 0x68,
0x65, 0x72, 0x2c, 0x30, 0x2c, 0x2c, 0x30, 0x2c,
0x35, 0x2e, 0x39, 0x39, 0x39, 0x39, 0x39, 0x2c,
0x38, 0x30, 0x30, 0x2c, 0x38, 0x30, 0x30, 0x2c,
0x2c, 0x35, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x2c,
0x2c, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x36,
0x30, 0x30, 0x30, 0x2c, 0x37, 0x30, 0x30, 0x2c,
0x22, 0x7b, 0x48, 0x65, 0x61, 0x76, 0x79, 0x49,
0x6f, 0x6e, 0x42, 0x65, 0x61, 0x6d, 0x3b, 0x2d,
0x31, 0x3b, 0x30, 0x3b, 0x4c, 0x49, 0x47, 0x48,
0x54, 0x20, 0x4d, 0x45, 0x44, 0x49, 0x55, 0x4d,
0x20, 0x48, 0x45, 0x41, 0x56, 0x59, 0x20, 0x3b,
0x32, 0x2e, 0x33, 0x35, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x36, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x30, 0x2e, 0x33, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48,
0x65, 0x61, 0x76, 0x79, 0x49, 0x6f, 0x6e, 0x42,
0x65, 0x61, 0x6d, 0x3b, 0x2d, 0x31, 0x3b, 0x30,
0x3b, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d,
0x45, 0x44, 0x49, 0x55, 0x4d, 0x20, 0x48, 0x45,
0x41, 0x56, 0x59, 0x20, 0x3b, 0x2d, 0x32, 0x2e,
0x33, 0x35, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x36,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x30, 0x2e, 0x33, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30 };
char peer1_35[] = {
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48, 0x65, 0x61,
0x76, 0x79, 0x49, 0x6f, 0x6e, 0x42, 0x65, 0x61,
0x6d, 0x3b, 0x2d, 0x31, 0x3b, 0x30, 0x3b, 0x4c,
0x49, 0x47, 0x48, 0x54, 0x20, 0x4d, 0x45, 0x44,
0x49, 0x55, 0x4d, 0x20, 0x48, 0x45, 0x41, 0x56,
0x59, 0x20, 0x3b, 0x2d, 0x31, 0x2e, 0x37, 0x35,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x2d, 0x31, 0x30,
0x2e, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x39, 0x2e, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x7d, 0x7b, 0x48, 0x65, 0x61, 0x76,
0x79, 0x49, 0x6f, 0x6e, 0x42, 0x65, 0x61, 0x6d,
0x3b, 0x2d, 0x31, 0x3b, 0x30, 0x3b, 0x4c, 0x49,
0x47, 0x48, 0x54, 0x20, 0x4d, 0x45, 0x44, 0x49,
0x55, 0x4d, 0x20, 0x48, 0x45, 0x41, 0x56, 0x59,
0x20, 0x3b, 0x31, 0x2e, 0x37, 0x35, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x2d, 0x31, 0x30, 0x2e, 0x35,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x39, 0x2e,
0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x7d, 0x7b, 0x50, 0x75, 0x67, 0x69, 0x6c, 0x69,
0x73, 0x74, 0x3b, 0x2d, 0x31, 0x3b, 0x30, 0x3b,
0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x3b, 0x38,
0x2e, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x2d, 0x33, 0x2e, 0x35, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x2d, 0x31, 0x2e, 0x36, 0x35, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x7d, 0x7b, 0x50,
0x75, 0x67, 0x69, 0x6c, 0x69, 0x73, 0x74, 0x3b,
0x2d, 0x31, 0x3b, 0x30, 0x3b, 0x4c, 0x49, 0x47,
0x48, 0x54, 0x20, 0x3b, 0x2d, 0x38, 0x2e, 0x31,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x2d, 0x33,
0x2e, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x2d, 0x31, 0x2e, 0x36, 0x35, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x7d, 0x7b, 0x48, 0x65, 0x61,
0x74, 0x53, 0x65, 0x65, 0x6b, 0x65, 0x72, 0x3b,
0x35, 0x3b, 0x31, 0x35, 0x3b, 0x4c, 0x49, 0x47,
0x48, 0x54, 0x2d, 0x4d, 0x49, 0x53, 0x53, 0x49,
0x4c, 0x45, 0x20, 0x4d, 0x45, 0x44, 0x49, 0x55,
0x4d, 0x2d, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4c,
0x45, 0x20, 0x3b, 0x2d, 0x30, 0x2e, 0x33, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x2d, 0x30, 0x2e,
0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x7d, 0x7b, 0x48, 0x65, 0x61, 0x74, 0x53,
0x65, 0x65, 0x6b, 0x65, 0x72, 0x3b, 0x35, 0x3b,
0x31, 0x35, 0x3b, 0x4c, 0x49, 0x47, 0x48, 0x54,
0x2d, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4c, 0x45,
0x20, 0x4d, 0x45, 0x44, 0x49, 0x55, 0x4d, 0x2d,
0x4d, 0x49, 0x53, 0x53, 0x49, 0x4c, 0x45, 0x20,
0x3b, 0x30, 0x2e, 0x33, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x2d, 0x30, 0x2e, 0x31, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x7d, 0x7b,
0x54, 0x6f, 0x72, 0x70, 0x65, 0x64, 0x6f, 0x3b,
0x33, 0x3b, 0x33, 0x30, 0x30, 0x3b, 0x48, 0x45,
0x41, 0x56, 0x59, 0x2d, 0x4d, 0x49, 0x53, 0x53 };
char peer1_36[] = {
0x49, 0x4c, 0x45, 0x20, 0x3b, 0x2d, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x31, 0x2e, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x30, 0x2e,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x31,
0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x7d, 0x22, 0x2c, 0x61, 0x64, 0x6d,
0x6f, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x72, 0x2d,
0x68, 0x75, 0x64, 0x2e, 0x73, 0x70, 0x72, 0x69,
0x74, 0x65, 0x2c, 0x31, 0x2c, 0x31, 0x2c, 0x34,
0x30, 0x30, 0x30, 0x2c, 0x35, 0x30, 0x30, 0x30,
0x30, 0x2c, 0x38, 0x2e, 0x32, 0x36, 0x2c, 0x33,
0x36, 0x30, 0x2c, 0x61, 0x64, 0x6d, 0x6f, 0x6e,
0x69, 0x73, 0x68, 0x65, 0x72, 0x2d, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x2e, 0x62, 0x66, 0x78,
0x6d, 0x2c, 0x32, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x32, 0x30, 0x30, 0x2c, 0x31, 0x2c, 0x32, 0x30,
0x30, 0x2c, 0x39, 0x2e, 0x36, 0x2c, 0x32, 0x35,
0x30, 0x2c, 0x32, 0x30, 0x30, 0x2c, 0x33, 0x36,
0x30, 0x2c, 0x41, 0x64, 0x6d, 0x6f, 0x6e, 0x69,
0x73, 0x68, 0x65, 0x72, 0x2c, 0x31, 0x38, 0x30,
0x2c, 0x2c, 0x2c, 0x34, 0x30, 0x30, 0x30, 0x2c,
0x2c, 0x2c, 0x32, 0x32, 0x2e, 0x39, 0x32, 0x2c,
0x33, 0x36, 0x2c, 0x30, 0x2c, 0x34, 0x30, 0x30,
0x30, 0x2c, 0x22, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x22,
0x2c, 0x50, 0x75, 0x72, 0x69, 0x73, 0x74, 0x20,
0x6c, 0x69, 0x67, 0x68, 0x74, 0x20, 0x61, 0x73,
0x73, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x63, 0x72 };
char peer1_37[] = {
0x61, 0x66, 0x74, 0x2c, 0x31, 0x35, 0x30, 0x2c,
0x35, 0x35, 0x2c, 0x2c, 0x31, 0x2c, 0x46, 0x49,
0x47, 0x48, 0x54, 0x45, 0x52, 0x2c, 0x32, 0x30,
0x30, 0x2c, 0x32, 0x30, 0x30, 0x2c, 0x36, 0x30,
0x2c, 0x2c, 0x30, 0x2c, 0x36, 0x35, 0x30, 0x2c,
0x31, 0x32, 0x30, 0x2c, 0x30, 0x2c, 0x2c, 0x32,
0x34, 0x30, 0x30, 0x30, 0x2c, 0x30, 0x2c, 0x30,
0x2c, 0x31, 0x2c, 0x31, 0x2c, 0x31, 0x2c, 0x30,
0x2c, 0x38, 0x30, 0x30, 0x2c, 0x56, 0x65, 0x73,
0x73, 0x65, 0x6c, 0x2c, 0x2c, 0x35, 0x30, 0x30,
0x30, 0x30, 0x2c, 0x33, 0x65, 0x2b, 0x30, 0x38,
0x2c, 0x34, 0x2c, 0x30, 0x2c, 0x2c, 0x32, 0x30,
0x30, 0x2c, 0x6e, 0x6f, 0x2d, 0x63, 0x6f, 0x63,
0x6b, 0x70, 0x69, 0x74, 0x2c, 0x30, 0x2c, 0x31,
0x2c, 0x2c, 0x22, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31,
0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x31, 0x3b, 0x22,
0x2c, 0x2c, 0x30, 0x2c, 0x35, 0x35, 0x2c, 0x30,
0x2c, 0x2c, 0x35, 0x35, 0x2c, 0x32, 0x30, 0x30,
0x2c, 0x70, 0x2c, 0x22, 0x6d, 0x75, 0x6c, 0x74,
0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d,
0x6f, 0x72, 0x65, 0x75, 0x70, 0x67, 0x72, 0x61,
0x64, 0x65, 0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x74, 0x68, 0x72, 0x75, 0x73, 0x74,
0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x68,
0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72, 0x65,
0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x3b,
0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61,
0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72, 0x65, 0x67,
0x75, 0x6e, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72,
0x67, 0x65, 0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
0x3b, 0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x68,
0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72, 0x65,
0x74, 0x75, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x3b,
0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73,
0x2f, 0x4f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69,
0x76, 0x65, 0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2f, 0x43, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x73,
0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67, 0x72, 0x61,
0x64, 0x65, 0x73, 0x2f, 0x52, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x73, 0x3a, 0x31, 0x3b, 0x75,
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73, 0x2f,
0x41, 0x72, 0x6d, 0x6f, 0x72, 0x3a, 0x31, 0x3b,
0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x73,
0x2f, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73,
0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67, 0x72, 0x61,
0x64, 0x65, 0x73, 0x2f, 0x53, 0x68, 0x69, 0x65,
0x6c, 0x64, 0x5f, 0x53, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x73, 0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2f, 0x50, 0x61,
0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x5f,
0x51, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73,
0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67, 0x72, 0x61,
0x64, 0x65, 0x73, 0x2f, 0x52, 0x65, 0x70, 0x61,
0x69, 0x72, 0x5f, 0x53, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x73, 0x3a, 0x31, 0x3b, 0x75, 0x70, 0x67,
0x72, 0x61, 0x64, 0x65, 0x73, 0x2f, 0x45, 0x43,
0x4d, 0x5f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d,
0x73, 0x3a, 0x31, 0x22, 0x2c, 0x31, 0x31, 0x35,
0x2c, 0x32, 0x2c, 0x37, 0x30, 0x30, 0x2c, 0x34,
0x30, 0x30, 0x30, 0x2c, 0x2c, 0x2c, 0x36, 0x35,
0x2c, 0x31, 0x2c, 0x30, 0x2c, 0x31, 0x2c, 0x22,
0x7b, 0x61, 0x64, 0x6d, 0x6f, 0x6e, 0x69, 0x73,
0x68, 0x65, 0x72, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x3b, 0x7d, 0x22, 0x2c, 0x2c, 0x31, 0x2c,
0x22, 0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e,
0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e,
0x62, 0x66, 0x78, 0x6d, 0x3b, 0x34, 0x2e, 0x35,
0x3b, 0x31, 0x2e, 0x38, 0x3b, 0x2d, 0x31, 0x33,
0x2e, 0x38, 0x35, 0x3b, 0x35, 0x3b, 0x3b, 0x3b,
0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65,
0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d,
0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x35,
0x2e, 0x31, 0x3b, 0x32, 0x2e, 0x37, 0x35, 0x3b,
0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35, 0x3b, 0x35,
0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73,
0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61,
0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78,
0x6d, 0x3b, 0x33, 0x2e, 0x39, 0x35, 0x3b, 0x32,
0x2e, 0x37, 0x35, 0x3b, 0x2d, 0x31, 0x33, 0x2e,
0x38, 0x35, 0x3b, 0x35, 0x3b, 0x3b, 0x3b, 0x3b,
0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65, 0x72,
0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70,
0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d, 0x34,
0x2e, 0x35, 0x3b, 0x31, 0x2e, 0x38, 0x3b, 0x2d,
0x31, 0x33, 0x2e, 0x38, 0x35, 0x3b, 0x35, 0x3b,
0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75,
0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e,
0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x2d, 0x35, 0x2e, 0x31, 0x3b, 0x32, 0x2e,
0x37, 0x35, 0x3b, 0x2d, 0x31, 0x33, 0x2e, 0x38,
0x35, 0x3b, 0x35, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b,
0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e,
0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e,
0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d, 0x33, 0x2e,
0x39, 0x35, 0x3b, 0x32, 0x2e, 0x37, 0x35, 0x3b,
0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35, 0x3b, 0x35,
0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73,
0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61,
0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78,
0x6d, 0x3b, 0x34, 0x2e, 0x35, 0x3b, 0x2e, 0x33,
0x35, 0x3b, 0x2d, 0x31, 0x33, 0x2e, 0x38, 0x35,
0x3b, 0x31, 0x32, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b,
0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e,
0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e,
0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d, 0x34, 0x2e,
0x35, 0x3b, 0x2e, 0x33, 0x35, 0x3b, 0x2d, 0x31,
0x33, 0x2e, 0x38, 0x35, 0x3b, 0x31, 0x32, 0x3b,
0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75 };
char peer1_38[] = {
0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e,
0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x36, 0x2e, 0x34, 0x35, 0x3b, 0x2d, 0x34,
0x2e, 0x38, 0x3b, 0x2d, 0x31, 0x32, 0x2e, 0x33,
0x3b, 0x34, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d,
0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e, 0x6f,
0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e, 0x62,
0x66, 0x78, 0x6d, 0x3b, 0x35, 0x2e, 0x34, 0x35,
0x3b, 0x2d, 0x34, 0x2e, 0x38, 0x3b, 0x2d, 0x31,
0x32, 0x2e, 0x33, 0x3b, 0x34, 0x3b, 0x3b, 0x3b,
0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65,
0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d,
0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d, 0x3b, 0x34,
0x2e, 0x35, 0x3b, 0x2d, 0x34, 0x2e, 0x38, 0x3b,
0x2d, 0x31, 0x32, 0x2e, 0x33, 0x3b, 0x34, 0x3b,
0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75,
0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e,
0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x2d, 0x36, 0x2e, 0x34, 0x35, 0x3b, 0x2d,
0x34, 0x2e, 0x38, 0x3b, 0x2d, 0x31, 0x32, 0x2e,
0x33, 0x3b, 0x34, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b,
0x7d, 0x7b, 0x73, 0x75, 0x70, 0x65, 0x72, 0x6e,
0x6f, 0x76, 0x61, 0x2e, 0x62, 0x6d, 0x70, 0x2e,
0x62, 0x66, 0x78, 0x6d, 0x3b, 0x2d, 0x35, 0x2e,
0x34, 0x35, 0x3b, 0x2d, 0x34, 0x2e, 0x38, 0x3b,
0x2d, 0x31, 0x32, 0x2e, 0x33, 0x3b, 0x34, 0x3b,
0x3b, 0x3b, 0x3b, 0x3b, 0x7d, 0x7b, 0x73, 0x75,
0x70, 0x65, 0x72, 0x6e, 0x6f, 0x76, 0x61, 0x2e,
0x62, 0x6d, 0x70, 0x2e, 0x62, 0x66, 0x78, 0x6d,
0x3b, 0x2d, 0x34, 0x2e, 0x35, 0x3b, 0x2d, 0x34,
0x2e, 0x38, 0x3b, 0x2d, 0x31, 0x32, 0x2e, 0x33,
0x3b, 0x34, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x7d,
0x22, 0x2c, 0x32, 0x35, 0x30, 0x2c, 0x31, 0x2c,
0x2c, 0x22, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b,
0x22, 0x2c, 0xd4, 0xd9, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xd5, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b,
0x00, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00,
0x00, 0xd6, 0x7c, 0x28, 0xdf, 0x40, 0x09, 0xb4,
0xf3, 0x3b, 0x42, 0x7c, 0xb9, 0x1a, 0x88, 0x64,
0xb5, 0x04, 0x6f, 0xc1, 0x7c, 0xbc, 0xbf, 0x90,
0x8b, 0x00, 0x6b, 0x39, 0xc2, 0xbb, 0x02, 0xbd,
0xbc, 0x00, 0x7e, 0x21, 0xbc, 0x00, 0x0a, 0x4d,
0x69, 0x6e, 0x69, 0x6e, 0x67, 0x42, 0x61, 0x73,
0x65, 0x21, 0xbc, 0x00, 0x0a, 0x4d, 0x69, 0x6e,
0x69, 0x6e, 0x67, 0x42, 0x61, 0x73, 0x65, 0x21,
0xbc, 0x00, 0x08, 0x53, 0x65, 0x72, 0x65, 0x6e,
0x69, 0x74, 0x79, 0xbb, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x04, 0x42, 0x61,
0x73, 0x65, 0x21, 0xbc, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0xd3, 0xbd, 0xbc, 0x00, 0x7e,
0xd4, 0xd9, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xd5,
0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xd6,
0x7c, 0x8d, 0xfb, 0xde, 0x2c, 0xc5, 0x33, 0x33,
0xc2, 0x7c, 0x34, 0x55, 0xe9, 0xb0, 0xf3, 0x66,
0x78, 0x42, 0x7c, 0x56, 0x8a, 0x7a, 0x9c, 0xfb,
0xd6, 0x57, 0x42, 0xd5, 0x7b, 0x00, 0x00, 0x00,
0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x00,
0x00, 0x00, 0x00, 0xd5, 0x7b, 0xb9, 0xc9, 0x08,
0x64, 0x7b, 0x39, 0xb4, 0x9d, 0xc8, 0x7b, 0xb6,
0xdf, 0x1b, 0xac, 0xbb, 0x02, 0xbd, 0xbc, 0x00,
0x78, 0x21, 0xbc, 0x00, 0x10, 0x46, 0x69, 0x67,
0x68, 0x74, 0x65, 0x72, 0x5f, 0x42, 0x61, 0x72,
0x72, 0x61, 0x63, 0x6b, 0x73, 0x21, 0xbc, 0x00,
0x10, 0x46, 0x69, 0x67, 0x68, 0x74, 0x65, 0x72,
0x5f, 0x42, 0x61, 0x72, 0x72, 0x61, 0x63, 0x6b,
0x73, 0x21, 0xbc, 0x00, 0x08, 0x41, 0x74, 0x61,
0x72, 0x61, 0x78, 0x69, 0x61, 0xbb, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x04,
0x42, 0x61, 0x73, 0x65, 0x21, 0xbc, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0xd3, 0xbd, 0xbc,
0x00, 0x78, 0xd4, 0xd9, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xd5, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b,
0x00, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00,
0x00, 0xd6, 0x7c, 0x17, 0x77, 0x1c, 0x76, 0x29,
0xe5, 0x3b, 0x42, 0x7c, 0x03, 0xb6, 0xbd, 0xf8,
0xef, 0xd3, 0x82, 0x41, 0x7c, 0x02, 0xff, 0xc8,
0x7f, 0xb0, 0x8e, 0x39, 0xc2, 0xd5, 0x7b, 0x00,
0x00, 0x00, 0x00, 0x7b, 0xba, 0x0a, 0xf2, 0x00,
0x7b, 0xba, 0x20, 0x00, 0x00, 0xd5, 0x7b, 0x39,
0xd2, 0xcf, 0x92, 0x7b, 0x39, 0x81, 0x0b, 0x1c,
0x7b, 0xb9, 0x5c, 0x07, 0x38, 0xbb, 0x02, 0xbd,
0xbc, 0x00, 0x7b, 0x21, 0xbc, 0x00, 0x05, 0x52,
0x65, 0x6c, 0x61, 0x79, 0x21, 0xbc, 0x00, 0x05,
0x52, 0x65, 0x6c, 0x61, 0x79, 0x21, 0xbc, 0x00,
0x0a, 0x50, 0x6c, 0x61, 0x69, 0x6e, 0x66, 0x69,
0x65, 0x6c, 0x64, 0xbb, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x04, 0x42, 0x61,
0x73, 0x65, 0x21, 0xbc, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0xd3, 0xbd, 0xbc, 0x00, 0x7b,
0xd4, 0xd9, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xd5,
0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xd6,
0x7c, 0x95, 0x89, 0xa8, 0xcd, 0xd5, 0x88, 0x3f,
0x42, 0x7c, 0x49, 0x46, 0x84, 0x8b, 0x4c, 0x2b,
0x23, 0x42, 0x7c, 0x86, 0xa5, 0x31, 0xd9, 0xe4,
0x07, 0x02, 0x42, 0xd5, 0x7b, 0x00, 0x00, 0x00,
0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x00,
0x00, 0x00, 0x00, 0xd5, 0x7b, 0x00, 0x00, 0x00,
0x00, 0x7b, 0x80, 0x00, 0x00, 0x00, 0x7b, 0x00,
0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00,
0x14, 0x01, 0x00, 0x7a, 0x09, 0x28, 0x94, 0x00,
0x00, 0x77, 0xe8, 0x32, 0x41, 0x00, 0x00, 0x00,
0x04, 0x00, 0x00, 0x3a, 0x0a, 0xbd, 0xbc, 0x00,
0x00, 0x00, 0x00, 0x00, 0x15, 0x01, 0x00, 0x7a,
0x09, 0x2a, 0x94, 0x00, 0x84, 0x77, 0xe8, 0x32,
0x41, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x30,
0x31, 0x7b, 0x46, 0x52, 0xf0, 0x00, 0x00, 0x00,
0x91, 0xf8, 0x01, 0x00, 0x7a, 0x09, 0x28, 0x97,
0x00, 0x00, 0x77, 0xe8, 0x32, 0x41, 0x00, 0x00,
0x91, 0xe8, 0x00, 0x00, 0x20, 0x0a, 0xbd, 0xbc,
0x00, 0x7e, 0x7b, 0x4a, 0xfb, 0x84, 0xd3, 0x7b,
0x51, 0xba, 0x43, 0xb7, 0x7b, 0x49, 0x74, 0x24,
0x00, 0xbe, 0x00, 0x00, 0x01, 0x12, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f, 0x48,
0x6f, 0x6d, 0x65, 0x5f, 0x41, 0x70, 0x70, 0x6c,
0x69, 0x61, 0x6e, 0x63, 0x65, 0x73, 0x7b, 0x42,
0x8f, 0x23, 0x12, 0x7b, 0x41, 0xa0, 0x00, 0x00,
0x7b, 0x42, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x48, 0x6f,
0x6d, 0x65, 0x5f, 0x46, 0x75, 0x72, 0x6e, 0x69,
0x73, 0x68, 0x69, 0x6e, 0x67, 0x73, 0x7b, 0x42,
0xc8, 0x22, 0xce, 0x7b, 0x41, 0xc8, 0x00, 0x00,
0x7b, 0x42, 0x96, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x12, 0x50, 0x65,
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x54,
0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74,
0x7b, 0x44, 0xa9, 0x4b, 0xe0, 0x7b, 0x42, 0x8a };
char peer1_39[] = {
0x00, 0x00, 0x7b, 0x42, 0x28, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e,
0x52, 0x6f, 0x62, 0x6f, 0x74, 0x5f, 0x53, 0x65,
0x72, 0x76, 0x61, 0x6e, 0x74, 0x73, 0x7b, 0x43,
0x9d, 0xed, 0x2c, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x08, 0x43, 0x6f,
0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x73, 0x7b, 0x42,
0x1f, 0xb5, 0xcb, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x72,
0x65, 0x6d, 0x69, 0x75, 0x6d, 0x5f, 0x50, 0x41,
0x44, 0x73, 0x7b, 0x42, 0x1f, 0xbe, 0x91, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0d, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
0x72, 0x64, 0x5f, 0x50, 0x41, 0x44, 0x73, 0x7b,
0x42, 0x1f, 0xab, 0x37, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0a, 0x42,
0x75, 0x6c, 0x6b, 0x5f, 0x53, 0x65, 0x65, 0x64,
0x73, 0x7b, 0x41, 0x9b, 0x1e, 0xca, 0x7b, 0x42,
0x70, 0x00, 0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0c, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6c, 0x6c,
0x61, 0x74, 0x6f, 0x72, 0x73, 0x7b, 0x43, 0x1a,
0x56, 0xe5, 0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b,
0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x10, 0x45, 0x6e, 0x67,
0x69, 0x6e, 0x65, 0x65, 0x72, 0x65, 0x64, 0x5f,
0x53, 0x65, 0x65, 0x64, 0x73, 0x7b, 0x41, 0x9b,
0x1d, 0x16, 0x7b, 0x42, 0x0c, 0x00, 0x00, 0x7b,
0x42, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0b, 0x48, 0x79, 0x64,
0x72, 0x6f, 0x70, 0x6f, 0x6e, 0x69, 0x63, 0x73,
0x7b, 0x42, 0xc8, 0xc1, 0x2e, 0x7b, 0x41, 0x90,
0x00, 0x00, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x13,
0x4c, 0x69, 0x76, 0x65, 0x73, 0x74, 0x6f, 0x63,
0x6b, 0x5f, 0x45, 0x71, 0x75, 0x69, 0x70, 0x6d,
0x65, 0x6e, 0x74, 0x7b, 0x42, 0xe7, 0x8f, 0x3f,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0a, 0x50, 0x65, 0x73, 0x74, 0x69,
0x63, 0x69, 0x64, 0x65, 0x73, 0x7b, 0x42, 0x9a,
0x5f, 0x4b, 0x7b, 0x41, 0xd8, 0x00, 0x00, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x14, 0x53, 0x79, 0x6e,
0x74, 0x68, 0x65, 0x74, 0x69, 0x63, 0x5f, 0x46,
0x65, 0x72, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x65,
0x72, 0x7b, 0x42, 0xd8, 0x38, 0x4e, 0x7b, 0x42,
0xa0, 0x00, 0x00, 0x7b, 0x42, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x13, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74,
0x65, 0x64, 0x5f, 0x46, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x69, 0x65, 0x73, 0x7b, 0x4b, 0xd9, 0xc3,
0xc5, 0x7b, 0x46, 0x9c, 0x40, 0x00, 0x7b, 0x46,
0x1c, 0x40, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x15, 0x43, 0x6f, 0x6e, 0x73,
0x74, 0x72, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65,
0x73, 0x7b, 0x47, 0xb9, 0xd3, 0x7b, 0x7b, 0x43,
0x96, 0x00, 0x00, 0x7b, 0x42, 0x96, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x14, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x79,
0x5f, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75,
0x63, 0x74, 0x6f, 0x72, 0x73, 0x7b, 0x47, 0xce,
0x79, 0x2b, 0x7b, 0x45, 0x7a, 0x00, 0x00, 0x7b,
0x44, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x15, 0x4c, 0x61, 0x6e,
0x64, 0x73, 0x63, 0x61, 0x70, 0x69, 0x6e, 0x67,
0x5f, 0x45, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65,
0x6e, 0x74, 0x7b, 0x46, 0x89, 0x43, 0xa4, 0x7b,
0x43, 0x7a, 0x00, 0x00, 0x7b, 0x42, 0x5c, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc,
0x00, 0x10, 0x50, 0x72, 0x65, 0x46, 0x61, 0x62,
0x5f, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x69, 0x6e,
0x67, 0x73, 0x7b, 0x45, 0x91, 0x5b, 0x7a, 0x7b,
0x43, 0x48, 0x00, 0x00, 0x7b, 0x42, 0xfa, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0f, 0x52, 0x65, 0x63, 0x79, 0x63, 0x6c,
0x69, 0x6e, 0x67, 0x5f, 0x54, 0x61, 0x6e, 0x6b,
0x73, 0x7b, 0x46, 0xce, 0x79, 0x55, 0x7b, 0x41,
0x70, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x08, 0x41, 0x49, 0x5f, 0x43, 0x6f, 0x72, 0x65,
0x73, 0x7b, 0x4b, 0x5d, 0xcc, 0x23, 0x7b, 0x41,
0x20, 0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0b, 0x50, 0x41, 0x49, 0x5f, 0x57, 0x65, 0x74,
0x77, 0x61, 0x72, 0x65, 0x7b, 0x46, 0x4e, 0x79,
0x62, 0x7b, 0x3f, 0x00, 0x00, 0x00, 0x7b, 0x3f,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0e, 0x41, 0x73, 0x73, 0x65,
0x6d, 0x62, 0x6c, 0x79, 0x5f, 0x54, 0x6f, 0x6f,
0x6c, 0x73, 0x7b, 0x42, 0xc0, 0x11, 0x1e, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0d, 0x42, 0x69, 0x6f, 0x41, 0x70, 0x70,
0x6c, 0x69, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x7b,
0x42, 0xb4, 0x66, 0x1e, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x42,
0x69, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x64, 0x65,
0x6c, 0x65, 0x72, 0x7b, 0x42, 0xc0, 0x00, 0x5e,
0x7b, 0x3f, 0x19, 0x99, 0x9a, 0x7b, 0x3f, 0x00 };
char peer1_40[] = {
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x11, 0x46, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x79, 0x5f, 0x45, 0x71, 0x75, 0x69, 0x70,
0x6d, 0x65, 0x6e, 0x74, 0x7b, 0x46, 0x16, 0x00,
0xa2, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x40,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0d, 0x52, 0x6f, 0x62, 0x6f,
0x74, 0x5f, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72,
0x73, 0x7b, 0x45, 0x35, 0x41, 0x2e, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0x7b, 0x40, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0e, 0x57, 0x65, 0x6c, 0x64, 0x69, 0x6e, 0x67,
0x5f, 0x4c, 0x61, 0x73, 0x65, 0x72, 0x73, 0x7b,
0x43, 0x34, 0x0a, 0x36, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x15, 0x41,
0x74, 0x6d, 0x6f, 0x73, 0x70, 0x68, 0x65, 0x72,
0x69, 0x63, 0x5f, 0x53, 0x63, 0x72, 0x75, 0x62,
0x62, 0x65, 0x72, 0x73, 0x7b, 0x46, 0xeb, 0x0b,
0x7d, 0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x41,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x0d, 0x42, 0x6f, 0x72, 0x69,
0x6e, 0x67, 0x5f, 0x44, 0x72, 0x6f, 0x69, 0x64,
0x73, 0x7b, 0x42, 0xc8, 0xc3, 0x39, 0x7b, 0x43,
0x16, 0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x0a, 0x45, 0x78, 0x70, 0x6c, 0x6f, 0x73, 0x69,
0x76, 0x65, 0x73, 0x7b, 0x42, 0xd3, 0xd0, 0xa3,
0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x0c, 0x48, 0x75, 0x6c, 0x6c, 0x5f,
0x50, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x7b,
0x42, 0xd3, 0xd7, 0x97, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x0c, 0x4c,
0x61, 0x73, 0x65, 0x72, 0x5f, 0x44, 0x72, 0x69,
0x6c, 0x6c, 0x73, 0x7b, 0x42, 0xd3, 0xe8, 0x64,
0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0a, 0x4c, 0x69, 0x67, 0x68, 0x74,
0x5f, 0x41, 0x6c, 0x6c, 0x73, 0x7b, 0x42, 0xc4,
0x45, 0x5d, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x13, 0x4d, 0x61, 0x74,
0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x50, 0x72,
0x6f, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x73,
0x7b, 0x47, 0x43, 0xde, 0xdb, 0x7b, 0x42, 0x20,
0x00, 0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f,
0x57, 0x61, 0x73, 0x74, 0x65, 0x5f, 0x52, 0x65,
0x63, 0x79, 0x63, 0x6c, 0x65, 0x72, 0x73, 0x7b,
0x46, 0xd0, 0xed, 0xd8, 0x7b, 0x41, 0xa0, 0x00,
0x00, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b, 0x41,
0x4d, 0x5f, 0x4d, 0x61, 0x67, 0x63, 0x65, 0x6c,
0x6c, 0x73, 0x7b, 0x42, 0x68, 0x00, 0xae, 0x7b,
0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x07, 0x42, 0x69, 0x6f, 0x63, 0x65, 0x6c,
0x6c, 0x7b, 0x42, 0x68, 0x0b, 0x48, 0x7b, 0x3f,
0x4c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x17, 0x43, 0x68, 0x69, 0x74, 0x74, 0x79, 0x2d,
0x63, 0x68, 0x69, 0x74, 0x74, 0x79, 0x2d, 0x62,
0x6f, 0x6f, 0x6d, 0x2d, 0x62, 0x6f, 0x6f, 0x6d,
0x7b, 0x42, 0x04, 0xd0, 0x03, 0x7b, 0x41, 0x20,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x09,
0x46, 0x75, 0x65, 0x6c, 0x5f, 0x43, 0x65, 0x6c,
0x6c, 0x7b, 0x42, 0x68, 0x59, 0xeb, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x10, 0x46, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
0x49, 0x6e, 0x6a, 0x65, 0x63, 0x74, 0x6f, 0x72,
0x73, 0x7b, 0x42, 0x68, 0x57, 0x6d, 0x7b, 0x41,
0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0b, 0x48, 0x2d, 0x44, 0x69, 0x73, 0x70, 0x65,
0x6e, 0x73, 0x65, 0x72, 0x7b, 0x42, 0x68, 0x27,
0x36, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0c, 0x4e, 0x75, 0x63, 0x6c,
0x65, 0x61, 0x72, 0x5f, 0x50, 0x6f, 0x64, 0x73,
0x7b, 0x42, 0x68, 0x55, 0x39, 0x7b, 0x41, 0x20,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x14,
0x52, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x64,
0x5f, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f,
0x6e, 0x69, 0x63, 0x73, 0x7b, 0x43, 0x3e, 0x16,
0x8a, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0f, 0x52, 0x65, 0x63, 0x79,
0x63, 0x6c, 0x65, 0x64, 0x5f, 0x4d, 0x65, 0x74,
0x61, 0x6c, 0x73, 0x7b, 0x42, 0x48, 0x4b, 0xa1,
0x7b, 0x43, 0xfa, 0x00, 0x00, 0x7b, 0x42, 0x48,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0c, 0x52, 0x65, 0x63, 0x79, 0x63,
0x6c, 0x65, 0x64, 0x5f, 0x4f, 0x69, 0x6c, 0x7b,
0x42, 0x70, 0x0b, 0xd9, 0x7b, 0x41, 0x20, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x11, 0x52,
0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x64, 0x5f,
0x50, 0x6c, 0x61, 0x73, 0x74, 0x69, 0x63, 0x73,
0x7b, 0x42, 0x18, 0x23, 0x0e, 0x7b, 0x41, 0x70,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x06,
0x42, 0x6f, 0x6e, 0x73, 0x61, 0x69, 0x7b, 0x43,
0x6b, 0xd3, 0x09, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x09, 0x4c, 0x69,
0x76, 0x65, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x42, 0xcf, 0x76, 0x1d, 0x7b, 0x42, 0x70, 0x00,
0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x42,
0x72, 0x61, 0x6e, 0x64, 0x79, 0x7b, 0x42, 0x8c,
0x02, 0xc3, 0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0e, 0x4d, 0x61, 0x6c,
0x74, 0x5f, 0x42, 0x65, 0x76, 0x65, 0x72, 0x61,
0x67, 0x65, 0x73, 0x7b, 0x42, 0x34, 0x11, 0x63,
0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0a, 0x53, 0x70, 0x61, 0x63, 0x65,
0x5f, 0x47, 0x72, 0x6f, 0x67, 0x7b, 0x42, 0x70,
0x6e, 0xf2, 0x7b, 0x3f, 0xe6, 0x66, 0x66, 0x7b,
0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x07, 0x53, 0x70, 0x69,
0x72, 0x69, 0x74, 0x73, 0x7b, 0x42, 0x5c, 0x53 };
char peer1_41[] = {
0x52, 0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x05, 0x57, 0x69, 0x6e, 0x65,
0x73, 0x7b, 0x42, 0xc8, 0x11, 0xef, 0x7b, 0x3f,
0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x06, 0x43, 0x6f, 0x74, 0x74, 0x6f, 0x6e, 0x7b,
0x42, 0xb9, 0x25, 0x5b, 0x7b, 0x41, 0x30, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x4c,
0x75, 0x6d, 0x62, 0x65, 0x72, 0x7b, 0x42, 0xa2,
0x2d, 0x0d, 0x7b, 0x41, 0x88, 0x00, 0x00, 0x7b,
0x41, 0xd8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x06, 0x52, 0x75, 0x62,
0x62, 0x65, 0x72, 0x7b, 0x42, 0xe7, 0x8d, 0x1d,
0x7b, 0x3f, 0xc0, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x05, 0x57, 0x61, 0x74, 0x65, 0x72,
0x7b, 0x40, 0xf9, 0xe4, 0x69, 0x7b, 0x41, 0x20,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x0c,
0x41, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x5f, 0x47,
0x61, 0x73, 0x65, 0x73, 0x7b, 0x42, 0x29, 0x6c,
0x7c, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x06,
0x21, 0xbc, 0x00, 0x11, 0x41, 0x74, 0x6d, 0x6f,
0x73, 0x70, 0x68, 0x65, 0x72, 0x69, 0x63, 0x5f,
0x47, 0x61, 0x73, 0x65, 0x73, 0x7b, 0x41, 0xfd,
0xf3, 0x8a, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0d, 0x48, 0x61, 0x6c,
0x6f, 0x67, 0x65, 0x6e, 0x5f, 0x47, 0x61, 0x73,
0x65, 0x73, 0x7b, 0x42, 0xa9, 0x30, 0xb1, 0x7b,
0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0b, 0x4e, 0x6f, 0x62, 0x6c, 0x65, 0x5f,
0x47, 0x61, 0x73, 0x65, 0x73, 0x7b, 0x42, 0x89,
0x82, 0x0d, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x06, 0x42, 0x75, 0x74,
0x61, 0x6e, 0x65, 0x7b, 0x42, 0xab, 0x70, 0x33,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x04, 0x43, 0x6f, 0x61, 0x6c, 0x7b,
0x41, 0x66, 0xf5, 0x69, 0x7b, 0x41, 0x40, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x44,
0x69, 0x65, 0x73, 0x65, 0x6c, 0x7b, 0x42, 0xba,
0x27, 0x16, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0b, 0x4e, 0x61, 0x74,
0x75, 0x72, 0x61, 0x6c, 0x5f, 0x47, 0x61, 0x73,
0x7b, 0x42, 0x83, 0x93, 0x47, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x03,
0x4f, 0x69, 0x6c, 0x7b, 0x42, 0x64, 0xdc, 0xe6,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x09, 0x50, 0x65, 0x74, 0x72, 0x6f,
0x6c, 0x65, 0x75, 0x6d, 0x7b, 0x42, 0x80, 0xb0,
0xf1, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05,
0x21, 0xbc, 0x00, 0x11, 0x43, 0x6f, 0x72, 0x75,
0x6e, 0x64, 0x75, 0x6d, 0x5f, 0x43, 0x72, 0x79,
0x73, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x44, 0x7a,
0x04, 0x96, 0x7b, 0x41, 0xf0, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x07, 0x21, 0xbc, 0x00, 0x12, 0x44, 0x69, 0x6c,
0x69, 0x74, 0x68, 0x69, 0x75, 0x6d, 0x5f, 0x43,
0x72, 0x79, 0x73, 0x74, 0x61, 0x6c, 0x73, 0x7b,
0x44, 0x6f, 0x4d, 0x18, 0x7b, 0x41, 0xa0, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x13, 0x21, 0xbc, 0x00, 0x0f, 0x51,
0x75, 0x61, 0x72, 0x74, 0x7a, 0x5f, 0x43, 0x72,
0x79, 0x73, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x44,
0x32, 0x9b, 0xb2, 0x7b, 0x41, 0xa0, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x13, 0x54, 0x72,
0x69, 0x6c, 0x69, 0x74, 0x68, 0x69, 0x75, 0x6d,
0x5f, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c,
0x73, 0x7b, 0x44, 0x8e, 0xdc, 0x11, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x20, 0x21, 0xbc, 0x00,
0x0d, 0x41, 0x6c, 0x6b, 0x61, 0x6c, 0x69, 0x5f,
0x4d, 0x65, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x42,
0x01, 0x0c, 0x01, 0x7b, 0x42, 0x82, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x37, 0x21, 0xbc, 0x00, 0x0b, 0x42, 0x61,
0x73, 0x65, 0x5f, 0x4d, 0x65, 0x74, 0x61, 0x6c,
0x73, 0x7b, 0x41, 0x7d, 0xf8, 0x05, 0x7b, 0x42,
0xb4, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00,
0x12, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x74,
0x6f, 0x6e, 0x65, 0x7b, 0x41, 0x77, 0xcd, 0xac,
0x7b, 0x42, 0xf0, 0x00, 0x00, 0x7b, 0x42, 0x48,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21,
0xbc, 0x00, 0x0c, 0x46, 0x61, 0x63, 0x69, 0x6e,
0x67, 0x5f, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x7b,
0x42, 0x9a, 0x4a, 0x53, 0x7b, 0x42, 0x48, 0x00,
0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x12, 0x4e,
0x61, 0x74, 0x75, 0x72, 0x61, 0x6c, 0x5f, 0x53,
0x63, 0x75, 0x6c, 0x70, 0x74, 0x75, 0x72, 0x65,
0x73, 0x7b, 0x43, 0x87, 0x00, 0xf1, 0x7b, 0x42,
0x82, 0x00, 0x00, 0x7b, 0x42, 0x48, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x05, 0x41, 0x63, 0x69, 0x64, 0x73, 0x7b, 0x42,
0xbc, 0xad, 0x59, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x09, 0x43, 0x61,
0x74, 0x61, 0x6c, 0x79, 0x73, 0x74, 0x73, 0x7b,
0x42, 0xbc, 0xe1, 0xab, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x0e, 0x43,
0x68, 0x65, 0x6d, 0x69, 0x63, 0x61, 0x6c, 0x5f,
0x46, 0x75, 0x65, 0x6c, 0x73, 0x7b, 0x42, 0xbc,
0xaf, 0x96, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x04, 0x21, 0xbc, 0x00, 0x0c, 0x43, 0x68, 0x65,
0x6d, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x4d, 0x69,
0x78, 0x7b, 0x42, 0xbc, 0xd6, 0xa0, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x04, 0x44, 0x79, 0x65, 0x73, 0x7b, 0x42, 0xbc,
0xe9, 0x75, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x06, 0x45, 0x73, 0x74 };
char peer1_42[] = {
0x65, 0x72, 0x73, 0x7b, 0x42, 0xbc, 0xf4, 0xa2,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x07, 0x45, 0x74, 0x68, 0x61, 0x6e,
0x6f, 0x6c, 0x7b, 0x42, 0xbc, 0xff, 0x87, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0b, 0x48, 0x65, 0x61, 0x76, 0x79, 0x5f,
0x57, 0x61, 0x74, 0x65, 0x72, 0x7b, 0x42, 0xbc,
0xd5, 0x9c, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x02, 0x21, 0xbc, 0x00, 0x0e, 0x50, 0x65, 0x74,
0x72, 0x6f, 0x63, 0x68, 0x65, 0x6d, 0x69, 0x63,
0x61, 0x6c, 0x73, 0x7b, 0x42, 0xbc, 0xca, 0x89,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0e, 0x52, 0x61, 0x72, 0x65, 0x5f,
0x43, 0x61, 0x74, 0x61, 0x6c, 0x79, 0x73, 0x74,
0x73, 0x7b, 0x43, 0x3c, 0xa0, 0x8b, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x17, 0x21, 0xbc, 0x00,
0x0f, 0x41, 0x6e, 0x74, 0x69, 0x5f, 0x43, 0x6f,
0x72, 0x72, 0x6f, 0x73, 0x69, 0x76, 0x65, 0x73,
0x7b, 0x42, 0xf7, 0x0a, 0x0b, 0x7b, 0x41, 0x90,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x15, 0x21, 0xbc, 0x00, 0x04,
0x47, 0x6f, 0x6c, 0x64, 0x7b, 0x42, 0xdb, 0xa6,
0x7b, 0x7b, 0x41, 0x98, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x1a,
0x21, 0xbc, 0x00, 0x0b, 0x52, 0x61, 0x72, 0x65,
0x5f, 0x45, 0x61, 0x72, 0x74, 0x68, 0x73, 0x7b,
0x42, 0xd6, 0x02, 0xb7, 0x7b, 0x41, 0x90, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x08, 0x44,
0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x73, 0x7b,
0x44, 0x72, 0xdf, 0x6d, 0x7b, 0x40, 0x40, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x14, 0x49,
0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61,
0x6c, 0x5f, 0x47, 0x65, 0x6d, 0x73, 0x74, 0x6f,
0x6e, 0x65, 0x73, 0x7b, 0x44, 0x89, 0x39, 0x84,
0x7b, 0x40, 0x40, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x06, 0x4a, 0x65, 0x77, 0x65, 0x6c,
0x73, 0x7b, 0x44, 0x89, 0x38, 0xd1, 0x7b, 0x40,
0x40, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x11, 0x52, 0x65, 0x69, 0x6e, 0x66, 0x6f, 0x72,
0x63, 0x65, 0x64, 0x5f, 0x52, 0x75, 0x62, 0x62,
0x65, 0x72, 0x7b, 0x44, 0x89, 0x39, 0x68, 0x7b,
0x3f, 0xd9, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc,
0x00, 0x11, 0x53, 0x6f, 0x72, 0x69, 0x72, 0x5f,
0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x74, 0x6f,
0x6e, 0x65, 0x73, 0x7b, 0x44, 0x89, 0x39, 0xf0,
0x7b, 0x3f, 0x4c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21,
0xbc, 0x00, 0x0b, 0x57, 0x6f, 0x6f, 0x64, 0x5f,
0x42, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x7b, 0x42,
0xfc, 0xc4, 0x20, 0x7b, 0x40, 0xc0, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x06, 0x52, 0x61,
0x64, 0x69, 0x75, 0x6d, 0x7b, 0x43, 0x89, 0x33,
0xbd, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x1a,
0x21, 0xbc, 0x00, 0x07, 0x54, 0x68, 0x6f, 0x72,
0x69, 0x75, 0x6d, 0x7b, 0x43, 0x4d, 0xca, 0x1c,
0x7b, 0x41, 0x30, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21,
0xbc, 0x00, 0x07, 0x55, 0x72, 0x61, 0x6e, 0x69,
0x75, 0x6d, 0x7b, 0x43, 0xb9, 0x36, 0x3a, 0x7b,
0x41, 0x98, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x05, 0x42, 0x6f, 0x6f, 0x6b, 0x73, 0x7b,
0x42, 0x53, 0xa9, 0xb6, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x07, 0x45,
0x72, 0x6f, 0x74, 0x69, 0x63, 0x61, 0x7b, 0x44,
0x2b, 0xcc, 0x8d, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x40, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x05, 0x47, 0x61,
0x6d, 0x65, 0x73, 0x7b, 0x42, 0x5c, 0x11, 0x3e,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x08, 0x48, 0x6f, 0x6c, 0x6f, 0x76,
0x69, 0x64, 0x73, 0x7b, 0x42, 0x71, 0x48, 0xfd,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x13, 0x4d, 0x75, 0x73, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x49, 0x6e, 0x73, 0x74, 0x72,
0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x7b, 0x42,
0x5b, 0xee, 0x43, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x05, 0x4d, 0x75,
0x73, 0x69, 0x6b, 0x7b, 0x42, 0x53, 0xb8, 0x73,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0e, 0x50, 0x6c, 0x65, 0x61, 0x73,
0x75, 0x72, 0x65, 0x5f, 0x42, 0x6f, 0x72, 0x67,
0x73, 0x7b, 0x44, 0x0c, 0x12, 0xa5, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0x7b, 0x40, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x13, 0x43, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61,
0x72, 0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x65,
0x72, 0x61, 0x6e, 0x74, 0x7b, 0x42, 0xb4, 0x18,
0x49, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f };
char peer1_43[] = {
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0e, 0x43, 0x72, 0x79, 0x6f,
0x67, 0x65, 0x6e, 0x69, 0x63, 0x5f, 0x50, 0x6f,
0x64, 0x73, 0x7b, 0x43, 0xfc, 0x8b, 0xa7, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x40, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc,
0x00, 0x0f, 0x44, 0x4e, 0x41, 0x5f, 0x52, 0x65,
0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
0x72, 0x7b, 0x42, 0xb4, 0x2a, 0xf9, 0x7b, 0x3e,
0x99, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0e, 0x46, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x41,
0x69, 0x64, 0x5f, 0x4b, 0x69, 0x74, 0x73, 0x7b,
0x43, 0xf0, 0x02, 0x6d, 0x7b, 0x40, 0xe0, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x0c, 0x48,
0x79, 0x70, 0x6f, 0x73, 0x79, 0x72, 0x69, 0x6e,
0x67, 0x65, 0x73, 0x7b, 0x43, 0xf0, 0x06, 0x72,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x0b, 0x4d, 0x65, 0x64, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x4b, 0x69, 0x74, 0x7b, 0x42,
0xb4, 0x00, 0x2f, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x08, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x73,
0x65, 0x75, 0x64, 0x6f, 0x74, 0x68, 0x65, 0x72,
0x6d, 0x73, 0x7b, 0x42, 0xb4, 0x23, 0xf1, 0x7b,
0x41, 0x80, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0a, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5f,
0x54, 0x61, 0x6e, 0x6b, 0x7b, 0x44, 0x39, 0x82,
0x53, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x10, 0x52, 0x6f, 0x62, 0x6f,
0x74, 0x69, 0x63, 0x5f, 0x53, 0x75, 0x72, 0x67,
0x65, 0x6f, 0x6e, 0x73, 0x7b, 0x43, 0xf0, 0x08,
0xb3, 0x7b, 0x3e, 0x99, 0x99, 0x9a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x08,
0x21, 0xbc, 0x00, 0x10, 0x44, 0x6f, 0x73, 0x74,
0x6f, 0x65, 0x76, 0x73, 0x6b, 0x79, 0x2e, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x48, 0xaf, 0xc8,
0x00, 0x7b, 0x42, 0x7c, 0x00, 0x00, 0x7b, 0x44,
0xa2, 0x80, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07,
0x21, 0xbc, 0x00, 0x0d, 0x50, 0x72, 0x6f, 0x67,
0x65, 0x6e, 0x79, 0x2e, 0x73, 0x74, 0x6f, 0x63,
0x6b, 0x7b, 0x48, 0xc3, 0x50, 0x00, 0x7b, 0x42,
0x78, 0x00, 0x00, 0x7b, 0x44, 0x96, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x12, 0x53, 0x63, 0x68, 0x72, 0x6f, 0x65, 0x64,
0x69, 0x6e, 0x67, 0x65, 0x72, 0x2e, 0x73, 0x74,
0x6f, 0x63, 0x6b, 0x7b, 0x48, 0xf9, 0x06, 0x00,
0x7b, 0x42, 0xa0, 0x00, 0x00, 0x7b, 0x44, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x11, 0x43, 0x6f, 0x6e, 0x76, 0x6f,
0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x49, 0x39, 0x8c,
0x00, 0x7b, 0x42, 0x78, 0x00, 0x00, 0x7b, 0x44,
0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x10, 0x44, 0x65, 0x72, 0x69,
0x76, 0x61, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x49, 0x43, 0x50,
0x00, 0x7b, 0x43, 0x06, 0x00, 0x00, 0x7b, 0x45,
0x28, 0xc0, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x04,
0x21, 0xbc, 0x00, 0x11, 0x44, 0x65, 0x74, 0x65,
0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x49, 0x2a,
0xe6, 0x00, 0x7b, 0x42, 0x58, 0x00, 0x00, 0x7b,
0x44, 0x89, 0x80, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0c, 0x21, 0xbc, 0x00, 0x0c, 0x48, 0x79, 0x65,
0x6e, 0x61, 0x2e, 0x68, 0x75, 0x6e, 0x74, 0x65,
0x72, 0x7b, 0x48, 0x08, 0xb8, 0x00, 0x7b, 0x42,
0x20, 0x00, 0x00, 0x7b, 0x44, 0x7a, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc, 0x00,
0x0c, 0x52, 0x6f, 0x62, 0x69, 0x6e, 0x2e, 0x68,
0x75, 0x6e, 0x74, 0x65, 0x72, 0x7b, 0x48, 0x39,
0x8c, 0x00, 0x7b, 0x42, 0x28, 0x00, 0x00, 0x7b,
0x44, 0x61, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x04, 0x21, 0xbc, 0x00, 0x0b, 0x52, 0x6f, 0x62,
0x69, 0x6e, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b,
0x7b, 0x47, 0x92, 0x7c, 0x00, 0x7b, 0x42, 0x28,
0x00, 0x00, 0x7b, 0x44, 0x61, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x0c,
0x53, 0x69, 0x63, 0x6b, 0x6c, 0x65, 0x2e, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x47, 0x88, 0xb8,
0x00, 0x7b, 0x42, 0x5c, 0x00, 0x00, 0x7b, 0x44,
0x89, 0x80, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0e, 0x56, 0x65, 0x6e, 0x64,
0x65, 0x74, 0x74, 0x61, 0x2e, 0x73, 0x74, 0x6f,
0x63, 0x6b, 0x7b, 0x4b, 0x06, 0x47, 0x00, 0x7b,
0x43, 0x66, 0x00, 0x00, 0x7b, 0x45, 0x8f, 0xc0,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc,
0x00, 0x0a, 0x44, 0x6f, 0x64, 0x6f, 0x2e, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x47, 0x92, 0x7c,
0x00, 0x7b, 0x44, 0x89, 0x00, 0x00, 0x7b, 0x46,
0xab, 0xe0, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0b, 0x4c, 0x6c, 0x61, 0x6d,
0x61, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x48, 0x2f, 0xc8, 0x00, 0x7b, 0x44, 0x7a, 0x00,
0x00, 0x7b, 0x46, 0x9c, 0x40, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x04, 0x21, 0xbc, 0x00, 0x0f, 0x50,
0x6c, 0x6f, 0x77, 0x73, 0x68, 0x61, 0x72, 0x65,
0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x48,
0x2f, 0xc8, 0x00, 0x7b, 0x44, 0x03, 0xc0, 0x00,
0x7b, 0x46, 0x1c, 0x40, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0b, 0x21, 0xbc, 0x00, 0x0e, 0x50, 0x72,
0x6f, 0x67, 0x65, 0x6e, 0x79, 0x2e, 0x72, 0x67,
0x73, 0x70, 0x65, 0x63, 0x7b, 0x49, 0x5b, 0xba,
0x00, 0x7b, 0x42, 0x7c, 0x00, 0x00, 0x7b, 0x44,
0xa2, 0x80, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x06,
0x21, 0xbc, 0x00, 0x11, 0x44, 0x6f, 0x73, 0x74,
0x6f, 0x65, 0x76, 0x73, 0x6b, 0x79, 0x2e, 0x72,
0x67, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x48, 0xdb,
0xba, 0x00, 0x7b, 0x42, 0x7c, 0x00, 0x00, 0x7b,
0x44, 0xa2, 0x80, 0x00, 0xbe, 0x00, 0x00, 0x01,
0x41, 0x21, 0xbc, 0x00, 0x10, 0x49, 0x6f, 0x6e,
0x5f, 0x42, 0x75, 0x72, 0x73, 0x74, 0x65, 0x72,
0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x40, 0x75,
0x74, 0x1b, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x11, 0x4d, 0x69, 0x63,
0x72, 0x6f, 0x5f, 0x44, 0x72, 0x69, 0x76, 0x65,
0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x43,
0x3c, 0xa6, 0x66, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x4d, 0x69,
0x6e, 0x69, 0x5f, 0x44, 0x72, 0x69, 0x76, 0x65,
0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x43,
0x0d, 0x7b, 0x2d, 0x7b, 0x41, 0x00, 0x00, 0x00 };
char peer1_44[] = {
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x0d, 0x64, 0x75,
0x6d, 0x62, 0x66, 0x69, 0x72, 0x65, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x41, 0x97, 0x09, 0xaf,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0xa0, 0x21,
0xbc, 0x00, 0x12, 0x66, 0x72, 0x69, 0x65, 0x6e,
0x64, 0x5f, 0x6f, 0x72, 0x5f, 0x66, 0x6f, 0x65,
0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x42, 0xbc,
0xaf, 0xd7, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0f, 0x68, 0x65, 0x61,
0x74, 0x73, 0x65, 0x65, 0x6b, 0x65, 0x72, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x42, 0x04, 0x2b,
0x76, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0xa7,
0x21, 0xbc, 0x00, 0x16, 0x69, 0x6d, 0x61, 0x67,
0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x67, 0x6e,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x42, 0x8d, 0x9f, 0x18, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x3e, 0x21, 0xbc,
0x00, 0x0f, 0x4a, 0x61, 0x63, 0x6b, 0x68, 0x61,
0x6d, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d,
0x6f, 0x7b, 0x42, 0x19, 0x60, 0xca, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x0b, 0x62, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x44, 0x0f, 0xa4,
0x5e, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x2c,
0x21, 0xbc, 0x00, 0x0c, 0x63, 0x6c, 0x75, 0x73,
0x74, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x45, 0x6f, 0x50, 0x43, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x10,
0x65, 0x6d, 0x70, 0x5f, 0x74, 0x6f, 0x72, 0x70,
0x65, 0x64, 0x6f, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x45, 0x95, 0x91, 0x49, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe,
0x00, 0x00, 0x00, 0x44, 0x21, 0xbc, 0x00, 0x09,
0x68, 0x61, 0x69, 0x6c, 0x5f, 0x61, 0x6d, 0x6d,
0x6f, 0x7b, 0x43, 0x2c, 0xa1, 0x93, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x0f, 0x6b, 0x69, 0x6c, 0x6c, 0x65, 0x72, 0x5f,
0x62, 0x65, 0x65, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x43, 0x23, 0x22, 0x47, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe,
0x00, 0x00, 0x00, 0x27, 0x21, 0xbc, 0x00, 0x0a,
0x6c, 0x65, 0x65, 0x63, 0x68, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x44, 0xef, 0x50, 0x75, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00 };
char peer1_45[] = {
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x0a, 0x73, 0x77, 0x61, 0x72, 0x6d, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x43, 0x19, 0x36,
0xc6, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x22,
0x21, 0xbc, 0x00, 0x14, 0x48, 0x65, 0x70, 0x68,
0x61, 0x65, 0x73, 0x74, 0x75, 0x73, 0x5f, 0x4d,
0x69, 0x6e, 0x69, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x44, 0x36, 0x29, 0x16, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe,
0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc, 0x00, 0x0e,
0x72, 0x61, 0x7a, 0x6f, 0x72, 0x5f, 0x67, 0x75,
0x6e, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x45,
0xb6, 0x26, 0x15, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x09, 0x21, 0xbc, 0x00, 0x12, 0x72, 0x65,
0x61, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x61, 0x6e,
0x6e, 0x6f, 0x6e, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x46, 0x08, 0x9b, 0x77, 0x7b, 0x40, 0xa0,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c,
0x74, 0x6f, 0x72, 0x70, 0x65, 0x64, 0x6f, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x45, 0x36, 0x25,
0x92, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x07,
0x21, 0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f,
0x72, 0x30, 0x31, 0x7b, 0x45, 0x6b, 0xb7, 0x2e,
0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b, 0x00, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0d, 0x21,
0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72,
0x30, 0x32, 0x7b, 0x45, 0xeb, 0xb7, 0x5d, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc,
0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30,
0x33, 0x7b, 0x46, 0x6b, 0xb7, 0x2d, 0x7b, 0x41,
0xf0, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00,
0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30, 0x34,
0x7b, 0x46, 0xeb, 0xb6, 0xe6, 0x7b, 0x41, 0xc8,
0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x07, 0x21, 0xbc, 0x00, 0x07,
0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30, 0x35, 0x7b,
0x47, 0x6b, 0xb6, 0xf1, 0x7b, 0x41, 0xa0, 0x00,
0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x07, 0x61,
0x72, 0x6d, 0x6f, 0x72, 0x30, 0x36, 0x7b, 0x47,
0xeb, 0xb6, 0xe5, 0x7b, 0x41, 0x70, 0x00, 0x00,
0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x31, 0x7b, 0x43, 0xeb, 0xc5, 0x30, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x40, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x30, 0x32, 0x7b, 0x44, 0x6b, 0xb9,
0x4e, 0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x40,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0d,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b,
0x44, 0xeb, 0xb9, 0x77, 0x7b, 0x40, 0xc0, 0x00,
0x00, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x07, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x30, 0x34, 0x7b, 0x45, 0x6b, 0xb7, 0x93, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x35, 0x7b, 0x45, 0xeb,
0xb7, 0x77, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0b, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x36,
0x7b, 0x46, 0x6b, 0xb7, 0x4c, 0x7b, 0x41, 0x40,
0x00, 0x00, 0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x30, 0x37, 0x7b, 0x46, 0xeb, 0xb6, 0xeb,
0x7b, 0x41, 0x60, 0x00, 0x00, 0x7b, 0x41, 0x60,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0d, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x38, 0x7b, 0x47,
0x6b, 0xb6, 0xf8, 0x7b, 0x41, 0x80, 0x00, 0x00,
0x7b, 0x41, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x08, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x39, 0x7b, 0x47, 0xeb, 0xb6, 0xdd, 0x7b, 0x41,
0x90, 0x00, 0x00, 0x7b, 0x41, 0x90, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x07, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x31, 0x30, 0x7b, 0x48, 0x6b, 0xb6,
0xdf, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x31, 0x31, 0x7b,
0x48, 0xeb, 0xb6, 0xdb, 0x7b, 0x41, 0xb0, 0x00,
0x00, 0x7b, 0x41, 0xb0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x06, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x31, 0x32, 0x7b, 0x49, 0x6b, 0xb6, 0xdd, 0x7b,
0x41, 0xc0, 0x00, 0x00, 0x7b, 0x41, 0xc0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0c, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x31, 0x33, 0x7b, 0x49, 0xeb,
0xb6, 0xdc, 0x7b, 0x41, 0xd0, 0x00, 0x00, 0x7b,
0x41, 0xd0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x07, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x31, 0x34,
0x7b, 0x4a, 0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0xe0,
0x00, 0x00, 0x7b, 0x41, 0xe0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x31, 0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb,
0x7b, 0x41, 0xf0, 0x00, 0x00, 0x7b, 0x41, 0xf0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x13, 0x61, 0x64, 0x64, 0x5f, 0x63,
0x61, 0x72, 0x67, 0x6f, 0x5f, 0x65, 0x78, 0x70,
0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x7b, 0x46,
0x6b, 0xb7, 0x46, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x41, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x0d, 0x65, 0x63,
0x6d, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67,
0x65, 0x30, 0x31, 0x7b, 0x45, 0x93, 0x53, 0x0d,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0d, 0x65, 0x63, 0x6d, 0x5f, 0x70,
0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x30, 0x32,
0x7b, 0x46, 0x5c, 0xfb, 0xa7, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe };
char peer1_46[] = {
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d,
0x65, 0x63, 0x6d, 0x5f, 0x70, 0x61, 0x63, 0x6b,
0x61, 0x67, 0x65, 0x30, 0x33, 0x7b, 0x46, 0x5c,
0xfb, 0xa9, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x09, 0x21, 0xbc, 0x00, 0x0a, 0x6a, 0x75, 0x6d,
0x70, 0x5f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x7b,
0x45, 0xeb, 0xb7, 0x8e, 0x7b, 0x41, 0x80, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x31, 0x7b,
0x45, 0x6b, 0xb7, 0xa5, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x08, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x32, 0x7b,
0x45, 0xeb, 0xb6, 0xfe, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x08, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x33, 0x7b,
0x46, 0x6b, 0xb7, 0x18, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x34, 0x7b,
0x46, 0xeb, 0xb7, 0x16, 0x7b, 0x41, 0x00, 0x00,
0x00, 0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x35, 0x7b,
0x47, 0x6b, 0xb6, 0xe6, 0x7b, 0x41, 0x40, 0x00,
0x00, 0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x36, 0x7b,
0x47, 0xeb, 0xb6, 0xe8, 0x7b, 0x41, 0x90, 0x00,
0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x15, 0x70,
0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72,
0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72,
0x73, 0x5f, 0x30, 0x31, 0x7b, 0x46, 0x13, 0x52,
0x94, 0x7b, 0x3f, 0x00, 0x00, 0x00, 0x7b, 0x40,
0x40, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05,
0x21, 0xbc, 0x00, 0x15, 0x70, 0x61, 0x73, 0x73,
0x65, 0x6e, 0x67, 0x65, 0x72, 0x5f, 0x71, 0x75,
0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x5f, 0x30,
0x32, 0x7b, 0x46, 0x5c, 0xfb, 0x7a, 0x7b, 0x3f,
0x4c, 0xcc, 0xcd, 0x7b, 0x41, 0xa8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x15, 0x70, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67,
0x65, 0x72, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74 };
char peer1_47[] = {
0x65, 0x72, 0x73, 0x5f, 0x30, 0x33, 0x7b, 0x46,
0x93, 0x52, 0x6e, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x15, 0x70, 0x61,
0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x5f,
0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73,
0x5f, 0x30, 0x34, 0x7b, 0x46, 0xb8, 0x26, 0xf0,
0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x30, 0x31, 0x7b, 0x43, 0xeb, 0xc3,
0x6f, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x30, 0x32, 0x7b, 0x44, 0x6b,
0xb7, 0xfd, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b,
0x40, 0x60, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0c, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x44,
0xeb, 0xb8, 0xc1, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x40, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x34, 0x7b,
0x45, 0x6b, 0xb7, 0x4f, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x41, 0x30, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x35,
0x7b, 0x45, 0xeb, 0xb7, 0x56, 0x7b, 0x40, 0xa0,
0x00, 0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30,
0x36, 0x7b, 0x46, 0x6b, 0xb6, 0xf2, 0x7b, 0x40,
0xc0, 0x00, 0x00, 0x7b, 0x42, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x30, 0x37, 0x7b, 0x46, 0xeb, 0xb7, 0x06, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x42, 0x70, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc,
0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x30, 0x38, 0x7b, 0x47, 0x6b, 0xb6, 0xee,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x42, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x30, 0x39, 0x7b, 0x47, 0xeb, 0xb6,
0xe2, 0x7b, 0x41, 0x10, 0x00, 0x00, 0x7b, 0x43,
0x2f, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0c,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x31, 0x30, 0x7b, 0x48, 0x6b,
0xb6, 0xe2, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b,
0x43, 0x9b, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0d, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x31, 0x31, 0x7b, 0x48,
0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x44, 0x07, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x31, 0x32, 0x7b,
0x49, 0x6b, 0xb6, 0xdc, 0x7b, 0x41, 0x60, 0x00,
0x00, 0x7b, 0x44, 0x6d, 0x80, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31, 0x33,
0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0x80,
0x00, 0x00, 0x7b, 0x44, 0xce, 0x40, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31,
0x34, 0x7b, 0x4a, 0x6b, 0xb6, 0xdc, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x45, 0x34, 0xa0, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x31, 0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0xc0, 0x00, 0x00, 0x7b, 0x45, 0x9d, 0xd0,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x0e, 0x72, 0x65, 0x70, 0x61, 0x69, 0x72,
0x5f, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x30, 0x31,
0x7b, 0x46, 0xeb, 0xb6, 0xf1, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x0e,
0x72, 0x65, 0x70, 0x61, 0x69, 0x72, 0x5f, 0x64,
0x72, 0x6f, 0x69, 0x64, 0x30, 0x32, 0x7b, 0x47,
0x6b, 0xb6, 0xed, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x0e, 0x72, 0x65,
0x70, 0x61, 0x69, 0x72, 0x5f, 0x64, 0x72, 0x6f,
0x69, 0x64, 0x30, 0x33, 0x7b, 0x47, 0xeb, 0xb6,
0xe3, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x41,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x0e, 0x72, 0x65, 0x70, 0x61,
0x69, 0x72, 0x5f, 0x64, 0x72, 0x6f, 0x69, 0x64,
0x30, 0x34, 0x7b, 0x48, 0x6b, 0xb6, 0xdd, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x41, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0e, 0x72, 0x65, 0x70, 0x61, 0x69, 0x72,
0x5f, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x30, 0x35,
0x7b, 0x48, 0xeb, 0xb6, 0xdc, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x42, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x08, 0x21, 0xbc, 0x00, 0x08,
0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65, 0x31,
0x7b, 0x46, 0xeb, 0xb7, 0x09, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x41, 0x50, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x08,
0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65, 0x32,
0x7b, 0x47, 0x6b, 0xb6, 0xee, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x41, 0x88, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x08,
0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65, 0x33,
0x7b, 0x47, 0xeb, 0xb6, 0xe5, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x08,
0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65, 0x34,
0x7b, 0x48, 0x13, 0x52, 0x4f, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x09,
0x73, 0x6b, 0x79, 0x73, 0x63, 0x6f, 0x70, 0x65,
0x31, 0x7b, 0x43, 0xeb, 0xc4, 0xb6, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x09, 0x73, 0x6b, 0x79, 0x73, 0x63, 0x6f, 0x70,
0x65, 0x32, 0x7b, 0x44, 0x6b, 0xbd, 0xa9, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x09, 0x73, 0x6b, 0x79, 0x73, 0x63, 0x6f,
0x70, 0x65, 0x33, 0x7b, 0x44, 0xeb, 0xb8, 0x01,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40, 0x40,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x73,
0x63, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x7b,
0x45, 0x6b, 0xb8, 0xa3, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x07, 0x21, 0xbc, 0x00, 0x0c, 0x73 };
char peer1_48[] = {
0x74, 0x61, 0x72, 0x73, 0x63, 0x61, 0x6e, 0x6e,
0x65, 0x72, 0x32, 0x7b, 0x45, 0xeb, 0xb7, 0x45,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40, 0xe0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x73,
0x63, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x33, 0x7b,
0x46, 0x6b, 0xb7, 0x24, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x41, 0x10, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x73,
0x74, 0x61, 0x72, 0x73, 0x63, 0x61, 0x6e, 0x6e,
0x65, 0x72, 0x34, 0x7b, 0x46, 0xb0, 0xc9, 0x35,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x41, 0x10,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x1a, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x67, 0x75, 0x6e, 0x72, 0x65, 0x63,
0x68, 0x61, 0x72, 0x67, 0x65, 0x7b, 0x48, 0x6b,
0xb6, 0xdd, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0x7b,
0x3e, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x1d, 0x6d, 0x75, 0x6c,
0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f,
0x6d, 0x6f, 0x72, 0x65, 0x73, 0x68, 0x69, 0x65,
0x6c, 0x64, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72,
0x67, 0x65, 0x7b, 0x48, 0xeb, 0xb6, 0xdd, 0x7b,
0x3f, 0x8c, 0xcc, 0xcd, 0x7b, 0x40, 0xa0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x16, 0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73,
0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72,
0x65, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x73,
0x7b, 0x47, 0xeb, 0xb6, 0xea, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x15,
0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61,
0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72, 0x65, 0x74,
0x68, 0x72, 0x75, 0x73, 0x74, 0x7b, 0x47, 0x6b,
0xb6, 0xeb, 0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b,
0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x16, 0x6d, 0x75, 0x6c,
0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f,
0x6d, 0x6f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
0x69, 0x6e, 0x67, 0x7b, 0x49, 0x6b, 0xb6, 0xdc,
0x7b, 0x40, 0x6c, 0xcc, 0xcd, 0x7b, 0x41, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x16, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64,
0x65, 0x7b, 0x46, 0xeb, 0xb6, 0xf5, 0x7b, 0x41,
0x20, 0x00, 0x00, 0x7b, 0x42, 0x48, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x31, 0x7b, 0x43, 0x6b,
0xd0, 0x2b, 0x7b, 0x3f, 0x00, 0x00, 0x00, 0x7b,
0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00 };
char peer1_49[] = {
0x10, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x32, 0x7b, 0x43, 0xeb, 0xbb, 0x9e, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x16, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x33, 0x7b, 0x44, 0x6b,
0xb8, 0x5a, 0x7b, 0x3f, 0xc0, 0x00, 0x00, 0x7b,
0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x11, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x34, 0x7b, 0x44, 0xeb, 0xb7, 0xd1, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x41, 0x40, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x10, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x35, 0x7b, 0x45, 0x6b,
0xb7, 0x9c, 0x7b, 0x40, 0x20, 0x00, 0x00, 0x7b,
0x41, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x15, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x36, 0x7b, 0x45, 0xeb, 0xb7, 0x1b, 0x7b, 0x40,
0x40, 0x00, 0x00, 0x7b, 0x41, 0xa8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x13, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x37, 0x7b, 0x46, 0x6b,
0xb6, 0xf6, 0x7b, 0x40, 0x60, 0x00, 0x00, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x16, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x38, 0x7b, 0x46, 0xeb, 0xb6, 0xef, 0x7b, 0x40,
0x80, 0x00, 0x00, 0x7b, 0x41, 0xf0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x18, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x39, 0x7b, 0x47, 0x6b,
0xb6, 0xdf, 0x7b, 0x40, 0x90, 0x00, 0x00, 0x7b,
0x42, 0x0c, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x15, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x31,
0x30, 0x7b, 0x47, 0xeb, 0xb6, 0xe8, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0x7b, 0x42, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x13, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x31, 0x31, 0x7b, 0x48, 0x6b,
0xb6, 0xdf, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b,
0x42, 0x38, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x12, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x31,
0x32, 0x7b, 0x48, 0xeb, 0xb6, 0xdc, 0x7b, 0x40,
0xe0, 0x00, 0x00, 0x7b, 0x42, 0x50, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x13, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x31, 0x33, 0x7b, 0x49, 0x6b,
0xb6, 0xdb, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b,
0x42, 0x64, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0b, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75, 0x61,
0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x31,
0x34, 0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b, 0x41,
0x10, 0x00, 0x00, 0x7b, 0x42, 0x7c, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x31, 0x35, 0x7b, 0x4a, 0x6b,
0xb6, 0xdb, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b,
0x42, 0x8c, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x19, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x31, 0x7b, 0x43, 0xeb, 0xbd, 0x6e, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x40, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x19, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x32, 0x7b, 0x44, 0x6b,
0xb7, 0x6b, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b,
0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x17, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x33, 0x7b, 0x44, 0xeb, 0xb8, 0xfb, 0x7b, 0x40,
0x40, 0x00, 0x00, 0x7b, 0x41, 0x50, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x12, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x34, 0x7b, 0x45, 0x6b,
0xb6, 0xf1, 0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b,
0x41, 0x90, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x18, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x35, 0x7b, 0x45, 0xeb, 0xb7, 0x3d, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0x7b, 0x41, 0xc0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x36, 0x7b, 0x46, 0x6b,
0xb7, 0x0d, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b,
0x41, 0xf8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x16, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x37, 0x7b, 0x46, 0xeb, 0xb7, 0x0d, 0x7b, 0x40,
0xe0, 0x00, 0x00, 0x7b, 0x42, 0x18, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x16, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x30, 0x38, 0x7b, 0x47, 0x6b,
0xb6, 0xe7, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b,
0x42, 0x34, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x10, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x30,
0x39, 0x7b, 0x47, 0xeb, 0xb6, 0xe3, 0x7b, 0x41,
0x10, 0x00, 0x00, 0x7b, 0x42, 0x54, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x15, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x31, 0x30, 0x7b, 0x48, 0x6b,
0xb6, 0xe1, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b,
0x42, 0x74, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x12, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x31,
0x31, 0x7b, 0x48, 0xeb, 0xb6, 0xdf, 0x7b, 0x41,
0x30, 0x00, 0x00, 0x7b, 0x42, 0x8a, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x11, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x31, 0x32, 0x7b, 0x49, 0x6b,
0xb6, 0xdd, 0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b,
0x42, 0x9c, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x10, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x31,
0x33, 0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b, 0x41,
0x50, 0x00, 0x00, 0x7b, 0x42, 0xac, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc, 0x00,
0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x31, 0x34, 0x7b, 0x4a, 0x6b,
0xb6, 0xdc, 0x7b, 0x41, 0x60, 0x00, 0x00, 0x7b,
0x42, 0xbe, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x03, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75, 0x61,
0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x31 };
char peer1_50[] = {
0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b, 0x41,
0x70, 0x00, 0x00, 0x7b, 0x42, 0xd0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc, 0x00,
0x14, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x65,
0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x31, 0x7b, 0x45, 0xb0,
0xc9, 0x54, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b,
0x40, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x07, 0x21, 0xbc, 0x00, 0x14, 0x61, 0x64, 0x64,
0x5f, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x32, 0x7b, 0x46, 0x30, 0xc9, 0x8a, 0x7b, 0x41,
0x20, 0x00, 0x00, 0x7b, 0x41, 0x40, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00,
0x14, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x65,
0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x46, 0xb0,
0xc9, 0x3b, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b,
0x41, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x03, 0x21, 0xbc, 0x00, 0x14, 0x61, 0x64, 0x64,
0x5f, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x34, 0x7b, 0x47, 0x30, 0xc9, 0x35, 0x7b, 0x42,
0x20, 0x00, 0x00, 0x7b, 0x42, 0x10, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x14, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70, 0x65,
0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x35, 0x7b, 0x47, 0xb0,
0xc9, 0x29, 0x7b, 0x42, 0x70, 0x00, 0x00, 0x7b,
0x42, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x06, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x6c, 0x61,
0x73, 0x6d, 0x61, 0x5f, 0x50, 0x6c, 0x75, 0x6d,
0x65, 0x7b, 0x43, 0xeb, 0xc4, 0x01, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0d, 0x72, 0x65, 0x70, 0x75, 0x6c, 0x73, 0x6f,
0x72, 0x5f, 0x62, 0x65, 0x61, 0x6d, 0x7b, 0x47,
0x38, 0x26, 0xef, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x74, 0x72,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x62, 0x65,
0x61, 0x6d, 0x7b, 0x45, 0xdc, 0xfb, 0xc1, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x0a, 0x41, 0x72, 0x63, 0x5f, 0x44, 0x65,
0x76, 0x69, 0x63, 0x65, 0x7b, 0x45, 0xb0, 0xc9,
0xfa, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0e, 0x44, 0x69, 0x73, 0x72,
0x75, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x42, 0x65,
0x61, 0x6d, 0x7b, 0x47, 0x25, 0xbc, 0xa4, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc };
char peer1_51[] = {
0x00, 0x0d, 0x46, 0x53, 0x5f, 0x4d, 0x57, 0x52,
0x46, 0x5f, 0x4c, 0x61, 0x73, 0x65, 0x72, 0x7b,
0x46, 0x93, 0x52, 0x55, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x08, 0x49,
0x6f, 0x6e, 0x5f, 0x42, 0x65, 0x61, 0x6d, 0x7b,
0x46, 0x6b, 0xb7, 0x46, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d, 0x50,
0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x5f,
0x42, 0x65, 0x61, 0x6d, 0x7b, 0x45, 0xdc, 0xfc,
0x0c, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x0c, 0x61, 0x75, 0x74, 0x6f,
0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
0x7b, 0x47, 0xb8, 0x26, 0xe5, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x12,
0x74, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f,
0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69,
0x74, 0x79, 0x7b, 0x47, 0x38, 0x26, 0xf3, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc,
0x00, 0x0b, 0x49, 0x6f, 0x6e, 0x5f, 0x42, 0x75,
0x72, 0x73, 0x74, 0x65, 0x72, 0x7b, 0x45, 0xce,
0x40, 0x6a, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x0c, 0x4d, 0x69, 0x63,
0x72, 0x6f, 0x5f, 0x44, 0x72, 0x69, 0x76, 0x65,
0x72, 0x7b, 0x46, 0x13, 0x52, 0x7b, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x08, 0x50, 0x75, 0x67, 0x69, 0x6c, 0x69, 0x73,
0x74, 0x7b, 0x47, 0x8a, 0x1d, 0x29, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00,
0x05, 0x6c, 0x61, 0x73, 0x65, 0x72, 0x7b, 0x45,
0x4e, 0x41, 0x66, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x09, 0x44, 0x69,
0x73, 0x72, 0x75, 0x70, 0x74, 0x6f, 0x72, 0x7b,
0x47, 0x5c, 0xfb, 0x76, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0b, 0x4d,
0x69, 0x6e, 0x69, 0x5f, 0x44, 0x72, 0x69, 0x76,
0x65, 0x72, 0x7b, 0x46, 0x5c, 0xfb, 0xcd, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbd, 0xbc, 0x00, 0x78, 0x7b, 0x4d, 0xb1,
0xb1, 0x3b, 0x7b, 0x51, 0xba, 0x43, 0xb7, 0x7b,
0x49, 0x74, 0x24, 0x00, 0xbe, 0x00, 0x00, 0x00,
0xe6, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0f, 0x48, 0x6f, 0x6d, 0x65, 0x5f, 0x41,
0x70, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65,
0x73, 0x7b, 0x42, 0x8f, 0x30, 0xe3, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x42, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x10, 0x48, 0x6f, 0x6d, 0x65, 0x5f, 0x46, 0x75,
0x72, 0x6e, 0x69, 0x73, 0x68, 0x69, 0x6e, 0x67,
0x73, 0x7b, 0x42, 0xc8, 0x55, 0xaf, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0x7b, 0x42, 0x96, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x12, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
0x6c, 0x5f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70,
0x6f, 0x72, 0x74, 0x7b, 0x44, 0xa9, 0x4d, 0xaf,
0x7b, 0x42, 0x8a, 0x00, 0x00, 0x7b, 0x42, 0x28,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0e, 0x52, 0x6f, 0x62, 0x6f, 0x74,
0x5f, 0x53, 0x65, 0x72, 0x76, 0x61, 0x6e, 0x74,
0x73, 0x7b, 0x43, 0x9d, 0xe5, 0xd1, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0x7b, 0x40, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x08, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
0x73, 0x7b, 0x42, 0x1f, 0xa9, 0xfd, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0c, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d,
0x5f, 0x50, 0x41, 0x44, 0x73, 0x7b, 0x42, 0x1f,
0x94, 0xf8, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0d, 0x53, 0x74, 0x61,
0x6e, 0x64, 0x61, 0x72, 0x64, 0x5f, 0x50, 0x41,
0x44, 0x73, 0x7b, 0x42, 0x1f, 0xcf, 0x53, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0a, 0x42, 0x75, 0x6c, 0x6b, 0x5f, 0x53,
0x65, 0x65, 0x64, 0x73, 0x7b, 0x41, 0x9a, 0xd8,
0x58, 0x7b, 0x42, 0x70, 0x00, 0x00, 0x7b, 0x42,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0c, 0x44, 0x69, 0x73, 0x74,
0x69, 0x6c, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x73,
0x7b, 0x43, 0x1a, 0x57, 0xea, 0x7b, 0x41, 0x40,
0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10,
0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x65, 0x72,
0x65, 0x64, 0x5f, 0x53, 0x65, 0x65, 0x64, 0x73,
0x7b, 0x41, 0x9a, 0x7f, 0x9e, 0x7b, 0x42, 0x0c,
0x00, 0x00, 0x7b, 0x42, 0x48, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b,
0x48, 0x79, 0x64, 0x72, 0x6f, 0x70, 0x6f, 0x6e,
0x69, 0x63, 0x73, 0x7b, 0x42, 0xc8, 0xcb, 0x81,
0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x41, 0xa0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x13, 0x4c, 0x69, 0x76, 0x65, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x5f, 0x45, 0x71, 0x75,
0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x7b, 0x42,
0xe7, 0x9c, 0x57, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0a, 0x50, 0x65,
0x73, 0x74, 0x69, 0x63, 0x69, 0x64, 0x65, 0x73,
0x7b, 0x42, 0x9a, 0x76, 0xfc, 0x7b, 0x41, 0xd8,
0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x14,
0x53, 0x79, 0x6e, 0x74, 0x68, 0x65, 0x74, 0x69,
0x63, 0x5f, 0x46, 0x65, 0x72, 0x74, 0x69, 0x6c,
0x69, 0x7a, 0x65, 0x72, 0x7b, 0x42, 0xd8, 0x3a,
0x70, 0x7b, 0x42, 0xa0, 0x00, 0x00, 0x7b, 0x42,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x13, 0x41, 0x75, 0x74, 0x6f,
0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x46, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x7b,
0x4b, 0xd9, 0xc3, 0xc5, 0x7b, 0x46, 0x9c, 0x40,
0x00, 0x7b, 0x46, 0x1c, 0x40, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x15, 0x43,
0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x56, 0x65, 0x68, 0x69,
0x63, 0x6c, 0x65, 0x73, 0x7b, 0x47, 0xb9, 0xd3,
0x70, 0x7b, 0x43, 0x96, 0x00, 0x00, 0x7b, 0x42,
0x96, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00 };
char peer1_52[] = {
0x21, 0xbc, 0x00, 0x14, 0x46, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x5f, 0x43, 0x6f, 0x6e, 0x73,
0x74, 0x72, 0x75, 0x63, 0x74, 0x6f, 0x72, 0x73,
0x7b, 0x47, 0xce, 0x79, 0x29, 0x7b, 0x45, 0x7a,
0x00, 0x00, 0x7b, 0x44, 0x48, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x15,
0x4c, 0x61, 0x6e, 0x64, 0x73, 0x63, 0x61, 0x70,
0x69, 0x6e, 0x67, 0x5f, 0x45, 0x71, 0x75, 0x69,
0x70, 0x6d, 0x65, 0x6e, 0x74, 0x7b, 0x46, 0x89,
0x43, 0x8b, 0x7b, 0x43, 0x7a, 0x00, 0x00, 0x7b,
0x42, 0x5c, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x02, 0x21, 0xbc, 0x00, 0x10, 0x50, 0x72, 0x65,
0x46, 0x61, 0x62, 0x5f, 0x42, 0x75, 0x69, 0x6c,
0x64, 0x69, 0x6e, 0x67, 0x73, 0x7b, 0x45, 0x91,
0x5c, 0x54, 0x7b, 0x43, 0x48, 0x00, 0x00, 0x7b,
0x42, 0xfa, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x02, 0x21, 0xbc, 0x00, 0x0f, 0x52, 0x65, 0x63,
0x79, 0x63, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x54,
0x61, 0x6e, 0x6b, 0x73, 0x7b, 0x46, 0xce, 0x79,
0x45, 0x7b, 0x41, 0x70, 0x00, 0x00, 0x7b, 0x41,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x08, 0x41, 0x49, 0x5f, 0x43,
0x6f, 0x72, 0x65, 0x73, 0x7b, 0x4b, 0x5d, 0xcc,
0x23, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0b, 0x50, 0x41, 0x49, 0x5f,
0x57, 0x65, 0x74, 0x77, 0x61, 0x72, 0x65, 0x7b,
0x46, 0x4e, 0x79, 0x90, 0x7b, 0x3f, 0x00, 0x00,
0x00, 0x7b, 0x3f, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e, 0x41,
0x73, 0x73, 0x65, 0x6d, 0x62, 0x6c, 0x79, 0x5f,
0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x7b, 0x42, 0xc0,
0x4b, 0x2f, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0d, 0x42, 0x69, 0x6f,
0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
0x6f, 0x72, 0x7b, 0x42, 0xb4, 0x05, 0x9f, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0c, 0x42, 0x69, 0x6f, 0x52, 0x65, 0x6d,
0x6f, 0x64, 0x65, 0x6c, 0x65, 0x72, 0x7b, 0x42,
0xc0, 0x0c, 0x0f, 0x7b, 0x3f, 0x19, 0x99, 0x9a,
0x7b, 0x3f, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x11, 0x46, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x45, 0x71,
0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x7b,
0x46, 0x16, 0x00, 0x2e, 0x7b, 0x41, 0x20, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d, 0x52,
0x6f, 0x62, 0x6f, 0x74, 0x5f, 0x57, 0x6f, 0x72,
0x6b, 0x65, 0x72, 0x73, 0x7b, 0x45, 0x35, 0x41,
0x35, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0x7b, 0x40,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0e, 0x57, 0x65, 0x6c, 0x64,
0x69, 0x6e, 0x67, 0x5f, 0x4c, 0x61, 0x73, 0x65,
0x72, 0x73, 0x7b, 0x43, 0x34, 0x1d, 0x06, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x15, 0x41, 0x74, 0x6d, 0x6f, 0x73, 0x70,
0x68, 0x65, 0x72, 0x69, 0x63, 0x5f, 0x53, 0x63,
0x72, 0x75, 0x62, 0x62, 0x65, 0x72, 0x73, 0x7b,
0x46, 0xeb, 0x0b, 0x94, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d, 0x42,
0x6f, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x44, 0x72,
0x6f, 0x69, 0x64, 0x73, 0x7b, 0x42, 0xc8, 0x93,
0x17, 0x7b, 0x43, 0x16, 0x00, 0x00, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0a, 0x45, 0x78, 0x70, 0x6c,
0x6f, 0x73, 0x69, 0x76, 0x65, 0x73, 0x7b, 0x42,
0xd3, 0xc5, 0x35, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x0c, 0x48, 0x75,
0x6c, 0x6c, 0x5f, 0x50, 0x61, 0x74, 0x63, 0x68,
0x65, 0x73, 0x7b, 0x42, 0xd3, 0xee, 0xb8, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0c, 0x4c, 0x61, 0x73, 0x65, 0x72, 0x5f,
0x44, 0x72, 0x69, 0x6c, 0x6c, 0x73, 0x7b, 0x42,
0xd3, 0xee, 0x79, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0a, 0x4c, 0x69,
0x67, 0x68, 0x74, 0x5f, 0x41, 0x6c, 0x6c, 0x73,
0x7b, 0x42, 0xc4, 0x33, 0xe7, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x13,
0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
0x5f, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
0x6f, 0x72, 0x73, 0x7b, 0x47, 0x43, 0xde, 0xe5,
0x7b, 0x42, 0x20, 0x00, 0x00, 0x7b, 0x42, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0f, 0x57, 0x61, 0x73, 0x74, 0x65,
0x5f, 0x52, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65,
0x72, 0x73, 0x7b, 0x46, 0xd0, 0xed, 0xcf, 0x7b,
0x41, 0xa0, 0x00, 0x00, 0x7b, 0x41, 0xa0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0b, 0x41, 0x4d, 0x5f, 0x4d, 0x61, 0x67,
0x63, 0x65, 0x6c, 0x6c, 0x73, 0x7b, 0x42, 0x68,
0x60, 0x2e, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x07, 0x42, 0x69, 0x6f,
0x63, 0x65, 0x6c, 0x6c, 0x7b, 0x42, 0x68, 0x5f,
0xc6, 0x7b, 0x3f, 0x4c, 0xcc, 0xcd, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x17, 0x43, 0x68, 0x69, 0x74,
0x74, 0x79, 0x2d, 0x63, 0x68, 0x69, 0x74, 0x74,
0x79, 0x2d, 0x62, 0x6f, 0x6f, 0x6d, 0x2d, 0x62,
0x6f, 0x6f, 0x6d, 0x7b, 0x42, 0x04, 0xf8, 0x52,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x09, 0x46, 0x75, 0x65, 0x6c, 0x5f,
0x43, 0x65, 0x6c, 0x6c, 0x7b, 0x42, 0x68, 0x47,
0x90, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x10, 0x46, 0x75, 0x73, 0x69,
0x6f, 0x6e, 0x5f, 0x49, 0x6e, 0x6a, 0x65, 0x63,
0x74, 0x6f, 0x72, 0x73, 0x7b, 0x42, 0x68, 0x11,
0x38, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0b, 0x48, 0x2d, 0x44, 0x69,
0x73, 0x70, 0x65, 0x6e, 0x73, 0x65, 0x72, 0x7b,
0x42, 0x68, 0x06, 0x85, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x4e,
0x75, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x50,
0x6f, 0x64, 0x73, 0x7b, 0x42, 0x68, 0x5e, 0x0f,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21 };
char peer1_53[] = {
0xbc, 0x00, 0x14, 0x52, 0x65, 0x63, 0x79, 0x63,
0x6c, 0x65, 0x64, 0x5f, 0x45, 0x6c, 0x65, 0x63,
0x74, 0x72, 0x6f, 0x6e, 0x69, 0x63, 0x73, 0x7b,
0x43, 0x3e, 0x11, 0x3c, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f, 0x52,
0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x64, 0x5f,
0x4d, 0x65, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x42,
0x48, 0x05, 0x6a, 0x7b, 0x43, 0xfa, 0x00, 0x00,
0x7b, 0x42, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x52, 0x65,
0x63, 0x79, 0x63, 0x6c, 0x65, 0x64, 0x5f, 0x4f,
0x69, 0x6c, 0x7b, 0x42, 0x70, 0x30, 0x88, 0x7b,
0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x11, 0x52, 0x65, 0x63, 0x79, 0x63, 0x6c,
0x65, 0x64, 0x5f, 0x50, 0x6c, 0x61, 0x73, 0x74,
0x69, 0x63, 0x73, 0x7b, 0x42, 0x18, 0x54, 0x23,
0x7b, 0x41, 0x70, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x06, 0x42, 0x6f, 0x6e, 0x73, 0x61,
0x69, 0x7b, 0x43, 0x40, 0xf2, 0xc0, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x09, 0x4c, 0x69, 0x76, 0x65, 0x73, 0x74, 0x6f,
0x63, 0x6b, 0x7b, 0x42, 0xa9, 0xe7, 0x8b, 0x7b,
0x42, 0x70, 0x00, 0x00, 0x7b, 0x42, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x06, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x79,
0x7b, 0x42, 0x68, 0x46, 0x9d, 0x7b, 0x3f, 0x66,
0x66, 0x66, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e,
0x4d, 0x61, 0x6c, 0x74, 0x5f, 0x42, 0x65, 0x76,
0x65, 0x72, 0x61, 0x67, 0x65, 0x73, 0x7b, 0x42,
0x15, 0x32, 0xb7, 0x7b, 0x3f, 0x66, 0x66, 0x66,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0a, 0x53, 0x70,
0x61, 0x63, 0x65, 0x5f, 0x47, 0x72, 0x6f, 0x67,
0x7b, 0x42, 0x47, 0x00, 0x03, 0x7b, 0x3f, 0xe6,
0x66, 0x66, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x07,
0x53, 0x70, 0x69, 0x72, 0x69, 0x74, 0x73, 0x7b,
0x42, 0x36, 0x75, 0xdc, 0x7b, 0x3f, 0x66, 0x66,
0x66, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x05, 0x57,
0x69, 0x6e, 0x65, 0x73, 0x7b, 0x42, 0xa5, 0xce,
0xab, 0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x06, 0x43, 0x6f, 0x74, 0x74,
0x6f, 0x6e, 0x7b, 0x42, 0xb9, 0x5e, 0xee, 0x7b,
0x41, 0x30, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x06, 0x4c, 0x75, 0x6d, 0x62, 0x65, 0x72,
0x7b, 0x42, 0xa2, 0x0d, 0x64, 0x7b, 0x41, 0x88,
0x00, 0x00, 0x7b, 0x41, 0xd8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06,
0x52, 0x75, 0x62, 0x62, 0x65, 0x72, 0x7b, 0x42,
0xe7, 0x9e, 0x25, 0x7b, 0x3f, 0xc0, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x05, 0x57, 0x61,
0x74, 0x65, 0x72, 0x7b, 0x40, 0xf9, 0x20, 0xb3,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21,
0xbc, 0x00, 0x0c, 0x41, 0x73, 0x74, 0x72, 0x61,
0x6c, 0x5f, 0x47, 0x61, 0x73, 0x65, 0x73, 0x7b,
0x42, 0x29, 0x86, 0x6d, 0x7b, 0x3f, 0x99, 0x99,
0x9a, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x11, 0x41,
0x74, 0x6d, 0x6f, 0x73, 0x70, 0x68, 0x65, 0x72,
0x69, 0x63, 0x5f, 0x47, 0x61, 0x73, 0x65, 0x73,
0x7b, 0x41, 0xfd, 0xce, 0x7a, 0x7b, 0x3f, 0x99,
0x99, 0x9a, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d,
0x48, 0x61, 0x6c, 0x6f, 0x67, 0x65, 0x6e, 0x5f,
0x47, 0x61, 0x73, 0x65, 0x73, 0x7b, 0x42, 0xa9,
0x54, 0x21, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0b, 0x4e, 0x6f, 0x62,
0x6c, 0x65, 0x5f, 0x47, 0x61, 0x73, 0x65, 0x73,
0x7b, 0x42, 0x89, 0x77, 0xe4, 0x7b, 0x3f, 0x99,
0x99, 0x9a, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06,
0x42, 0x75, 0x74, 0x61, 0x6e, 0x65, 0x7b, 0x42,
0xab, 0xd5, 0x4a, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x04, 0x43, 0x6f,
0x61, 0x6c, 0x7b, 0x41, 0x65, 0x4e, 0x93, 0x7b,
0x41, 0x40, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x06, 0x44, 0x69, 0x65, 0x73, 0x65, 0x6c,
0x7b, 0x42, 0xb9, 0xc9, 0x05, 0x7b, 0x41, 0x00,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b,
0x4e, 0x61, 0x74, 0x75, 0x72, 0x61, 0x6c, 0x5f,
0x47, 0x61, 0x73, 0x7b, 0x42, 0x83, 0xd4, 0x14,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x41, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x03, 0x4f, 0x69, 0x6c, 0x7b, 0x42,
0x65, 0x56, 0xfa, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x09, 0x50, 0x65,
0x74, 0x72, 0x6f, 0x6c, 0x65, 0x75, 0x6d, 0x7b,
0x42, 0x80, 0xab, 0xe2, 0x7b, 0x41, 0x00, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x11, 0x43,
0x6f, 0x72, 0x75, 0x6e, 0x64, 0x75, 0x6d, 0x5f };
char peer1_54[] = {
0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c, 0x73,
0x7b, 0x44, 0x7a, 0x04, 0xa8, 0x7b, 0x41, 0xf0,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x12,
0x44, 0x69, 0x6c, 0x69, 0x74, 0x68, 0x69, 0x75,
0x6d, 0x5f, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61,
0x6c, 0x73, 0x7b, 0x44, 0x6f, 0x50, 0x1d, 0x7b,
0x41, 0xa0, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x7a,
0x5f, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c,
0x73, 0x7b, 0x44, 0x32, 0x9b, 0xb5, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x13, 0x54, 0x72, 0x69, 0x6c, 0x69, 0x74, 0x68,
0x69, 0x75, 0x6d, 0x5f, 0x43, 0x72, 0x79, 0x73,
0x74, 0x61, 0x6c, 0x73, 0x7b, 0x44, 0x8e, 0xde,
0xcb, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0d, 0x41, 0x6c, 0x6b, 0x61,
0x6c, 0x69, 0x5f, 0x4d, 0x65, 0x74, 0x61, 0x6c,
0x73, 0x7b, 0x42, 0x01, 0xd1, 0xb8, 0x7b, 0x42,
0x82, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0b, 0x42, 0x61, 0x73, 0x65, 0x5f, 0x4d, 0x65,
0x74, 0x61, 0x6c, 0x73, 0x7b, 0x41, 0x7c, 0xb8,
0x58, 0x7b, 0x42, 0xb4, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x12, 0x43, 0x6f, 0x6e, 0x73,
0x74, 0x72, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x7b, 0x41,
0x77, 0x63, 0x95, 0x7b, 0x42, 0xf0, 0x00, 0x00,
0x7b, 0x42, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x46, 0x61,
0x63, 0x69, 0x6e, 0x67, 0x5f, 0x53, 0x74, 0x6f,
0x6e, 0x65, 0x7b, 0x42, 0x9a, 0x72, 0x98, 0x7b,
0x42, 0x48, 0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x12, 0x4e, 0x61, 0x74, 0x75, 0x72, 0x61,
0x6c, 0x5f, 0x53, 0x63, 0x75, 0x6c, 0x70, 0x74,
0x75, 0x72, 0x65, 0x73, 0x7b, 0x43, 0x87, 0x0a,
0x87, 0x7b, 0x42, 0x82, 0x00, 0x00, 0x7b, 0x42,
0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05,
0x21, 0xbc, 0x00, 0x05, 0x41, 0x63, 0x69, 0x64,
0x73, 0x7b, 0x42, 0xbc, 0xdc, 0xa2, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00,
0x09, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x79, 0x73,
0x74, 0x73, 0x7b, 0x42, 0xbc, 0xf6, 0x26, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc,
0x00, 0x0e, 0x43, 0x68, 0x65, 0x6d, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x46, 0x75, 0x65, 0x6c, 0x73,
0x7b, 0x42, 0xbc, 0xb7, 0xf1, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c,
0x43, 0x68, 0x65, 0x6d, 0x69, 0x63, 0x61, 0x6c,
0x5f, 0x4d, 0x69, 0x78, 0x7b, 0x42, 0xbc, 0xdd,
0x4a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x04, 0x44, 0x79, 0x65, 0x73,
0x7b, 0x42, 0xbc, 0xb3, 0x96, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x06,
0x45, 0x73, 0x74, 0x65, 0x72, 0x73, 0x7b, 0x42,
0xbc, 0xbf, 0x32, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x07, 0x45, 0x74,
0x68, 0x61, 0x6e, 0x6f, 0x6c, 0x7b, 0x42, 0xbc,
0xe4, 0xa3, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x04, 0x21, 0xbc, 0x00, 0x0b, 0x48, 0x65, 0x61,
0x76, 0x79, 0x5f, 0x57, 0x61, 0x74, 0x65, 0x72,
0x7b, 0x42, 0xbc, 0xa1, 0x62, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e,
0x50, 0x65, 0x74, 0x72, 0x6f, 0x63, 0x68, 0x65,
0x6d, 0x69, 0x63, 0x61, 0x6c, 0x73, 0x7b, 0x42,
0xbc, 0x94, 0x59, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e, 0x52, 0x61,
0x72, 0x65, 0x5f, 0x43, 0x61, 0x74, 0x61, 0x6c,
0x79, 0x73, 0x74, 0x73, 0x7b, 0x43, 0x3c, 0xc6,
0x17, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0f, 0x41, 0x6e, 0x74, 0x69,
0x5f, 0x43, 0x6f, 0x72, 0x72, 0x6f, 0x73, 0x69,
0x76, 0x65, 0x73, 0x7b, 0x42, 0xf6, 0xf8, 0x16,
0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x04, 0x47, 0x6f, 0x6c, 0x64, 0x7b,
0x42, 0xdb, 0xaf, 0x17, 0x7b, 0x41, 0x98, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b, 0x52,
0x61, 0x72, 0x65, 0x5f, 0x45, 0x61, 0x72, 0x74,
0x68, 0x73, 0x7b, 0x42, 0xd6, 0x43, 0x6a, 0x7b,
0x41, 0x90, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc,
0x00, 0x08, 0x44, 0x69, 0x61, 0x6d, 0x6f, 0x6e,
0x64, 0x73, 0x7b, 0x44, 0x72, 0xdf, 0x77, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc,
0x00, 0x14, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74,
0x72, 0x69, 0x61, 0x6c, 0x5f, 0x47, 0x65, 0x6d,
0x73, 0x74, 0x6f, 0x6e, 0x65, 0x73, 0x7b, 0x44,
0x89, 0x3a, 0x58, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x06, 0x4a, 0x65,
0x77, 0x65, 0x6c, 0x73, 0x7b, 0x44, 0x89, 0x37,
0xed, 0x7b, 0x40, 0x40, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x11, 0x52, 0x65, 0x69, 0x6e,
0x66, 0x6f, 0x72, 0x63, 0x65, 0x64, 0x5f, 0x52,
0x75, 0x62, 0x62, 0x65, 0x72, 0x7b, 0x44, 0x89,
0x3a, 0x10, 0x7b, 0x3f, 0xd9, 0x99, 0x9a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x02, 0x21, 0xbc, 0x00, 0x11, 0x53, 0x6f, 0x72,
0x69, 0x72, 0x5f, 0x4c, 0x69, 0x67, 0x68, 0x74,
0x73, 0x74, 0x6f, 0x6e, 0x65, 0x73, 0x7b, 0x44,
0x89, 0x38, 0x69, 0x7b, 0x3f, 0x4c, 0xcc, 0xcd,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0a, 0x21, 0xbc, 0x00, 0x0b, 0x57, 0x6f,
0x6f, 0x64, 0x5f, 0x42, 0x6f, 0x61, 0x72, 0x64,
0x73, 0x7b, 0x42, 0xfc, 0x9b, 0x45, 0x7b, 0x40,
0xc0, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x06, 0x52, 0x61, 0x64, 0x69, 0x75, 0x6d, 0x7b,
0x43, 0x89, 0x30, 0x1f, 0x7b, 0x40, 0xa0, 0x00 };
char peer1_55[] = {
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x07, 0x54,
0x68, 0x6f, 0x72, 0x69, 0x75, 0x6d, 0x7b, 0x43,
0x4d, 0xd6, 0xdd, 0x7b, 0x41, 0x30, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x07, 0x55, 0x72,
0x61, 0x6e, 0x69, 0x75, 0x6d, 0x7b, 0x43, 0xb9,
0x40, 0x1d, 0x7b, 0x41, 0x98, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x05, 0x42, 0x6f, 0x6f,
0x6b, 0x73, 0x7b, 0x42, 0x53, 0xa5, 0xf4, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x07, 0x45, 0x72, 0x6f, 0x74, 0x69, 0x63,
0x61, 0x7b, 0x44, 0x2b, 0xcc, 0x4b, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x40, 0x40, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x05, 0x47, 0x61, 0x6d, 0x65, 0x73, 0x7b, 0x42,
0x5c, 0x45, 0x75, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x08, 0x48, 0x6f,
0x6c, 0x6f, 0x76, 0x69, 0x64, 0x73, 0x7b, 0x42,
0x71, 0x79, 0x85, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x13, 0x4d, 0x75,
0x73, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x49, 0x6e,
0x73, 0x74, 0x72, 0x75, 0x6d, 0x65, 0x6e, 0x74,
0x73, 0x7b, 0x42, 0x5b, 0xf9, 0x1e, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x05, 0x4d, 0x75, 0x73, 0x69, 0x6b, 0x7b, 0x42,
0x53, 0xa0, 0xcb, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e, 0x50, 0x6c,
0x65, 0x61, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x42,
0x6f, 0x72, 0x67, 0x73, 0x7b, 0x44, 0x0c, 0x15,
0x18, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0x7b, 0x40,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x08,
0x21, 0xbc, 0x00, 0x13, 0x43, 0x65, 0x6c, 0x6c,
0x75, 0x6c, 0x61, 0x72, 0x5f, 0x41, 0x63, 0x63,
0x65, 0x6c, 0x65, 0x72, 0x61, 0x6e, 0x74, 0x7b,
0x42, 0xb4, 0x11, 0xa6, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e, 0x43,
0x72, 0x79, 0x6f, 0x67, 0x65, 0x6e, 0x69, 0x63,
0x5f, 0x50, 0x6f, 0x64, 0x73, 0x7b, 0x43, 0xfc,
0x83, 0xcf, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b,
0x40, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x06, 0x21, 0xbc, 0x00, 0x0f, 0x44, 0x4e, 0x41,
0x5f, 0x52, 0x65, 0x73, 0x65, 0x71, 0x75, 0x65,
0x6e, 0x63, 0x65, 0x72, 0x7b, 0x42, 0xb4, 0x36,
0x29, 0x7b, 0x3e, 0x99, 0x99, 0x9a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0e, 0x46, 0x69, 0x72, 0x73,
0x74, 0x5f, 0x41, 0x69, 0x64, 0x5f, 0x4b, 0x69,
0x74, 0x73, 0x7b, 0x43, 0xf0, 0x0a, 0xcd, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0c, 0x48, 0x79, 0x70, 0x6f, 0x73, 0x79,
0x72, 0x69, 0x6e, 0x67, 0x65, 0x73, 0x7b, 0x43,
0xf0, 0x04, 0xe7, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x08, 0x21, 0xbc, 0x00, 0x0b, 0x4d, 0x65,
0x64, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x4b, 0x69,
0x74, 0x7b, 0x42, 0xb4, 0x18, 0x59, 0x7b, 0x41,
0x40, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x07, 0x21, 0xbc, 0x00,
0x0c, 0x50, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x74,
0x68, 0x65, 0x72, 0x6d, 0x73, 0x7b, 0x42, 0xb4,
0x13, 0x4e, 0x7b, 0x41, 0x80, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0a, 0x52, 0x65, 0x67,
0x65, 0x6e, 0x5f, 0x54, 0x61, 0x6e, 0x6b, 0x7b,
0x44, 0x39, 0x83, 0xb8, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x52,
0x6f, 0x62, 0x6f, 0x74, 0x69, 0x63, 0x5f, 0x53,
0x75, 0x72, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x7b,
0x43, 0xf0, 0x03, 0x21, 0x7b, 0x3e, 0x99, 0x99,
0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x41,
0x64, 0x6d, 0x6f, 0x6e, 0x69, 0x73, 0x68, 0x65,
0x72, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x4a, 0x37, 0x1b, 0x00, 0x7b, 0x43, 0x89, 0x80,
0x00, 0x7b, 0x45, 0xaf, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x47,
0x61, 0x77, 0x61, 0x69, 0x6e, 0x2e, 0x73, 0x74,
0x6f, 0x63, 0x6b, 0x7b, 0x4a, 0x43, 0x50, 0x00,
0x7b, 0x42, 0x20, 0x00, 0x00, 0x7b, 0x44, 0x7a,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0e, 0x4c, 0x61, 0x6e, 0x63, 0x65,
0x6c, 0x6f, 0x74, 0x2e, 0x73, 0x74, 0x6f, 0x63,
0x6b, 0x7b, 0x4a, 0x67, 0xef, 0x00, 0x7b, 0x43,
0x2a, 0x00, 0x00, 0x7b, 0x45, 0x5a, 0xc0, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0e, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x65,
0x72, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x48, 0xc3, 0x50, 0x00, 0x7b, 0x43, 0xf5, 0x00,
0x00, 0x7b, 0x46, 0x1c, 0x40, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0d, 0x50,
0x72, 0x6f, 0x67, 0x65, 0x6e, 0x79, 0x2e, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x48, 0xc3, 0x50,
0x00, 0x7b, 0x42, 0x78, 0x00, 0x00, 0x7b, 0x44,
0x96, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x12, 0x53, 0x63, 0x68, 0x72,
0x6f, 0x65, 0x64, 0x69, 0x6e, 0x67, 0x65, 0x72,
0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x48,
0xf9, 0x06, 0x00, 0x7b, 0x42, 0xa0, 0x00, 0x00,
0x7b, 0x44, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x11, 0x43, 0x6f,
0x6e, 0x76, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f,
0x6e, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x49, 0x39, 0x8c, 0x00, 0x7b, 0x42, 0x78, 0x00,
0x00, 0x7b, 0x44, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x10, 0x44,
0x65, 0x72, 0x69, 0x76, 0x61, 0x74, 0x69, 0x76,
0x65, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x49, 0x43, 0x50, 0x00, 0x7b, 0x43, 0x06, 0x00,
0x00, 0x7b, 0x45, 0x28, 0xc0, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x07, 0x21, 0xbc, 0x00, 0x11, 0x44,
0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61,
0x6e, 0x74, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b,
0x7b, 0x49, 0x2a, 0xe6, 0x00, 0x7b, 0x42, 0x58,
0x00, 0x00, 0x7b, 0x44, 0x89, 0x80, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x12,
0x41, 0x64, 0x6d, 0x6f, 0x6e, 0x69, 0x73, 0x68,
0x65, 0x72, 0x2e, 0x6d, 0x69, 0x6c, 0x73, 0x70,
0x65, 0x63, 0x7b, 0x4a, 0x55, 0x9f, 0x80, 0x7b };
char peer1_56[] = {
0x43, 0x89, 0x80, 0x00, 0x7b, 0x45, 0xaf, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x10, 0x41, 0x6e, 0x63, 0x65, 0x73, 0x74,
0x6f, 0x72, 0x2e, 0x6d, 0x69, 0x6c, 0x73, 0x70,
0x65, 0x63, 0x7b, 0x49, 0x2a, 0xe6, 0x00, 0x7b,
0x42, 0x20, 0x00, 0x00, 0x7b, 0x44, 0x48, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x13, 0x43, 0x6f, 0x6e, 0x76, 0x6f, 0x6c,
0x75, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x6d, 0x69,
0x6c, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x49, 0xb7,
0x1b, 0x00, 0x7b, 0x42, 0x78, 0x00, 0x00, 0x7b,
0x44, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x12, 0x44, 0x65, 0x72,
0x69, 0x76, 0x61, 0x74, 0x69, 0x76, 0x65, 0x2e,
0x6d, 0x69, 0x6c, 0x73, 0x70, 0x65, 0x63, 0x7b,
0x49, 0x92, 0x7c, 0x00, 0x7b, 0x43, 0x06, 0x00,
0x00, 0x7b, 0x45, 0x28, 0xc0, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x06, 0x21, 0xbc, 0x00, 0x13, 0x44,
0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61,
0x6e, 0x74, 0x2e, 0x6d, 0x69, 0x6c, 0x73, 0x70,
0x65, 0x63, 0x7b, 0x49, 0x92, 0x7c, 0x00, 0x7b,
0x42, 0x58, 0x00, 0x00, 0x7b, 0x44, 0x89, 0x80,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x0c, 0x44, 0x6f, 0x64, 0x6f, 0x2e, 0x6d,
0x69, 0x6c, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x48,
0xc3, 0x50, 0x00, 0x7b, 0x44, 0x89, 0x00, 0x00,
0x7b, 0x46, 0xa4, 0x10, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x0e, 0x47, 0x61,
0x77, 0x61, 0x69, 0x6e, 0x2e, 0x6d, 0x69, 0x6c,
0x73, 0x70, 0x65, 0x63, 0x7b, 0x4a, 0x89, 0x54,
0x40, 0x7b, 0x42, 0x20, 0x00, 0x00, 0x7b, 0x44,
0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0f, 0x47, 0x6f, 0x64, 0x64,
0x61, 0x72, 0x64, 0x2e, 0x6d, 0x69, 0x6c, 0x73,
0x70, 0x65, 0x63, 0x7b, 0x4b, 0x27, 0xd8, 0xc0,
0x7b, 0x45, 0x06, 0x60, 0x00, 0x7b, 0x47, 0x27,
0xf8, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0b, 0x4b, 0x69, 0x65, 0x72, 0x6b,
0x65, 0x67, 0x61, 0x61, 0x72, 0x64, 0x7b, 0x49,
0x43, 0x50, 0x00, 0x7b, 0x44, 0xe1, 0x00, 0x00,
0x7b, 0x46, 0x6a, 0x60, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x10, 0x4c, 0x61,
0x6e, 0x63, 0x65, 0x6c, 0x6f, 0x74, 0x2e, 0x6d,
0x69, 0x6c, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x4a,
0xc6, 0x5d, 0x40, 0x7b, 0x43, 0x2a, 0x00, 0x00,
0x7b, 0x45, 0x5a, 0xc0, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x07, 0x21, 0xbc, 0x00, 0x10, 0x50, 0x61,
0x63, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x6d,
0x69, 0x6c, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x49,
0x9e, 0xb1, 0x00, 0x7b, 0x43, 0xf5, 0x00, 0x00,
0x7b, 0x46, 0x1c, 0x40, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x0f, 0x50, 0x72,
0x6f, 0x67, 0x65, 0x6e, 0x79, 0x2e, 0x6d, 0x69,
0x6c, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x49, 0x92,
0x7c, 0x00, 0x7b, 0x42, 0x78, 0x00, 0x00, 0x7b,
0x44, 0x96, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x14, 0x53, 0x63, 0x68,
0x72, 0x6f, 0x65, 0x64, 0x69, 0x6e, 0x67, 0x65,
0x72, 0x2e, 0x6d, 0x69, 0x6c, 0x73, 0x70, 0x65,
0x63, 0x7b, 0x4a, 0x37, 0x1b, 0x00, 0x7b, 0x42,
0xa0, 0x00, 0x00, 0x7b, 0x44, 0xc8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x09, 0x56, 0x69, 0x67, 0x69, 0x6c, 0x61, 0x6e,
0x63, 0x65, 0x7b, 0x4b, 0x8d, 0x24, 0xd0, 0x7b,
0x45, 0x8c, 0xa0, 0x00, 0x7b, 0x47, 0x43, 0x50,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc,
0x00, 0x13, 0x47, 0x61, 0x77, 0x61, 0x69, 0x6e,
0x2e, 0x68, 0x69, 0x67, 0x68, 0x62, 0x6f, 0x72,
0x6e, 0x73, 0x70, 0x65, 0x63, 0x7b, 0x4a, 0x74,
0x24, 0x00, 0x7b, 0x42, 0x20, 0x00, 0x00, 0x7b,
0x44, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x03, 0x21, 0xbc, 0x00, 0x15, 0x41, 0x64, 0x6d,
0x6f, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x72, 0x2e,
0x70, 0x75, 0x72, 0x69, 0x73, 0x74, 0x73, 0x70,
0x65, 0x63, 0x7b, 0x4a, 0x37, 0x1b, 0x00, 0x7b,
0x43, 0x89, 0x80, 0x00, 0x7b, 0x45, 0xaf, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x01, 0x17, 0x21, 0xbc,
0x00, 0x14, 0x48, 0x65, 0x70, 0x68, 0x61, 0x65,
0x73, 0x74, 0x75, 0x73, 0x5f, 0x4d, 0x69, 0x6e,
0x69, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x44,
0x3d, 0x4b, 0xb5, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00,
0x00, 0x33, 0x21, 0xbc, 0x00, 0x0e, 0x72, 0x61,
0x7a, 0x6f, 0x72, 0x5f, 0x67, 0x75, 0x6e, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x45, 0xbd, 0x49,
0xef, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xbf,
0x21, 0xbc, 0x00, 0x12, 0x72, 0x65, 0x61, 0x70,
0x65, 0x72, 0x5f, 0x63, 0x61, 0x6e, 0x6e, 0x6f,
0x6e, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x46,
0x0d, 0xf7, 0x34, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x0c, 0x74, 0x6f,
0x72, 0x70, 0x65, 0x64, 0x6f, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x45, 0x3d, 0x4a, 0xa4, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc,
0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30,
0x31, 0x7b, 0x45, 0x6b, 0xb8, 0x22, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00,
0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30, 0x32,
0x7b, 0x45, 0xeb, 0xb7, 0x83, 0x7b, 0x41, 0xc8,
0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x08, 0x21, 0xbc, 0x00, 0x07,
0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30, 0x33, 0x7b };
char peer1_57[] = {
0x46, 0x6b, 0xb7, 0x16, 0x7b, 0x41, 0xf0, 0x00,
0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x07, 0x61,
0x72, 0x6d, 0x6f, 0x72, 0x30, 0x34, 0x7b, 0x46,
0xeb, 0xb6, 0xf9, 0x7b, 0x41, 0xc8, 0x00, 0x00,
0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x07, 0x61, 0x72,
0x6d, 0x6f, 0x72, 0x30, 0x35, 0x7b, 0x47, 0x6b,
0xb6, 0xdf, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b,
0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d,
0x6f, 0x72, 0x30, 0x36, 0x7b, 0x47, 0xeb, 0xb6,
0xde, 0x7b, 0x41, 0x70, 0x00, 0x00, 0x7b, 0x00,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x31, 0x7b,
0x43, 0xeb, 0xc1, 0x58, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x30, 0x32, 0x7b, 0x44, 0x6b, 0xbd, 0x45, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0c, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x44, 0xeb,
0xb7, 0xb3, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0b, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x34,
0x7b, 0x45, 0x6b, 0xb7, 0x9c, 0x7b, 0x41, 0x00,
0x00, 0x00, 0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x30, 0x35, 0x7b, 0x45, 0xeb, 0xb7, 0x1e,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0d, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x36, 0x7b, 0x46,
0x6b, 0xb6, 0xdc, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0b, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x37, 0x7b, 0x46, 0xeb, 0xb6, 0xe2, 0x7b, 0x41,
0x60, 0x00, 0x00, 0x7b, 0x41, 0x60, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x30, 0x38, 0x7b, 0x47, 0x6b, 0xb6,
0xeb, 0x7b, 0x41, 0x80, 0x00, 0x00, 0x7b, 0x41,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0e,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x39, 0x7b,
0x47, 0xeb, 0xb6, 0xe9, 0x7b, 0x41, 0x90, 0x00,
0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x31, 0x30, 0x7b, 0x48, 0x6b, 0xb6, 0xe3, 0x7b,
0x41, 0xa0, 0x00, 0x00, 0x7b, 0x41, 0xa0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x31, 0x31, 0x7b, 0x48, 0xeb,
0xb6, 0xdd, 0x7b, 0x41, 0xb0, 0x00, 0x00, 0x7b,
0x41, 0xb0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0c, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x31, 0x32,
0x7b, 0x49, 0x6b, 0xb6, 0xdd, 0x7b, 0x41, 0xc0,
0x00, 0x00, 0x7b, 0x41, 0xc0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x31, 0x33, 0x7b, 0x49, 0xeb, 0xb6, 0xdc,
0x7b, 0x41, 0xd0, 0x00, 0x00, 0x7b, 0x41, 0xd0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x31, 0x34, 0x7b, 0x4a,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0xe0, 0x00, 0x00,
0x7b, 0x41, 0xe0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x31,
0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b, 0x41,
0xf0, 0x00, 0x00, 0x7b, 0x41, 0xf0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0c, 0x21, 0xbc, 0x00,
0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64, 0x72,
0x69, 0x76, 0x65, 0x7b, 0x45, 0xeb, 0xb7, 0x21,
0x7b, 0x41, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x6f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69, 0x76,
0x65, 0x30, 0x31, 0x7b, 0x45, 0x6b, 0xb7, 0x02,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x6f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69, 0x76,
0x65, 0x30, 0x32, 0x7b, 0x45, 0xeb, 0xb7, 0xc1,
0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x40, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x6f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69, 0x76,
0x65, 0x30, 0x33, 0x7b, 0x46, 0x6b, 0xb7, 0x37,
0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x6f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69, 0x76,
0x65, 0x30, 0x34, 0x7b, 0x46, 0xeb, 0xb7, 0x0f,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x6f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69, 0x76,
0x65, 0x30, 0x35, 0x7b, 0x47, 0x6b, 0xb6, 0xe0,
0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b, 0x41, 0x40,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x5f,
0x6f, 0x76, 0x65, 0x72, 0x64, 0x72, 0x69, 0x76,
0x65, 0x30, 0x36, 0x7b, 0x47, 0xeb, 0xb6, 0xe6,
0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x41, 0x90,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x30, 0x31, 0x7b, 0x43, 0xeb, 0xc1,
0xef, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x30, 0x32, 0x7b, 0x44, 0x6b,
0xb7, 0xd3, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b,
0x40, 0x60, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0c, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x44,
0xeb, 0xb9, 0x2d, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x40, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x06, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x34, 0x7b };
char peer1_58[] = {
0x45, 0x6b, 0xb7, 0x4f, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x41, 0x30, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x35,
0x7b, 0x45, 0xeb, 0xb7, 0xa1, 0x7b, 0x40, 0xa0,
0x00, 0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x07, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30,
0x36, 0x7b, 0x46, 0x6b, 0xb7, 0x40, 0x7b, 0x40,
0xc0, 0x00, 0x00, 0x7b, 0x42, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x30, 0x37, 0x7b, 0x46, 0xeb, 0xb7, 0x01, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x42, 0x70, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc,
0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x30, 0x38, 0x7b, 0x47, 0x6b, 0xb6, 0xe5,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x42, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x30, 0x39, 0x7b, 0x47, 0xeb, 0xb6,
0xde, 0x7b, 0x41, 0x10, 0x00, 0x00, 0x7b, 0x43,
0x2f, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x31, 0x30, 0x7b, 0x48, 0x6b,
0xb6, 0xdf, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b,
0x43, 0x9b, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x07, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x31, 0x31, 0x7b, 0x48,
0xeb, 0xb6, 0xde, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x44, 0x07, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0a, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x31, 0x32, 0x7b,
0x49, 0x6b, 0xb6, 0xdd, 0x7b, 0x41, 0x60, 0x00,
0x00, 0x7b, 0x44, 0x6d, 0x80, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0b, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31, 0x33,
0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0x80,
0x00, 0x00, 0x7b, 0x44, 0xce, 0x40, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31,
0x34, 0x7b, 0x4a, 0x6b, 0xb6, 0xdc, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x45, 0x34, 0xa0, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x31, 0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0xc0, 0x00, 0x00, 0x7b, 0x45, 0x9d, 0xd0,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc,
0x00, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x73, 0x63,
0x61, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x7b, 0x45,
0x6b, 0xb7, 0x62, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x07, 0x21, 0xbc, 0x00, 0x0c, 0x73, 0x74 };
char peer1_59[] = {
0x61, 0x72, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x65,
0x72, 0x32, 0x7b, 0x45, 0xeb, 0xb7, 0x6b, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40, 0xe0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x73, 0x63,
0x61, 0x6e, 0x6e, 0x65, 0x72, 0x33, 0x7b, 0x46,
0x6b, 0xb7, 0x32, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x41, 0x10, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x73, 0x74,
0x61, 0x72, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x65,
0x72, 0x34, 0x7b, 0x46, 0xb0, 0xc9, 0x45, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x41, 0x10, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x19, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x31, 0x7b, 0x43,
0x6b, 0xbe, 0x02, 0x7b, 0x3f, 0x00, 0x00, 0x00,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x13, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x32, 0x7b, 0x43, 0xeb, 0xb9, 0x84, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x10, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x33, 0x7b, 0x44,
0x6b, 0xbd, 0x79, 0x7b, 0x3f, 0xc0, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x18, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x34, 0x7b, 0x44, 0xeb, 0xb6, 0xf7, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x40, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x11, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x35, 0x7b, 0x45,
0x6b, 0xb6, 0xee, 0x7b, 0x40, 0x20, 0x00, 0x00,
0x7b, 0x41, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x11, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x36, 0x7b, 0x45, 0xeb, 0xb7, 0xa1, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x41, 0xa8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x37, 0x7b, 0x46,
0x6b, 0xb7, 0x0d, 0x7b, 0x40, 0x60, 0x00, 0x00,
0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x15, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x38, 0x7b, 0x46, 0xeb, 0xb7, 0x16, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x41, 0xf0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x19, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x39, 0x7b, 0x47,
0x6b, 0xb6, 0xe2, 0x7b, 0x40, 0x90, 0x00, 0x00,
0x7b, 0x42, 0x0c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x18, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x30, 0x7b, 0x47, 0xeb, 0xb6, 0xe2, 0x7b,
0x40, 0xa0, 0x00, 0x00, 0x7b, 0x42, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x18, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x31, 0x7b, 0x48,
0x6b, 0xb6, 0xe2, 0x7b, 0x40, 0xc0, 0x00, 0x00,
0x7b, 0x42, 0x38, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x17, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x32, 0x7b, 0x48, 0xeb, 0xb6, 0xdc, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x42, 0x50, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x10, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x33, 0x7b, 0x49,
0x6b, 0xb6, 0xdd, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x42, 0x64, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x34, 0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b,
0x41, 0x10, 0x00, 0x00, 0x7b, 0x42, 0x7c, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x35, 0x7b, 0x4a,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x42, 0x8c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x10, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x31, 0x7b, 0x43, 0xeb, 0xbe, 0xd1, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x12, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x32, 0x7b, 0x44,
0x6b, 0xba, 0xc0, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x16, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x33, 0x7b, 0x44, 0xeb, 0xb8, 0x6b, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x41, 0x50, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x13, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x34, 0x7b, 0x45,
0x6b, 0xb7, 0xdf, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x14, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x35, 0x7b, 0x45, 0xeb, 0xb7, 0x76, 0x7b,
0x40, 0xa0, 0x00, 0x00, 0x7b, 0x41, 0xc0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x15, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x36, 0x7b, 0x46,
0x6b, 0xb7, 0x27, 0x7b, 0x40, 0xc0, 0x00, 0x00,
0x7b, 0x41, 0xf8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x14, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x37, 0x7b, 0x46, 0xeb, 0xb6, 0xe2, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x42, 0x18, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x38, 0x7b, 0x47,
0x6b, 0xb6, 0xdf, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x42, 0x34, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x10, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x39, 0x7b, 0x47, 0xeb, 0xb6, 0xdc, 0x7b,
0x41, 0x10, 0x00, 0x00, 0x7b, 0x42, 0x54, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x12, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x7b, 0x48,
0x6b, 0xb6, 0xe2, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x42, 0x74, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x14, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x31, 0x7b, 0x48, 0xeb, 0xb6, 0xdc, 0x7b };
char peer1_60[] = {
0x41, 0x30, 0x00, 0x00, 0x7b, 0x42, 0x8a, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x18, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x32, 0x7b, 0x49,
0x6b, 0xb6, 0xdc, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x42, 0x9c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x13, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x33, 0x7b, 0x49, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0x50, 0x00, 0x00, 0x7b, 0x42, 0xac, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x34, 0x7b, 0x4a,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0x60, 0x00, 0x00,
0x7b, 0x42, 0xbe, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0x70, 0x00, 0x00, 0x7b, 0x42, 0xd0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x0e, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x5f, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x65, 0x72,
0x7b, 0x48, 0xb8, 0x26, 0xde, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d,
0x74, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f,
0x68, 0x65, 0x61, 0x76, 0x79, 0x7b, 0x46, 0xca,
0x91, 0x4b, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0a, 0x44, 0x69, 0x73,
0x73, 0x6f, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x7b,
0x48, 0xe6, 0x30, 0x96, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0f, 0x48,
0x65, 0x70, 0x68, 0x61, 0x65, 0x73, 0x74, 0x75,
0x73, 0x5f, 0x4d, 0x69, 0x6e, 0x69, 0x7b, 0x47,
0xca, 0x91, 0x2f, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x08, 0x63, 0x72,
0x69, 0x70, 0x70, 0x6c, 0x65, 0x72, 0x7b, 0x47,
0xdc, 0xfb, 0x76, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x09, 0x6c, 0x65,
0x65, 0x63, 0x68, 0x5f, 0x67, 0x75, 0x6e, 0x7b,
0x47, 0x73, 0x14, 0x92, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x61, 0x7a, 0x6f, 0x72, 0x5f, 0x67, 0x75, 0x6e,
0x7b, 0x48, 0xb8, 0x26, 0xdf, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0d,
0x72, 0x65, 0x61, 0x70, 0x65, 0x72, 0x5f, 0x63,
0x61, 0x6e, 0x6e, 0x6f, 0x6e, 0x7b, 0x49, 0x38 };
char peer1_61[] = {
0x26, 0xdc, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x09, 0x73, 0x74, 0x6f,
0x72, 0x6d, 0x66, 0x69, 0x72, 0x65, 0x7b, 0x44,
0xeb, 0xb7, 0xc0, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbd, 0xbc, 0x00,
0x7b, 0x7b, 0x4c, 0x98, 0x96, 0x80, 0x7b, 0x49,
0x74, 0x24, 0x00, 0x7b, 0x49, 0x74, 0x24, 0x00,
0xbe, 0x00, 0x00, 0x00, 0xd5, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f, 0x48, 0x6f,
0x6d, 0x65, 0x5f, 0x41, 0x70, 0x70, 0x6c, 0x69,
0x61, 0x6e, 0x63, 0x65, 0x73, 0x7b, 0x42, 0x8e,
0xdd, 0x19, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b,
0x42, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x10, 0x48, 0x6f, 0x6d,
0x65, 0x5f, 0x46, 0x75, 0x72, 0x6e, 0x69, 0x73,
0x68, 0x69, 0x6e, 0x67, 0x73, 0x7b, 0x42, 0xc8,
0x00, 0x4a, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0x7b,
0x42, 0x96, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x12, 0x50, 0x65, 0x72,
0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x54, 0x72,
0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x7b,
0x44, 0xa9, 0x4e, 0x45, 0x7b, 0x42, 0x8a, 0x00,
0x00, 0x7b, 0x42, 0x28, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e, 0x52,
0x6f, 0x62, 0x6f, 0x74, 0x5f, 0x53, 0x65, 0x72,
0x76, 0x61, 0x6e, 0x74, 0x73, 0x7b, 0x43, 0x9d,
0xed, 0x3a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0x7b,
0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x08, 0x43, 0x6f, 0x6e,
0x73, 0x6f, 0x6c, 0x65, 0x73, 0x7b, 0x42, 0x34,
0x55, 0x22, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x72, 0x65,
0x6d, 0x69, 0x75, 0x6d, 0x5f, 0x50, 0x41, 0x44,
0x73, 0x7b, 0x42, 0x34, 0x55, 0x32, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0d, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
0x64, 0x5f, 0x50, 0x41, 0x44, 0x73, 0x7b, 0x42,
0x34, 0x28, 0xff, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0a, 0x42, 0x75,
0x6c, 0x6b, 0x5f, 0x53, 0x65, 0x65, 0x64, 0x73,
0x7b, 0x41, 0x9a, 0x49, 0xd8, 0x7b, 0x42, 0x70,
0x00, 0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c,
0x44, 0x69, 0x73, 0x74, 0x69, 0x6c, 0x6c, 0x61,
0x74, 0x6f, 0x72, 0x73, 0x7b, 0x43, 0x1a, 0x61,
0x31, 0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x10, 0x45, 0x6e, 0x67, 0x69,
0x6e, 0x65, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x53,
0x65, 0x65, 0x64, 0x73, 0x7b, 0x41, 0x9a, 0x5a,
0x84, 0x7b, 0x42, 0x0c, 0x00, 0x00, 0x7b, 0x42,
0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0b, 0x48, 0x79, 0x64, 0x72,
0x6f, 0x70, 0x6f, 0x6e, 0x69, 0x63, 0x73, 0x7b,
0x42, 0xc8, 0x9a, 0x97, 0x7b, 0x41, 0x90, 0x00,
0x00, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x13, 0x4c,
0x69, 0x76, 0x65, 0x73, 0x74, 0x6f, 0x63, 0x6b,
0x5f, 0x45, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65,
0x6e, 0x74, 0x7b, 0x42, 0xe7, 0x98, 0x10, 0x7b,
0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0a, 0x50, 0x65, 0x73, 0x74, 0x69, 0x63,
0x69, 0x64, 0x65, 0x73, 0x7b, 0x42, 0x9a, 0x6d,
0xae, 0x7b, 0x41, 0xd8, 0x00, 0x00, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x14, 0x53, 0x79, 0x6e, 0x74,
0x68, 0x65, 0x74, 0x69, 0x63, 0x5f, 0x46, 0x65,
0x72, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x65, 0x72,
0x7b, 0x42, 0xd8, 0x23, 0x48, 0x7b, 0x42, 0xa0,
0x00, 0x00, 0x7b, 0x42, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x13,
0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x65,
0x64, 0x5f, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x69, 0x65, 0x73, 0x7b, 0x4b, 0xaa, 0xae, 0x32,
0x7b, 0x46, 0x9c, 0x40, 0x00, 0x7b, 0x46, 0x1c,
0x40, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x15, 0x43, 0x6f, 0x6e, 0x73, 0x74,
0x72, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x73,
0x7b, 0x47, 0x91, 0xa5, 0xbc, 0x7b, 0x43, 0x96,
0x00, 0x00, 0x7b, 0x42, 0x96, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x14,
0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f,
0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63,
0x74, 0x6f, 0x72, 0x73, 0x7b, 0x47, 0xa1, 0xd4,
0x9e, 0x7b, 0x45, 0x7a, 0x00, 0x00, 0x7b, 0x44,
0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x15, 0x4c, 0x61, 0x6e, 0x64,
0x73, 0x63, 0x61, 0x70, 0x69, 0x6e, 0x67, 0x5f,
0x45, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e,
0x74, 0x7b, 0x46, 0x57, 0x2b, 0xdf, 0x7b, 0x43,
0x7a, 0x00, 0x00, 0x7b, 0x42, 0x5c, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x10, 0x50, 0x72, 0x65, 0x46, 0x61, 0x62, 0x5f,
0x42, 0x75, 0x69, 0x6c, 0x64, 0x69, 0x6e, 0x67,
0x73, 0x7b, 0x45, 0x63, 0xdd, 0x2d, 0x7b, 0x43,
0x48, 0x00, 0x00, 0x7b, 0x42, 0xfa, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0f, 0x52, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x69,
0x6e, 0x67, 0x5f, 0x54, 0x61, 0x6e, 0x6b, 0x73,
0x7b, 0x46, 0xa1, 0xd4, 0xc8, 0x7b, 0x41, 0x70,
0x00, 0x00, 0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x08,
0x41, 0x49, 0x5f, 0x43, 0x6f, 0x72, 0x65, 0x73,
0x7b, 0x4b, 0x5d, 0xcc, 0x23, 0x7b, 0x41, 0x20,
0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b,
0x50, 0x41, 0x49, 0x5f, 0x57, 0x65, 0x74, 0x77,
0x61, 0x72, 0x65, 0x7b, 0x46, 0x4e, 0x79, 0x45,
0x7b, 0x3f, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0e, 0x41, 0x73, 0x73, 0x65, 0x6d,
0x62, 0x6c, 0x79, 0x5f, 0x54, 0x6f, 0x6f, 0x6c,
0x73, 0x7b, 0x42, 0xc0, 0x0a, 0x26, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0d, 0x42, 0x69, 0x6f, 0x41, 0x70, 0x70, 0x6c,
0x69, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x7b, 0x42,
0xb4, 0x09, 0xcb, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x42, 0x69,
0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
0x65, 0x72, 0x7b, 0x42, 0xc0, 0x21, 0x8a, 0x7b };
char peer1_62[] = {
0x3f, 0x19, 0x99, 0x9a, 0x7b, 0x3f, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x11, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x79, 0x5f, 0x45, 0x71, 0x75, 0x69, 0x70, 0x6d,
0x65, 0x6e, 0x74, 0x7b, 0x46, 0x16, 0x00, 0x8f,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x40, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0d, 0x52, 0x6f, 0x62, 0x6f, 0x74,
0x5f, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x73,
0x7b, 0x45, 0x35, 0x41, 0xc5, 0x7b, 0x41, 0xc8,
0x00, 0x00, 0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e,
0x57, 0x65, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x5f,
0x4c, 0x61, 0x73, 0x65, 0x72, 0x73, 0x7b, 0x43,
0x34, 0x2f, 0xa6, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x15, 0x41, 0x74,
0x6d, 0x6f, 0x73, 0x70, 0x68, 0x65, 0x72, 0x69,
0x63, 0x5f, 0x53, 0x63, 0x72, 0x75, 0x62, 0x62,
0x65, 0x72, 0x73, 0x7b, 0x46, 0xa2, 0xb9, 0x3e,
0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x41, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0d, 0x42, 0x6f, 0x72, 0x69, 0x6e,
0x67, 0x5f, 0x44, 0x72, 0x6f, 0x69, 0x64, 0x73,
0x7b, 0x42, 0x8a, 0xf8, 0x7b, 0x7b, 0x43, 0x16,
0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0a,
0x45, 0x78, 0x70, 0x6c, 0x6f, 0x73, 0x69, 0x76,
0x65, 0x73, 0x7b, 0x42, 0x92, 0x97, 0x96, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0c, 0x48, 0x75, 0x6c, 0x6c, 0x5f, 0x50,
0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x7b, 0x42,
0x92, 0xc1, 0x94, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x4c, 0x61,
0x73, 0x65, 0x72, 0x5f, 0x44, 0x72, 0x69, 0x6c,
0x6c, 0x73, 0x7b, 0x42, 0x92, 0x9f, 0x29, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0a, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x5f,
0x41, 0x6c, 0x6c, 0x73, 0x7b, 0x42, 0x87, 0xd8,
0x4d, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x13, 0x4d, 0x61, 0x74, 0x65,
0x72, 0x69, 0x61, 0x6c, 0x5f, 0x50, 0x72, 0x6f,
0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x73, 0x7b,
0x47, 0x07, 0x9a, 0x53, 0x7b, 0x42, 0x20, 0x00,
0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f, 0x57,
0x61, 0x73, 0x74, 0x65, 0x5f, 0x52, 0x65, 0x63,
0x79, 0x63, 0x6c, 0x65, 0x72, 0x73, 0x7b, 0x46,
0x90, 0xa4, 0xc5, 0x7b, 0x41, 0xa0, 0x00, 0x00 };
char peer1_63[] = {
0x7b, 0x41, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b, 0x41, 0x4d,
0x5f, 0x4d, 0x61, 0x67, 0x63, 0x65, 0x6c, 0x6c,
0x73, 0x7b, 0x42, 0x68, 0x66, 0xd0, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x07, 0x42, 0x69, 0x6f, 0x63, 0x65, 0x6c, 0x6c,
0x7b, 0x42, 0x68, 0x2d, 0x52, 0x7b, 0x3f, 0x4c,
0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x17,
0x43, 0x68, 0x69, 0x74, 0x74, 0x79, 0x2d, 0x63,
0x68, 0x69, 0x74, 0x74, 0x79, 0x2d, 0x62, 0x6f,
0x6f, 0x6d, 0x2d, 0x62, 0x6f, 0x6f, 0x6d, 0x7b,
0x42, 0x04, 0xc1, 0x9b, 0x7b, 0x41, 0x20, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x09, 0x46,
0x75, 0x65, 0x6c, 0x5f, 0x43, 0x65, 0x6c, 0x6c,
0x7b, 0x42, 0x68, 0x66, 0x45, 0x7b, 0x40, 0x00,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10,
0x46, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x49,
0x6e, 0x6a, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73,
0x7b, 0x42, 0x68, 0x49, 0x97, 0x7b, 0x41, 0x00,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b,
0x48, 0x2d, 0x44, 0x69, 0x73, 0x70, 0x65, 0x6e,
0x73, 0x65, 0x72, 0x7b, 0x42, 0x68, 0x0d, 0xf8,
0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0c, 0x4e, 0x75, 0x63, 0x6c, 0x65,
0x61, 0x72, 0x5f, 0x50, 0x6f, 0x64, 0x73, 0x7b,
0x42, 0x68, 0x60, 0x2f, 0x7b, 0x41, 0x20, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x14, 0x52,
0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x64, 0x5f,
0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, 0x6e,
0x69, 0x63, 0x73, 0x7b, 0x43, 0x3e, 0x06, 0x6d,
0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0f, 0x52, 0x65, 0x63, 0x79, 0x63,
0x6c, 0x65, 0x64, 0x5f, 0x4d, 0x65, 0x74, 0x61,
0x6c, 0x73, 0x7b, 0x42, 0x48, 0x29, 0x0d, 0x7b,
0x43, 0xfa, 0x00, 0x00, 0x7b, 0x42, 0x48, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0c, 0x52, 0x65, 0x63, 0x79, 0x63, 0x6c,
0x65, 0x64, 0x5f, 0x4f, 0x69, 0x6c, 0x7b, 0x42,
0x70, 0x2a, 0xdf, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x11, 0x52, 0x65,
0x63, 0x79, 0x63, 0x6c, 0x65, 0x64, 0x5f, 0x50,
0x6c, 0x61, 0x73, 0x74, 0x69, 0x63, 0x73, 0x7b,
0x42, 0x18, 0x43, 0x13, 0x7b, 0x41, 0x70, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x06, 0x42,
0x6f, 0x6e, 0x73, 0x61, 0x69, 0x7b, 0x43, 0x4f,
0x2d, 0x42, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b,
0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x03, 0x21, 0xbc, 0x00, 0x09, 0x4c, 0x69, 0x76,
0x65, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b, 0x42,
0xb6, 0x80, 0xc9, 0x7b, 0x42, 0x70, 0x00, 0x00,
0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x42, 0x72,
0x61, 0x6e, 0x64, 0x79, 0x7b, 0x42, 0x78, 0x71,
0x6a, 0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x0e, 0x4d, 0x61, 0x6c, 0x74,
0x5f, 0x42, 0x65, 0x76, 0x65, 0x72, 0x61, 0x67,
0x65, 0x73, 0x7b, 0x42, 0x1f, 0xd1, 0xb8, 0x7b,
0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0a, 0x53, 0x70, 0x61, 0x63, 0x65, 0x5f,
0x47, 0x72, 0x6f, 0x67, 0x7b, 0x42, 0x54, 0xcc,
0x9a, 0x7b, 0x3f, 0xe6, 0x66, 0x66, 0x7b, 0x40,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x07, 0x53, 0x70, 0x69, 0x72,
0x69, 0x74, 0x73, 0x7b, 0x42, 0x43, 0x4b, 0xa5,
0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x05, 0x57, 0x69, 0x6e, 0x65, 0x73,
0x7b, 0x42, 0xb1, 0x4d, 0x6e, 0x7b, 0x3f, 0x66,
0x66, 0x66, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06,
0x43, 0x6f, 0x74, 0x74, 0x6f, 0x6e, 0x7b, 0x42,
0xb9, 0x39, 0x6e, 0x7b, 0x41, 0x30, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x4c, 0x75,
0x6d, 0x62, 0x65, 0x72, 0x7b, 0x42, 0xa2, 0x03,
0x2b, 0x7b, 0x41, 0x88, 0x00, 0x00, 0x7b, 0x41,
0xd8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x06, 0x52, 0x75, 0x62, 0x62,
0x65, 0x72, 0x7b, 0x42, 0xe7, 0x71, 0x1e, 0x7b,
0x3f, 0xc0, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x05, 0x57, 0x61, 0x74, 0x65, 0x72, 0x7b,
0x40, 0xf7, 0x36, 0x88, 0x7b, 0x41, 0x20, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x0c, 0x41,
0x73, 0x74, 0x72, 0x61, 0x6c, 0x5f, 0x47, 0x61,
0x73, 0x65, 0x73, 0x7b, 0x42, 0x29, 0x31, 0x1a,
0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41, 0xc8,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x11, 0x41, 0x74, 0x6d, 0x6f, 0x73,
0x70, 0x68, 0x65, 0x72, 0x69, 0x63, 0x5f, 0x47,
0x61, 0x73, 0x65, 0x73, 0x7b, 0x41, 0xfd, 0xd6,
0x20, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0d, 0x48, 0x61, 0x6c, 0x6f,
0x67, 0x65, 0x6e, 0x5f, 0x47, 0x61, 0x73, 0x65,
0x73, 0x7b, 0x42, 0xa9, 0x26, 0x82, 0x7b, 0x3f,
0x99, 0x99, 0x9a, 0x7b, 0x41, 0xc8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0b, 0x4e, 0x6f, 0x62, 0x6c, 0x65, 0x5f, 0x47,
0x61, 0x73, 0x65, 0x73, 0x7b, 0x42, 0x89, 0xa2,
0x54, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x06, 0x42, 0x75, 0x74, 0x61,
0x6e, 0x65, 0x7b, 0x42, 0xab, 0xbc, 0xa7, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x04, 0x43, 0x6f, 0x61, 0x6c, 0x7b, 0x41,
0x66, 0x08, 0x2d, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x44, 0x69,
0x65, 0x73, 0x65, 0x6c, 0x7b, 0x42, 0xba, 0x16,
0x2e, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0b, 0x4e, 0x61, 0x74, 0x75,
0x72, 0x61, 0x6c, 0x5f, 0x47, 0x61, 0x73, 0x7b };
char peer1_64[] = {
0x42, 0x83, 0xda, 0x6d, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x03, 0x4f,
0x69, 0x6c, 0x7b, 0x42, 0x64, 0xc0, 0x64, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x09, 0x50, 0x65, 0x74, 0x72, 0x6f, 0x6c,
0x65, 0x75, 0x6d, 0x7b, 0x42, 0x80, 0xc1, 0x58,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x11, 0x43, 0x6f, 0x72, 0x75, 0x6e,
0x64, 0x75, 0x6d, 0x5f, 0x43, 0x72, 0x79, 0x73,
0x74, 0x61, 0x6c, 0x73, 0x7b, 0x44, 0x7a, 0x04,
0x93, 0x7b, 0x41, 0xf0, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x12, 0x44, 0x69, 0x6c, 0x69,
0x74, 0x68, 0x69, 0x75, 0x6d, 0x5f, 0x43, 0x72,
0x79, 0x73, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x44,
0x6f, 0x50, 0xbd, 0x7b, 0x41, 0xa0, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f, 0x51, 0x75,
0x61, 0x72, 0x74, 0x7a, 0x5f, 0x43, 0x72, 0x79,
0x73, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x44, 0x32,
0x9c, 0x20, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x13, 0x54, 0x72, 0x69,
0x6c, 0x69, 0x74, 0x68, 0x69, 0x75, 0x6d, 0x5f,
0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c, 0x73,
0x7b, 0x44, 0x8e, 0xe0, 0x37, 0x7b, 0x41, 0xa0,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x1f, 0x21, 0xbc, 0x00, 0x0d,
0x41, 0x6c, 0x6b, 0x61, 0x6c, 0x69, 0x5f, 0x4d,
0x65, 0x74, 0x61, 0x6c, 0x73, 0x7b, 0x42, 0x01,
0x98, 0xcf, 0x7b, 0x42, 0x82, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x20, 0x21, 0xbc, 0x00, 0x0b, 0x42, 0x61, 0x73,
0x65, 0x5f, 0x4d, 0x65, 0x74, 0x61, 0x6c, 0x73,
0x7b, 0x41, 0x7e, 0x93, 0x8b, 0x7b, 0x42, 0xb4,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x12,
0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x53, 0x74, 0x6f,
0x6e, 0x65, 0x7b, 0x41, 0x76, 0xfb, 0xa5, 0x7b,
0x42, 0xf0, 0x00, 0x00, 0x7b, 0x42, 0x48, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0c, 0x46, 0x61, 0x63, 0x69, 0x6e, 0x67,
0x5f, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x7b, 0x42,
0x9a, 0x5b, 0x5f, 0x7b, 0x42, 0x48, 0x00, 0x00,
0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x12, 0x4e, 0x61,
0x74, 0x75, 0x72, 0x61, 0x6c, 0x5f, 0x53, 0x63,
0x75, 0x6c, 0x70, 0x74, 0x75, 0x72, 0x65, 0x73,
0x7b, 0x43, 0x87, 0x03, 0x93, 0x7b, 0x42, 0x82 };
char peer1_65[] = {
0x00, 0x00, 0x7b, 0x42, 0x48, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x05,
0x41, 0x63, 0x69, 0x64, 0x73, 0x7b, 0x42, 0xbd,
0x0e, 0x96, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x09, 0x43, 0x61, 0x74,
0x61, 0x6c, 0x79, 0x73, 0x74, 0x73, 0x7b, 0x42,
0xbc, 0xd9, 0xaf, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e, 0x43, 0x68,
0x65, 0x6d, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x46,
0x75, 0x65, 0x6c, 0x73, 0x7b, 0x42, 0xbc, 0xf1,
0xd0, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0c, 0x43, 0x68, 0x65, 0x6d,
0x69, 0x63, 0x61, 0x6c, 0x5f, 0x4d, 0x69, 0x78,
0x7b, 0x42, 0xbc, 0xe5, 0xd5, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x04,
0x44, 0x79, 0x65, 0x73, 0x7b, 0x42, 0xbd, 0x2e,
0x92, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x04,
0x21, 0xbc, 0x00, 0x06, 0x45, 0x73, 0x74, 0x65,
0x72, 0x73, 0x7b, 0x42, 0xbd, 0x30, 0x55, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc,
0x00, 0x07, 0x45, 0x74, 0x68, 0x61, 0x6e, 0x6f,
0x6c, 0x7b, 0x42, 0xbd, 0x23, 0xc4, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x0b, 0x48, 0x65, 0x61, 0x76, 0x79, 0x5f, 0x57,
0x61, 0x74, 0x65, 0x72, 0x7b, 0x42, 0xbc, 0xd7,
0x3b, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0e, 0x50, 0x65, 0x74, 0x72,
0x6f, 0x63, 0x68, 0x65, 0x6d, 0x69, 0x63, 0x61,
0x6c, 0x73, 0x7b, 0x42, 0xbd, 0x2d, 0x2f, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0e, 0x52, 0x61, 0x72, 0x65, 0x5f, 0x43,
0x61, 0x74, 0x61, 0x6c, 0x79, 0x73, 0x74, 0x73,
0x7b, 0x43, 0x3c, 0xe3, 0x1f, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0f,
0x41, 0x6e, 0x74, 0x69, 0x5f, 0x43, 0x6f, 0x72,
0x72, 0x6f, 0x73, 0x69, 0x76, 0x65, 0x73, 0x7b,
0x42, 0xf7, 0x38, 0x93, 0x7b, 0x41, 0x90, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x04, 0x47,
0x6f, 0x6c, 0x64, 0x7b, 0x42, 0xdb, 0x8f, 0x85,
0x7b, 0x41, 0x98, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0b, 0x52, 0x61, 0x72, 0x65, 0x5f,
0x45, 0x61, 0x72, 0x74, 0x68, 0x73, 0x7b, 0x42,
0xd6, 0x2e, 0x5f, 0x7b, 0x41, 0x90, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x08, 0x44, 0x69,
0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x73, 0x7b, 0x44,
0x4f, 0x25, 0xad, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x14, 0x49, 0x6e,
0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c,
0x5f, 0x47, 0x65, 0x6d, 0x73, 0x74, 0x6f, 0x6e,
0x65, 0x73, 0x7b, 0x44, 0x6a, 0x15, 0xa6, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x06, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x73,
0x7b, 0x44, 0x6a, 0x12, 0x9a, 0x7b, 0x40, 0x40,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x11,
0x52, 0x65, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x63,
0x65, 0x64, 0x5f, 0x52, 0x75, 0x62, 0x62, 0x65,
0x72, 0x7b, 0x44, 0x6a, 0x14, 0x95, 0x7b, 0x3f,
0xd9, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x11, 0x53, 0x6f, 0x72, 0x69, 0x72, 0x5f, 0x4c,
0x69, 0x67, 0x68, 0x74, 0x73, 0x74, 0x6f, 0x6e,
0x65, 0x73, 0x7b, 0x44, 0x6a, 0x14, 0x4c, 0x7b,
0x3f, 0x4c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0b, 0x57, 0x6f, 0x6f, 0x64, 0x5f, 0x42,
0x6f, 0x61, 0x72, 0x64, 0x73, 0x7b, 0x42, 0xd7,
0x95, 0x00, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x06, 0x52, 0x61, 0x64,
0x69, 0x75, 0x6d, 0x7b, 0x43, 0x89, 0x2e, 0x43,
0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x07, 0x54, 0x68, 0x6f, 0x72, 0x69,
0x75, 0x6d, 0x7b, 0x43, 0x4d, 0xcf, 0xa9, 0x7b,
0x41, 0x30, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x07, 0x55, 0x72, 0x61, 0x6e, 0x69, 0x75,
0x6d, 0x7b, 0x43, 0xb9, 0x3d, 0x8f, 0x7b, 0x41,
0x98, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x05, 0x42, 0x6f, 0x6f, 0x6b, 0x73, 0x7b, 0x42,
0x53, 0xa1, 0xc3, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x07, 0x45, 0x72,
0x6f, 0x74, 0x69, 0x63, 0x61, 0x7b, 0x44, 0x2b,
0xcd, 0x89, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x40, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x05, 0x47, 0x61, 0x6d,
0x65, 0x73, 0x7b, 0x42, 0x5c, 0x07, 0x46, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x08, 0x48, 0x6f, 0x6c, 0x6f, 0x76, 0x69,
0x64, 0x73, 0x7b, 0x42, 0x71, 0x6c, 0x71, 0x7b,
0x3d, 0xcc, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x13, 0x4d, 0x75, 0x73, 0x69, 0x63, 0x61,
0x6c, 0x5f, 0x49, 0x6e, 0x73, 0x74, 0x72, 0x75,
0x6d, 0x65, 0x6e, 0x74, 0x73, 0x7b, 0x42, 0x5b,
0xf8, 0xde, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x05, 0x4d, 0x75, 0x73,
0x69, 0x6b, 0x7b, 0x42, 0x53, 0xa9, 0xf5, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0e, 0x50, 0x6c, 0x65, 0x61, 0x73, 0x75,
0x72, 0x65, 0x5f, 0x42, 0x6f, 0x72, 0x67, 0x73,
0x7b, 0x44, 0x0c, 0x16, 0x05, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x06, 0x21, 0xbc, 0x00, 0x13,
0x43, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72,
0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x65, 0x72,
0x61, 0x6e, 0x74, 0x7b, 0x42, 0xb4, 0x1f, 0xc6 };
char peer1_66[] = {
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x0e, 0x43, 0x72, 0x79, 0x6f, 0x67,
0x65, 0x6e, 0x69, 0x63, 0x5f, 0x50, 0x6f, 0x64,
0x73, 0x7b, 0x43, 0xfc, 0x80, 0xe4, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x40, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc, 0x00,
0x0f, 0x44, 0x4e, 0x41, 0x5f, 0x52, 0x65, 0x73,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72,
0x7b, 0x42, 0xb4, 0x08, 0x12, 0x7b, 0x3e, 0x99,
0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0e,
0x46, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x41, 0x69,
0x64, 0x5f, 0x4b, 0x69, 0x74, 0x73, 0x7b, 0x43,
0xf0, 0x00, 0x89, 0x7b, 0x40, 0xe0, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c, 0x48, 0x79,
0x70, 0x6f, 0x73, 0x79, 0x72, 0x69, 0x6e, 0x67,
0x65, 0x73, 0x7b, 0x43, 0xf0, 0x03, 0x69, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc,
0x00, 0x0b, 0x4d, 0x65, 0x64, 0x69, 0x63, 0x61,
0x6c, 0x5f, 0x4b, 0x69, 0x74, 0x7b, 0x42, 0xb4,
0x09, 0x9a, 0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x73, 0x65,
0x75, 0x64, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x6d,
0x73, 0x7b, 0x42, 0xb4, 0x0f, 0xc7, 0x7b, 0x41,
0x80, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0a, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5f, 0x54,
0x61, 0x6e, 0x6b, 0x7b, 0x44, 0x39, 0x85, 0xd2,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40, 0xa0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x10, 0x52, 0x6f, 0x62, 0x6f, 0x74,
0x69, 0x63, 0x5f, 0x53, 0x75, 0x72, 0x67, 0x65,
0x6f, 0x6e, 0x73, 0x7b, 0x43, 0xf0, 0x0c, 0x4c,
0x7b, 0x3e, 0x99, 0x99, 0x9a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0d, 0x50, 0x72, 0x6f, 0x67, 0x65,
0x6e, 0x79, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b,
0x7b, 0x48, 0xc3, 0x50, 0x00, 0x7b, 0x42, 0x78,
0x00, 0x00, 0x7b, 0x44, 0x96, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x12,
0x53, 0x63, 0x68, 0x72, 0x6f, 0x65, 0x64, 0x69,
0x6e, 0x67, 0x65, 0x72, 0x2e, 0x73, 0x74, 0x6f,
0x63, 0x6b, 0x7b, 0x48, 0xf9, 0x06, 0x00, 0x7b,
0x42, 0xa0, 0x00, 0x00, 0x7b, 0x44, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x11, 0x21, 0xbc,
0x00, 0x10, 0x49, 0x6f, 0x6e, 0x5f, 0x42, 0x75,
0x72, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x40, 0x78, 0x69, 0x84, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00 };
char peer1_67[] = {
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x11, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x5f,
0x44, 0x72, 0x69, 0x76, 0x65, 0x72, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x43, 0x3c, 0xa9, 0x6c,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x10, 0x4d, 0x69, 0x6e, 0x69, 0x5f,
0x44, 0x72, 0x69, 0x76, 0x65, 0x72, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x43, 0x0d, 0x7e, 0xd4,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x0d, 0x64, 0x75, 0x6d, 0x62, 0x66,
0x69, 0x72, 0x65, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x41, 0x97, 0xa5, 0x2b, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x12,
0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x5f, 0x6f,
0x72, 0x5f, 0x66, 0x6f, 0x65, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x42, 0xbc, 0xcb, 0x1e, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc,
0x00, 0x0f, 0x68, 0x65, 0x61, 0x74, 0x73, 0x65,
0x65, 0x6b, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d,
0x6f, 0x7b, 0x42, 0x04, 0x07, 0xb6, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x16, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x72,
0x65, 0x63, 0x6f, 0x67, 0x6e, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b,
0x42, 0x8d, 0xa7, 0xba, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00,
0x00, 0x00, 0x10, 0x21, 0xbc, 0x00, 0x07, 0x61,
0x72, 0x6d, 0x6f, 0x72, 0x30, 0x31, 0x7b, 0x45,
0x6b, 0xb7, 0x9a, 0x7b, 0x41, 0xa0, 0x00, 0x00,
0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x07, 0x61, 0x72,
0x6d, 0x6f, 0x72, 0x30, 0x32, 0x7b, 0x45, 0xeb,
0xb7, 0x6c, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0x7b,
0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x19, 0x21, 0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d,
0x6f, 0x72, 0x30, 0x33, 0x7b, 0x46, 0x6b, 0xb7,
0x32, 0x7b, 0x41, 0xf0, 0x00, 0x00, 0x7b, 0x00,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x1c,
0x21, 0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f,
0x72, 0x30, 0x34, 0x7b, 0x46, 0xeb, 0xb6, 0xe7,
0x7b, 0x41, 0xc8, 0x00, 0x00, 0x7b, 0x00, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21,
0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72,
0x30, 0x35, 0x7b, 0x47, 0x6b, 0xb6, 0xe6, 0x7b,
0x41, 0xa0, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc,
0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30,
0x36, 0x7b, 0x47, 0xeb, 0xb6, 0xdd, 0x7b, 0x41,
0x70, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x07, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x30, 0x31, 0x7b, 0x43, 0xeb, 0xba,
0x63, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x40,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x32, 0x7b,
0x44, 0x6b, 0xbb, 0x9e, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0d, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x30, 0x33, 0x7b, 0x44, 0xeb, 0xb7, 0x86, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0x7b, 0x40, 0xc0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x34, 0x7b, 0x45, 0x6b,
0xb7, 0x4d, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b,
0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0f, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x35,
0x7b, 0x45, 0xeb, 0xb7, 0x8e, 0x7b, 0x41, 0x20,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x30, 0x36, 0x7b, 0x46, 0x6b, 0xb6, 0xfc,
0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b, 0x41, 0x40,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x37, 0x7b, 0x46,
0xeb, 0xb7, 0x11, 0x7b, 0x41, 0x60, 0x00, 0x00,
0x7b, 0x41, 0x60, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x07, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x38, 0x7b, 0x47, 0x6b, 0xb6, 0xdd, 0x7b, 0x41,
0x80, 0x00, 0x00, 0x7b, 0x41, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x30, 0x39, 0x7b, 0x47, 0xeb, 0xb6,
0xdf, 0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x41,
0x90, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x31, 0x30, 0x7b,
0x48, 0x6b, 0xb6, 0xdd, 0x7b, 0x41, 0xa0, 0x00,
0x00, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0c, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x31, 0x31, 0x7b, 0x48, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0xb0, 0x00, 0x00, 0x7b, 0x41, 0xb0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0d, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x31, 0x32, 0x7b, 0x49, 0x6b,
0xb6, 0xdc, 0x7b, 0x41, 0xc0, 0x00, 0x00, 0x7b,
0x41, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0d, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x31, 0x33,
0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0xd0,
0x00, 0x00, 0x7b, 0x41, 0xd0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x31, 0x34, 0x7b, 0x4a, 0x6b, 0xb6, 0xdc,
0x7b, 0x41, 0xe0, 0x00, 0x00, 0x7b, 0x41, 0xe0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x31, 0x35, 0x7b, 0x4a,
0xeb, 0xb6, 0xdb, 0x7b, 0x41, 0xf0, 0x00, 0x00,
0x7b, 0x41, 0xf0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x11, 0x21, 0xbc, 0x00, 0x0d, 0x65, 0x63,
0x6d, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67,
0x65, 0x30, 0x31, 0x7b, 0x45, 0x93, 0x52, 0x71,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x0d, 0x65, 0x63, 0x6d, 0x5f, 0x70,
0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x30, 0x32,
0x7b, 0x46, 0x5c, 0xfb, 0x9f, 0x7b, 0x3c, 0x23 };
char peer1_68[] = {
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x0d,
0x65, 0x63, 0x6d, 0x5f, 0x70, 0x61, 0x63, 0x6b,
0x61, 0x67, 0x65, 0x30, 0x33, 0x7b, 0x46, 0x5c,
0xfb, 0xb2, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x0a, 0x6a, 0x75, 0x6d,
0x70, 0x5f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x7b,
0x45, 0xeb, 0xb7, 0x41, 0x7b, 0x41, 0x80, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x31, 0x7b,
0x45, 0x6b, 0xb7, 0xea, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x32, 0x7b,
0x45, 0xeb, 0xb7, 0x75, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x33, 0x7b,
0x46, 0x6b, 0xb7, 0x3c, 0x7b, 0x40, 0x80, 0x00,
0x00, 0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x34, 0x7b,
0x46, 0xeb, 0xb6, 0xe2, 0x7b, 0x41, 0x00, 0x00,
0x00, 0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x35, 0x7b,
0x47, 0x6b, 0xb6, 0xec, 0x7b, 0x41, 0x40, 0x00,
0x00, 0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x6d,
0x75, 0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72,
0x64, 0x72, 0x69, 0x76, 0x65, 0x30, 0x36, 0x7b,
0x47, 0xeb, 0xb6, 0xe9, 0x7b, 0x41, 0x90, 0x00,
0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0d, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x31,
0x7b, 0x43, 0xeb, 0xb8, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30,
0x32, 0x7b, 0x44, 0x6b, 0xba, 0xf8, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x40, 0x60, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x30, 0x33, 0x7b, 0x44, 0xeb, 0xb9, 0x7b, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x40, 0xc0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc,
0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x30, 0x34, 0x7b, 0x45, 0x6b, 0xb8, 0x96,
0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x41, 0x30,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x30, 0x35, 0x7b, 0x45, 0xeb, 0xb6,
0xf5, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x41,
0x90, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x30, 0x36, 0x7b, 0x46, 0x6b,
0xb7, 0x0e, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b,
0x42, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x08, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x30, 0x37, 0x7b, 0x46,
0xeb, 0xb6, 0xea, 0x7b, 0x40, 0xe0, 0x00, 0x00,
0x7b, 0x42, 0x70, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0e, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x38, 0x7b,
0x47, 0x6b, 0xb6, 0xde, 0x7b, 0x41, 0x00, 0x00,
0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x39,
0x7b, 0x47, 0xeb, 0xb6, 0xe2, 0x7b, 0x41, 0x10,
0x00, 0x00, 0x7b, 0x43, 0x2f, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31,
0x30, 0x7b, 0x48, 0x6b, 0xb6, 0xe1, 0x7b, 0x41,
0x20, 0x00, 0x00, 0x7b, 0x43, 0x9b, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x31, 0x31, 0x7b, 0x48, 0xeb, 0xb6, 0xde, 0x7b,
0x41, 0x40, 0x00, 0x00, 0x7b, 0x44, 0x07, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc,
0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x31, 0x32, 0x7b, 0x49, 0x6b, 0xb6, 0xdd,
0x7b, 0x41, 0x60, 0x00, 0x00, 0x7b, 0x44, 0x6d,
0x80, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x31, 0x33, 0x7b, 0x49, 0xeb, 0xb6,
0xdc, 0x7b, 0x41, 0x80, 0x00, 0x00, 0x7b, 0x44,
0xce, 0x40, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x31, 0x34, 0x7b, 0x4a, 0x6b,
0xb6, 0xdb, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b,
0x45, 0x34, 0xa0, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x02, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x31, 0x35, 0x7b, 0x4a,
0xeb, 0xb6, 0xdb, 0x7b, 0x41, 0xc0, 0x00, 0x00,
0x7b, 0x45, 0x9d, 0xd0, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0a, 0x21, 0xbc, 0x00, 0x08, 0x68, 0x61,
0x77, 0x6b, 0x65, 0x79, 0x65, 0x31, 0x7b, 0x46,
0xeb, 0xb6, 0xe8, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x41, 0x50, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x06, 0x21, 0xbc, 0x00, 0x08, 0x68, 0x61,
0x77, 0x6b, 0x65, 0x79, 0x65, 0x32, 0x7b, 0x47,
0x6b, 0xb6, 0xe2, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x41, 0x88, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x08, 0x68, 0x61,
0x77, 0x6b, 0x65, 0x79, 0x65, 0x33, 0x7b, 0x47,
0xeb, 0xb6, 0xe9, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x08, 0x68, 0x61,
0x77, 0x6b, 0x65, 0x79, 0x65, 0x34, 0x7b, 0x48,
0x13, 0x52, 0x50, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x18, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x31, 0x7b, 0x43, 0x6b, 0xc3, 0xc5, 0x7b,
0x3f, 0x00, 0x00, 0x00, 0x7b, 0x40, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x32, 0x7b, 0x43,
0xeb, 0xbb, 0x73, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x18, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75 };
char peer1_69[] = {
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x33, 0x7b, 0x44, 0x6b, 0xb9, 0x2a, 0x7b,
0x3f, 0xc0, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x15, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x34, 0x7b, 0x44,
0xeb, 0xb9, 0x86, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x13, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x35, 0x7b, 0x45, 0x6b, 0xb7, 0x9e, 0x7b,
0x40, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x11, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x36, 0x7b, 0x45,
0xeb, 0xb7, 0xb7, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0f, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x37, 0x7b, 0x46, 0x6b, 0xb6, 0xf6, 0x7b,
0x40, 0x60, 0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x16, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x38, 0x7b, 0x46,
0xeb, 0xb6, 0xf3, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x41, 0xf0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x10, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x39, 0x7b, 0x47, 0x6b, 0xb6, 0xe2, 0x7b,
0x40, 0x90, 0x00, 0x00, 0x7b, 0x42, 0x0c, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x12, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x7b, 0x47,
0xeb, 0xb6, 0xdd, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0x7b, 0x42, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x15, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x31, 0x7b, 0x48, 0x6b, 0xb6, 0xe1, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0x7b, 0x42, 0x38, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x32, 0x7b, 0x48,
0xeb, 0xb6, 0xdf, 0x7b, 0x40, 0xe0, 0x00, 0x00,
0x7b, 0x42, 0x50, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x19, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x33, 0x7b, 0x49, 0x6b, 0xb6, 0xdb, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x42, 0x64, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x34, 0x7b, 0x49,
0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0x10, 0x00, 0x00,
0x7b, 0x42, 0x7c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x35, 0x7b, 0x4a, 0x6b, 0xb6, 0xdb, 0x7b,
0x41, 0x20, 0x00, 0x00, 0x7b, 0x42, 0x8c, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x16, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x31, 0x7b, 0x43,
0xeb, 0xc1, 0x7f, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x14, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x32, 0x7b, 0x44, 0x6b, 0xbc, 0x2a, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x33, 0x7b, 0x44,
0xeb, 0xb8, 0x2a, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x41, 0x50, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0f, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x34, 0x7b, 0x45, 0x6b, 0xb7, 0xfa, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x41, 0x90, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x35, 0x7b, 0x45,
0xeb, 0xb7, 0x45, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0x7b, 0x41, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0f, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x36, 0x7b, 0x46, 0x6b, 0xb6, 0xfc, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0x7b, 0x41, 0xf8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x13, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x37, 0x7b, 0x46,
0xeb, 0xb6, 0xe2, 0x7b, 0x40, 0xe0, 0x00, 0x00,
0x7b, 0x42, 0x18, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x14, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x38, 0x7b, 0x47, 0x6b, 0xb6, 0xdd, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x42, 0x34, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x39, 0x7b, 0x47,
0xeb, 0xb6, 0xe5, 0x7b, 0x41, 0x10, 0x00, 0x00,
0x7b, 0x42, 0x54, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x11, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x30, 0x7b, 0x48, 0x6b, 0xb6, 0xe2, 0x7b,
0x41, 0x20, 0x00, 0x00, 0x7b, 0x42, 0x74, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x17, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x31, 0x7b, 0x48,
0xeb, 0xb6, 0xdf, 0x7b, 0x41, 0x30, 0x00, 0x00 };
char peer1_70[] = {
0x7b, 0x42, 0x8a, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x15, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x32, 0x7b, 0x49, 0x6b, 0xb6, 0xdc, 0x7b,
0x41, 0x40, 0x00, 0x00, 0x7b, 0x42, 0x9c, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x17, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x33, 0x7b, 0x49,
0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0x50, 0x00, 0x00,
0x7b, 0x42, 0xac, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x09, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x34, 0x7b, 0x4a, 0x6b, 0xb6, 0xdc, 0x7b,
0x41, 0x60, 0x00, 0x00, 0x7b, 0x42, 0xbe, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x35, 0x7b, 0x4a,
0xeb, 0xb6, 0xdb, 0x7b, 0x41, 0x70, 0x00, 0x00,
0x7b, 0x42, 0xd0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x06, 0x21, 0xbc, 0x00, 0x0e, 0x53, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x42, 0x72, 0x65,
0x61, 0x6b, 0x65, 0x72, 0x7b, 0x48, 0xb8, 0x26,
0xdb, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x06,
0x21, 0xbc, 0x00, 0x0d, 0x74, 0x72, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x5f, 0x68, 0x65, 0x61, 0x76,
0x79, 0x7b, 0x46, 0xca, 0x91, 0x3d, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x0a, 0x44, 0x69, 0x73, 0x73, 0x6f, 0x6e, 0x61,
0x6e, 0x63, 0x65, 0x7b, 0x48, 0xe6, 0x30, 0x96,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21,
0xbc, 0x00, 0x0f, 0x48, 0x65, 0x70, 0x68, 0x61,
0x65, 0x73, 0x74, 0x75, 0x73, 0x5f, 0x4d, 0x69,
0x6e, 0x69, 0x7b, 0x47, 0xca, 0x91, 0x30, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x08, 0x63, 0x72, 0x69, 0x70, 0x70, 0x6c,
0x65, 0x72, 0x7b, 0x47, 0xdc, 0xfb, 0x7a, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x09, 0x6c, 0x65, 0x65, 0x63, 0x68, 0x5f,
0x67, 0x75, 0x6e, 0x7b, 0x47, 0x73, 0x14, 0xa4,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x61, 0x7a, 0x6f, 0x72,
0x5f, 0x67, 0x75, 0x6e, 0x7b, 0x48, 0xb8, 0x26,
0xde, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0d, 0x72, 0x65, 0x61, 0x70,
0x65, 0x72, 0x5f, 0x63, 0x61, 0x6e, 0x6e, 0x6f,
0x6e, 0x7b, 0x49, 0x38, 0x26, 0xdd, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00,
0x09, 0x73, 0x74, 0x6f, 0x72, 0x6d, 0x66, 0x69,
0x72, 0x65, 0x7b, 0x44, 0xeb, 0xb7, 0xb7, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbd, 0xbc, 0x00, 0x5a, 0x7b, 0x62, 0xaa,
0x4e, 0x5b, 0x7b, 0x51, 0xba, 0x43, 0xb7, 0x7b,
0x4c, 0xbe, 0xbc, 0x20, 0xbe, 0x00, 0x00, 0x01,
0x33, 0xbe, 0x00, 0x00, 0x03, 0xe7, 0x21, 0xbc,
0x00, 0x0f, 0x48, 0x6f, 0x6d, 0x65, 0x5f, 0x41,
0x70, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65,
0x73, 0x7b, 0x42, 0xbc, 0xca, 0x90, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x42, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x03, 0xe7, 0x21, 0xbc, 0x00,
0x10, 0x48, 0x6f, 0x6d, 0x65, 0x5f, 0x46, 0x75,
0x72, 0x6e, 0x69, 0x73, 0x68, 0x69, 0x6e, 0x67,
0x73, 0x7b, 0x43, 0x04, 0x14, 0xbe, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0x7b, 0x42, 0x96, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0xc7, 0x21, 0xbc, 0x00,
0x12, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
0x6c, 0x5f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70,
0x6f, 0x72, 0x74, 0x7b, 0x44, 0xdf, 0x76, 0xaa,
0x7b, 0x42, 0x8a, 0x00, 0x00, 0x7b, 0x42, 0x28,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x03, 0xe7, 0x21,
0xbc, 0x00, 0x0e, 0x52, 0x6f, 0x62, 0x6f, 0x74,
0x5f, 0x53, 0x65, 0x72, 0x76, 0x61, 0x6e, 0x74,
0x73, 0x7b, 0x43, 0xd0, 0x62, 0x36, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0x7b, 0x40, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x03, 0xe7, 0x21, 0xbc, 0x00,
0x08, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
0x73, 0x7b, 0x42, 0x2a, 0x24, 0x6e, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x03, 0xe8, 0x21, 0xbc, 0x00,
0x0c, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d,
0x5f, 0x50, 0x41, 0x44, 0x73, 0x7b, 0x42, 0x29,
0xfe, 0x4f, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x03,
0xe7, 0x21, 0xbc, 0x00, 0x0d, 0x53, 0x74, 0x61,
0x6e, 0x64, 0x61, 0x72, 0x64, 0x5f, 0x50, 0x41,
0x44, 0x73, 0x7b, 0x42, 0x29, 0xbf, 0xff, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x15, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x69,
0x63, 0x61, 0x6c, 0x5f, 0x49, 0x6e, 0x73, 0x74,
0x72, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x7b,
0x44, 0x8d, 0x6f, 0x83, 0x7b, 0x3d, 0x4c, 0xcc,
0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x07, 0x4a,
0x65, 0x77, 0x65, 0x6c, 0x72, 0x79, 0x7b, 0x44,
0x8d, 0x6e, 0x99, 0x7b, 0x3e, 0x99, 0x99, 0x9a,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x50, 0x65,
0x61, 0x72, 0x6c, 0x73, 0x7b, 0x44, 0x8d, 0x70,
0x77, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09,
0x21, 0xbc, 0x00, 0x0c, 0x52, 0x61, 0x72, 0x65,
0x5f, 0x41, 0x72, 0x74, 0x77, 0x6f, 0x72, 0x6b,
0x7b, 0x42, 0xc6, 0x00, 0xc3, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x7c, 0x21, 0xbc, 0x00, 0x0f,
0x41, 0x72, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63,
0x5f, 0x53, 0x63, 0x65, 0x6e, 0x74, 0x73, 0x7b,
0x43, 0x16, 0xf6, 0x0a, 0x7b, 0x3e, 0x4c, 0xcc,
0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x03, 0xe8, 0x21, 0xbc, 0x00, 0x08, 0x43,
0x6c, 0x6f, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x7b,
0x42, 0x62, 0x69, 0x18, 0x7b, 0x42, 0xca, 0x00,
0x00, 0x7b, 0x42, 0xc8, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x03, 0xe8, 0x21, 0xbc, 0x00, 0x09, 0x49,
0x6e, 0x74, 0x61, 0x54, 0x6f, 0x75, 0x63, 0x68,
0x7b, 0x42, 0x3c, 0x94, 0xcf, 0x7b, 0x3f, 0x4c,
0xcc, 0xcd, 0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0xc7, 0x21, 0xbc, 0x00, 0x12,
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c,
0x5f, 0x48, 0x79, 0x67, 0x69, 0x65, 0x6e, 0x69 };
char peer1_71[] = {
0x63, 0x73, 0x7b, 0x42, 0xcf, 0x88, 0x60, 0x7b,
0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x03, 0xe7, 0x21, 0xbc,
0x00, 0x09, 0x56, 0x69, 0x72, 0x74, 0x75, 0x41,
0x72, 0x65, 0x61, 0x7b, 0x42, 0x3c, 0xb8, 0x41,
0x7b, 0x3d, 0x4c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21,
0xbc, 0x00, 0x10, 0x41, 0x65, 0x72, 0x61, 0x4e,
0x65, 0x72, 0x76, 0x65, 0x53, 0x74, 0x69, 0x6d,
0x75, 0x6c, 0x69, 0x7b, 0x42, 0x96, 0xf8, 0x4f,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21,
0xbc, 0x00, 0x0d, 0x52, 0x65, 0x74, 0x72, 0x69,
0x66, 0x69, 0x65, 0x64, 0x53, 0x61, 0x6c, 0x74,
0x7b, 0x42, 0x96, 0xdd, 0x15, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x1b,
0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x64, 0x5f,
0x50, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61,
0x6c, 0x5f, 0x50, 0x72, 0x69, 0x73, 0x6f, 0x6e,
0x65, 0x72, 0x73, 0x7b, 0x44, 0x58, 0xdf, 0x3f,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x10, 0x49, 0x53, 0x4f, 0x5f, 0x50,
0x61, 0x72, 0x74, 0x79, 0x5f, 0x4d, 0x65, 0x6d,
0x62, 0x65, 0x72, 0x7b, 0x44, 0x3c, 0x94, 0xcb,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x0e, 0x49, 0x53, 0x4f, 0x5f, 0x50,
0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x6e, 0x64,
0x61, 0x7b, 0x42, 0xbc, 0x9c, 0x09, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00,
0x18, 0x4c, 0x75, 0x64, 0x64, 0x69, 0x74, 0x65,
0x5f, 0x52, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x6f,
0x75, 0x73, 0x5f, 0x54, 0x72, 0x61, 0x63, 0x74,
0x73, 0x7b, 0x42, 0xbc, 0x98, 0x9d, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x14, 0x4f, 0x76, 0x65, 0x72, 0x65, 0x61, 0x67,
0x65, 0x72, 0x5f, 0x49, 0x6d, 0x6d, 0x69, 0x67,
0x72, 0x61, 0x6e, 0x74, 0x73, 0x7b, 0x43, 0x16,
0xe3, 0xe3, 0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b,
0x43, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x09, 0x21, 0xbc, 0x00, 0x18, 0x53, 0x6f, 0x63,
0x69, 0x61, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x57,
0x6f, 0x72, 0x6b, 0x65, 0x72, 0x5f, 0x4a, 0x6f,
0x75, 0x72, 0x6e, 0x61, 0x6c, 0x7b, 0x42, 0x04,
0x47, 0x87, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x09, 0x21, 0xbc, 0x00, 0x06, 0x49, 0x43, 0x42,
0x49, 0x4e, 0x46, 0x7b, 0x42, 0x97, 0x12, 0xd5,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21,
0xbc, 0x00, 0x07, 0x5a, 0x68, 0x6f, 0x6c, 0x6c,
0x75, 0x73, 0x7b, 0x42, 0x97, 0x13, 0x75, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc,
0x00, 0x0a, 0x42, 0x75, 0x6c, 0x6b, 0x5f, 0x53,
0x65, 0x65, 0x64, 0x73, 0x7b, 0x41, 0xbc, 0xaa,
0x52, 0x7b, 0x42, 0x70, 0x00, 0x00, 0x7b, 0x42,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02,
0x21, 0xbc, 0x00, 0x0c, 0x44, 0x69, 0x73, 0x74,
0x69, 0x6c, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x73,
0x7b, 0x43, 0x3c, 0xac, 0x02, 0x7b, 0x41, 0x40,
0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x10,
0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x65, 0x72,
0x65, 0x64, 0x5f, 0x53, 0x65, 0x65, 0x64, 0x73,
0x7b, 0x41, 0xbd, 0x4a, 0xc5, 0x7b, 0x42, 0x0c,
0x00, 0x00, 0x7b, 0x42, 0x48, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x0b,
0x48, 0x79, 0x64, 0x72, 0x6f, 0x70, 0x6f, 0x6e,
0x69, 0x63, 0x73, 0x7b, 0x42, 0xf5, 0x49, 0x1c,
0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x41, 0xa0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x13, 0x4c, 0x69, 0x76, 0x65, 0x73,
0x74, 0x6f, 0x63, 0x6b, 0x5f, 0x45, 0x71, 0x75,
0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x7b, 0x43,
0x0d, 0x77, 0x49, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x05, 0x21, 0xbc, 0x00, 0x0a, 0x50, 0x65,
0x73, 0x74, 0x69, 0x63, 0x69, 0x64, 0x65, 0x73,
0x7b, 0x42, 0xbc, 0xb8, 0xfa, 0x7b, 0x41, 0xd8,
0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x14,
0x53, 0x79, 0x6e, 0x74, 0x68, 0x65, 0x74, 0x69,
0x63, 0x5f, 0x46, 0x65, 0x72, 0x74, 0x69, 0x6c,
0x69, 0x7a, 0x65, 0x72, 0x7b, 0x43, 0x04, 0x1c,
0xbd, 0x7b, 0x42, 0xa0, 0x00, 0x00, 0x7b, 0x42,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x13, 0x41, 0x75, 0x74, 0x6f,
0x6d, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x46, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x7b,
0x4b, 0xc2, 0x38, 0xfb, 0x7b, 0x46, 0x9c, 0x40,
0x00, 0x7b, 0x46, 0x1c, 0x40, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x15, 0x43,
0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x56, 0x65, 0x68, 0x69,
0x63, 0x6c, 0x65, 0x73, 0x7b, 0x47, 0xa5, 0xbc,
0xa0, 0x7b, 0x43, 0x96, 0x00, 0x00, 0x7b, 0x42,
0x96, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x14, 0x46, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x5f, 0x43, 0x6f, 0x6e, 0x73,
0x74, 0x72, 0x75, 0x63, 0x74, 0x6f, 0x72, 0x73,
0x7b, 0x47, 0xb8, 0x26, 0xea, 0x7b, 0x45, 0x7a,
0x00, 0x00, 0x7b, 0x44, 0x48, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x15,
0x4c, 0x61, 0x6e, 0x64, 0x73, 0x63, 0x61, 0x70,
0x69, 0x6e, 0x67, 0x5f, 0x45, 0x71, 0x75, 0x69,
0x70, 0x6d, 0x65, 0x6e, 0x74, 0x7b, 0x46, 0x74,
0xd9, 0x2b, 0x7b, 0x43, 0x7a, 0x00, 0x00, 0x7b,
0x42, 0x5c, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x09, 0x21, 0xbc, 0x00, 0x10, 0x50, 0x72, 0x65,
0x46, 0x61, 0x62, 0x5f, 0x42, 0x75, 0x69, 0x6c,
0x64, 0x69, 0x6e, 0x67, 0x73, 0x7b, 0x45, 0x81,
0xa4, 0xe3, 0x7b, 0x43, 0x48, 0x00, 0x00, 0x7b,
0x42, 0xfa, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x09, 0x21, 0xbc, 0x00, 0x0f, 0x52, 0x65, 0x63,
0x79, 0x63, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x54,
0x61, 0x6e, 0x6b, 0x73, 0x7b, 0x46, 0xb8, 0x27,
0x03, 0x7b, 0x41, 0x70, 0x00, 0x00, 0x7b, 0x41,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x01, 0x65,
0x21, 0xbc, 0x00, 0x14, 0x52, 0x65, 0x63, 0x79,
0x63, 0x6c, 0x65, 0x64, 0x5f, 0x45, 0x6c, 0x65,
0x63, 0x74, 0x72, 0x6f, 0x6e, 0x69, 0x63, 0x73,
0x7b, 0x43, 0x33, 0x3e, 0x37, 0x7b, 0x40, 0x00,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe };
char peer1_72[] = {
0x00, 0x00, 0x0d, 0x05, 0x21, 0xbc, 0x00, 0x0f,
0x52, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x64,
0x5f, 0x4d, 0x65, 0x74, 0x61, 0x6c, 0x73, 0x7b,
0x42, 0x3c, 0xb7, 0x6f, 0x7b, 0x43, 0xfa, 0x00,
0x00, 0x7b, 0x42, 0x48, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x07, 0xd0, 0x21, 0xbc, 0x00, 0x0c, 0x52,
0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x64, 0x5f,
0x4f, 0x69, 0x6c, 0x7b, 0x42, 0x62, 0x8c, 0xad,
0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x27, 0x0f, 0x21,
0xbc, 0x00, 0x11, 0x52, 0x65, 0x63, 0x79, 0x63,
0x6c, 0x65, 0x64, 0x5f, 0x50, 0x6c, 0x61, 0x73,
0x74, 0x69, 0x63, 0x73, 0x7b, 0x42, 0x0f, 0xa2,
0x80, 0x7b, 0x41, 0x70, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09,
0x21, 0xbc, 0x00, 0x16, 0x41, 0x74, 0x6d, 0x6f,
0x73, 0x70, 0x68, 0x65, 0x72, 0x69, 0x63, 0x5f,
0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x6f,
0x72, 0x73, 0x7b, 0x43, 0xbc, 0x9d, 0xed, 0x7b,
0x42, 0x96, 0x00, 0x00, 0x7b, 0x42, 0x48, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc,
0x00, 0x12, 0x46, 0x6f, 0x72, 0x65, 0x73, 0x74,
0x5f, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72,
0x61, 0x74, 0x6f, 0x72, 0x7b, 0x43, 0xf5, 0x29,
0xcb, 0x7b, 0x42, 0x96, 0x00, 0x00, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x09,
0x21, 0xbc, 0x00, 0x11, 0x4f, 0x7a, 0x6f, 0x6e,
0x65, 0x5f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63,
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x7b, 0x43, 0x9b,
0x9d, 0x02, 0x7b, 0x42, 0x96, 0x00, 0x00, 0x7b,
0x42, 0x48, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x09, 0x21, 0xbc, 0x00, 0x0f, 0x57, 0x65, 0x61,
0x74, 0x68, 0x65, 0x72, 0x5f, 0x43, 0x6f, 0x6e,
0x74, 0x72, 0x6f, 0x6c, 0x7b, 0x43, 0xbc, 0x97,
0xaf, 0x7b, 0x43, 0x66, 0x00, 0x00, 0x7b, 0x42,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x11, 0x58, 0x65, 0x6e, 0x6f,
0x66, 0x6f, 0x72, 0x6d, 0x69, 0x6e, 0x67, 0x5f,
0x55, 0x6e, 0x69, 0x74, 0x73, 0x7b, 0x45, 0xf5,
0xca, 0xfa, 0x7b, 0x47, 0x43, 0x50, 0x00, 0x7b,
0x44, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x27,
0x0f, 0x21, 0xbc, 0x00, 0x0b, 0x41, 0x65, 0x72,
0x61, 0x5f, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x7b, 0x42, 0x16, 0xe5, 0x39, 0x7b, 0x3f, 0xb3,
0x33, 0x33, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00, 0x0e,
0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x65, 0x64,
0x5f, 0x57, 0x61, 0x74, 0x65, 0x72, 0x7b, 0x42,
0x17, 0x3f, 0x8f, 0x7b, 0x40, 0x40, 0x00, 0x00,
0x7b, 0x40, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x07, 0xcf, 0x21, 0xbc, 0x00, 0x07, 0x4a, 0x68,
0x75, 0x72, 0x6c, 0x6f, 0x6e, 0x7b, 0x43, 0x04,
0x0a, 0xce, 0x7b, 0x3f, 0x86, 0x66, 0x66, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x09,
0xc3, 0x21, 0xbc, 0x00, 0x0b, 0x53, 0x61, 0x6c,
0x74, 0x65, 0x64, 0x5f, 0x54, 0x68, 0x6f, 0x6b,
0x7b, 0x42, 0xf5, 0x2b, 0x31, 0x7b, 0x3f, 0x99,
0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00, 0x10,
0x4c, 0x75, 0x78, 0x75, 0x72, 0x79, 0x5f, 0x4d,
0x65, 0x61, 0x6c, 0x70, 0x61, 0x63, 0x6b, 0x73,
0x7b, 0x43, 0x29, 0xd0, 0xde, 0x7b, 0x3f, 0x4c,
0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00, 0x10,
0x52, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x4d,
0x65, 0x61, 0x6c, 0x70, 0x61, 0x63, 0x6b, 0x73,
0x7b, 0x42, 0xbc, 0xbf, 0x76, 0x7b, 0x3f, 0x99,
0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00, 0x12,
0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
0x5f, 0x4d, 0x65, 0x61, 0x6c, 0x70, 0x61, 0x63,
0x6b, 0x73, 0x7b, 0x42, 0xbc, 0xaa, 0x45, 0x7b,
0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x0d, 0x05, 0x21, 0xbc,
0x00, 0x0f, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c,
0x5f, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x73, 0x7b, 0x42, 0xcf, 0x78, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x07, 0xcf, 0x21, 0xbc, 0x00,
0x06, 0x43, 0x6f, 0x66, 0x66, 0x65, 0x65, 0x7b,
0x43, 0x04, 0x0e, 0x1e, 0x7b, 0x3f, 0x40, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00, 0x06, 0x47,
0x72, 0x61, 0x69, 0x6e, 0x73, 0x7b, 0x42, 0x84,
0x08, 0xa1, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x0d,
0x05, 0x21, 0xbc, 0x00, 0x05, 0x4d, 0x65, 0x61,
0x74, 0x73, 0x7b, 0x42, 0xcf, 0x79, 0xfe, 0x7b,
0x3f, 0x8c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x27, 0x10, 0x21, 0xbc,
0x00, 0x07, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x65, 0x7b, 0x42, 0x97, 0x02, 0xcd, 0x7b, 0x3f,
0x8c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x0d, 0x05, 0x21, 0xbc, 0x00,
0x07, 0x53, 0x65, 0x61, 0x66, 0x6f, 0x6f, 0x64,
0x7b, 0x42, 0xd8, 0xf0, 0xb3, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00, 0x09,
0x4e, 0x75, 0x74, 0x72, 0x69, 0x70, 0x61, 0x63,
0x6b, 0x7b, 0x43, 0x0d, 0x75, 0x0f, 0x7b, 0x3f,
0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc, 0x00,
0x09, 0x53, 0x75, 0x73, 0x74, 0x69, 0x70, 0x61,
0x63, 0x6b, 0x7b, 0x43, 0x04, 0x17, 0x69, 0x7b,
0x3f, 0x4c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x27, 0x0f, 0x21, 0xbc };
char peer1_73[] = {
0x00, 0x09, 0x55, 0x6c, 0x74, 0x72, 0x61, 0x70,
0x61, 0x63, 0x6b, 0x7b, 0x42, 0x16, 0xe5, 0x41,
0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x03, 0xe8, 0x21,
0xbc, 0x00, 0x06, 0x42, 0x6f, 0x6e, 0x73, 0x61,
0x69, 0x7b, 0x43, 0x6b, 0xb7, 0x7d, 0x7b, 0x40,
0x00, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x03, 0xe8, 0x21, 0xbc, 0x00,
0x09, 0x4c, 0x69, 0x76, 0x65, 0x73, 0x74, 0x6f,
0x63, 0x6b, 0x7b, 0x42, 0xcf, 0xa2, 0x50, 0x7b,
0x42, 0x70, 0x00, 0x00, 0x7b, 0x42, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x63, 0x21, 0xbc,
0x00, 0x09, 0x45, 0x6d, 0x65, 0x6e, 0x64, 0x6f,
0x6c, 0x79, 0x61, 0x7b, 0x44, 0xeb, 0xb9, 0xa1,
0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x13, 0x21,
0xbc, 0x00, 0x0f, 0x53, 0x70, 0x65, 0x63, 0x69,
0x61, 0x6c, 0x74, 0x79, 0x5f, 0x57, 0x69, 0x6e,
0x65, 0x73, 0x7b, 0x46, 0x13, 0x52, 0xa9, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x63, 0x21, 0xbc,
0x00, 0x11, 0x54, 0x72, 0x69, 0x70, 0x65, 0x7a,
0x69, 0x61, 0x6e, 0x5f, 0x50, 0x72, 0x65, 0x6d,
0x69, 0x75, 0x6d, 0x7b, 0x42, 0x4f, 0xa4, 0x7a,
0x7b, 0x3e, 0x4c, 0xcc, 0xcd, 0x7b, 0x3e, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x63, 0x21,
0xbc, 0x00, 0x0d, 0x53, 0x61, 0x72, 0x61, 0x6b,
0x61, 0x6e, 0x5f, 0x54, 0x65, 0x61, 0x72, 0x73,
0x7b, 0x43, 0x16, 0xe1, 0x75, 0x7b, 0x3e, 0x4c,
0xcc, 0xcd, 0x7b, 0x3e, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0xfb, 0x21, 0xbc, 0x00, 0x06,
0x42, 0x72, 0x61, 0x6e, 0x64, 0x79, 0x7b, 0x42,
0x78, 0x1b, 0xce, 0x7b, 0x3f, 0x66, 0x66, 0x66,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x6a, 0x21, 0xbc, 0x00, 0x0e, 0x4d, 0x61,
0x6c, 0x74, 0x5f, 0x42, 0x65, 0x76, 0x65, 0x72,
0x61, 0x67, 0x65, 0x73, 0x7b, 0x42, 0x1f, 0xb4,
0x89, 0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xbc,
0x21, 0xbc, 0x00, 0x0a, 0x53, 0x70, 0x61, 0x63,
0x65, 0x5f, 0x47, 0x72, 0x6f, 0x67, 0x7b, 0x42,
0x54, 0xa2, 0x35, 0x7b, 0x3f, 0xe6, 0x66, 0x66,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x01, 0x92, 0x21, 0xbc, 0x00, 0x07, 0x53, 0x70,
0x69, 0x72, 0x69, 0x74, 0x73, 0x7b, 0x42, 0x43,
0x45, 0x31, 0x7b, 0x3f, 0x66, 0x66, 0x66, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0f, 0x21, 0xbc, 0x00, 0x05, 0x57, 0x69, 0x6e,
0x65, 0x73, 0x7b, 0x42, 0xb1, 0x4d, 0x4a, 0x7b,
0x3f, 0x66, 0x66, 0x66, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc,
0x00, 0x07, 0x49, 0x6e, 0x63, 0x65, 0x6e, 0x73,
0x65, 0x7b, 0x42, 0x3c, 0xfd, 0x1a, 0x7b, 0x3f,
0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x12, 0x4b, 0x68, 0x61, 0x69, 0x73, 0x61, 0x6c,
0x61, 0x6e, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x5f,
0x46, 0x36, 0x32, 0x7b, 0x43, 0xeb, 0xc5, 0x3b,
0x7b, 0x3d, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21,
0xbc, 0x00, 0x07, 0x4b, 0x72, 0x79, 0x73, 0x74,
0x61, 0x6c, 0x7b, 0x43, 0x62, 0x60, 0x51, 0x7b,
0x3d, 0xcc, 0xcc, 0xcd, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc,
0x00, 0x09, 0x4e, 0x61, 0x72, 0x63, 0x6f, 0x74,
0x69, 0x63, 0x73, 0x7b, 0x42, 0xcf, 0xa3, 0x86,
0x7b, 0x3e, 0x19, 0x99, 0x9a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21,
0xbc, 0x00, 0x06, 0x53, 0x70, 0x69, 0x63, 0x65,
0x73, 0x7b, 0x41, 0xe2, 0xe5, 0x1d, 0x7b, 0x3d,
0x4c, 0xcc, 0xcd, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0xbe, 0x00, 0x00, 0x09, 0xc4, 0x21, 0xbc, 0x00,
0x06, 0x43, 0x6f, 0x74, 0x74, 0x6f, 0x6e, 0x7b,
0x42, 0xe2, 0x78, 0xde, 0x7b, 0x41, 0x30, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x0d, 0x05, 0x21, 0xbc, 0x00, 0x06, 0x4c,
0x75, 0x6d, 0x62, 0x65, 0x72, 0x7b, 0x42, 0xc6,
0x13, 0x6f, 0x7b, 0x41, 0x88, 0x00, 0x00, 0x7b,
0x41, 0xd8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x07,
0xcf, 0x21, 0xbc, 0x00, 0x06, 0x52, 0x75, 0x62,
0x62, 0x65, 0x72, 0x7b, 0x43, 0x0d, 0x7e, 0x9b,
0x7b, 0x3f, 0xc0, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x27, 0x0f, 0x21,
0xbc, 0x00, 0x05, 0x57, 0x61, 0x74, 0x65, 0x72,
0x7b, 0x41, 0x17, 0x42, 0x7b, 0x7b, 0x41, 0x20,
0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe,
0x00, 0x01, 0x86, 0x9f, 0x21, 0xbc, 0x00, 0x0c,
0x41, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x5f, 0x47,
0x61, 0x73, 0x65, 0x73, 0x7b, 0x42, 0x17, 0x31,
0xd2, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0xbe, 0x00, 0x01, 0x86, 0x9f,
0x21, 0xbc, 0x00, 0x11, 0x41, 0x74, 0x6d, 0x6f,
0x73, 0x70, 0x68, 0x65, 0x72, 0x69, 0x63, 0x5f,
0x47, 0x61, 0x73, 0x65, 0x73, 0x7b, 0x41, 0xe3,
0x21, 0x31, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x4e,
0x20, 0x21, 0xbc, 0x00, 0x0d, 0x48, 0x61, 0x6c,
0x6f, 0x67, 0x65, 0x6e, 0x5f, 0x47, 0x61, 0x73,
0x65, 0x73, 0x7b, 0x42, 0x97, 0x0a, 0xbf, 0x7b,
0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x82, 0x35, 0x21, 0xbc,
0x00, 0x0b, 0x4e, 0x6f, 0x62, 0x6c, 0x65, 0x5f,
0x47, 0x61, 0x73, 0x65, 0x73, 0x7b, 0x42, 0x75,
0x76, 0x03, 0x7b, 0x3f, 0x99, 0x99, 0x9a, 0x7b,
0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x13,
0x88, 0x21, 0xbc, 0x00, 0x06, 0x42, 0x75, 0x74,
0x61, 0x6e, 0x65, 0x7b, 0x42, 0xe2, 0x59, 0x93,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x4e, 0x1f, 0x21,
0xbc, 0x00, 0x04, 0x43, 0x6f, 0x61, 0x6c, 0x7b,
0x41, 0x97, 0x1f, 0x72, 0x7b, 0x41, 0x40, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x0f, 0xa0, 0x21, 0xbc, 0x00, 0x06, 0x44,
0x69, 0x65, 0x73, 0x65, 0x6c, 0x7b, 0x42, 0xf5,
0x2e, 0xe2, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x1a,
0x0a, 0x21, 0xbc, 0x00, 0x0b, 0x4e, 0x61, 0x74,
0x75, 0x72, 0x61, 0x6c, 0x5f, 0x47, 0x61, 0x73,
0x7b, 0x42, 0xad, 0x7e, 0x74, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x1a, 0x0a, 0x21, 0xbc, 0x00, 0x03,
0x4f, 0x69, 0x6c, 0x7b, 0x42, 0x96, 0xf0, 0xe9,
0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x20,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x1a, 0x0a, 0x21,
0xbc, 0x00, 0x09, 0x50, 0x65, 0x74, 0x72, 0x6f,
0x6c, 0x65, 0x75, 0x6d, 0x7b, 0x42, 0xa9, 0xed,
0xef, 0x7b, 0x41, 0x00, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00 };
char peer1_74[] = {
0x21, 0xbc, 0x00, 0x0d, 0x41, 0x6c, 0x6b, 0x61,
0x6c, 0x69, 0x5f, 0x4d, 0x65, 0x74, 0x61, 0x6c,
0x73, 0x7b, 0x43, 0x23, 0x0c, 0x8a, 0x7b, 0x42,
0x82, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x0b, 0x42, 0x61, 0x73, 0x65, 0x5f, 0x4d, 0x65,
0x74, 0x61, 0x6c, 0x73, 0x7b, 0x42, 0x9f, 0x64,
0xaf, 0x7b, 0x42, 0xb4, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x08, 0x49, 0x72, 0x6f, 0x6e,
0x5f, 0x4f, 0x72, 0x65, 0x7b, 0x43, 0x1f, 0x0c,
0xec, 0x7b, 0x42, 0x8c, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x0a, 0x4e, 0x69, 0x63, 0x6b,
0x65, 0x6c, 0x5f, 0x4f, 0x72, 0x65, 0x7b, 0x43,
0x18, 0xe6, 0x51, 0x7b, 0x42, 0xb4, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x07, 0x54, 0x69,
0x6e, 0x5f, 0x4f, 0x72, 0x65, 0x7b, 0x43, 0x10,
0x02, 0x8a, 0x7b, 0x42, 0x8c, 0x00, 0x00, 0x7b,
0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0c, 0x54, 0x75, 0x6e,
0x67, 0x73, 0x74, 0x65, 0x6e, 0x5f, 0x4f, 0x72,
0x65, 0x7b, 0x43, 0xa8, 0x53, 0x1e, 0x7b, 0x43,
0x3e, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x08, 0x42, 0x69, 0x70, 0x6f, 0x6c, 0x69, 0x74,
0x65, 0x7b, 0x44, 0x24, 0x47, 0x15, 0x7b, 0x41,
0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x08, 0x44, 0x75, 0x72, 0x61, 0x6e, 0x69, 0x75,
0x6d, 0x7b, 0x44, 0x24, 0x40, 0x25, 0x7b, 0x41,
0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x09, 0x50, 0x6f, 0x6c, 0x79, 0x73, 0x74, 0x65,
0x65, 0x6c, 0x7b, 0x43, 0xe8, 0xed, 0x91, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x09, 0x54, 0x72, 0x69, 0x74, 0x61, 0x6e,
0x69, 0x75, 0x6d, 0x7b, 0x44, 0x15, 0x53, 0xf5,
0x7b, 0x40, 0xe0, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21,
0xbc, 0x00, 0x08, 0x49, 0x73, 0x6f, 0x6d, 0x65,
0x74, 0x61, 0x6c, 0x7b, 0x43, 0x87, 0x9c, 0xcd,
0x7b, 0x41, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x7e, 0x21,
0xbc, 0x00, 0x09, 0x50, 0x6c, 0x61, 0x73, 0x67,
0x6c, 0x61, 0x73, 0x73, 0x7b, 0x42, 0xfa, 0x66,
0xa5, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x88,
0x21, 0xbc, 0x00, 0x08, 0x50, 0x6c, 0x61, 0x73,
0x74, 0x65, 0x65, 0x6c, 0x7b, 0x42, 0xfa, 0x82,
0xe1, 0x7b, 0x40, 0xc0, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x14,
0x21, 0xbc, 0x00, 0x05, 0x53, 0x74, 0x65, 0x65,
0x6c, 0x7b, 0x43, 0x1e, 0x85, 0x3a, 0x7b, 0x41,
0x00, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00,
0x09, 0x43, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x69,
0x75, 0x6d, 0x7b, 0x42, 0x72, 0x74, 0x3e, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc,
0x00, 0x0b, 0x4f, 0x62, 0x73, 0x69, 0x64, 0x69,
0x73, 0x74, 0x65, 0x65, 0x6c, 0x7b, 0x43, 0x17,
0x80, 0x75, 0x7b, 0x40, 0xe0, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0f, 0x41, 0x6e, 0x74,
0x69, 0x5f, 0x43, 0x6f, 0x72, 0x72, 0x6f, 0x73,
0x69, 0x76, 0x65, 0x73, 0x7b, 0x43, 0xbb, 0xbf,
0xab, 0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x13,
0x21, 0xbc, 0x00, 0x04, 0x47, 0x6f, 0x6c, 0x64,
0x7b, 0x43, 0xa6, 0xe4, 0x17, 0x7b, 0x41, 0x98,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x11, 0x21, 0xbc, 0x00, 0x0b,
0x52, 0x61, 0x72, 0x65, 0x5f, 0x45, 0x61, 0x72,
0x74, 0x68, 0x73, 0x7b, 0x43, 0xa2, 0xb5, 0xd0,
0x7b, 0x41, 0x90, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x08, 0x44, 0x69, 0x61, 0x6d, 0x6f,
0x6e, 0x64, 0x73, 0x7b, 0x44, 0x6b, 0xba, 0xb3,
0x7b, 0x40, 0x40, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x14, 0x49, 0x6e, 0x64, 0x75, 0x73,
0x74, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x47, 0x65,
0x6d, 0x73, 0x74, 0x6f, 0x6e, 0x65, 0x73, 0x7b,
0x44, 0x85, 0x31, 0x5d, 0x7b, 0x40, 0x40, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x06, 0x4a,
0x65, 0x77, 0x65, 0x6c, 0x73, 0x7b, 0x44, 0x85,
0x2f, 0xdb, 0x7b, 0x40, 0x40, 0x00, 0x00, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x01, 0x21, 0xbc, 0x00, 0x11, 0x52, 0x65, 0x69,
0x6e, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x64, 0x5f,
0x52, 0x75, 0x62, 0x62, 0x65, 0x72, 0x7b, 0x44,
0x85, 0x2d, 0xdc, 0x7b, 0x3f, 0xd9, 0x99, 0x9a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x11, 0x53, 0x6f,
0x72, 0x69, 0x72, 0x5f, 0x4c, 0x69, 0x67, 0x68,
0x74, 0x73, 0x74, 0x6f, 0x6e, 0x65, 0x73, 0x7b,
0x44, 0x85, 0x2e, 0xc2, 0x7b, 0x3f, 0x4c, 0xcc,
0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x09, 0x21, 0xbc, 0x00, 0x0b, 0x57,
0x6f, 0x6f, 0x64, 0x5f, 0x42, 0x6f, 0x61, 0x72,
0x64, 0x73, 0x7b, 0x42, 0xf5, 0x2c, 0x07, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x31, 0x21, 0xbc,
0x00, 0x06, 0x52, 0x61, 0x64, 0x69, 0x75, 0x6d,
0x7b, 0x43, 0xbc, 0x9e, 0x31, 0x7b, 0x40, 0xa0,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x64, 0x21, 0xbc, 0x00, 0x07,
0x54, 0x68, 0x6f, 0x72, 0x69, 0x75, 0x6d, 0x7b,
0x43, 0x8d, 0x75, 0xee, 0x7b, 0x41, 0x30, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x13, 0x21, 0xbc, 0x00, 0x07, 0x55,
0x72, 0x61, 0x6e, 0x69, 0x75, 0x6d, 0x7b, 0x43,
0xfe, 0x9d, 0x21, 0x7b, 0x41, 0x98, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x13, 0x45, 0x6e,
0x67, 0x69, 0x6e, 0x65, 0x65, 0x72, 0x65, 0x64,
0x5f, 0x42, 0x61, 0x63, 0x74, 0x65, 0x72, 0x69,
0x61, 0x7b, 0x45, 0x63, 0x06, 0x47, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3c, 0xa3, 0xd7, 0x0a,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x11, 0x51, 0x75, 0x61, 0x6e, 0x74, 0x75, 0x6d,
0x5f, 0x43, 0x6f, 0x6d, 0x70, 0x75, 0x74, 0x65,
0x72, 0x73, 0x7b, 0x43, 0xf3, 0x6b, 0xa8, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00 };
char peer1_75[] = {
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x10, 0x51, 0x75, 0x61, 0x6e, 0x74, 0x75,
0x6d, 0x5f, 0x44, 0x65, 0x64, 0x75, 0x63, 0x74,
0x6f, 0x72, 0x7b, 0x45, 0x2a, 0x45, 0xc7, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x13, 0x53, 0x75, 0x72, 0x67, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x54, 0x65, 0x63, 0x68, 0x6e,
0x69, 0x71, 0x75, 0x65, 0x73, 0x7b, 0x43, 0xb2,
0x6c, 0xe9, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x1a, 0x56, 0x69, 0x72,
0x74, 0x75, 0x61, 0x6c, 0x5f, 0x54, 0x75, 0x6e,
0x6e, 0x65, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x54,
0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x7b,
0x44, 0xc2, 0x98, 0x4f, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x41,
0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x69, 0x61,
0x6c, 0x5f, 0x4c, 0x69, 0x6d, 0x62, 0x73, 0x7b,
0x43, 0x6b, 0xbb, 0xc3, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x11, 0x41,
0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x69, 0x61,
0x6c, 0x5f, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x73,
0x7b, 0x43, 0x8d, 0x76, 0x23, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0e,
0x45, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64,
0x5f, 0x4c, 0x69, 0x6d, 0x62, 0x73, 0x7b, 0x43,
0x3c, 0xae, 0xe6, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x0f, 0x45, 0x6e,
0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x4f,
0x72, 0x67, 0x61, 0x6e, 0x73, 0x7b, 0x43, 0x8d,
0x6d, 0xed, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x16, 0x46, 0x75, 0x6c,
0x6c, 0x5f, 0x42, 0x6f, 0x64, 0x79, 0x5f, 0x41,
0x75, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x7b, 0x43, 0x41, 0x52, 0x42,
0x7b, 0x3e, 0x4c, 0xcc, 0xcd, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0f, 0x4e, 0x65, 0x75, 0x72, 0x61,
0x6c, 0x5f, 0x43, 0x6f, 0x6d, 0x70, 0x75, 0x74,
0x65, 0x72, 0x7b, 0x43, 0x41, 0x59, 0xdd, 0x7b,
0x3d, 0xa3, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x10, 0x4e, 0x65, 0x75, 0x72, 0x61, 0x6c,
0x5f, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
0x63, 0x65, 0x7b, 0x43, 0x41, 0x53, 0x19, 0x7b,
0x3d, 0x8f, 0x5c, 0x29, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x72, 0x21, 0xbc,
0x00, 0x05, 0x42, 0x6f, 0x6f, 0x6b, 0x73, 0x7b,
0x42, 0x31, 0x7c, 0x72, 0x7b, 0x40, 0x00, 0x00,
0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x07, 0x45,
0x72, 0x6f, 0x74, 0x69, 0x63, 0x61, 0x7b, 0x44,
0x0f, 0xf5, 0xb1, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x40, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x82, 0x21, 0xbc, 0x00, 0x05, 0x47, 0x61,
0x6d, 0x65, 0x73, 0x7b, 0x42, 0x38, 0xa8, 0xf7,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x55, 0x21,
0xbc, 0x00, 0x08, 0x48, 0x6f, 0x6c, 0x6f, 0x76,
0x69, 0x64, 0x73, 0x7b, 0x42, 0x4a, 0x63, 0x0b,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x58, 0x21,
0xbc, 0x00, 0x13, 0x4d, 0x75, 0x73, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x49, 0x6e, 0x73, 0x74, 0x72,
0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x7b, 0x42,
0x38, 0x4d, 0x79, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x5c, 0x21, 0xbc, 0x00, 0x05, 0x4d, 0x75,
0x73, 0x69, 0x6b, 0x7b, 0x42, 0x31, 0xa6, 0xcf,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x1f, 0x21,
0xbc, 0x00, 0x0e, 0x50, 0x6c, 0x65, 0x61, 0x73,
0x75, 0x72, 0x65, 0x5f, 0x42, 0x6f, 0x72, 0x67,
0x73, 0x7b, 0x43, 0xea, 0xd2, 0x19, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0x7b, 0x40, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0xa6, 0x21, 0xbc, 0x00,
0x13, 0x43, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61,
0x72, 0x5f, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x65,
0x72, 0x61, 0x6e, 0x74, 0x7b, 0x42, 0xb9, 0x43,
0x53, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0e,
0x21, 0xbc, 0x00, 0x0e, 0x43, 0x72, 0x79, 0x6f,
0x67, 0x65, 0x6e, 0x69, 0x63, 0x5f, 0x50, 0x6f,
0x64, 0x73, 0x7b, 0x44, 0x01, 0xe6, 0x57, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x40, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x3f, 0x21, 0xbc,
0x00, 0x0f, 0x44, 0x4e, 0x41, 0x5f, 0x52, 0x65,
0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
0x72, 0x7b, 0x42, 0xb9, 0x39, 0xf4, 0x7b, 0x3e,
0x99, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0c, 0x21, 0xbc, 0x00,
0x0e, 0x46, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x41,
0x69, 0x64, 0x5f, 0x4b, 0x69, 0x74, 0x73, 0x7b,
0x43, 0xf6, 0xdf, 0x0c, 0x7b, 0x40, 0xe0, 0x00,
0x00, 0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0c, 0x48,
0x79, 0x70, 0x6f, 0x73, 0x79, 0x72, 0x69, 0x6e,
0x67, 0x65, 0x73, 0x7b, 0x43, 0xf6, 0xf5, 0xa3,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21 };
char peer1_76[] = {
0xbc, 0x00, 0x0b, 0x4d, 0x65, 0x64, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x4b, 0x69, 0x74, 0x7b, 0x42,
0xb9, 0x79, 0x49, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x41, 0x20, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x09, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x73,
0x65, 0x75, 0x64, 0x6f, 0x74, 0x68, 0x65, 0x72,
0x6d, 0x73, 0x7b, 0x42, 0xb9, 0x3b, 0x0a, 0x7b,
0x41, 0x80, 0x00, 0x00, 0x7b, 0x41, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc,
0x00, 0x0a, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5f,
0x54, 0x61, 0x6e, 0x6b, 0x7b, 0x44, 0x3e, 0xd8,
0x91, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x1d,
0x21, 0xbc, 0x00, 0x10, 0x52, 0x6f, 0x62, 0x6f,
0x74, 0x69, 0x63, 0x5f, 0x53, 0x75, 0x72, 0x67,
0x65, 0x6f, 0x6e, 0x73, 0x7b, 0x43, 0xf6, 0xf8,
0x86, 0x7b, 0x3e, 0x99, 0x99, 0x9a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x12, 0x41, 0x64, 0x76, 0x61,
0x6e, 0x63, 0x65, 0x64, 0x5f, 0x4d, 0x65, 0x64,
0x69, 0x63, 0x69, 0x6e, 0x65, 0x73, 0x7b, 0x41,
0xb2, 0x65, 0xc6, 0x7b, 0x3f, 0x19, 0x99, 0x9a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x42, 0x6c,
0x6f, 0x6f, 0x64, 0x5f, 0x50, 0x6c, 0x61, 0x73,
0x6d, 0x61, 0x7b, 0x41, 0xb1, 0x5b, 0x52, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x0f, 0x4c, 0x6f, 0x6e, 0x67, 0x65, 0x76,
0x69, 0x74, 0x79, 0x5f, 0x44, 0x72, 0x75, 0x67,
0x73, 0x7b, 0x41, 0xb2, 0xa7, 0x23, 0x7b, 0x3f,
0x19, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00,
0x10, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x5f,
0x4d, 0x65, 0x64, 0x69, 0x63, 0x69, 0x6e, 0x65,
0x73, 0x7b, 0x41, 0xb2, 0x09, 0x0d, 0x7b, 0x3f,
0x19, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc, 0x00,
0x08, 0x56, 0x61, 0x63, 0x63, 0x69, 0x6e, 0x65,
0x73, 0x7b, 0x41, 0xb2, 0xf4, 0x4f, 0x7b, 0x3f,
0x19, 0x99, 0x9a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x10, 0x44, 0x6f, 0x73, 0x74, 0x6f, 0x65, 0x76,
0x73, 0x6b, 0x79, 0x2e, 0x73, 0x74, 0x6f, 0x63,
0x6b, 0x7b, 0x48, 0xaf, 0xc8, 0x00, 0x7b, 0x42,
0x7c, 0x00, 0x00, 0x7b, 0x44, 0xa2, 0x80, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc, 0x00,
0x0c, 0x48, 0x79, 0x65, 0x6e, 0x61, 0x2e, 0x68,
0x75, 0x6e, 0x74, 0x65, 0x72, 0x7b, 0x48, 0x08,
0xb8, 0x00, 0x7b, 0x42, 0x20, 0x00, 0x00, 0x7b,
0x44, 0x7a, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0a, 0x44, 0x6f, 0x64,
0x6f, 0x2e, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x7b,
0x47, 0x92, 0x7c, 0x00, 0x7b, 0x44, 0x89, 0x00,
0x00, 0x7b, 0x46, 0xab, 0xe0, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0b, 0x4c,
0x6c, 0x61, 0x6d, 0x61, 0x2e, 0x73, 0x74, 0x6f,
0x63, 0x6b, 0x7b, 0x48, 0x2f, 0xc8, 0x00, 0x7b,
0x44, 0x7a, 0x00, 0x00, 0x7b, 0x46, 0x9c, 0x40,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x0f, 0x50, 0x6c, 0x6f, 0x77, 0x73, 0x68,
0x61, 0x72, 0x65, 0x2e, 0x73, 0x74, 0x6f, 0x63,
0x6b, 0x7b, 0x48, 0x2f, 0xc8, 0x00, 0x7b, 0x44,
0x03, 0xc0, 0x00, 0x7b, 0x46, 0x1c, 0x40, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x0e, 0x50, 0x72, 0x6f, 0x67, 0x65, 0x6e, 0x79,
0x2e, 0x72, 0x67, 0x73, 0x70, 0x65, 0x63, 0x7b,
0x49, 0x5b, 0xba, 0x00, 0x7b, 0x42, 0x7c, 0x00,
0x00, 0x7b, 0x44, 0xa2, 0x80, 0x00, 0xbe, 0x00,
0x00, 0x01, 0x30, 0x21, 0xbc, 0x00, 0x14, 0x48,
0x65, 0x70, 0x68, 0x61, 0x65, 0x73, 0x74, 0x75,
0x73, 0x5f, 0x4d, 0x69, 0x6e, 0x69, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x43, 0xeb, 0xc1, 0x92,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x0e, 0x72, 0x61, 0x7a, 0x6f, 0x72,
0x5f, 0x67, 0x75, 0x6e, 0x5f, 0x61, 0x6d, 0x6d,
0x6f, 0x7b, 0x45, 0x6b, 0xb6, 0xfd, 0x7b, 0x40,
0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x43, 0x21, 0xbc, 0x00,
0x12, 0x72, 0x65, 0x61, 0x70, 0x65, 0x72, 0x5f,
0x63, 0x61, 0x6e, 0x6e, 0x6f, 0x6e, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x45, 0xb0, 0xc9, 0xb7,
0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x9b, 0x21,
0xbc, 0x00, 0x0c, 0x74, 0x6f, 0x72, 0x70, 0x65,
0x64, 0x6f, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b,
0x44, 0xeb, 0xb8, 0x87, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00,
0x00, 0x01, 0x0c, 0x21, 0xbc, 0x00, 0x10, 0x49,
0x6f, 0x6e, 0x5f, 0x42, 0x75, 0x72, 0x73, 0x74,
0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b,
0x40, 0x71, 0xc5, 0x64, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x11, 0x4d,
0x69, 0x63, 0x72, 0x6f, 0x5f, 0x44, 0x72, 0x69,
0x76, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x43, 0x3c, 0x96, 0xfe, 0x7b, 0x41, 0x00,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x10,
0x4d, 0x69, 0x6e, 0x69, 0x5f, 0x44, 0x72, 0x69,
0x76, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x43, 0x0d, 0x76, 0x83, 0x7b, 0x41, 0x00,
0x00, 0x00, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x01, 0xd9, 0x21, 0xbc, 0x00, 0x0d,
0x64, 0x75, 0x6d, 0x62, 0x66, 0x69, 0x72, 0x65,
0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x41, 0x97,
0x90, 0xa5, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00,
0xb5, 0x21, 0xbc, 0x00, 0x12, 0x66, 0x72, 0x69,
0x65, 0x6e, 0x64, 0x5f, 0x6f, 0x72, 0x5f, 0x66,
0x6f, 0x65, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b,
0x42, 0xbc, 0xc6, 0x90, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00,
0x00, 0x01, 0x5d, 0x21, 0xbc, 0x00, 0x0f, 0x68,
0x65, 0x61, 0x74, 0x73, 0x65, 0x65, 0x6b, 0x65,
0x72, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x42,
0x04, 0x61, 0x85, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00,
0x00, 0x94, 0x21, 0xbc, 0x00, 0x16, 0x69, 0x6d,
0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f,
0x67, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x42, 0x8d, 0x95,
0xe3, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x90,
0x21, 0xbc, 0x00, 0x0f, 0x4a, 0x61, 0x63, 0x6b,
0x68, 0x61, 0x6d, 0x6d, 0x65, 0x72, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x41, 0xf2, 0xef, 0x92 };
char peer1_77[] = {
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xdf, 0x21,
0xbc, 0x00, 0x0b, 0x62, 0x72, 0x65, 0x65, 0x7a,
0x65, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x43,
0xe3, 0x2a, 0x1d, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x0c, 0x63, 0x6c,
0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x45, 0x3d, 0x49, 0xdf, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x10, 0x65, 0x6d, 0x70, 0x5f, 0x74, 0x6f,
0x72, 0x70, 0x65, 0x64, 0x6f, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x45, 0x6c, 0x9c, 0xd9, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x09, 0x68, 0x61, 0x69, 0x6c, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x43, 0x08, 0x4f, 0x46,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x3f, 0x21,
0xbc, 0x00, 0x0f, 0x6b, 0x69, 0x6c, 0x6c, 0x65,
0x72, 0x5f, 0x62, 0x65, 0x65, 0x5f, 0x61, 0x6d,
0x6d, 0x6f, 0x7b, 0x43, 0x00, 0xc0, 0xb5, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc,
0xcd, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x0a, 0x6c, 0x65, 0x65, 0x63, 0x68, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x44, 0xbd, 0x4a,
0xba, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xe3,
0x21, 0xbc, 0x00, 0x0a, 0x73, 0x77, 0x61, 0x72,
0x6d, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x42,
0xf2, 0x52, 0x36, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x1b, 0x4b, 0x74,
0x65, 0x6b, 0x5f, 0x4d, 0x69, 0x6e, 0x69, 0x5f,
0x47, 0x72, 0x61, 0x76, 0x2d, 0x74, 0x68, 0x75,
0x6d, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6d,
0x6f, 0x7b, 0x48, 0x4a, 0x91, 0x42, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x12, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x6e, 0x5f,
0x4d, 0x4b, 0x5f, 0x49, 0x49, 0x49, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x47, 0x2e, 0xc6, 0xe2,
0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21,
0xbc, 0x00, 0x11, 0x50, 0x68, 0x6f, 0x74, 0x6f,
0x6e, 0x5f, 0x4d, 0x4b, 0x5f, 0x49, 0x49, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x47, 0x11, 0xa6,
0x05, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x10, 0x50, 0x68, 0x6f, 0x74,
0x6f, 0x6e, 0x5f, 0x4d, 0x4b, 0x5f, 0x49, 0x5f,
0x61, 0x6d, 0x6d, 0x6f, 0x7b, 0x46, 0xe9, 0x0a,
0x50, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x0f, 0x61, 0x64, 0x76, 0x74,
0x6f, 0x72, 0x70, 0x65, 0x64, 0x6f, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x46, 0x69, 0x09, 0x88,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0c, 0x6a, 0x61, 0x76, 0x65, 0x6c,
0x69, 0x6e, 0x5f, 0x61, 0x6d, 0x6d, 0x6f, 0x7b,
0x46, 0xe9, 0x0a, 0x9e, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe, 0x00,
0x00, 0x00, 0x10, 0x21, 0xbc, 0x00, 0x11, 0x70,
0x68, 0x6f, 0x74, 0x6f, 0x6e, 0x5f, 0x73, 0x77,
0x61, 0x72, 0x6d, 0x5f, 0x61, 0x6d, 0x6d, 0x6f,
0x7b, 0x44, 0x27, 0xd8, 0x51, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x13,
0x70, 0x6f, 0x72, 0x63, 0x75, 0x70, 0x69, 0x6e,
0x65, 0x5f, 0x6d, 0x69, 0x6e, 0x65, 0x5f, 0x61,
0x6d, 0x6d, 0x6f, 0x7b, 0x45, 0x0b, 0xdb, 0x16,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3d, 0xcc,
0xcc, 0xcd, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21,
0xbc, 0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72,
0x30, 0x31, 0x7b, 0x45, 0x6b, 0xb7, 0xe1, 0x7b,
0x41, 0xa0, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21, 0xbc,
0x00, 0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30,
0x32, 0x7b, 0x45, 0xeb, 0xb7, 0x07, 0x7b, 0x41,
0xc8, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00,
0x07, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30, 0x33,
0x7b, 0x46, 0x6b, 0xb7, 0x0c, 0x7b, 0x41, 0xf0,
0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x07,
0x61, 0x72, 0x6d, 0x6f, 0x72, 0x30, 0x34, 0x7b,
0x46, 0xeb, 0xb7, 0x13, 0x7b, 0x41, 0xc8, 0x00,
0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x07, 0x61,
0x72, 0x6d, 0x6f, 0x72, 0x30, 0x35, 0x7b, 0x47,
0x6b, 0xb6, 0xe9, 0x7b, 0x41, 0xa0, 0x00, 0x00,
0x7b, 0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x07, 0x61, 0x72,
0x6d, 0x6f, 0x72, 0x30, 0x36, 0x7b, 0x47, 0xeb,
0xb6, 0xe9, 0x7b, 0x41, 0x70, 0x00, 0x00, 0x7b,
0x00, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0e, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x31,
0x7b, 0x43, 0xeb, 0xba, 0xab, 0x7b, 0x40, 0x00,
0x00, 0x00, 0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x05, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x30, 0x32, 0x7b, 0x44, 0x6b, 0xbc, 0xac,
0x7b, 0x40, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0e, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x44,
0xeb, 0xb7, 0xd5, 0x7b, 0x40, 0xc0, 0x00, 0x00,
0x7b, 0x40, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0e, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30,
0x34, 0x7b, 0x45, 0x6b, 0xb7, 0xf0, 0x7b, 0x41,
0x00, 0x00, 0x00, 0x7b, 0x41, 0x00, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0c, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x30, 0x35, 0x7b, 0x45, 0xeb, 0xb7,
0x01, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x41,
0x20, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x08,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x36, 0x7b,
0x46, 0x6b, 0xb7, 0x3a, 0x7b, 0x41, 0x40, 0x00,
0x00, 0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x08, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x30, 0x37, 0x7b, 0x46, 0xeb, 0xb7, 0x13, 0x7b,
0x41, 0x60, 0x00, 0x00, 0x7b, 0x41, 0x60, 0x00 };
char peer1_78[] = {
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0c, 0x21, 0xbc,
0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
0x74, 0x6f, 0x72, 0x30, 0x38, 0x7b, 0x47, 0x6b,
0xb6, 0xe2, 0x7b, 0x41, 0x80, 0x00, 0x00, 0x7b,
0x41, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x07, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70,
0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x30, 0x39,
0x7b, 0x47, 0xeb, 0xb6, 0xe0, 0x7b, 0x41, 0x90,
0x00, 0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc, 0x00, 0x0b,
0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f,
0x72, 0x31, 0x30, 0x7b, 0x48, 0x6b, 0xb6, 0xdd,
0x7b, 0x41, 0xa0, 0x00, 0x00, 0x7b, 0x41, 0xa0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0e, 0x21,
0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x31, 0x31, 0x7b, 0x48,
0xeb, 0xb6, 0xdf, 0x7b, 0x41, 0xb0, 0x00, 0x00,
0x7b, 0x41, 0xb0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x09, 0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61,
0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72, 0x31,
0x32, 0x7b, 0x49, 0x6b, 0xb6, 0xdd, 0x7b, 0x41,
0xc0, 0x00, 0x00, 0x7b, 0x41, 0xc0, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc, 0x00,
0x0b, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74,
0x6f, 0x72, 0x31, 0x33, 0x7b, 0x49, 0xeb, 0xb6,
0xdc, 0x7b, 0x41, 0xd0, 0x00, 0x00, 0x7b, 0x41,
0xd0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x06,
0x21, 0xbc, 0x00, 0x0b, 0x63, 0x61, 0x70, 0x61,
0x63, 0x69, 0x74, 0x6f, 0x72, 0x31, 0x34, 0x7b,
0x4a, 0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0xe0, 0x00,
0x00, 0x7b, 0x41, 0xe0, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x0b, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x31, 0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0xf0, 0x00, 0x00, 0x7b, 0x41, 0xf0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x13, 0x61, 0x64, 0x64, 0x5f, 0x63, 0x61,
0x72, 0x67, 0x6f, 0x5f, 0x65, 0x78, 0x70, 0x61,
0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x7b, 0x46, 0x6b,
0xb7, 0x37, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x41, 0xa0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x0d, 0x65, 0x63, 0x6d,
0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
0x30, 0x31, 0x7b, 0x45, 0x93, 0x53, 0x2f, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0d, 0x65, 0x63, 0x6d, 0x5f, 0x70, 0x61,
0x63, 0x6b, 0x61, 0x67, 0x65, 0x30, 0x32, 0x7b,
0x46, 0x5c, 0xfb, 0x86, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0d, 0x65,
0x63, 0x6d, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61,
0x67, 0x65, 0x30, 0x33, 0x7b, 0x46, 0x5c, 0xfb,
0x9d, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f,
0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05,
0x21, 0xbc, 0x00, 0x0a, 0x6a, 0x75, 0x6d, 0x70,
0x5f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x7b, 0x45,
0xeb, 0xb7, 0xae, 0x7b, 0x41, 0x80, 0x00, 0x00,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x10, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x30, 0x31, 0x7b, 0x45,
0x6b, 0xb7, 0x14, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x04, 0x21, 0xbc, 0x00, 0x10, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x30, 0x32, 0x7b, 0x45,
0xeb, 0xb7, 0xa2, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x30, 0x33, 0x7b, 0x46,
0x6b, 0xb7, 0x0d, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x30, 0x34, 0x7b, 0x46,
0xeb, 0xb6, 0xee, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x02, 0x21, 0xbc, 0x00, 0x10, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x30, 0x35, 0x7b, 0x47,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x41, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x01, 0x21, 0xbc, 0x00, 0x10, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x64,
0x72, 0x69, 0x76, 0x65, 0x30, 0x36, 0x7b, 0x47,
0xeb, 0xb6, 0xe5, 0x7b, 0x41, 0x90, 0x00, 0x00,
0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0c, 0x21, 0xbc, 0x00, 0x15, 0x70, 0x61,
0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x5f,
0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73,
0x5f, 0x30, 0x31, 0x7b, 0x46, 0x13, 0x52, 0x4a,
0x7b, 0x3f, 0x00, 0x00, 0x00, 0x7b, 0x40, 0x40,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21,
0xbc, 0x00, 0x15, 0x70, 0x61, 0x73, 0x73, 0x65,
0x6e, 0x67, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x61,
0x72, 0x74, 0x65, 0x72, 0x73, 0x5f, 0x30, 0x32,
0x7b, 0x46, 0x5c, 0xfb, 0x9c, 0x7b, 0x3f, 0x4c,
0xcc, 0xcd, 0x7b, 0x41, 0xa8, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x03, 0x21, 0xbc, 0x00, 0x15,
0x70, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65,
0x72, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65,
0x72, 0x73, 0x5f, 0x30, 0x33, 0x7b, 0x46, 0x93,
0x52, 0x5a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b,
0x41, 0xa8, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00 };
char peer1_79[] = {
0x02, 0x21, 0xbc, 0x00, 0x15, 0x70, 0x61, 0x73,
0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x5f, 0x71,
0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x5f,
0x30, 0x34, 0x7b, 0x46, 0xb8, 0x26, 0xed, 0x7b,
0x3f, 0x99, 0x99, 0x9a, 0x7b, 0x41, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x09, 0x21, 0xbc,
0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x30, 0x31, 0x7b, 0x43, 0xeb, 0xbb, 0xdf,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x05, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x30, 0x32, 0x7b, 0x44, 0x6b, 0xbc,
0x61, 0x7b, 0x40, 0x00, 0x00, 0x00, 0x7b, 0x40,
0x60, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x08,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x44, 0xeb,
0xb9, 0x46, 0x7b, 0x40, 0x40, 0x00, 0x00, 0x7b,
0x40, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x0f, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x30, 0x34, 0x7b, 0x45,
0x6b, 0xb7, 0xe9, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x41, 0x30, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x05, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x35, 0x7b,
0x45, 0xeb, 0xb7, 0x8d, 0x7b, 0x40, 0xa0, 0x00,
0x00, 0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x0a, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30, 0x36,
0x7b, 0x46, 0x6b, 0xb7, 0x26, 0x7b, 0x40, 0xc0,
0x00, 0x00, 0x7b, 0x42, 0x00, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x0e, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x30,
0x37, 0x7b, 0x46, 0xeb, 0xb6, 0xe6, 0x7b, 0x40,
0xe0, 0x00, 0x00, 0x7b, 0x42, 0x70, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc, 0x00,
0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x30, 0x38, 0x7b, 0x47, 0x6b, 0xb6, 0xf7, 0x7b,
0x41, 0x00, 0x00, 0x00, 0x7b, 0x42, 0xc8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc,
0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74, 0x6f,
0x72, 0x30, 0x39, 0x7b, 0x47, 0xeb, 0xb6, 0xe3,
0x7b, 0x41, 0x10, 0x00, 0x00, 0x7b, 0x43, 0x2f,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21,
0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63, 0x74,
0x6f, 0x72, 0x31, 0x30, 0x7b, 0x48, 0x6b, 0xb6,
0xde, 0x7b, 0x41, 0x20, 0x00, 0x00, 0x7b, 0x43,
0x9b, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x0b,
0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61, 0x63,
0x74, 0x6f, 0x72, 0x31, 0x31, 0x7b, 0x48, 0xeb,
0xb6, 0xde, 0x7b, 0x41, 0x40, 0x00, 0x00, 0x7b,
0x44, 0x07, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x05, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65, 0x61,
0x63, 0x74, 0x6f, 0x72, 0x31, 0x32, 0x7b, 0x49,
0x6b, 0xb6, 0xdd, 0x7b, 0x41, 0x60, 0x00, 0x00,
0x7b, 0x44, 0x6d, 0x80, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0e, 0x21, 0xbc, 0x00, 0x09, 0x72, 0x65,
0x61, 0x63, 0x74, 0x6f, 0x72, 0x31, 0x33, 0x7b,
0x49, 0xeb, 0xb6, 0xdc, 0x7b, 0x41, 0x80, 0x00,
0x00, 0x7b, 0x44, 0xce, 0x40, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x07, 0x21, 0xbc, 0x00, 0x09, 0x72,
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31, 0x34,
0x7b, 0x4a, 0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0xa0,
0x00, 0x00, 0x7b, 0x45, 0x34, 0xa0, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00, 0x09,
0x72, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x31,
0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b, 0x41,
0xc0, 0x00, 0x00, 0x7b, 0x45, 0x9d, 0xd0, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc, 0x00,
0x08, 0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65,
0x31, 0x7b, 0x46, 0xeb, 0xb6, 0xe6, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x41, 0x50, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc, 0x00,
0x08, 0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65,
0x32, 0x7b, 0x47, 0x6b, 0xb6, 0xee, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x41, 0x88, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x02, 0x21, 0xbc, 0x00,
0x08, 0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65,
0x33, 0x7b, 0x47, 0xeb, 0xb6, 0xdc, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x41, 0xa8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00,
0x08, 0x68, 0x61, 0x77, 0x6b, 0x65, 0x79, 0x65,
0x34, 0x7b, 0x48, 0x13, 0x52, 0x4f, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x41, 0xa8, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x0b, 0x21, 0xbc, 0x00,
0x09, 0x73, 0x6b, 0x79, 0x73, 0x63, 0x6f, 0x70,
0x65, 0x31, 0x7b, 0x43, 0xeb, 0xbb, 0xfb, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x06, 0x21, 0xbc,
0x00, 0x09, 0x73, 0x6b, 0x79, 0x73, 0x63, 0x6f,
0x70, 0x65, 0x32, 0x7b, 0x44, 0x6b, 0xb7, 0x80,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40, 0x00,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21,
0xbc, 0x00, 0x09, 0x73, 0x6b, 0x79, 0x73, 0x63,
0x6f, 0x70, 0x65, 0x33, 0x7b, 0x44, 0xeb, 0xb8,
0xcf, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40,
0x40, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x04,
0x21, 0xbc, 0x00, 0x0c, 0x73, 0x74, 0x61, 0x72,
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x31,
0x7b, 0x45, 0x6b, 0xb7, 0xb6, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x40, 0xa0, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x06, 0x21, 0xbc, 0x00, 0x0c,
0x73, 0x74, 0x61, 0x72, 0x73, 0x63, 0x61, 0x6e,
0x6e, 0x65, 0x72, 0x32, 0x7b, 0x45, 0xeb, 0xb7,
0xa6, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x40,
0xe0, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01,
0x21, 0xbc, 0x00, 0x0c, 0x73, 0x74, 0x61, 0x72,
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x33,
0x7b, 0x46, 0x6b, 0xb7, 0x32, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x41, 0x10, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x01, 0x21, 0xbc, 0x00, 0x0c,
0x73, 0x74, 0x61, 0x72, 0x73, 0x63, 0x61, 0x6e,
0x6e, 0x65, 0x72, 0x34, 0x7b, 0x46, 0xb0, 0xc9,
0x47, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x41,
0x10, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x1a, 0x6d, 0x75, 0x6c, 0x74,
0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d,
0x6f, 0x72, 0x65, 0x67, 0x75, 0x6e, 0x72, 0x65,
0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x7b, 0x48,
0x6b, 0xb6, 0xdd, 0x7b, 0x3d, 0xcc, 0xcc, 0xcd,
0x7b, 0x3e, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x1d, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79,
0x5f, 0x6d, 0x6f, 0x72, 0x65, 0x73, 0x68, 0x69,
0x65, 0x6c, 0x64, 0x72, 0x65, 0x63, 0x68, 0x61,
0x72, 0x67, 0x65, 0x7b, 0x48, 0xeb, 0xb6, 0xdd,
0x7b, 0x3f, 0x8c, 0xcc, 0xcd, 0x7b, 0x40, 0xa0,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x16, 0x6d, 0x75, 0x6c, 0x74, 0x5f };
char peer1_80[] = {
0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f,
0x72, 0x65, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x73, 0x7b, 0x47, 0xeb, 0xb6, 0xdd, 0x7b, 0x3d,
0xcc, 0xcc, 0xcd, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x15, 0x6d, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x68,
0x61, 0x64, 0x79, 0x5f, 0x6d, 0x6f, 0x72, 0x65,
0x74, 0x68, 0x72, 0x75, 0x73, 0x74, 0x7b, 0x47,
0x6b, 0xb6, 0xea, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x00, 0x21, 0xbc, 0x00, 0x16, 0x6d, 0x75,
0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x64, 0x79,
0x5f, 0x6d, 0x6f, 0x72, 0x65, 0x74, 0x75, 0x72,
0x6e, 0x69, 0x6e, 0x67, 0x7b, 0x49, 0x6b, 0xb6,
0xdc, 0x7b, 0x40, 0x6c, 0xcc, 0xcd, 0x7b, 0x41,
0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00,
0x21, 0xbc, 0x00, 0x16, 0x6d, 0x75, 0x6c, 0x74,
0x5f, 0x73, 0x68, 0x61, 0x64, 0x79, 0x5f, 0x6d,
0x6f, 0x72, 0x65, 0x75, 0x70, 0x67, 0x72, 0x61,
0x64, 0x65, 0x7b, 0x46, 0xeb, 0xb6, 0xe6, 0x7b,
0x41, 0x20, 0x00, 0x00, 0x7b, 0x42, 0x48, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x18, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x31, 0x7b, 0x43,
0x6b, 0xc9, 0x28, 0x7b, 0x3f, 0x00, 0x00, 0x00,
0x7b, 0x40, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x11, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x32, 0x7b, 0x43, 0xeb, 0xb8, 0x56, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40, 0xa0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x33, 0x7b, 0x44,
0x6b, 0xbc, 0xfa, 0x7b, 0x3f, 0xc0, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x13, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x34, 0x7b, 0x44, 0xeb, 0xb7, 0x81, 0x7b,
0x40, 0x00, 0x00, 0x00, 0x7b, 0x41, 0x40, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x19, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x35, 0x7b, 0x45,
0x6b, 0xb7, 0xa7, 0x7b, 0x40, 0x20, 0x00, 0x00,
0x7b, 0x41, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x16, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x36, 0x7b, 0x45, 0xeb, 0xb7, 0x07, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x41, 0xa8, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x18, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x37, 0x7b, 0x46,
0x6b, 0xb6, 0xf2, 0x7b, 0x40, 0x60, 0x00, 0x00,
0x7b, 0x41, 0xc8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0f, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x38, 0x7b, 0x46, 0xeb, 0xb7, 0x12, 0x7b,
0x40, 0x80, 0x00, 0x00, 0x7b, 0x41, 0xf0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x19, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x39, 0x7b, 0x47,
0x6b, 0xb6, 0xe3, 0x7b, 0x40, 0x90, 0x00, 0x00,
0x7b, 0x42, 0x0c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x14, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x30, 0x7b, 0x47, 0xeb, 0xb6, 0xe3, 0x7b,
0x40, 0xa0, 0x00, 0x00, 0x7b, 0x42, 0x20, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x31, 0x7b, 0x48,
0x6b, 0xb6, 0xe1, 0x7b, 0x40, 0xc0, 0x00, 0x00,
0x7b, 0x42, 0x38, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x19, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x32, 0x7b, 0x48, 0xeb, 0xb6, 0xdd, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x42, 0x50, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x17, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x33, 0x7b, 0x49,
0x6b, 0xb6, 0xdd, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x42, 0x64, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x0b, 0x21, 0xbc, 0x00, 0x0c, 0x64, 0x75,
0x61, 0x6c, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x34, 0x7b, 0x49, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0x10, 0x00, 0x00, 0x7b, 0x42, 0x7c, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x04, 0x21, 0xbc,
0x00, 0x0c, 0x64, 0x75, 0x61, 0x6c, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x35, 0x7b, 0x4a,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x42, 0x8c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x13, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x31, 0x7b, 0x43, 0xeb, 0xbf, 0x62, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0x7b, 0x40, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0f, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x32, 0x7b, 0x44,
0x6b, 0xbb, 0xba, 0x7b, 0x40, 0x00, 0x00, 0x00,
0x7b, 0x41, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x16, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x33, 0x7b, 0x44, 0xeb, 0xb8, 0xff, 0x7b,
0x40, 0x40, 0x00, 0x00, 0x7b, 0x41, 0x50, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x14, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x34, 0x7b, 0x45,
0x6b, 0xb7, 0x1b, 0x7b, 0x40, 0x80, 0x00, 0x00,
0x7b, 0x41, 0x90, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x17, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x35, 0x7b, 0x45, 0xeb, 0xb7, 0x3f, 0x7b,
0x40, 0xa0, 0x00, 0x00, 0x7b, 0x41, 0xc0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x15, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x36, 0x7b, 0x46,
0x6b, 0xb7, 0x13, 0x7b, 0x40, 0xc0, 0x00, 0x00,
0x7b, 0x41, 0xf8, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x15, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x37, 0x7b, 0x46, 0xeb, 0xb6, 0xf7, 0x7b,
0x40, 0xe0, 0x00, 0x00, 0x7b, 0x42, 0x18, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x16, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x30, 0x38, 0x7b, 0x47,
0x6b, 0xb6, 0xef, 0x7b, 0x41, 0x00, 0x00, 0x00,
0x7b, 0x42, 0x34, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x13, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x30, 0x39, 0x7b, 0x47, 0xeb, 0xb6, 0xe4, 0x7b };
char peer1_81[] = {
0x41, 0x10, 0x00, 0x00, 0x7b, 0x42, 0x54, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x19, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x7b, 0x48,
0x6b, 0xb6, 0xe2, 0x7b, 0x41, 0x20, 0x00, 0x00,
0x7b, 0x42, 0x74, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x10, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x31, 0x7b, 0x48, 0xeb, 0xb6, 0xdd, 0x7b,
0x41, 0x30, 0x00, 0x00, 0x7b, 0x42, 0x8a, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x15, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x32, 0x7b, 0x49,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0x40, 0x00, 0x00,
0x7b, 0x42, 0x9c, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x16, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x33, 0x7b, 0x49, 0xeb, 0xb6, 0xdc, 0x7b,
0x41, 0x50, 0x00, 0x00, 0x7b, 0x42, 0xac, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x0a, 0x21, 0xbc,
0x00, 0x0c, 0x71, 0x75, 0x61, 0x64, 0x73, 0x68,
0x69, 0x65, 0x6c, 0x64, 0x31, 0x34, 0x7b, 0x4a,
0x6b, 0xb6, 0xdb, 0x7b, 0x41, 0x60, 0x00, 0x00,
0x7b, 0x42, 0xbe, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x71, 0x75,
0x61, 0x64, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64,
0x31, 0x35, 0x7b, 0x4a, 0xeb, 0xb6, 0xdb, 0x7b,
0x41, 0x70, 0x00, 0x00, 0x7b, 0x42, 0xd0, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x08, 0x21, 0xbc,
0x00, 0x14, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70,
0x65, 0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x31, 0x7b, 0x45,
0xb0, 0xc9, 0x39, 0x7b, 0x40, 0xa0, 0x00, 0x00,
0x7b, 0x40, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x08, 0x21, 0xbc, 0x00, 0x14, 0x61, 0x64,
0x64, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x30, 0x32, 0x7b, 0x46, 0x30, 0xc9, 0x93, 0x7b,
0x41, 0x20, 0x00, 0x00, 0x7b, 0x41, 0x40, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x07, 0x21, 0xbc,
0x00, 0x14, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70,
0x65, 0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x33, 0x7b, 0x46,
0xb0, 0xc9, 0x49, 0x7b, 0x41, 0xa0, 0x00, 0x00,
0x7b, 0x41, 0xc0, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x14, 0x61, 0x64,
0x64, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x63,
0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x6f, 0x72,
0x30, 0x34, 0x7b, 0x47, 0x30, 0xc9, 0x2c, 0x7b,
0x42, 0x20, 0x00, 0x00, 0x7b, 0x42, 0x10, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x14, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x70,
0x65, 0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63,
0x69, 0x74, 0x6f, 0x72, 0x30, 0x35, 0x7b, 0x47,
0xb0, 0xc9, 0x29, 0x7b, 0x42, 0x70, 0x00, 0x00,
0x7b, 0x42, 0x40, 0x00, 0x00, 0xbe, 0x00, 0x00,
0x00, 0x03, 0x21, 0xbc, 0x00, 0x0c, 0x50, 0x6c,
0x61, 0x73, 0x6d, 0x61, 0x5f, 0x50, 0x6c, 0x75,
0x6d, 0x65, 0x7b, 0x43, 0xeb, 0xbb, 0x9f, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, 0x21, 0xbc,
0x00, 0x0d, 0x72, 0x65, 0x70, 0x75, 0x6c, 0x73,
0x6f, 0x72, 0x5f, 0x62, 0x65, 0x61, 0x6d, 0x7b,
0x47, 0x38, 0x26, 0xe4, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x74,
0x72, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x62,
0x65, 0x61, 0x6d, 0x7b, 0x45, 0xdc, 0xfb, 0xd3,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x02, 0x21,
0xbc, 0x00, 0x0a, 0x41, 0x72, 0x63, 0x5f, 0x44,
0x65, 0x76, 0x69, 0x63, 0x65, 0x7b, 0x45, 0xb0,
0xc9, 0x53, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0e, 0x44, 0x69, 0x73,
0x72, 0x75, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x42,
0x65, 0x61, 0x6d, 0x7b, 0x47, 0x25, 0xbc, 0xad,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0d, 0x46, 0x53, 0x5f, 0x4d, 0x57,
0x52, 0x46, 0x5f, 0x4c, 0x61, 0x73, 0x65, 0x72,
0x7b, 0x46, 0x93, 0x52, 0x52, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x08,
0x49, 0x6f, 0x6e, 0x5f, 0x42, 0x65, 0x61, 0x6d,
0x7b, 0x46, 0x6b, 0xb7, 0x31, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0d,
0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65,
0x5f, 0x42, 0x65, 0x61, 0x6d, 0x7b, 0x45, 0xdc,
0xfb, 0x81, 0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b,
0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
0x00, 0x21, 0xbc, 0x00, 0x0c, 0x61, 0x75, 0x74,
0x6f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e,
0x67, 0x7b, 0x47, 0xb8, 0x26, 0xe6, 0x7b, 0x3c,
0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00,
0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00,
0x12, 0x74, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x72,
0x5f, 0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c,
0x69, 0x74, 0x79, 0x7b, 0x47, 0x38, 0x26, 0xf2,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21,
0xbc, 0x00, 0x0b, 0x49, 0x6f, 0x6e, 0x5f, 0x42,
0x75, 0x72, 0x73, 0x74, 0x65, 0x72, 0x7b, 0x45,
0xce, 0x40, 0x62, 0x7b, 0x3c, 0x23, 0xd7, 0x0a,
0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00, 0x00 };
char peer1_82[] = {
0x00, 0x04, 0x21, 0xbc, 0x00, 0x0c, 0x4d, 0x69,
0x63, 0x72, 0x6f, 0x5f, 0x44, 0x72, 0x69, 0x76,
0x65, 0x72, 0x7b, 0x46, 0x13, 0x52, 0x4f, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x21, 0xbc,
0x00, 0x08, 0x50, 0x75, 0x67, 0x69, 0x6c, 0x69,
0x73, 0x74, 0x7b, 0x47, 0x8a, 0x1d, 0x2e, 0x7b,
0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00,
0x00, 0xbe, 0x00, 0x00, 0x00, 0x03, 0x21, 0xbc,
0x00, 0x05, 0x6c, 0x61, 0x73, 0x65, 0x72, 0x7b,
0x45, 0x4e, 0x41, 0xa6, 0x7b, 0x3c, 0x23, 0xd7,
0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe, 0x00,
0x00, 0x00, 0x04, 0x21, 0xbc, 0x00, 0x09, 0x44,
0x69, 0x73, 0x72, 0x75, 0x70, 0x74, 0x6f, 0x72,
0x7b, 0x47, 0x5c, 0xfb, 0x7a, 0x7b, 0x3c, 0x23,
0xd7, 0x0a, 0x7b, 0x3f, 0x80, 0x00, 0x00, 0xbe,
0x00, 0x00, 0x00, 0x00, 0x21, 0xbc, 0x00, 0x0b,
0x4d, 0x69, 0x6e, 0x69, 0x5f, 0x44, 0x72, 0x69,
0x76, 0x65, 0x72, 0x7b, 0x46, 0x5c, 0xfb, 0xae,
0x7b, 0x3c, 0x23, 0xd7, 0x0a, 0x7b, 0x3f, 0x80,
0x00, 0x00, 0xbd, 0xbc, 0x00, 0x00 };
|
the_stack_data/168894395.c | #include <stdio.h>
int main() {
int a, b, c, maior;
scanf("%d %d %d", &a, &b, &c);
maior = (a + b + abs(a - b)) / 2;
maior = (maior + c + abs(maior - c)) / 2;
printf("%d eh o maior\n", maior);
return 0;
} |
the_stack_data/189262.c | //author: Aritra Banerjee
#include <stdio.h>
int main(void) {
int a,b,c,d,T;
scanf("%d",&T);
while(T--)
{
scanf("%d%d%d%d",&a,&b,&c,&d);
if(a==b&&c==d||a==c&&b==d||a==d&&b==c)
printf("YES\n");
else
printf("NO\n");
}
return 0;
}
|
the_stack_data/93887115.c | #include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
void *print_text(void *arg) {
printf("1. It's the child thread!\n");
printf("2. It's the child thread!\n");
printf("3. It's the child thread!\n");
printf("4. It's the child thread!\n");
printf("5. It's the child thread!\n");
pthread_exit(arg);
}
int main() {
pthread_t thread;
if (pthread_create(&thread, NULL, print_text, NULL) != 0) {
fprintf(stderr, "Error of the thread creation!\n");
exit(-1);
}
if (pthread_join(thread, NULL) != 0) {
fprintf(stderr, "Error ot the thread joining!\n");
exit(-1);
}
printf("6. It's the parent thread!\n");
printf("7. It's the parent thread!\n");
printf("8. It's the parent thread!\n");
printf("9. It's the parent thread!\n");
printf("10. It's the parent thread!\n");
pthread_exit(NULL);
} |
the_stack_data/154830241.c | #include <stdio.h>
#include <string.h>
void hack(void) {
printf("You are hacked!");
// do something malicious here
}
int main(int argc, char *argv[]) {
char buf[4];
printf("Input a string? ");
gets(buf); // BUG: buffer overflow here: INFER fails to detect
printf("You entered: %s\n", buf);
return 0;
}
|
the_stack_data/145453885.c | #define _GNU_SOURCE
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <linux/limits.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <signal.h>
#include <setjmp.h>
#include <sched.h>
#include <signal.h>
/* All arguments should be above stack, because it grows down */
struct clone_arg {
/*
* Reserve some space for clone() to locate arguments
* and retcode in this place
*/
char stack[4096] __attribute__ ((aligned(8)));
char stack_ptr[0];
jmp_buf *env;
};
#define pr_perror(fmt, ...) fprintf(stderr, "nsenter: " fmt ": %m\n", ##__VA_ARGS__)
static int child_func(void *_arg)
{
struct clone_arg *arg = (struct clone_arg *)_arg;
longjmp(*arg->env, 1);
}
// Use raw setns syscall for versions of glibc that don't include it (namely glibc-2.12)
#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 14
#define _GNU_SOURCE
#include "syscall.h"
#ifdef SYS_setns
int setns(int fd, int nstype)
{
return syscall(SYS_setns, fd, nstype);
}
#endif
#endif
static int clone_parent(jmp_buf * env) __attribute__ ((noinline));
static int clone_parent(jmp_buf * env)
{
struct clone_arg ca;
int child;
ca.env = env;
child = clone(child_func, ca.stack_ptr, CLONE_PARENT | SIGCHLD, &ca);
return child;
}
void nsexec()
{
char *namespaces[] = { "ipc", "uts", "net", "pid", "mnt" };
const int num = sizeof(namespaces) / sizeof(char *);
jmp_buf env;
char buf[PATH_MAX], *val;
int i, tfd, child, len, consolefd = -1;
pid_t pid;
char *console;
val = getenv("_LIBCONTAINER_INITPID");
if (val == NULL)
return;
pid = atoi(val);
snprintf(buf, sizeof(buf), "%d", pid);
if (strcmp(val, buf)) {
pr_perror("Unable to parse _LIBCONTAINER_INITPID");
exit(1);
}
console = getenv("_LIBCONTAINER_CONSOLE_PATH");
if (console != NULL) {
consolefd = open(console, O_RDWR);
if (consolefd < 0) {
pr_perror("Failed to open console %s", console);
exit(1);
}
}
/* Check that the specified process exists */
snprintf(buf, PATH_MAX - 1, "/proc/%d/ns", pid);
tfd = open(buf, O_DIRECTORY | O_RDONLY);
if (tfd == -1) {
pr_perror("Failed to open \"%s\"", buf);
exit(1);
}
for (i = 0; i < num; i++) {
struct stat st;
int fd;
/* Symlinks on all namespaces exist for dead processes, but they can't be opened */
if (fstatat(tfd, namespaces[i], &st, AT_SYMLINK_NOFOLLOW) == -1) {
// Ignore nonexistent namespaces.
if (errno == ENOENT)
continue;
}
fd = openat(tfd, namespaces[i], O_RDONLY);
if (fd == -1) {
pr_perror("Failed to open ns file %s for ns %s", buf,
namespaces[i]);
exit(1);
}
// Set the namespace.
if (setns(fd, 0) == -1) {
pr_perror("Failed to setns for %s", namespaces[i]);
exit(1);
}
close(fd);
}
if (setjmp(env) == 1) {
if (setsid() == -1) {
pr_perror("setsid failed");
exit(1);
}
if (consolefd != -1) {
if (ioctl(consolefd, TIOCSCTTY, 0) == -1) {
pr_perror("ioctl TIOCSCTTY failed");
exit(1);
}
if (dup2(consolefd, STDIN_FILENO) != STDIN_FILENO) {
pr_perror("Failed to dup 0");
exit(1);
}
if (dup2(consolefd, STDOUT_FILENO) != STDOUT_FILENO) {
pr_perror("Failed to dup 1");
exit(1);
}
if (dup2(consolefd, STDERR_FILENO) != STDERR_FILENO) {
pr_perror("Failed to dup 2");
exit(1);
}
}
// Finish executing, let the Go runtime take over.
return;
}
child = clone_parent(&env);
if (child < 0) {
pr_perror("Unable to fork");
exit(1);
}
len = snprintf(buf, sizeof(buf), "{ \"pid\" : %d }\n", child);
if (write(3, buf, len) != len) {
pr_perror("Unable to send a child pid");
kill(child, SIGKILL);
exit(1);
}
exit(0);
}
|
the_stack_data/211080085.c | /*
Reference: https://elinux.org/RPi_GPIO_Code_Samples
*/
#define BCM2708_PERI_BASE 0x3F000000
#define GPIO_BASE (BCM2708_PERI_BASE + 0x200000) /* GPIO controller */
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/mman.h> //mmap()
#include <unistd.h>
#define BLOCK_SIZE (4*1024)
int memfile;
volatile unsigned *gpio;
// GPIO setup macros
// Always use INP_GPIO before using OUT_GPIO or SET_GPIO_ALT
#define INP_GPIO(g) *(gpio+((g)/10)) &= ~(7<<(((g)%10)*3))
#define OUT_GPIO(g) *(gpio+((g)/10)) |= (1<<(((g)%10)*3))
#define SET_GPIO_ALT(g,a) *(gpio+(((g)/10))) |= (((a)<=3?(a)+4:(a)==4?3:2)<<(((g)%10)*3))
#define GPIO_SET *(gpio+7) // sets bits which are 1 ignores bits which are 0
#define GPIO_CLR *(gpio+10) // clears bits which are 1 ignores bits which are 0
#define GET_GPIO(g) (*(gpio+13)&(1<<g)) // 0 if LOW, (1<<g) if HIGH
#define GPIO_PULL *(gpio+37) // Pull up/pull down
#define GPIO_PULLCLK0 *(gpio+38) // Pull up/pull down clock
// Functions
void setup_io();
int main(int argc, char *argv[]){
setup_io();
int pin = 20;
// Set GPIO 20 to output
INP_GPIO(pin);
OUT_GPIO(pin);
while(1){
GPIO_SET = 1<<pin;
sleep(5);
GPIO_CLR = 1<<pin;
sleep(5);
}
return 0;
}
// Setup memory regions for GPIO access
void setup_io(){
void *gpio_map = NULL;
// Open /dev/mem for mmap()
if ((memfile = open("/dev/mem", O_RDWR|O_SYNC) ) < 0) {
fprintf(stderr, "Could not open /dev/mem : %d\n", errno);
exit(EXIT_FAILURE);
}
gpio_map = mmap(
NULL, // Any address in space
BLOCK_SIZE, // Map length
PROT_READ|PROT_WRITE, // Enable reading and writing
MAP_SHARED, // Shared with other processes
memfile, // Mapped file
GPIO_BASE // Offset to GPIO peripheral
);
close(memfile);
// Check if map successful
if(gpio_map == MAP_FAILED){
fprintf(stderr, "mmap error %d\n", (int)gpio_map);
exit(EXIT_FAILURE);
}
gpio = (volatile unsigned *)gpio_map;
}
|
the_stack_data/186274.c | #include <stdio.h>
extern int id0(int);
extern int id1(int);
extern int id2(int);
extern int id3(int);
int main(int argc, char *argv[]) {
printf("%d\n", id0(4));
printf("%d\n", id1(4));
printf("%d\n", id2(4));
printf("%d", id3(4));
}
|
the_stack_data/237644481.c | #include <stdio.h>
#include <string.h>
#include <openssl/evp.h>
#include <openssl/aes.h>
#include <openssl/err.h>
typedef unsigned char byte;
// Start: adapted from https://gist.github.com/barrysteyn/4409525
int calcDecodeLength(const char* b64input) {
int len = strlen(b64input);
int padding;
if (b64input[len-1] == '=' && b64input[len-2] == '=') {
padding = 2;
}
else if (b64input[len-1] == '=') {
padding = 1;
}
return (int)len*0.75 - padding;
}
int base64Decode(byte* b64message, byte** buffer) { //Decodes a base64 encoded string
BIO *bio, *b64;
int decodeLen = calcDecodeLength(b64message);
int len = 0;
*buffer = (byte*)malloc(decodeLen+1);
FILE* stream = fmemopen(b64message, strlen(b64message), "r");
b64 = BIO_new(BIO_f_base64());
bio = BIO_new_fp(stream, BIO_NOCLOSE);
bio = BIO_push(b64, bio);
BIO_set_flags(bio, BIO_FLAGS_BASE64_NO_NL);
len = BIO_read(bio, *buffer, strlen(b64message));
(*buffer)[len] = '\0';
BIO_free_all(bio);
fclose(stream);
return 0;
}
// End: adapted from https://gist.github.com/barrysteyn/4409525
void handleErrors() {
ERR_print_errors_fp(stderr);
abort();
}
int decrypt(byte *cipherText, int cipherText_len, byte *key, byte *iv, byte *plainText) {
EVP_CIPHER_CTX *ctx;
int len;
int plaintext_len;
if(!(ctx = EVP_CIPHER_CTX_new())) {
handleErrors();
}
if(1 != EVP_DecryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv)) {
handleErrors();
}
// PKCS padding is used by default:
// https://wiki.openssl.org/index.php/EVP_Symmetric_Encryption_and_Decryption#Padding.
// We must switch to zero padding to match the encrypted message.
EVP_CIPHER_CTX_set_padding(ctx, 0);
// Provide the message to be decrypted, and obtain the plaintext
// output. EVP_DecryptUpdate can be called multiple times if
// necessary.
if(1 != EVP_DecryptUpdate(ctx, plainText, &len, cipherText, cipherText_len)) {
handleErrors();
}
plaintext_len = len;
// Finalisz the decryption. Further plaintext bytes may be written
// at this stage.
if(1 != EVP_DecryptFinal_ex(ctx, plainText + len, &len)) {
handleErrors();
}
plaintext_len += len;
EVP_CIPHER_CTX_free(ctx);
return plaintext_len;
}
void decrypt_mine() {
ERR_load_crypto_strings();
byte* cipherText;
base64Decode("yptyoDdVBdQtGhgoePppYHnWyugGmy0j81sf3zBeUXEO/LYRw+2XmVa0/v6YiSy9Kj8gMn/gNu2I7dPmfgSEHPUDJpNpiOWmmW1/jw/Pt29Are5tumWmnfkazcAb23xe7B4ruPZVxUEhfn/IrZPNZdr4cQNrHNgEv2ts8gVFuOBU+p792UPy8/mEIhW5ECppxGIb7Yrpg4w7IYNeFtX5d9W4W1t2e+6PcdcjkBK4a8y1cjEtuQ07RpPChOvLcSzlB/Bg7UKntzorRsn+y/d72qD2QxRzcXgbynCNalF7zaT6pEnwKB4i05fTQw6nB7SU1w2/EvCGlfiyR2Ia08mA0GikqegYA6xG/EAGs3ZJ0aQUGt0YZz0P7uBsQKdmCg7jzzEMHyGZDNGTj0F2dOFHLSOTT2/GGSht8eD/Ae7u/xnJj0bGgAKMtNttGFlNyvKpt2vDDT3Orfk6Jk/rD4CIz6O/Tnt0NkJLucHtIyvBYGtQR4+mhbfUELkczeDSxTXGDLaiU3de6tPaa0/vjzizoUbNFdfkIly/HWINdHoO83E=", &cipherText);
byte* iv;
base64Decode("DkBbcmQo1QH+ed1wTyBynA==", &iv);
byte clearText[1024] = {};
byte key[32] = {};
for (byte a = 0; a <= 16; a++) {
for (byte b = 0; b <= 16; b++) {
for (byte c = 0; c <= 16; c++) {
for (byte d = 0; d <= 16; d++) {
for (byte e = 0; e <= 16; e++) {
for (byte f = 0; f <= 16; f++) {
key[0] = a;
key[1] = b;
key[2] = c;
key[3] = d;
key[4] = e;
key[5] = f;
decrypt(cipherText, strlen(cipherText), key, iv, clearText);
if (strstr(clearText, "trust") != NULL) {
printf("%d %d %d %d %d %d\n%s\n\n", a, b, c, d, e, f, clearText);
}
}
}
}
}
}
}
free(cipherText);
free(iv);
EVP_cleanup();
CRYPTO_cleanup_all_ex_data();
ERR_free_strings();
}
int main() {
decrypt_mine();
}
|
the_stack_data/1011496.c | #if defined(_WIN32) || defined(__CYGWIN__)
# define testExe2libImp_EXPORT __declspec(dllexport)
#else
# define testExe2libImp_EXPORT
#endif
testExe2libImp_EXPORT int testExe2libImp(void)
{
return 0;
}
|
the_stack_data/93888103.c | #include <wchar.h>
wchar_t *wcsrchr(const wchar_t *s, wchar_t c)
{
const wchar_t *p;
for (p=s+wcslen(s); p>=s && *p!=c; p--);
return p>=s ? (wchar_t *)p : 0;
}
|
the_stack_data/175144486.c | #define _GNU_SOURCE
#include<stdio.h>
#include<unistd.h>
#include<sys/syscall.h>
#define SYS_kernel_2d_memcpy 449
int main(int argc, char** argv){
float myArr[5][4] = {
{1.020, 2.123, 3.010, 4.100},
{1.080, 2.001, 3.020, 4.200},
{1.050, 2.002, 3.030, 4.300},
{1.409, 2.003, 3.040, 4.400},
{1.011, 2.004, 3.050, 4.1234},
};
float myArr_copy[5][4];
printf("\nTesting kernel_2d_memcpy system call\n");
printf("\nPrinting \"original\" 2-D floating point matrix...\n");
for (int i = 0; i < 5; i++)
{
for (int j = 0; j < 4; j++)
{
printf("%f ", myArr[i][j]);
}
printf("\n");
}
printf("\nPrinting \"copied\" 2-D floating point matrix...\n");
int ret_val = syscall(SYS_kernel_2d_memcpy, myArr, myArr_copy, 80);
for (int i = 0; i < 5; i++)
{
for (int j = 0; j < 4; j++)
{
printf("%f ", myArr_copy[i][j]);
}
printf("\n");
}
printf("\nReturn value: %d\n", ret_val);
return 0;
} |
the_stack_data/141074.c | int yf = 0;
void
pl (int q5, int nd)
{
unsigned int hp = q5;
int zx = (q5 == 0) ? hp : (hp / q5);
yf = ((nd < 2) * zx != 0) ? nd : 0;
}
int
main (void)
{
pl (1, !yf);
if (yf != 1)
__builtin_abort ();
return 0;
}
|
the_stack_data/22012685.c | /* See if we have a broken register_printf function (e.g. an old version of glibc) */
/*
Copyright (C) 2005 Free Software Foundation
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
*/
#include <stdio.h>
#include <printf.h>
#include <stdarg.h>
/* <[email protected]>, with libc-5.3.9 thinks this
flag PRINTF_ATSIGN_VA_LIST should be 0, but for me, with libc-5.0.9,
it crashes. -mccallum
Apparently GNU libc 2.xx needs this to be 0 also, along with Linux
libc versions 5.2.xx and higher (including libc6, which is just GNU
libc). -chung */
#define PRINTF_ATSIGN_VA_LIST \
(defined(_LINUX_C_LIB_VERSION_MINOR) \
&& _LINUX_C_LIB_VERSION_MAJOR <= 5 \
&& _LINUX_C_LIB_VERSION_MINOR < 2)
#if ! PRINTF_ATSIGN_VA_LIST
static int
arginfo_func (const struct printf_info *info, size_t n, int *argtypes)
{
*argtypes = PA_POINTER;
return 1;
}
#endif /* !PRINTF_ATSIGN_VA_LIST */
static int
handle_printf_atsign (FILE *stream,
const struct printf_info *info,
#if PRINTF_ATSIGN_VA_LIST
va_list *ap_pointer)
#elif defined(_LINUX_C_LIB_VERSION_MAJOR) \
&& _LINUX_C_LIB_VERSION_MAJOR < 6
const void **const args)
#else /* GNU libc needs the following. */
const void *const *args)
#endif
{
#if ! PRINTF_ATSIGN_VA_LIST
const void *ptr = *args;
#endif
char * string_object;
int len;
/* xxx This implementation may not pay pay attention to as much
of printf_info as it should. */
#if PRINTF_ATSIGN_VA_LIST
string_object = va_arg (*ap_pointer, char *);
#else
string_object = *((char **) ptr);
#endif
len = fprintf(stream, "%s", string_object);
return len;
}
int main()
{
char *d = "hi there";
register_printf_function ('@',
handle_printf_atsign,
#if PRINTF_ATSIGN_VA_LIST
0);
#else
arginfo_func);
#endif
printf("test %s = %@\n", d, d);
return 0;
}
|
the_stack_data/507558.c | /**
* Demo Tool
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/time.h>
void handler(int signum)
{
exit(1);
}
int main(int argc, char **argv)
{
char buff[1024];
char *token;
int count = 0;
struct timeval current_time;
long current_millseconds;
long save_millseconds;
if(SIG_ERR == signal(SIGINT, handler)){
printf("SIGNAL ERROR\n");
return(0);
}
while(1)
{
gettimeofday(¤t_time, NULL);
save_millseconds = current_time.tv_sec * 1000 + current_time.tv_usec / 1000;
printf("/common/fundamental/time/current,%ld\n", save_millseconds);
while(1)
{
if(NULL == fgets(buff, 1024, stdin))return(0);
printf("%s", buff);
gettimeofday(¤t_time, NULL);
current_millseconds = current_time.tv_sec * 1000 + current_time.tv_usec / 1000;
if(current_millseconds - save_millseconds > 15000)break;
}
printf(".\n");
fflush(stdout);
}
return(0);
}
|
the_stack_data/70047.c | #include <stdio.h>
int main()
{
int test, n;
scanf("%d", &test);
while (test--)
{
scanf("%d", &n);
int goal[10000][3], compare[3];
for (int j = 0; j < n; j++)
{
scanf("%d%d%d", &goal[j][0], &goal[j][1], &goal[j][2]);
}
if (goal[0][0] == 2)
{
printf("NO\n");
}
else if (goal[0][0] == 1)
{
printf("YES\n");
}
compare[0] = goal[0][0];
compare[1] = goal[0][1];
compare[2] = goal[0][2];
for (int i = 1; i < n; i++)
{
if (goal[i][0] == 1)
{
printf("YES\n");
}
else if (goal[i][1] == goal[i][2])
{
printf("YES\n");
}
else if (goal[i][1] - compare[1] < 0 || goal[i][2] - compare[2] < 0)
{
printf("YES\n");
}
else if (goal[i][1] - compare[2] < 0 || goal[i][2] - compare[1] < 0)
{
printf("YES\n");
}
else if (goal[i][1] - compare[1] == goal[i][2] - compare[2])
{
printf("YES\n");
}
else
{
printf("NO\n");
}
compare[0] = goal[i][0];
compare[1] = goal[i][1];
compare[2] = goal[i][2];
}
}
return 0;
} |
the_stack_data/57701.c | #include<stdio.h>
#include<time.h>
int _months[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int isleap(int year) {
return (year%4 == 0 && year%100 != 0) || (year%400 == 0) ? 1 : 0;
}
int days_in_month(int month, int year){
if(month == 2)
return isleap(year) == 1 ? 29 : 28;
return _months[month-1];
}
int find(int d1, int m1, int y1, int d2, int m2, int y2, int count) {
if(y1 == y2 && m1 == m2)
return count + d2 - d1;
count += days_in_month(m1, y1) - d1 + 1;
if (m1 == 12)
y1 += 1, m1 = 1;
else
m1 += 1;
return find(1, m1, y1, d2, m2, y2, count);
}
int main(){
double t1;
clock_t tic, toc;
tic = clock();
printf("days: %d\n", find(05, 5, 2017, 14, 6, 2017, 0));
printf("days: %d\n", find(23, 4, 2017, 24, 8, 2017, 0));
printf("days: %d\n", find(26, 8, 1993, 11, 1, 2021, 0));
printf("days: %d\n", find(26, 8, 1993, 21, 9, 2017, 0));
printf("days: %d\n", find(24, 11, 1986, 21, 9, 2017, 0));
toc = clock();
t1 = (double) (toc-tic)/CLOCKS_PER_SEC;
printf("avg time: %f\n", (double)t1/5);
return 0;
}
|
the_stack_data/91689.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 */
/* Type definitions */
typedef void* uid_t ;
struct passwd {char* pw_name; char* pw_shell; int /*<<< orphan*/ pw_fields; scalar_t__* pw_dir; scalar_t__* pw_gecos; void* pw_expire; void* pw_change; scalar_t__* pw_class; void* pw_gid; void* pw_uid; scalar_t__* pw_passwd; } ;
/* Variables and functions */
scalar_t__ ERANGE ;
unsigned long GID_MAX ;
unsigned long UID_MAX ;
unsigned long ULONG_MAX ;
void* USHRT_MAX ;
int /*<<< orphan*/ _PWF_CHANGE ;
int /*<<< orphan*/ _PWF_CLASS ;
int /*<<< orphan*/ _PWF_DIR ;
int /*<<< orphan*/ _PWF_EXPIRE ;
int /*<<< orphan*/ _PWF_GECOS ;
int /*<<< orphan*/ _PWF_GID ;
int /*<<< orphan*/ _PWF_NAME ;
int /*<<< orphan*/ _PWF_PASSWD ;
int /*<<< orphan*/ _PWF_SHELL ;
int /*<<< orphan*/ _PWF_UID ;
int _PWSCAN_MASTER ;
int _PWSCAN_WARN ;
void* atol (char*) ;
int /*<<< orphan*/ endusershell () ;
scalar_t__ errno ;
int /*<<< orphan*/ * getenv (char*) ;
char* getusershell () ;
int pw_big_ids_warning ;
int /*<<< orphan*/ setusershell () ;
int /*<<< orphan*/ strcmp (char*,char*) ;
void* strsep (char**,char*) ;
unsigned long strtoul (char*,char**,int) ;
int /*<<< orphan*/ warnx (char*,...) ;
int
__pw_scan(char *bp, struct passwd *pw, int flags)
{
uid_t id;
int root;
char *ep, *p, *sh;
unsigned long temp;
if (pw_big_ids_warning == -1)
pw_big_ids_warning = getenv("PW_SCAN_BIG_IDS") == NULL ? 1 : 0;
pw->pw_fields = 0;
if (!(pw->pw_name = strsep(&bp, ":"))) /* login */
goto fmt;
root = !strcmp(pw->pw_name, "root");
if (pw->pw_name[0] && (pw->pw_name[0] != '+' || pw->pw_name[1] == '\0'))
pw->pw_fields |= _PWF_NAME;
if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
goto fmt;
if (pw->pw_passwd[0])
pw->pw_fields |= _PWF_PASSWD;
if (!(p = strsep(&bp, ":"))) /* uid */
goto fmt;
if (p[0])
pw->pw_fields |= _PWF_UID;
else {
if (pw->pw_name[0] != '+' && pw->pw_name[0] != '-') {
if (flags & _PWSCAN_WARN)
warnx("no uid for user %s", pw->pw_name);
return (0);
}
}
errno = 0;
temp = strtoul(p, &ep, 10);
if ((temp == ULONG_MAX && errno == ERANGE) || temp > UID_MAX) {
if (flags & _PWSCAN_WARN)
warnx("%s > max uid value (%u)", p, UID_MAX);
return (0);
}
id = temp;
if (*ep != '\0') {
if (flags & _PWSCAN_WARN)
warnx("%s uid is incorrect", p);
return (0);
}
if (root && id) {
if (flags & _PWSCAN_WARN)
warnx("root uid should be 0");
return (0);
}
if (flags & _PWSCAN_WARN && pw_big_ids_warning && id > USHRT_MAX) {
warnx("%s > recommended max uid value (%u)", p, USHRT_MAX);
/*return (0);*/ /* THIS SHOULD NOT BE FATAL! */
}
pw->pw_uid = id;
if (!(p = strsep(&bp, ":"))) /* gid */
goto fmt;
if (p[0])
pw->pw_fields |= _PWF_GID;
else {
if (pw->pw_name[0] != '+' && pw->pw_name[0] != '-') {
if (flags & _PWSCAN_WARN)
warnx("no gid for user %s", pw->pw_name);
return (0);
}
}
errno = 0;
temp = strtoul(p, &ep, 10);
if ((temp == ULONG_MAX && errno == ERANGE) || temp > GID_MAX) {
if (flags & _PWSCAN_WARN)
warnx("%s > max gid value (%u)", p, GID_MAX);
return (0);
}
id = temp;
if (*ep != '\0') {
if (flags & _PWSCAN_WARN)
warnx("%s gid is incorrect", p);
return (0);
}
if (flags & _PWSCAN_WARN && pw_big_ids_warning && id > USHRT_MAX) {
warnx("%s > recommended max gid value (%u)", p, USHRT_MAX);
/* return (0); This should not be fatal! */
}
pw->pw_gid = id;
if (flags & _PWSCAN_MASTER ) {
if (!(pw->pw_class = strsep(&bp, ":"))) /* class */
goto fmt;
if (pw->pw_class[0])
pw->pw_fields |= _PWF_CLASS;
if (!(p = strsep(&bp, ":"))) /* change */
goto fmt;
if (p[0])
pw->pw_fields |= _PWF_CHANGE;
pw->pw_change = atol(p);
if (!(p = strsep(&bp, ":"))) /* expire */
goto fmt;
if (p[0])
pw->pw_fields |= _PWF_EXPIRE;
pw->pw_expire = atol(p);
}
if (!(pw->pw_gecos = strsep(&bp, ":"))) /* gecos */
goto fmt;
if (pw->pw_gecos[0])
pw->pw_fields |= _PWF_GECOS;
if (!(pw->pw_dir = strsep(&bp, ":"))) /* directory */
goto fmt;
if (pw->pw_dir[0])
pw->pw_fields |= _PWF_DIR;
if (!(pw->pw_shell = strsep(&bp, ":"))) /* shell */
goto fmt;
p = pw->pw_shell;
if (root && *p) { /* empty == /bin/sh */
for (setusershell();;) {
if (!(sh = getusershell())) {
if (flags & _PWSCAN_WARN)
warnx("warning, unknown root shell");
break;
}
if (!strcmp(p, sh))
break;
}
endusershell();
}
if (p[0])
pw->pw_fields |= _PWF_SHELL;
if ((p = strsep(&bp, ":"))) { /* too many */
fmt:
if (flags & _PWSCAN_WARN)
warnx("corrupted entry");
return (0);
}
return (1);
} |
the_stack_data/985391.c | // Copyright (c) 2015-2019, Ulf Magnusson
// SPDX-License-Identifier: ISC
// For strnlen() and wcwidth()
#define _XOPEN_SOURCE 700
#include <curses.h>
#include <locale.h>
#include <readline/history.h>
#include <readline/readline.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdnoreturn.h>
#include <string.h>
#include <wchar.h>
#include <wctype.h>
#define max(a, b) \
({ typeof(a) _a = a; \
typeof(b) _b = b; \
_a > _b ? _a : _b; })
// Keeps track of the terminal mode so we can reset the terminal if needed on
// errors
static bool visual_mode = false;
static noreturn void fail_exit(const char *msg)
{
// Make sure endwin() is only called in visual mode. As a note, calling it
// twice does not seem to be supported and messed with the cursor position.
if (visual_mode)
endwin();
fprintf(stderr, "%s\n", msg);
exit(EXIT_FAILURE);
}
// Checks errors for (most) ncurses functions. CHECK(fn, x, y, z) is a checked
// version of fn(x, y, z).
#define CHECK(fn, ...) \
do \
if (fn(__VA_ARGS__) == ERR) \
fail_exit(#fn"("#__VA_ARGS__") failed"); \
while (false)
static bool should_exit = false;
// Message window
static WINDOW *msg_win;
// Separator line above the command (readline) window
static WINDOW *sep_win;
// Command (readline) window
static WINDOW *cmd_win;
// String displayed in the message window
static char *msg_win_str = NULL;
// Input character for readline
static unsigned char input;
// Used to signal "no more input" after feeding a character to readline
static bool input_avail = false;
// stream passed to RL to get its output
static FILE * output_stream;
// the mem buffer, where the stream will be written
static char * output_buffer;
// the size of the buffer
static size_t output_buffer_size;
// Calculates the cursor column for the readline window in a way that supports
// multibyte, multi-column and combining characters. readline itself calculates
// this as part of its default redisplay function and does not export the
// cursor column.
//
// Returns the total width (in columns) of the characters in the 'n'-byte
// prefix of the null-terminated multibyte string 's'. If 'n' is larger than
// 's', returns the total width of the string. Tries to emulate how readline
// prints some special characters.
//
// 'offset' is the current horizontal offset within the line. This is used to
// get tab stops right.
//
// Makes a guess for malformed strings.
static size_t strnwidth(const char *s, size_t n, size_t offset)
{
mbstate_t shift_state;
wchar_t wc;
size_t wc_len;
size_t width = 0;
// Start in the initial shift state
memset(&shift_state, '\0', sizeof shift_state);
for (size_t i = 0; i < n; i += wc_len) {
// Extract the next multibyte character
wc_len = mbrtowc(&wc, s + i, MB_CUR_MAX, &shift_state);
switch (wc_len) {
case 0:
// Reached the end of the string
goto done;
case (size_t)-1: case (size_t)-2:
// Failed to extract character. Guess that each character is one
// byte/column wide each starting from the invalid character to
// keep things simple.
width += strnlen(s + i, n - i);
goto done;
}
if (wc == '\t')
width = ((width + offset + 8) & ~7) - offset;
else
// TODO: readline also outputs ~<letter> and the like for some
// non-printable characters
width += iswcntrl(wc) ? 2 : max(0, wcwidth(wc));
}
done:
return width;
}
// Like strnwidth, but calculates the width of the entire string
static size_t strwidth(const char *s, size_t offset)
{
return strnwidth(s, SIZE_MAX, offset);
}
// Not bothering with 'input_avail' and just returning 0 here seems to do the
// right thing too, but this might be safer across readline versions
static int readline_input_avail(void)
{
return input_avail;
}
static int readline_getc(FILE *dummy)
{
input_avail = false;
return input;
}
static void forward_to_readline(char c)
{
input = c;
input_avail = true;
rl_callback_read_char();
}
static void msg_win_redisplay(bool for_resize)
{
CHECK(werase, msg_win);
CHECK(mvwaddstr, msg_win, 0, 0, msg_win_str ? msg_win_str : "");
// We batch window updates when resizing
if (for_resize)
CHECK(wnoutrefresh, msg_win);
else
CHECK(wrefresh, msg_win);
}
static void got_command(char *line)
{
if (!line)
// Ctrl-D pressed on empty line
should_exit = true;
else {
if (*line)
add_history(line);
free(msg_win_str);
msg_win_str = line;
msg_win_redisplay(false);
}
}
static void cmd_win_redisplay(bool for_resize)
{
size_t prompt_width = strwidth(rl_display_prompt, 0);
size_t cursor_col = prompt_width +
strnwidth(rl_line_buffer, rl_point, prompt_width);
CHECK(werase, cmd_win);
// This might write a string wider than the terminal currently, so don't
// check for errors
mvwprintw(cmd_win, 0, 0, "%s%s", rl_display_prompt, rl_line_buffer);
if (cursor_col >= COLS)
// Hide the cursor if it lies outside the window. Otherwise it'll
// appear on the very right.
curs_set(0);
else {
CHECK(wmove, cmd_win, 0, cursor_col);
curs_set(2);
}
// We batch window updates when resizing
if (for_resize)
CHECK(wnoutrefresh, cmd_win);
else
CHECK(wrefresh, cmd_win);
}
static void readline_redisplay(void)
{
cmd_win_redisplay(false);
}
static void resize(void)
{
if (LINES >= 3) {
CHECK(wresize, msg_win, LINES - 2, COLS);
CHECK(wresize, sep_win, 1, COLS);
CHECK(wresize, cmd_win, 1, COLS);
CHECK(mvwin, sep_win, LINES - 2, 0);
CHECK(mvwin, cmd_win, LINES - 1, 0);
}
// Batch refreshes and commit them with doupdate()
msg_win_redisplay(true);
CHECK(wnoutrefresh, sep_win);
cmd_win_redisplay(true);
CHECK(doupdate);
}
static void init_ncurses(void)
{
if (!initscr())
fail_exit("Failed to initialize ncurses");
visual_mode = true;
if (has_colors()) {
CHECK(start_color);
CHECK(use_default_colors);
}
CHECK(cbreak);
CHECK(noecho);
CHECK(nonl);
CHECK(intrflush, NULL, FALSE);
// Do not enable keypad() since we want to pass unadulterated input to
// readline
// Explicitly specify a "very visible" cursor to make sure it's at least
// consistent when we turn the cursor on and off (maybe it would make sense
// to query it and use the value we get back too). "normal" vs. "very
// visible" makes no difference in gnome-terminal or xterm. Let this fail
// for terminals that do not support cursor visibility adjustments.
curs_set(2);
if (LINES >= 3) {
msg_win = newwin(LINES - 2, COLS, 0, 0);
sep_win = newwin(1, COLS, LINES - 2, 0);
cmd_win = newwin(1, COLS, LINES - 1, 0);
}
else {
// Degenerate case. Give the windows the minimum workable size to
// prevent errors from e.g. wmove().
msg_win = newwin(1, COLS, 0, 0);
sep_win = newwin(1, COLS, 0, 0);
cmd_win = newwin(1, COLS, 0, 0);
}
if (!msg_win || !sep_win || !cmd_win)
fail_exit("Failed to allocate windows");
// Allow strings longer than the message window and show only the last part
// if the string doesn't fit
CHECK(scrollok, msg_win, TRUE);
if (has_colors()) {
// Use white-on-blue cells for the separator window...
CHECK(init_pair, 1, COLOR_WHITE, COLOR_BLUE);
CHECK(wbkgd, sep_win, COLOR_PAIR(1));
}
else
// ...or the "best highlighting mode of the terminal" if it doesn't
// support colors
CHECK(wbkgd, sep_win, A_STANDOUT);
CHECK(wrefresh, sep_win);
}
static void deinit_ncurses(void)
{
CHECK(delwin, msg_win);
CHECK(delwin, sep_win);
CHECK(delwin, cmd_win);
CHECK(endwin);
visual_mode = false;
}
static void init_readline(void)
{
char buf[256];
// Disable completion. TODO: Is there a more robust way to do this?
//if (rl_bind_key('\t', rl_insert))
// fail_exit("Invalid key passed to rl_bind_key()");
// disable completion
//strcpy(buf,"set disable-completion on");
//rl_parse_and_bind(buf);
// disable colored results in completion
strcpy(buf,"set colored-stats off");
rl_parse_and_bind(buf);
// Let ncurses do all terminal and signal handling
rl_catch_signals = 0;
rl_catch_sigwinch = 0;
rl_deprep_term_function = NULL;
rl_prep_term_function = NULL;
// Prevent readline from setting the LINES and COLUMNS environment
// variables, which override dynamic size adjustments in ncurses. When
// using the alternate readline interface (as we do here), LINES and
// COLUMNS are not updated if the terminal is resized between two calls to
// rl_callback_read_char() (which is almost always the case).
rl_change_environment = 0;
// redirect RL output to our memory buffered stream
output_stream = open_memstream(&output_buffer, &output_buffer_size);
if (!output_stream)
fail_exit("Cannot open memstream for RL output buffer\n");
rl_outstream = output_stream;
// Handle input by manually feeding characters to readline
rl_getc_function = readline_getc;
rl_input_available_hook = readline_input_avail;
rl_redisplay_function = readline_redisplay;
rl_callback_handler_install("> ", got_command);
}
static void deinit_readline(void)
{
rl_callback_handler_remove();
}
int main(void)
{
// Set locale attributes (including encoding) from the environment
if (!setlocale(LC_ALL, ""))
fail_exit("Failed to set locale attributes from environment");
init_ncurses();
init_readline();
do {
// check if there is something from RL to be printed
// flush the RL output stream, so it's saved in the buffer and the size is updated
fflush(output_stream);
if (output_buffer_size) {
output_buffer[output_buffer_size] = 0;
wprintw(msg_win, output_buffer);
wnoutrefresh(msg_win);
wrefresh(cmd_win); // keep the pointer in cmd_win
// this will reset the buffer, so we wont get duplicate text (see open_memstream man page)
fseek(output_stream, 0, SEEK_SET);
}
// Using getch() here instead would refresh stdscr, overwriting the
// initial contents of the other windows on startup
int c = wgetch(cmd_win);
switch (c) {
case KEY_RESIZE:
resize();
break;
// Ctrl-L -- redraw screen
case '\f':
// Makes the next refresh repaint the screen from scratch
CHECK(clearok, curscr, TRUE);
// Resize and reposition windows in case that got messed up somehow
resize();
break;
default:
forward_to_readline(c);
}
} while (!should_exit);
deinit_ncurses();
deinit_readline();
puts("Shut down cleanly");
}
|
the_stack_data/131.c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main() {
printf("Je suis file_3.c dans Module_1 dans Projet_2");
return;
}
|
the_stack_data/90501.c | // RUN: %clang_cc1 -triple i686-unknown-unknown -emit-llvm -o %t %s
// RUN: grep 'target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S128"' %t
// RUN: %clang_cc1 -triple i686-apple-darwin9 -emit-llvm -o %t %s
// RUN: grep 'target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32-S128"' %t
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o %t %s
// RUN: grep 'target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"' %t
// RUN: %clang_cc1 -triple powerpc-darwin -o - -emit-llvm %s | \
// RUN: FileCheck %s -check-prefix=PPC32-DARWIN
// PPC32-DARWIN: target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v128:128:128-n32"
|
the_stack_data/676175.c | // FAÇA UM ALGORÍTMO QUE RECEBA VÁRIOS NÚMEROS
// E INFORME O MAIOR NÚMERO QUE FOI INFORMADO;
#include <stdio.h>
int main() {
int num, maior = 0;
do {
scanf("%d", &num);
if(num > maior) {
maior = num;
} // fim do if
} while (num != 0);
printf("%d", maior);
return 0;
} |
the_stack_data/942191.c | #include <stdio.h>
#include <string.h>
int check_UCN_validity(int*);
int check_month(int*);
int check_date(int*);
int check_digit(int*);
int main()
{
char string[12];
int UCN[12];
scanf("%s", string);
if(strlen(string) != 10)
{
printf("0");
return 0;
}
for(int i = 0; i < 10; i++)
UCN[i] = string[i] - '0';
printf("%d", check_UCN_validity(UCN));
return 0;
}
int check_UCN_validity(int* UCN)
{
if(check_month(UCN)) return 0;
else if(check_date(UCN)) return 0;
else if(check_digit(UCN) != UCN[9]) return 0;
else return 1;
}
int check_month(int* UCN)
{
int month = UCN[2]*10 + UCN[3];
if( (month <= 0) || (month > 12 && month < 21) || (month > 32 && month < 41) || month > 52)
return 1;
else return 0;
}
int check_date(int* UCN)
{
int date = UCN[4]*10 + UCN[5];
int month = UCN[2]*10 + UCN[3];
int year = UCN[0]*10 + UCN[1];
int days[13] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int curr_month = month;
if(curr_month > 40) curr_month -= 40;
else if(curr_month > 20 && curr_month < 40) curr_month -= 20;
if(date > days[curr_month-1] || date == 0)
return 1;
else if(year%4 != 0 && (month == 2 || month == 22 || month == 42) && date == 29)
return 1;
else if(year == 0 && (month == 22 || month == 42) && date == 29)
return 1;
else return 0;
}
int check_digit(int* UCN)
{
int value = 0;
int multiplier[9] = {2, 4, 8, 5, 10, 9, 7, 3, 6};
for(int i = 0; i < 9; i++)
value += UCN[i]*multiplier[i];
value %= 11;
if(value == 10) value = 0;
return value;
}
|
the_stack_data/56489.c | #include<stdio.h>
#define MAXSIZE 10
//user defined function definition as we defining function here itself no need to write a prototype
void shellsort(int x[],int n,int inc[],int nofinc)
{
int i,j,k,span,temp;
static int nc=0;
for(i=0; i<nofinc; i++)
{
span=inc[i];
for(j=span; j<n; j++)
{
nc++;
temp=x[j];
for(k=j-span; k>=0&&temp<x[k]; k=k-span)
{
x[k+span]=x[k];
}
x[k+span]=temp;
}
}
printf("No of Comparisons required %d\n",nc);
}
void main()
{
int x[MAXSIZE],n,i,nofinc,inc[MAXSIZE/2];
//taking no of elemenets from user
printf("Enter no of elements : ");
scanf("%d",&n);
//taking values of elements from user
printf("Enter elements for sorting : ");
for(i=0; i<n; i++)
{
scanf("%d",&x[i]);
}
//taking user input for no of increment
printf("Enter no of increments : ");
scanf("%d",&nofinc);
//taking user input for values of increment "example 8 4 1 "
printf("Enter values of increment : ");
for(i=0; i<nofinc; i++)
{
scanf("%d",&inc[i]);
}
//function calling
shellsort(x,n,inc,nofinc);
//displaying sorted array
printf("Sorted array is as follows\t");
for(i=0; i<n; i++)
printf("%d\t",x[i]);
}
/*
output:-
Enter elements for sorting : 9
65
6
1
0
34
76
4
Enter no of increments : 4
Enter values of increment : 4
3
2
1
No of Comparisons required 22
Sorted array is as follows 0 1 4 6 9 34 65 76
*/
|
the_stack_data/651633.c | #include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <limits.h>
#include <ctype.h>
#define TRUE 1
#define FALSE 0
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
#define ARRAY(T) struct {\
int16_t size;\
int16_t capacity;\
T *data;\
} *
#define ARRAY_CREATE(array, init_capacity, init_size) {\
array = malloc(sizeof(*array)); \
array->data = malloc((init_capacity) * sizeof(*array->data)); \
assert(array->data != NULL); \
array->capacity = init_capacity; \
array->size = init_size; \
}
#define ARRAY_PUSH(array, item) {\
if (array->size == array->capacity) { \
array->capacity *= 2; \
array->data = realloc(array->data, array->capacity * sizeof(*array->data)); \
assert(array->data != NULL); \
} \
array->data[array->size++] = item; \
}
#define STR_INT16_T_BUFLEN ((CHAR_BIT * sizeof(int16_t) - 1) / 3 + 2)
enum js_var_type {JS_VAR_NULL, JS_VAR_UNDEFINED, JS_VAR_NAN, JS_VAR_BOOL, JS_VAR_INT16, JS_VAR_STRING, JS_VAR_ARRAY, JS_VAR_DICT};
struct js_var {
enum js_var_type type;
int16_t number;
void *data;
};
struct array_js_var_t {
int16_t size;
int16_t capacity;
struct js_var *data;
};
struct js_var js_var_from(enum js_var_type type) {
struct js_var v;
v.type = type;
v.data = NULL;
return v;
}
struct js_var js_var_from_int16_t(int16_t n) {
struct js_var v;
v.type = JS_VAR_INT16;
v.number = n;
v.data = NULL;
return v;
}
struct js_var str_to_int16_t(const char * str) {
struct js_var v;
const char *p = str;
int r;
v.data = NULL;
while (*p && isspace(*p))
p++;
if (*p == 0)
str = "0";
if (*p == '-' && *(p+1))
p++;
while (*p) {
if (!isdigit(*p)) {
v.type = JS_VAR_NAN;
return v;
}
p++;
}
sscanf(str, "%d", &r);
v.type = JS_VAR_INT16;
v.number = (int16_t)r;
return v;
}
const char * js_var_to_str(struct js_var v, uint8_t *need_dispose)
{
char *buf;
int16_t i;
*need_dispose = 0;
if (v.type == JS_VAR_INT16) {
buf = malloc(STR_INT16_T_BUFLEN);
assert(buf != NULL);
*need_dispose = 1;
sprintf(buf, "%d", v.number);
return buf;
} else if (v.type == JS_VAR_BOOL)
return v.number ? "true" : "false";
else if (v.type == JS_VAR_STRING)
return (const char *)v.data;
else if (v.type == JS_VAR_ARRAY) {
struct array_js_var_t * arr = (struct array_js_var_t *)v.data;
uint8_t dispose_elem = 0;
buf = malloc(1);
assert(buf != NULL);
*need_dispose = 1;
buf[0] = 0;
for (i = 0; i < arr->size; i++) {
const char * elem = js_var_to_str(arr->data[i], &dispose_elem);
buf = realloc(buf, strlen(buf) + strlen(elem) + 1 + (i != 0 ? 1 : 0));
assert(buf != NULL);
if (i != 0)
strcat(buf, ",");
strcat(buf, elem);
if (dispose_elem)
free((void *)elem);
}
return buf;
}
else if (v.type == JS_VAR_DICT)
return "[object Object]";
else if (v.type == JS_VAR_NAN)
return "NaN";
else if (v.type == JS_VAR_NULL)
return "null";
else if (v.type == JS_VAR_UNDEFINED)
return "undefined";
return NULL;
}
struct js_var js_var_to_number(struct js_var v)
{
struct js_var result;
result.type = JS_VAR_INT16;
result.number = 0;
if (v.type == JS_VAR_INT16)
result.number = v.number;
else if (v.type == JS_VAR_BOOL)
result.number = v.number;
else if (v.type == JS_VAR_STRING)
return str_to_int16_t((const char *)v.data);
else if (v.type == JS_VAR_ARRAY) {
struct array_js_var_t * arr = (struct array_js_var_t *)v.data;
if (arr->size == 0)
result.number = 0;
else if (arr->size > 1)
result.type = JS_VAR_NAN;
else
result = js_var_to_number(arr->data[0]);
} else if (v.type != JS_VAR_NULL)
result.type = JS_VAR_NAN;
return result;
}
static ARRAY(void *) gc_main;
struct js_var js_var_plus(struct js_var left, struct js_var right)
{
struct js_var result, left_to_number, right_to_number;
const char *left_as_string, *right_as_string;
uint8_t need_dispose_left, need_dispose_right;
result.data = NULL;
if (left.type == JS_VAR_STRING || right.type == JS_VAR_STRING
|| left.type == JS_VAR_ARRAY || right.type == JS_VAR_ARRAY
|| left.type == JS_VAR_DICT || right.type == JS_VAR_DICT)
{
left_as_string = js_var_to_str(left, &need_dispose_left);
right_as_string = js_var_to_str(right, &need_dispose_right);
result.type = JS_VAR_STRING;
result.data = malloc(strlen(left_as_string) + strlen(right_as_string) + 1);
assert(result.data != NULL);
ARRAY_PUSH(gc_main, result.data);
strcpy(result.data, left_as_string);
strcat(result.data, right_as_string);
if (need_dispose_left)
free((void *)left_as_string);
if (need_dispose_right)
free((void *)right_as_string);
return result;
}
left_to_number = js_var_to_number(left);
right_to_number = js_var_to_number(right);
if (left_to_number.type == JS_VAR_NAN || right_to_number.type == JS_VAR_NAN) {
result.type = JS_VAR_NAN;
return result;
}
result.type = JS_VAR_INT16;
result.number = left_to_number.number + right_to_number.number;
return result;
}
enum js_var_op {JS_VAR_MINUS, JS_VAR_ASTERISK, JS_VAR_SLASH, JS_VAR_PERCENT, JS_VAR_SHL, JS_VAR_SHR, JS_VAR_USHR, JS_VAR_OR, JS_VAR_AND};
struct js_var js_var_compute(struct js_var left, enum js_var_op op, struct js_var right)
{
struct js_var result, left_to_number, right_to_number;
result.data = NULL;
left_to_number = js_var_to_number(left);
right_to_number = js_var_to_number(right);
if (left_to_number.type == JS_VAR_NAN || right_to_number.type == JS_VAR_NAN) {
if (op == JS_VAR_MINUS || op == JS_VAR_ASTERISK || op == JS_VAR_SLASH || op == JS_VAR_PERCENT) {
result.type = JS_VAR_NAN;
return result;
}
}
result.type = JS_VAR_INT16;
switch (op) {
case JS_VAR_MINUS:
result.number = left_to_number.number - right_to_number.number;
break;
case JS_VAR_ASTERISK:
result.number = left_to_number.number * right_to_number.number;
break;
case JS_VAR_SLASH:
result.number = left_to_number.number / right_to_number.number;
break;
case JS_VAR_PERCENT:
result.number = left_to_number.number % right_to_number.number;
break;
case JS_VAR_SHL:
result.number = left_to_number.number << right_to_number.number;
break;
case JS_VAR_SHR:
result.number = left_to_number.number >> right_to_number.number;
break;
case JS_VAR_USHR:
result.number = ((uint16_t)left_to_number.number) >> right_to_number.number;
break;
case JS_VAR_AND:
result.number = left_to_number.number & right_to_number.number;
break;
case JS_VAR_OR:
result.number = left_to_number.number | right_to_number.number;
break;
}
return result;
}
struct tmp_obj_t {
const char * some;
};
int16_t gc_i;
static struct js_var x;
static int16_t y;
static int16_t tmp_array[1][1];
static struct js_var z;
static struct tmp_obj_t * tmp_obj = NULL;
static const char * tmp_str;
static uint8_t tmp_need_dispose;
static int16_t tmp_array_2[3] = { 1, 2, 3 };
static struct js_var tmp_result;
static struct js_var tmp_result_2;
int main(void) {
x = js_var_compute(js_var_from_int16_t(0), JS_VAR_MINUS, str_to_int16_t("11"));
tmp_array[0][0] = 25;
y = -tmp_array[0][0];
tmp_obj = malloc(sizeof(*tmp_obj));
assert(tmp_obj != NULL);
tmp_obj->some = "stuff";
z = js_var_compute(js_var_from_int16_t(0), JS_VAR_MINUS, js_var_from(JS_VAR_NAN));
printf("%s", tmp_str = js_var_to_str(x, &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
printf(" %d", y);
printf(" %s\n", tmp_str = js_var_to_str(z, &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
printf("%s\n", tmp_str = js_var_to_str(js_var_compute(js_var_from_int16_t(0), JS_VAR_MINUS, js_var_from(JS_VAR_NAN)), &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
tmp_result = (x = js_var_plus(js_var_to_number(x), js_var_from_int16_t(1)));
printf("%s\n", tmp_str = js_var_to_str(tmp_result, &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
tmp_result_2 = (x = js_var_compute(js_var_to_number(x), JS_VAR_MINUS, js_var_from_int16_t(1)));
printf("%s\n", tmp_str = js_var_to_str(tmp_result_2, &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
printf("%d\n", y--);
printf("%d\n", y++);
printf("%s", tmp_str = js_var_to_str(x, &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
printf(" %d", y);
printf(" %s\n", tmp_str = js_var_to_str(z, &tmp_need_dispose));
if (tmp_need_dispose)
free((void *)tmp_str);
free(tmp_obj);
return 0;
}
|
the_stack_data/206392747.c | #include <stdio.h>
main (){
int A,B,C,D,R,S;
printf ("\nQual o primeiro numero inteiro? ");
scanf ("%i",&A);
printf ("Qual o segundo numero inteiro? ");
scanf ("%i",&B);
printf ("Qual o terceiro numero inteiro? ");
scanf ("%i",C);
R = A * A + 2 * A * B + B * B;
S = B * B + 2 * B * C + C * C;
D = (R + S) / 2;
printf ("\nO valor D e: %i.\n",D);
printf ("\n\n<< Marco Tulio >>\n");
getchar(),getchar();
}
|
the_stack_data/23573949.c | /* $OpenBSD: strtonum.c,v 1.8 2015/09/13 08:31:48 guenther Exp $ */
/*
* Copyright (c) 2004 Ted Unangst and Todd Miller
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#ifndef HAVE_STRTONUM
#define INVALID 1
#define TOOSMALL 2
#define TOOLARGE 3
long long
strtonum(const char *numstr, long long minval, long long maxval,
const char **errstrp)
{
long long ll = 0;
int error = 0;
char *ep;
struct errval {
const char *errstr;
int err;
} ev[4] = {
{ NULL, 0 },
{ "invalid", EINVAL },
{ "too small", ERANGE },
{ "too large", ERANGE },
};
ev[0].err = errno;
errno = 0;
if (minval > maxval) {
error = INVALID;
} else {
ll = strtoll(numstr, &ep, 10);
if (numstr == ep || *ep != '\0')
error = INVALID;
else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
error = TOOSMALL;
else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
error = TOOLARGE;
}
if (errstrp != NULL)
*errstrp = ev[error].errstr;
errno = ev[error].err;
if (error)
ll = 0;
return (ll);
}
#endif /* !HAVE_STRTONUM */
|
the_stack_data/1028114.c | /* -*- tab-width: 4; -*- */
/* vi: set sw=2 ts=4: */
/* $Id: 2319952fa702d4c9a8e3c02868541b1d7cff9aa0 $ */
/*
Copyright (c) 2010 The Khronos Group Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and/or associated documentation files (the
"Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Materials, and to
permit persons to whom the Materials are furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
unaltered in all copies or substantial portions of the Materials.
Any additions, deletions, or changes to the original source files
must be clearly indicated in accompanying documentation.
If only executable code is distributed, then the accompanying
documentation must state that "this software is based in part on the
work of the Khronos Group."
THE MATERIALS ARE 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
MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
*/
#include "KHR/khrplatform.h"
/*
* SwapEndian16: Swaps endianness in an array of 16-bit values
*/
void
_ktxSwapEndian16(khronos_uint16_t* pData16, int count)
{
int i;
for (i = 0; i < count; ++i)
{
khronos_uint16_t x = *pData16;
*pData16++ = (x << 8) | (x >> 8);
}
}
/*
* SwapEndian32: Swaps endianness in an array of 32-bit values
*/
void
_ktxSwapEndian32(khronos_uint32_t* pData32, int count)
{
int i;
for (i = 0; i < count; ++i)
{
khronos_uint32_t x = *pData32;
*pData32++ = (x << 24) | ((x & 0xFF00) << 8) | ((x & 0xFF0000) >> 8) | (x >> 24);
}
}
|
the_stack_data/132954110.c | #include <stdlib.h>
#include <stdio.h>
void foo() {
volatile long array[5] = {0,};
long var1;
long var2;
long i = 0;
for (i = 0; i < 20; ++i) {
printf ("array[%ld] == %lx | address == %p\n", i, array[i], &array[i]);
}
printf("Enter two numbers:\n");
scanf("%lx", &var1); // e.g. 7 (after canary)
scanf("%lx", &var2); // e.g. addr of foo or main to cycle
array[var1] = var2;
}
int main () {
printf("%p\n", &main);
printf("%p\n", &foo);
foo();
__asm__ volatile ("":::"memory");
return 0;
}
|
the_stack_data/98576053.c | #define max(a,b) (((a) < (b))? (b) : (a))
#define min(a,b) (((a) < (b))? (a) : (b))
#define _TH_1 2
#include <omp.h>
#define Index3D(_nx,_ny,_i,_j,_k) ((_i)+_nx*((_j)+_ny*(_k)))
void jacobi7_3(const int nx,const int ny,int nz,const double alpha,double* A0,const int timesteps,const double* B,const int ldb,double* Anext,const int ldc) {
double fac;
double* temp_ptr;
int i;int j;int k;int t;
fac = 6.0/(A0[0]*A0[0]);
double* l0;double* lnext;
int k_bk_1;
int j_bk_2;
int i_bk_3;
/*@;BEGIN(Nest2_group3=Nest)@*/for (k_bk_1=1; k_bk_1<nz-1+16*timesteps; k_bk_1+=8)
{
omp_set_num_threads(_TH_1);
#pragma omp parallel
{
/*@;BEGIN(Nest1=Nest)@*/#pragma omp for private(t,k,j,i,l0,lnext,j_bk_2,i_bk_3)
for (t=max(0,(16+(k_bk_1-(nz-1)))/16); t<min(timesteps,(15+k_bk_1)/16); t+=1)
{
/*@;BEGIN(Nest3=Nest)@*/for (j_bk_2=1; j_bk_2<-1+ny; j_bk_2+=32)
{
/*@;BEGIN(Nest4=Nest)@*/for (i_bk_3=1; i_bk_3<-1+nx; i_bk_3+=32)
{
for (k=0; k<min(8,16*t+(-k_bk_1+(-1+nz))); k+=1)
{
for (j=0; j<min(32,-j_bk_2+(-1+ny)); j+=1)
{
for (i=0; i<min(32,-i_bk_3+(-1+nx)); i+=1)
{
if (t%2==0)
{
l0 = A0;
lnext = Anext;
}
else
{
lnext = A0;
l0 = Anext;
}
lnext[Index3D(nx,ny,i_bk_3+i,j_bk_2+j,k+(k_bk_1+-16*t))] = -(l0[Index3D(nx,ny,i_bk_3+i,j_bk_2+j,k+(k_bk_1+-16*t))]*fac)+(l0[Index3D(nx,ny,-1+(i_bk_3+i),j_bk_2+j,k+(k_bk_1+-16*t))]+(l0[Index3D(nx,ny,1+(i_bk_3+i),j_bk_2+j,k+(k_bk_1+-16*t))]+(l0[Index3D(nx,ny,i_bk_3+i,-1+(j_bk_2+j),k+(k_bk_1+-16*t))]+(l0[Index3D(nx,ny,i_bk_3+i,1+(j_bk_2+j),k+(k_bk_1+-16*t))]+(l0[Index3D(nx,ny,i_bk_3+i,j_bk_2+j,1+(k+(k_bk_1+-16*t)))]+l0[Index3D(nx,ny,i_bk_3+i,j_bk_2+j,-1+(k+(k_bk_1+-16*t)))])))));
}
}
}
}
}
}
}
}
}
|
the_stack_data/200143576.c | /*Exercise 4 - Functions
Implement the three functions minimum(), maximum() and multiply() below the main() function.
Do not change the code given in the main() function when you are implementing your solution.*/
#include <stdio.h>
int minimum(int no1,int no2);
int maximum(int no1,int no2);
int multiply(int no1,int no2);
int main() {
int no1, no2;
printf("Enter a value for no 1 : ");
scanf("%d", &no1);
printf("Enter a value for no 2 : ");
scanf("%d", &no2);
printf("%d ", minimum(no1, no2));
printf("%d ", maximum(no1, no2));
printf("%d ", multiply(no1, no2));
return 0;
}
int minimum(int no1,int no2){
int result;
if(no1<no2){
result=no1;
}
else{
result=no2;
}
return result;
}
int maximum(int no1,int no2){
int result;
if(no1>no2){
result=no1;
}
else{
result=no2;
}
return result;
}
int multiply(int no1,int no2){
int result;
result=no1*no2;
return result;
}
|
the_stack_data/134629.c | #define _CRT_SECURE_NO_WARNINGS
#define PROGRAM_FILE "matvec.cl"
#define KERNEL_FUNC "matvec_mult"
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#ifdef MAC
#include <OpenCL/cl.h>
#else
#include <CL/cl.h>
#endif
int main()
{
/* Host/device data structures */
cl_platform_id platform;
cl_device_id device;
cl_context context;
cl_command_queue queue;
cl_int i, err;
/* Program/kernel data structures */
cl_program program;
FILE *program_handle;
char *program_buffer, *program_log;
size_t program_size, log_size;
cl_kernel kernel;
/* Data and buffers */
float mat[16], vec[4], result[4];
float correct[4] = {0.0f, 0.0f, 0.0f, 0.0f};
cl_mem mat_buff, vec_buff, res_buff;
size_t work_units_per_kernel;
/* Initialize data to be processed by the kernel */
for (i = 0; i < 16; i++)
{
mat[i] = i * 2.0f;
}
for (i = 0; i < 4; i++)
{
vec[i] = i * 3.0f;
correct[0] += mat[i] * vec[i];
correct[1] += mat[i + 4] * vec[i];
correct[2] += mat[i + 8] * vec[i];
correct[3] += mat[i + 12] * vec[i];
}
/* Identify a platform */
err = clGetPlatformIDs(1, &platform, NULL);
if (err < 0)
{
perror("Couldn't find any platforms");
exit(1);
}
/* Access a device */
err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, NULL);
if (err < 0)
{
perror("Couldn't find any devices");
exit(1);
}
/* Create the context */
context = clCreateContext(NULL, 1, &device, NULL, NULL, &err);
if (err < 0)
{
perror("Couldn't create a context");
exit(1);
}
/* Read program file and place content into buffer */
program_handle = fopen(PROGRAM_FILE, "r");
if (program_handle == NULL)
{
perror("Couldn't find the program file");
exit(1);
}
fseek(program_handle, 0, SEEK_END);
program_size = ftell(program_handle);
rewind(program_handle);
program_buffer = (char *)malloc(program_size + 1);
program_buffer[program_size] = '\0';
fread(program_buffer, sizeof(char), program_size, program_handle);
fclose(program_handle);
/* Create program from file */
program = clCreateProgramWithSource(context, 1,
(const char **)&program_buffer, &program_size, &err);
if (err < 0)
{
perror("Couldn't create the program");
exit(1);
}
free(program_buffer);
/* Build program */
err = clBuildProgram(program, 0, NULL, NULL, NULL, NULL);
if (err < 0)
{
/* Find size of log and print to std output */
clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,
0, NULL, &log_size);
program_log = (char *)malloc(log_size + 1);
program_log[log_size] = '\0';
clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,
log_size + 1, program_log, NULL);
printf("%s\n", program_log);
free(program_log);
exit(1);
}
/* Create kernel for the mat_vec_mult function */
kernel = clCreateKernel(program, KERNEL_FUNC, &err);
if (err < 0)
{
perror("Couldn't create the kernel");
exit(1);
}
/* Create CL buffers to hold input and output data */
mat_buff = clCreateBuffer(context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, sizeof(float) * 16, mat, &err);
if (err < 0)
{
perror("Couldn't create a buffer object");
exit(1);
}
vec_buff = clCreateBuffer(context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, sizeof(float) * 4, vec, NULL);
res_buff = clCreateBuffer(context, CL_MEM_WRITE_ONLY,
sizeof(float) * 4, NULL, NULL);
/* Create kernel arguments from the CL buffers */
err = clSetKernelArg(kernel, 0, sizeof(cl_mem), &mat_buff);
if (err < 0)
{
perror("Couldn't set the kernel argument");
exit(1);
}
clSetKernelArg(kernel, 1, sizeof(cl_mem), &vec_buff);
clSetKernelArg(kernel, 2, sizeof(cl_mem), &res_buff);
/* Create a CL command queue for the device*/
queue = clCreateCommandQueue(context, device, 0, &err);
if (err < 0)
{
perror("Couldn't create the command queue");
exit(1);
}
/* Enqueue the command queue to the device */
work_units_per_kernel = 4; /* 4 work-units per kernel */
err = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &work_units_per_kernel,
NULL, 0, NULL, NULL);
if (err < 0)
{
perror("Couldn't enqueue the kernel execution command");
exit(1);
}
/* Read the result */
err = clEnqueueReadBuffer(queue, res_buff, CL_TRUE, 0, sizeof(float) * 4,
result, 0, NULL, NULL);
if (err < 0)
{
perror("Couldn't enqueue the read buffer command");
exit(1);
}
/* Test the result */
if ((result[0] == correct[0]) && (result[1] == correct[1]) && (result[2] == correct[2]) && (result[3] == correct[3]))
{
printf("Matrix-vector multiplication successful.\n");
}
else
{
printf("Matrix-vector multiplication unsuccessful.\n");
}
/* Deallocate resources */
clReleaseMemObject(mat_buff);
clReleaseMemObject(vec_buff);
clReleaseMemObject(res_buff);
clReleaseKernel(kernel);
clReleaseCommandQueue(queue);
clReleaseProgram(program);
clReleaseContext(context);
return 0;
}
|
the_stack_data/75138011.c | int lengthOfLastWord(char* s) {
int len = strlen(s), wordLen = 0;
while (len--) {
if (s[len] == ' ' && wordLen) {
break;
} else if (s[len] != ' ') {
wordLen++;
}
}
return wordLen;
} |
the_stack_data/26699084.c | /* #warning "depca.c: FIXME: fix relocation" */
FILE_LICENCE ( GPL_ANY );
#if 0
/* Not fixed for relocation yet. Probably won't work relocated above 16MB */
#ifdef ALLMULTI
#error multicast support is not yet implemented
#endif
/* Etherboot: depca.h merged, comments from Linux driver retained */
/* depca.c: A DIGITAL DEPCA & EtherWORKS ethernet driver for linux.
Written 1994, 1995 by David C. Davies.
Copyright 1994 David C. Davies
and
United States Government
(as represented by the Director, National Security Agency).
Copyright 1995 Digital Equipment Corporation.
This software may be used and distributed according to the terms of
the GNU Public License, incorporated herein by reference.
This driver is written for the Digital Equipment Corporation series
of DEPCA and EtherWORKS ethernet cards:
DEPCA (the original)
DE100
DE101
DE200 Turbo
DE201 Turbo
DE202 Turbo (TP BNC)
DE210
DE422 (EISA)
The driver has been tested on DE100, DE200 and DE202 cards in a
relatively busy network. The DE422 has been tested a little.
This driver will NOT work for the DE203, DE204 and DE205 series of
cards, since they have a new custom ASIC in place of the AMD LANCE
chip. See the 'ewrk3.c' driver in the Linux source tree for running
those cards.
I have benchmarked the driver with a DE100 at 595kB/s to (542kB/s from)
a DECstation 5000/200.
The author may be reached at [email protected]
=========================================================================
The driver was originally based on the 'lance.c' driver from Donald
Becker which is included with the standard driver distribution for
linux. V0.4 is a complete re-write with only the kernel interface
remaining from the original code.
1) Lance.c code in /linux/drivers/net/
2) "Ethernet/IEEE 802.3 Family. 1992 World Network Data Book/Handbook",
AMD, 1992 [(800) 222-9323].
3) "Am79C90 CMOS Local Area Network Controller for Ethernet (C-LANCE)",
AMD, Pub. #17881, May 1993.
4) "Am79C960 PCnet-ISA(tm), Single-Chip Ethernet Controller for ISA",
AMD, Pub. #16907, May 1992
5) "DEC EtherWORKS LC Ethernet Controller Owners Manual",
Digital Equipment corporation, 1990, Pub. #EK-DE100-OM.003
6) "DEC EtherWORKS Turbo Ethernet Controller Owners Manual",
Digital Equipment corporation, 1990, Pub. #EK-DE200-OM.003
7) "DEPCA Hardware Reference Manual", Pub. #EK-DEPCA-PR
Digital Equipment Corporation, 1989
8) "DEC EtherWORKS Turbo_(TP BNC) Ethernet Controller Owners Manual",
Digital Equipment corporation, 1991, Pub. #EK-DE202-OM.001
Peter Bauer's depca.c (V0.5) was referred to when debugging V0.1 of this
driver.
The original DEPCA card requires that the ethernet ROM address counter
be enabled to count and has an 8 bit NICSR. The ROM counter enabling is
only done when a 0x08 is read as the first address octet (to minimise
the chances of writing over some other hardware's I/O register). The
NICSR accesses have been changed to byte accesses for all the cards
supported by this driver, since there is only one useful bit in the MSB
(remote boot timeout) and it is not used. Also, there is a maximum of
only 48kB network RAM for this card. My thanks to Torbjorn Lindh for
help debugging all this (and holding my feet to the fire until I got it
right).
The DE200 series boards have on-board 64kB RAM for use as a shared
memory network buffer. Only the DE100 cards make use of a 2kB buffer
mode which has not been implemented in this driver (only the 32kB and
64kB modes are supported [16kB/48kB for the original DEPCA]).
At the most only 2 DEPCA cards can be supported on the ISA bus because
there is only provision for two I/O base addresses on each card (0x300
and 0x200). The I/O address is detected by searching for a byte sequence
in the Ethernet station address PROM at the expected I/O address for the
Ethernet PROM. The shared memory base address is 'autoprobed' by
looking for the self test PROM and detecting the card name. When a
second DEPCA is detected, information is placed in the base_addr
variable of the next device structure (which is created if necessary),
thus enabling ethif_probe initialization for the device. More than 2
EISA cards can be supported, but care will be needed assigning the
shared memory to ensure that each slot has the correct IRQ, I/O address
and shared memory address assigned.
************************************************************************
NOTE: If you are using two ISA DEPCAs, it is important that you assign
the base memory addresses correctly. The driver autoprobes I/O 0x300
then 0x200. The base memory address for the first device must be less
than that of the second so that the auto probe will correctly assign the
I/O and memory addresses on the same card. I can't think of a way to do
this unambiguously at the moment, since there is nothing on the cards to
tie I/O and memory information together.
I am unable to test 2 cards together for now, so this code is
unchecked. All reports, good or bad, are welcome.
************************************************************************
The board IRQ setting must be at an unused IRQ which is auto-probed
using Donald Becker's autoprobe routines. DEPCA and DE100 board IRQs are
{2,3,4,5,7}, whereas the DE200 is at {5,9,10,11,15}. Note that IRQ2 is
really IRQ9 in machines with 16 IRQ lines.
No 16MB memory limitation should exist with this driver as DMA is not
used and the common memory area is in low memory on the network card (my
current system has 20MB and I've not had problems yet).
The ability to load this driver as a loadable module has been added. To
utilise this ability, you have to do <8 things:
0) have a copy of the loadable modules code installed on your system.
1) copy depca.c from the /linux/drivers/net directory to your favourite
temporary directory.
2) if you wish, edit the source code near line 1530 to reflect the I/O
address and IRQ you're using (see also 5).
3) compile depca.c, but include -DMODULE in the command line to ensure
that the correct bits are compiled (see end of source code).
4) if you are wanting to add a new card, goto 5. Otherwise, recompile a
kernel with the depca configuration turned off and reboot.
5) insmod depca.o [irq=7] [io=0x200] [mem=0xd0000] [adapter_name=DE100]
[Alan Cox: Changed the code to allow command line irq/io assignments]
[Dave Davies: Changed the code to allow command line mem/name
assignments]
6) run the net startup bits for your eth?? interface manually
(usually /etc/rc.inet[12] at boot time).
7) enjoy!
Note that autoprobing is not allowed in loadable modules - the system is
already up and running and you're messing with interrupts.
To unload a module, turn off the associated interface
'ifconfig eth?? down' then 'rmmod depca'.
To assign a base memory address for the shared memory when running as a
loadable module, see 5 above. To include the adapter name (if you have
no PROM but know the card name) also see 5 above. Note that this last
option will not work with kernel built-in depca's.
The shared memory assignment for a loadable module makes sense to avoid
the 'memory autoprobe' picking the wrong shared memory (for the case of
2 depca's in a PC).
************************************************************************
Support for MCA EtherWORKS cards added 11-3-98.
Verified to work with up to 2 DE212 cards in a system (although not
fully stress-tested).
Currently known bugs/limitations:
Note: with the MCA stuff as a module, it trusts the MCA configuration,
not the command line for IRQ and memory address. You can
specify them if you want, but it will throw your values out.
You still have to pass the IO address it was configured as
though.
************************************************************************
TO DO:
------
Revision History
----------------
Version Date Description
0.1 25-jan-94 Initial writing.
0.2 27-jan-94 Added LANCE TX hardware buffer chaining.
0.3 1-feb-94 Added multiple DEPCA support.
0.31 4-feb-94 Added DE202 recognition.
0.32 19-feb-94 Tidy up. Improve multi-DEPCA support.
0.33 25-feb-94 Fix DEPCA ethernet ROM counter enable.
Add jabber packet fix from [email protected]
and [email protected]
0.34 7-mar-94 Fix DEPCA max network memory RAM & NICSR access.
0.35 8-mar-94 Added DE201 recognition. Tidied up.
0.351 30-apr-94 Added EISA support. Added DE422 recognition.
0.36 16-may-94 DE422 fix released.
0.37 22-jul-94 Added MODULE support
0.38 15-aug-94 Added DBR ROM switch in depca_close().
Multi DEPCA bug fix.
0.38axp 15-sep-94 Special version for Alpha AXP Linux V1.0.
0.381 12-dec-94 Added DE101 recognition, fix multicast bug.
0.382 9-feb-95 Fix recognition bug reported by <[email protected]>.
0.383 22-feb-95 Fix for conflict with VESA SCSI reported by
<[email protected]>
0.384 17-mar-95 Fix a ring full bug reported by <[email protected]>
0.385 3-apr-95 Fix a recognition bug reported by
<[email protected]>
0.386 21-apr-95 Fix the last fix...sorry, must be galloping senility
0.40 25-May-95 Rewrite for portability & updated.
ALPHA support from <[email protected]>
0.41 26-Jun-95 Added verify_area() calls in depca_ioctl() from
suggestion by <[email protected]>
0.42 27-Dec-95 Add 'mem' shared memory assignment for loadable
modules.
Add 'adapter_name' for loadable modules when no PROM.
Both above from a suggestion by
<[email protected]>.
Add new multicasting code.
0.421 22-Apr-96 Fix alloc_device() bug <[email protected]>
0.422 29-Apr-96 Fix depca_hw_init() bug <[email protected]>
0.423 7-Jun-96 Fix module load bug <[email protected]>
0.43 16-Aug-96 Update alloc_device() to conform to de4x5.c
0.44 1-Sep-97 Fix *_probe() to test check_region() first - bug
reported by <[email protected]>
0.45 3-Nov-98 Added support for MCA EtherWORKS (DE210/DE212) cards
by <[email protected]>
0.451 5-Nov-98 Fixed mca stuff cuz I'm a dummy. <[email protected]>
0.5 14-Nov-98 Re-spin for 2.1.x kernels.
0.51 27-Jun-99 Correct received packet length for CRC from
report by <[email protected]>
=========================================================================
*/
#include "etherboot.h"
#include "nic.h"
#include <gpxe/isa.h>
#include "console.h"
#include <gpxe/ethernet.h>
/*
** I/O addresses. Note that the 2k buffer option is not supported in
** this driver.
*/
#define DEPCA_NICSR 0x00 /* Network interface CSR */
#define DEPCA_RBI 0x02 /* RAM buffer index (2k buffer mode) */
#define DEPCA_DATA 0x04 /* LANCE registers' data port */
#define DEPCA_ADDR 0x06 /* LANCE registers' address port */
#define DEPCA_HBASE 0x08 /* EISA high memory base address reg. */
#define DEPCA_PROM 0x0c /* Ethernet address ROM data port */
#define DEPCA_CNFG 0x0c /* EISA Configuration port */
#define DEPCA_RBSA 0x0e /* RAM buffer starting address (2k buff.) */
/*
** These are LANCE registers addressable through nic->ioaddr + DEPCA_ADDR
*/
#define CSR0 0
#define CSR1 1
#define CSR2 2
#define CSR3 3
/*
** NETWORK INTERFACE CSR (NI_CSR) bit definitions
*/
#define TO 0x0100 /* Time Out for remote boot */
#define SHE 0x0080 /* SHadow memory Enable */
#define BS 0x0040 /* Bank Select */
#define BUF 0x0020 /* BUFfer size (1->32k, 0->64k) */
#define RBE 0x0010 /* Remote Boot Enable (1->net boot) */
#define AAC 0x0008 /* Address ROM Address Counter (1->enable) */
#define _128KB 0x0008 /* 128kB Network RAM (1->enable) */
#define IM 0x0004 /* Interrupt Mask (1->mask) */
#define IEN 0x0002 /* Interrupt tristate ENable (1->enable) */
#define LED 0x0001 /* LED control */
/*
** Control and Status Register 0 (CSR0) bit definitions
*/
#define ERR 0x8000 /* Error summary */
#define BABL 0x4000 /* Babble transmitter timeout error */
#define CERR 0x2000 /* Collision Error */
#define MISS 0x1000 /* Missed packet */
#define MERR 0x0800 /* Memory Error */
#define RINT 0x0400 /* Receiver Interrupt */
#define TINT 0x0200 /* Transmit Interrupt */
#define IDON 0x0100 /* Initialization Done */
#define INTR 0x0080 /* Interrupt Flag */
#define INEA 0x0040 /* Interrupt Enable */
#define RXON 0x0020 /* Receiver on */
#define TXON 0x0010 /* Transmitter on */
#define TDMD 0x0008 /* Transmit Demand */
#define STOP 0x0004 /* Stop */
#define STRT 0x0002 /* Start */
#define INIT 0x0001 /* Initialize */
#define INTM 0xff00 /* Interrupt Mask */
#define INTE 0xfff0 /* Interrupt Enable */
/*
** CONTROL AND STATUS REGISTER 3 (CSR3)
*/
#define BSWP 0x0004 /* Byte SWaP */
#define ACON 0x0002 /* ALE control */
#define BCON 0x0001 /* Byte CONtrol */
/*
** Initialization Block Mode Register
*/
#define PROM 0x8000 /* Promiscuous Mode */
#define EMBA 0x0080 /* Enable Modified Back-off Algorithm */
#define INTL 0x0040 /* Internal Loopback */
#define DRTY 0x0020 /* Disable Retry */
#define COLL 0x0010 /* Force Collision */
#define DTCR 0x0008 /* Disable Transmit CRC */
#define LOOP 0x0004 /* Loopback */
#define DTX 0x0002 /* Disable the Transmitter */
#define DRX 0x0001 /* Disable the Receiver */
/*
** Receive Message Descriptor 1 (RMD1) bit definitions.
*/
#define R_OWN 0x80000000 /* Owner bit 0 = host, 1 = lance */
#define R_ERR 0x4000 /* Error Summary */
#define R_FRAM 0x2000 /* Framing Error */
#define R_OFLO 0x1000 /* Overflow Error */
#define R_CRC 0x0800 /* CRC Error */
#define R_BUFF 0x0400 /* Buffer Error */
#define R_STP 0x0200 /* Start of Packet */
#define R_ENP 0x0100 /* End of Packet */
/*
** Transmit Message Descriptor 1 (TMD1) bit definitions.
*/
#define T_OWN 0x80000000 /* Owner bit 0 = host, 1 = lance */
#define T_ERR 0x4000 /* Error Summary */
#define T_ADD_FCS 0x2000 /* More the 1 retry needed to Xmit */
#define T_MORE 0x1000 /* >1 retry to transmit packet */
#define T_ONE 0x0800 /* 1 try needed to transmit the packet */
#define T_DEF 0x0400 /* Deferred */
#define T_STP 0x02000000 /* Start of Packet */
#define T_ENP 0x01000000 /* End of Packet */
#define T_FLAGS 0xff000000 /* TX Flags Field */
/*
** Transmit Message Descriptor 3 (TMD3) bit definitions.
*/
#define TMD3_BUFF 0x8000 /* BUFFer error */
#define TMD3_UFLO 0x4000 /* UnderFLOw error */
#define TMD3_RES 0x2000 /* REServed */
#define TMD3_LCOL 0x1000 /* Late COLlision */
#define TMD3_LCAR 0x0800 /* Loss of CARrier */
#define TMD3_RTRY 0x0400 /* ReTRY error */
/*
** Ethernet PROM defines
*/
#define PROBE_LENGTH 32
/*
** Set the number of Tx and Rx buffers. Ensure that the memory requested
** here is <= to the amount of shared memory set up by the board switches.
** The number of descriptors MUST BE A POWER OF 2.
**
** total_memory = NUM_RX_DESC*(8+RX_BUFF_SZ) + NUM_TX_DESC*(8+TX_BUFF_SZ)
*/
#define NUM_RX_DESC 2 /* Number of RX descriptors */
#define NUM_TX_DESC 2 /* Number of TX descriptors */
#define RX_BUFF_SZ 1536 /* Buffer size for each Rx buffer */
#define TX_BUFF_SZ 1536 /* Buffer size for each Tx buffer */
/*
** ISA Bus defines
*/
#ifndef DEPCA_MODEL
#define DEPCA_MODEL DEPCA
#endif
static enum {
DEPCA, DE100, DE101, DE200, DE201, DE202, DE210, DE212, DE422, unknown
} adapter = DEPCA_MODEL;
/*
** Name <-> Adapter mapping
*/
static char *adapter_name[] = {
"DEPCA",
"DE100","DE101",
"DE200","DE201","DE202",
"DE210","DE212",
"DE422",
""
};
#ifndef DEPCA_RAM_BASE
#define DEPCA_RAM_BASE 0xd0000
#endif
/*
** Memory Alignment. Each descriptor is 4 longwords long. To force a
** particular alignment on the TX descriptor, adjust DESC_SKIP_LEN and
** DESC_ALIGN. ALIGN aligns the start address of the private memory area
** and hence the RX descriptor ring's first entry.
*/
#define ALIGN4 ((u32)4 - 1) /* 1 longword align */
#define ALIGN8 ((u32)8 - 1) /* 2 longword (quadword) align */
#define ALIGN ALIGN8 /* Keep the LANCE happy... */
/*
** The DEPCA Rx and Tx ring descriptors.
*/
struct depca_rx_desc {
volatile s32 base;
s16 buf_length; /* This length is negative 2's complement! */
s16 msg_length; /* This length is "normal". */
};
struct depca_tx_desc {
volatile s32 base;
s16 length; /* This length is negative 2's complement! */
s16 misc; /* Errors and TDR info */
};
#define LA_MASK 0x0000ffff /* LANCE address mask for mapping network RAM
to LANCE memory address space */
/*
** The Lance initialization block, described in databook, in common memory.
*/
struct depca_init {
u16 mode; /* Mode register */
u8 phys_addr[ETH_ALEN]; /* Physical ethernet address */
u8 mcast_table[8]; /* Multicast Hash Table. */
u32 rx_ring; /* Rx ring base pointer & ring length */
u32 tx_ring; /* Tx ring base pointer & ring length */
};
struct depca_private {
struct depca_rx_desc *rx_ring;
struct depca_tx_desc *tx_ring;
struct depca_init init_block; /* Shadow init block */
char *rx_memcpy[NUM_RX_DESC];
char *tx_memcpy[NUM_TX_DESC];
u32 bus_offset; /* ISA bus address offset */
u32 sh_mem; /* address of shared mem */
u32 dma_buffs; /* Rx & Tx buffer start */
int rx_cur, tx_cur; /* Next free ring entry */
int txRingMask, rxRingMask;
s32 rx_rlen, tx_rlen;
/* log2([rt]xRingMask+1) for the descriptors */
};
static Address mem_start = DEPCA_RAM_BASE;
static Address mem_len, offset;
static struct depca_private lp;
/*
** Miscellaneous defines...
*/
#define STOP_DEPCA(ioaddr) \
outw(CSR0, ioaddr + DEPCA_ADDR);\
outw(STOP, ioaddr + DEPCA_DATA)
/* Initialize the lance Rx and Tx descriptor rings. */
static void depca_init_ring(struct nic *nic)
{
int i;
u32 p;
lp.rx_cur = lp.tx_cur = 0;
/* Initialize the base addresses and length of each buffer in the ring */
for (i = 0; i <= lp.rxRingMask; i++) {
writel((p = lp.dma_buffs + i * RX_BUFF_SZ) | R_OWN, &lp.rx_ring[i].base);
writew(-RX_BUFF_SZ, &lp.rx_ring[i].buf_length);
lp.rx_memcpy[i] = (char *) (p + lp.bus_offset);
}
for (i = 0; i <= lp.txRingMask; i++) {
writel((p = lp.dma_buffs + (i + lp.txRingMask + 1) * TX_BUFF_SZ) & 0x00ffffff, &lp.tx_ring[i].base);
lp.tx_memcpy[i] = (char *) (p + lp.bus_offset);
}
/* Set up the initialization block */
lp.init_block.rx_ring = ((u32) ((u32) lp.rx_ring) & LA_MASK) | lp.rx_rlen;
lp.init_block.tx_ring = ((u32) ((u32) lp.tx_ring) & LA_MASK) | lp.tx_rlen;
for (i = 0; i < ETH_ALEN; i++)
lp.init_block.phys_addr[i] = nic->node_addr[i];
lp.init_block.mode = 0x0000; /* Enable the Tx and Rx */
memset(lp.init_block.mcast_table, 0, sizeof(lp.init_block.mcast_table));
}
static inline void LoadCSRs(struct nic *nic)
{
outw(CSR1, nic->ioaddr + DEPCA_ADDR); /* initialisation block address LSW */
outw((u16) (lp.sh_mem & LA_MASK), nic->ioaddr + DEPCA_DATA);
outw(CSR2, nic->ioaddr + DEPCA_ADDR); /* initialisation block address MSW */
outw((u16) ((lp.sh_mem & LA_MASK) >> 16), nic->ioaddr + DEPCA_DATA);
outw(CSR3, nic->ioaddr + DEPCA_ADDR); /* ALE control */
outw(ACON, nic->ioaddr + DEPCA_DATA);
outw(CSR0, nic->ioaddr + DEPCA_ADDR); /* Point back to CSR0 */
}
static inline int InitRestartDepca(struct nic *nic)
{
int i;
/* Copy the shadow init_block to shared memory */
memcpy_toio((char *)lp.sh_mem, &lp.init_block, sizeof(struct depca_init));
outw(CSR0, nic->ioaddr + DEPCA_ADDR); /* point back to CSR0 */
outw(INIT, nic->ioaddr + DEPCA_DATA); /* initialise DEPCA */
for (i = 0; i < 100 && !(inw(nic->ioaddr + DEPCA_DATA) & IDON); i++)
;
if (i < 100) {
/* clear IDON by writing a 1, and start LANCE */
outw(IDON | STRT, nic->ioaddr + DEPCA_DATA);
} else {
printf("DEPCA not initialised\n");
return (1);
}
return (0);
}
/**************************************************************************
RESET - Reset adapter
***************************************************************************/
static void depca_reset(struct nic *nic)
{
s16 nicsr;
int i, j;
STOP_DEPCA(nic->ioaddr);
nicsr = inb(nic->ioaddr + DEPCA_NICSR);
nicsr = ((nicsr & ~SHE & ~RBE & ~IEN) | IM);
outb(nicsr, nic->ioaddr + DEPCA_NICSR);
if (inw(nic->ioaddr + DEPCA_DATA) != STOP)
{
printf("depca: Cannot stop NIC\n");
return;
}
/* Initialisation block */
lp.sh_mem = mem_start;
mem_start += sizeof(struct depca_init);
/* Tx & Rx descriptors (aligned to a quadword boundary) */
mem_start = (mem_start + ALIGN) & ~ALIGN;
lp.rx_ring = (struct depca_rx_desc *) mem_start;
mem_start += (sizeof(struct depca_rx_desc) * NUM_RX_DESC);
lp.tx_ring = (struct depca_tx_desc *) mem_start;
mem_start += (sizeof(struct depca_tx_desc) * NUM_TX_DESC);
lp.bus_offset = mem_start & 0x00ff0000;
/* LANCE re-mapped start address */
lp.dma_buffs = mem_start & LA_MASK;
/* Finish initialising the ring information. */
lp.rxRingMask = NUM_RX_DESC - 1;
lp.txRingMask = NUM_TX_DESC - 1;
/* Calculate Tx/Rx RLEN size for the descriptors. */
for (i = 0, j = lp.rxRingMask; j > 0; i++) {
j >>= 1;
}
lp.rx_rlen = (s32) (i << 29);
for (i = 0, j = lp.txRingMask; j > 0; i++) {
j >>= 1;
}
lp.tx_rlen = (s32) (i << 29);
/* Load the initialisation block */
depca_init_ring(nic);
LoadCSRs(nic);
InitRestartDepca(nic);
}
/**************************************************************************
POLL - Wait for a frame
***************************************************************************/
static int depca_poll(struct nic *nic, int retrieve)
{
int entry;
u32 status;
entry = lp.rx_cur;
if ((status = readl(&lp.rx_ring[entry].base) & R_OWN))
return (0);
if ( ! retrieve ) return 1;
memcpy(nic->packet, lp.rx_memcpy[entry], nic->packetlen = lp.rx_ring[entry].msg_length);
lp.rx_ring[entry].base |= R_OWN;
lp.rx_cur = (++lp.rx_cur) & lp.rxRingMask;
return (1);
}
/**************************************************************************
TRANSMIT - Transmit a frame
***************************************************************************/
static void depca_transmit(
struct nic *nic,
const char *d, /* Destination */
unsigned int t, /* Type */
unsigned int s, /* size */
const char *p) /* Packet */
{
int entry, len;
char *mem;
/* send the packet to destination */
/*
** Caution: the right order is important here... dont
** setup the ownership rights until all the other
** information is in place
*/
mem = lp.tx_memcpy[entry = lp.tx_cur];
memcpy_toio(mem, d, ETH_ALEN);
memcpy_toio(mem + ETH_ALEN, nic->node_addr, ETH_ALEN);
mem[ETH_ALEN * 2] = t >> 8;
mem[ETH_ALEN * 2 + 1] = t;
memcpy_toio(mem + ETH_HLEN, p, s);
s += ETH_HLEN;
len = (s < ETH_ZLEN ? ETH_ZLEN : s);
/* clean out flags */
writel(readl(&lp.tx_ring[entry].base) & ~T_FLAGS, &lp.tx_ring[entry].base);
/* clears other error flags */
writew(0x0000, &lp.tx_ring[entry].misc);
/* packet length in buffer */
writew(-len, &lp.tx_ring[entry].length);
/* start and end of packet, ownership */
writel(readl(&lp.tx_ring[entry].base) | (T_STP|T_ENP|T_OWN), &lp.tx_ring[entry].base);
/* update current pointers */
lp.tx_cur = (++lp.tx_cur) & lp.txRingMask;
}
/**************************************************************************
DISABLE - Turn off ethernet interface
***************************************************************************/
static void depca_disable ( struct nic *nic ) {
depca_reset(nic);
STOP_DEPCA(nic->ioaddr);
}
/**************************************************************************
IRQ - Interrupt Control
***************************************************************************/
static void depca_irq(struct nic *nic __unused, irq_action_t action __unused)
{
switch ( action ) {
case DISABLE :
break;
case ENABLE :
break;
case FORCE :
break;
}
}
/*
** Look for a special sequence in the Ethernet station address PROM that
** is common across all DEPCA products. Note that the original DEPCA needs
** its ROM address counter to be initialized and enabled. Only enable
** if the first address octet is a 0x08 - this minimises the chances of
** messing around with some other hardware, but it assumes that this DEPCA
** card initialized itself correctly.
**
** Search the Ethernet address ROM for the signature. Since the ROM address
** counter can start at an arbitrary point, the search must include the entire
** probe sequence length plus the (length_of_the_signature - 1).
** Stop the search IMMEDIATELY after the signature is found so that the
** PROM address counter is correctly positioned at the start of the
** ethernet address for later read out.
*/
/*
* Ugly, ugly, ugly. I can't quite make out where the split should be
* between probe1 and probe()...
*
*/
static u8 nicsr;
static int depca_probe1 ( isa_probe_addr_t ioaddr ) {
u8 data;
/* This is only correct for little endian machines, but then
Etherboot doesn't work on anything but a PC */
u8 sig[] = { 0xFF, 0x00, 0x55, 0xAA, 0xFF, 0x00, 0x55, 0xAA };
int i, j;
data = inb(ioaddr + DEPCA_PROM); /* clear counter on DEPCA */
data = inb(ioaddr + DEPCA_PROM); /* read data */
if (data == 0x8) {
nicsr = inb(ioaddr + DEPCA_NICSR);
nicsr |= AAC;
outb(nicsr, ioaddr + DEPCA_NICSR);
}
for (i = 0, j = 0; j < (int)sizeof(sig) && i < PROBE_LENGTH+((int)sizeof(sig))-1; ++i) {
data = inb(ioaddr + DEPCA_PROM);
if (data == sig[j]) /* track signature */
++j;
else
j = (data == sig[0]) ? 1 : 0;
}
if (j != sizeof(sig))
return (0);
/* put the card in its initial state */
STOP_DEPCA(ioaddr);
nicsr = ((inb(ioaddr + DEPCA_NICSR) & ~SHE & ~RBE & ~IEN) | IM);
outb(nicsr, ioaddr + DEPCA_NICSR);
if (inw(ioaddr + DEPCA_DATA) != STOP)
return (0);
memcpy((char *)mem_start, sig, sizeof(sig));
if (memcmp((char *)mem_start, sig, sizeof(sig)) != 0)
return (0);
return 1;
}
static struct nic_operations depca_operations = {
.connect = dummy_connect,
.poll = depca_poll,
.transmit = depca_transmit,
.irq = depca_irq,
};
/**************************************************************************
PROBE - Look for an adapter, this routine's visible to the outside
***************************************************************************/
static int depca_probe ( struct nic *nic, struct isa_device *isa ) {
int i, j;
long sum, chksum;
nic->irqno = 0;
nic->ioaddr = isa->ioaddr;
for (i = 0, j = 0, sum = 0; j < 3; j++) {
sum <<= 1;
if (sum > 0xFFFF)
sum -= 0xFFFF;
sum += (u8)(nic->node_addr[i++] = inb(nic->ioaddr + DEPCA_PROM));
sum += (u16)((nic->node_addr[i++] = inb(nic->ioaddr + DEPCA_PROM)) << 8);
if (sum > 0xFFFF)
sum -= 0xFFFF;
}
if (sum == 0xFFFF)
sum = 0;
chksum = (u8)inb(nic->ioaddr + DEPCA_PROM);
chksum |= (u16)(inb(nic->ioaddr + DEPCA_PROM) << 8);
mem_len = (adapter == DEPCA) ? (48 << 10) : (64 << 10);
offset = 0;
if (nicsr & BUF) {
offset = 0x8000;
nicsr &= ~BS;
mem_len -= (32 << 10);
}
if (adapter != DEPCA) /* enable shadow RAM */
outb(nicsr |= SHE, nic->ioaddr + DEPCA_NICSR);
DBG ( "%s base %4.4x, memory [%4.4lx-%4.4lx] addr %s",
adapter_name[adapter], nic->ioaddr, mem_start,
mem_start + mem_len, eth_ntoa ( nic->node_addr ) );
if (sum != chksum)
printf(" (bad checksum)");
putchar('\n');
depca_reset(nic);
/* point to NIC specific routines */
nic->nic_op = &depca_operations;
return 1;
}
static isa_probe_addr_t depca_probe_addrs[] = {
0x300, 0x200,
};
ISA_DRIVER ( depca_driver, depca_probe_addrs, depca_probe1,
GENERIC_ISAPNP_VENDOR, 0x80f7 );
DRIVER ( "depce", nic_driver, isa_driver, depca_driver,
depca_probe, depca_disable );
ISA_ROM ( "depca", "Digital DE100 and DE200" );
#endif
/*
* Local variables:
* c-basic-offset: 8
* c-indent-level: 8
* tab-width: 8
* End:
*/
|
the_stack_data/103266283.c | /*
* Copyright 2016 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <stdint.h>
#include <stdio.h>
uint64_t a, b;
int main(int argc, char *argv[]) {
a = argc;
b = argv[1][0];
printf("%d,%d\n", (int)a, (int)b);
if (a > a + b || a > a + b + 1) {
printf("one %lld, %lld", a, b);
return 0;
}
printf("zero %lld, %lld", a, b);
return 0;
}
|
the_stack_data/92852.c | #include <stdio.h>
#include <strings.h>
main(int argc, char** argv) {
char s[1000];
strcpy(s, argv[1]);
puts(s);
} |
the_stack_data/225143999.c | #include <stdio.h>
#include <stdlib.h>
typedef struct tree
{
struct node *root;
int count;
} tree;
typedef struct node
{
int key;
struct node *left;
struct node *right;
struct node *parent;
} node;
void init(tree* t) {
t->root = NULL;
t->count = 0;
}
int insert(tree* t, int value) {
node *nodeNew = (node*) malloc(sizeof(node));
node *node1 = t->root, *node2 = NULL;
while (node1 != NULL) {
node2 = node1;
if (value < node1->key) {
node1 = node1->left;
} else if (value == node1->key) {
return 1;
} else {
node1 = node1->right;
}
}
nodeNew->key = value;
nodeNew->left = NULL;
nodeNew->right = NULL;
nodeNew->parent = node2;
if (t->root == NULL) {
t->root = nodeNew;
}
if (node2 != NULL) {
if (value < node2->key) {;
node2->left = nodeNew;
} else {
node2->right = nodeNew;
}
}
t->count++;
return 0;
}
void reverse(node* nodeA){
if (nodeA == NULL) {
printf("- ");
if (nodeA->parent == NULL) {
return;
}
}
if (nodeA->left != NULL) {
reverse(nodeA->left);
}
if (nodeA->right != NULL) {
reverse(nodeA->right);
}
printf("%d ", nodeA->key);
}
void print_tree(tree* t) {
reverse(t->root);
}
int main()
{
tree t;
init(&t);
int a, a1, a2, a3, a4, a5, a6;
scanf("%d %d %d %d %d %d %d", &a, &a1, &a2, &a3, &a4, &a5, &a6);
insert(&t, a);
insert(&t, a1);
insert(&t, a2);
insert(&t, a3);
insert(&t, a4);
insert(&t, a5);
insert(&t, a6);
print_tree(&t);
printf("\n");
return 0;
}
|
the_stack_data/870935.c | // RUN: %clang_cc1 -fsyntax-only -verify %s
int foo() __attribute__((__minsize__));
int var1 __attribute__((__minsize__)); // expected-error{{'__minsize__' attribute only applies to functions and methods}}
|
the_stack_data/182952760.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_8__ TYPE_4__ ;
typedef struct TYPE_7__ TYPE_3__ ;
typedef struct TYPE_6__ TYPE_2__ ;
typedef struct TYPE_5__ TYPE_1__ ;
/* Type definitions */
struct TYPE_5__ {struct debug_class_type* kclass; } ;
struct debug_type {TYPE_1__ u; } ;
struct debug_method_variant {scalar_t__* physname; scalar_t__ visibility; scalar_t__ constp; scalar_t__ volatilep; scalar_t__ voffset; int /*<<< orphan*/ * context; int /*<<< orphan*/ * type; } ;
struct debug_method {scalar_t__* name; struct debug_method_variant** variants; } ;
struct debug_handle {int dummy; } ;
struct TYPE_7__ {scalar_t__ bitpos; scalar_t__ bitsize; } ;
struct TYPE_6__ {scalar_t__* physname; } ;
struct TYPE_8__ {TYPE_3__ f; TYPE_2__ s; } ;
struct debug_field {scalar_t__* name; scalar_t__ visibility; scalar_t__ static_member; int /*<<< orphan*/ type; TYPE_4__ u; } ;
struct debug_class_type {struct debug_method** methods; struct debug_baseclass** baseclasses; int /*<<< orphan*/ * vptrbase; struct debug_field** fields; } ;
struct debug_baseclass {scalar_t__ bitpos; scalar_t__ virtual; scalar_t__ visibility; int /*<<< orphan*/ * type; } ;
typedef int /*<<< orphan*/ bfd_boolean ;
/* Variables and functions */
int /*<<< orphan*/ FALSE ;
int /*<<< orphan*/ TRUE ;
int /*<<< orphan*/ * debug_get_real_type (void*,int /*<<< orphan*/ ,int /*<<< orphan*/ *) ;
int /*<<< orphan*/ debug_type_samep (struct debug_handle*,int /*<<< orphan*/ *,int /*<<< orphan*/ *) ;
scalar_t__ strcmp (scalar_t__*,scalar_t__*) ;
__attribute__((used)) static bfd_boolean
debug_class_type_samep (struct debug_handle *info, struct debug_type *t1,
struct debug_type *t2)
{
struct debug_class_type *c1, *c2;
c1 = t1->u.kclass;
c2 = t2->u.kclass;
if ((c1->fields == NULL) != (c2->fields == NULL)
|| (c1->baseclasses == NULL) != (c2->baseclasses == NULL)
|| (c1->methods == NULL) != (c2->methods == NULL)
|| (c1->vptrbase == NULL) != (c2->vptrbase == NULL))
return FALSE;
if (c1->fields != NULL)
{
struct debug_field **pf1, **pf2;
for (pf1 = c1->fields, pf2 = c2->fields;
*pf1 != NULL && *pf2 != NULL;
pf1++, pf2++)
{
struct debug_field *f1, *f2;
f1 = *pf1;
f2 = *pf2;
if (f1->name[0] != f2->name[0]
|| f1->visibility != f2->visibility
|| f1->static_member != f2->static_member)
return FALSE;
if (f1->static_member)
{
if (strcmp (f1->u.s.physname, f2->u.s.physname) != 0)
return FALSE;
}
else
{
if (f1->u.f.bitpos != f2->u.f.bitpos
|| f1->u.f.bitsize != f2->u.f.bitsize)
return FALSE;
}
/* We do the checks which require function calls last. We
don't require that the types of fields have the same
names, since that sometimes fails in the presence of
typedefs and we really don't care. */
if (strcmp (f1->name, f2->name) != 0
|| ! debug_type_samep (info,
debug_get_real_type ((void *) info,
f1->type, NULL),
debug_get_real_type ((void *) info,
f2->type, NULL)))
return FALSE;
}
if (*pf1 != NULL || *pf2 != NULL)
return FALSE;
}
if (c1->vptrbase != NULL)
{
if (! debug_type_samep (info, c1->vptrbase, c2->vptrbase))
return FALSE;
}
if (c1->baseclasses != NULL)
{
struct debug_baseclass **pb1, **pb2;
for (pb1 = c1->baseclasses, pb2 = c2->baseclasses;
*pb1 != NULL && *pb2 != NULL;
++pb1, ++pb2)
{
struct debug_baseclass *b1, *b2;
b1 = *pb1;
b2 = *pb2;
if (b1->bitpos != b2->bitpos
|| b1->virtual != b2->virtual
|| b1->visibility != b2->visibility
|| ! debug_type_samep (info, b1->type, b2->type))
return FALSE;
}
if (*pb1 != NULL || *pb2 != NULL)
return FALSE;
}
if (c1->methods != NULL)
{
struct debug_method **pm1, **pm2;
for (pm1 = c1->methods, pm2 = c2->methods;
*pm1 != NULL && *pm2 != NULL;
++pm1, ++pm2)
{
struct debug_method *m1, *m2;
m1 = *pm1;
m2 = *pm2;
if (m1->name[0] != m2->name[0]
|| strcmp (m1->name, m2->name) != 0
|| (m1->variants == NULL) != (m2->variants == NULL))
return FALSE;
if (m1->variants == NULL)
{
struct debug_method_variant **pv1, **pv2;
for (pv1 = m1->variants, pv2 = m2->variants;
*pv1 != NULL && *pv2 != NULL;
++pv1, ++pv2)
{
struct debug_method_variant *v1, *v2;
v1 = *pv1;
v2 = *pv2;
if (v1->physname[0] != v2->physname[0]
|| v1->visibility != v2->visibility
|| v1->constp != v2->constp
|| v1->volatilep != v2->volatilep
|| v1->voffset != v2->voffset
|| (v1->context == NULL) != (v2->context == NULL)
|| strcmp (v1->physname, v2->physname) != 0
|| ! debug_type_samep (info, v1->type, v2->type))
return FALSE;
if (v1->context != NULL)
{
if (! debug_type_samep (info, v1->context,
v2->context))
return FALSE;
}
}
if (*pv1 != NULL || *pv2 != NULL)
return FALSE;
}
}
if (*pm1 != NULL || *pm2 != NULL)
return FALSE;
}
return TRUE;
} |
the_stack_data/11075913.c | extern void __VERIFIER_error() __attribute__ ((__noreturn__));
void __VERIFIER_assert(int expression) { if (!expression) { ERROR: __VERIFIER_error(); }; return; }
int __global_lock;
void __VERIFIER_atomic_begin() { __VERIFIER_assume(__global_lock==0); __global_lock=1; return; }
void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; }
#include <assert.h>
#include <pthread.h>
#ifndef TRUE
#define TRUE (_Bool)1
#endif
#ifndef FALSE
#define FALSE (_Bool)0
#endif
#ifndef NULL
#define NULL ((void*)0)
#endif
#ifndef FENCE
#define FENCE(x) ((void)0)
#endif
#ifndef IEEE_FLOAT_EQUAL
#define IEEE_FLOAT_EQUAL(x,y) (x==y)
#endif
#ifndef IEEE_FLOAT_NOTEQUAL
#define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y)
#endif
void * P0(void *arg);
void * P1(void *arg);
void * P2(void *arg);
void fence();
void isync();
void lwfence();
int __unbuffered_cnt;
int __unbuffered_cnt = 0;
int __unbuffered_p0_EAX;
int __unbuffered_p0_EAX = 0;
int __unbuffered_p2_EAX;
int __unbuffered_p2_EAX = 0;
_Bool main$tmp_guard0;
_Bool main$tmp_guard1;
int x;
int x = 0;
int y;
int y = 0;
void * P0(void *arg)
{
__VERIFIER_atomic_begin();
y = 2;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_p0_EAX = x;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_0();
}
void * P1(void *arg)
{
__VERIFIER_atomic_begin();
x = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_0();
}
void * P2(void *arg)
{
__VERIFIER_atomic_begin();
__unbuffered_p2_EAX = x;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
y = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_0();
}
void fence()
{
}
void isync()
{
}
void lwfence()
{
}
int main()
{
pthread_create(NULL, NULL, P0, NULL);
pthread_create(NULL, NULL, P1, NULL);
pthread_create(NULL, NULL, P2, NULL);
__VERIFIER_atomic_begin();
main$tmp_guard0 = __unbuffered_cnt == 3;
__VERIFIER_atomic_end();
__VERIFIER_assume(main$tmp_guard0);
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
main$tmp_guard1 = !(y == 2 && __unbuffered_p0_EAX == 0 && __unbuffered_p2_EAX == 1);
__VERIFIER_atomic_end();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
__VERIFIER_assert(main$tmp_guard1);
return 0;
}
|
the_stack_data/198580693.c |
struct dentry {
unsigned int dflags;
unsigned int d_time;
int error;
} dentry;
struct dentry* foo(struct dentry* d) {
d->error = -5;
return d;
}
int main() {
struct dentry d = {0, 0, 0};
struct dentry *retVal = foo(&d);
return 0;
}
|
the_stack_data/151706293.c | /*
* Date: 2014-06-26
* Author: [email protected]
*/
extern int __VERIFIER_nondet_int();
int main()
{
int x = __VERIFIER_nondet_int();
while (x >= 0) {
if (__VERIFIER_nondet_int()) {
x -= 1;
} else {
x += 1;
}
}
return 0;
}
|
the_stack_data/181393650.c | /******************************************************************************
* echo_client.c *
* *
* Description: This file contains the C source code for an echo client. The *
* client connects to an arbitrary <host,port> and sends input *
* from stdin. *
* *
* Authors: Athula Balachandran <[email protected]>, *
* Wolf Richter <[email protected]> *
* *
*******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#define ECHO_PORT 9999
#define BUF_SIZE 4096
int main(int argc, char* argv[])
{
if (argc != 3)
{
fprintf(stderr, "usage: %s <server-ip> <port>",argv[0]);
return EXIT_FAILURE;
}
char buf[BUF_SIZE];
int status, sock;
struct addrinfo hints;
memset(&hints, 0, sizeof(struct addrinfo));
struct addrinfo *servinfo; //will point to the results
hints.ai_family = AF_INET; //IPv4
hints.ai_socktype = SOCK_STREAM; //TCP stream sockets
hints.ai_flags = AI_PASSIVE; //fill in my IP for me
if ((status = getaddrinfo(argv[1], argv[2], &hints, &servinfo)) != 0)
{
fprintf(stderr, "getaddrinfo error: %s \n", gai_strerror(status));
return EXIT_FAILURE;
}
if((sock = socket(servinfo->ai_family, servinfo->ai_socktype, servinfo->ai_protocol)) == -1)
{
fprintf(stderr, "Socket failed");
return EXIT_FAILURE;
}
if (connect (sock, servinfo->ai_addr, servinfo->ai_addrlen) == -1)
{
fprintf(stderr, "Connect");
return EXIT_FAILURE;
}
char msg[BUF_SIZE];
fgets(msg, BUF_SIZE, stdin);
int bytes_received;
fprintf(stdout, "Sending %s", msg);
send(sock, msg , strlen(msg), 0);
if((bytes_received = recv(sock, buf, BUF_SIZE, 0)) > 1)
{
buf[bytes_received] = '\0';
fprintf(stdout, "Received %s", buf);
}
freeaddrinfo(servinfo);
close(sock);
return EXIT_SUCCESS;
}
|
the_stack_data/56987.c | #include <stdio.h>
#define max(a,b) a>b?a:b
#define min(a,b) a<b?a:b
int main()
{
int num,k,a[20000]={0},i,N=0,M=1,H,l,r;
scanf("%d%d",&num,&k);
for(i=0;i<num;i++)
scanf("%d",&a[i]);
while(k--){
N=0,M=1;
scanf("%d%d",&l,&r);
for(i=l;i<=r;i++){
N=N+a[i]%num;
N=N%num;
M=M*a[i]%num;
M=M%num;
}
l=min(N,M),r=max(N,M);
H=a[l];
for(i=l+1;i<=r;i++)
H=H^a[i];
printf("%d\n",H);
}
return 0;
} |
the_stack_data/822520.c | #include <stdio.h>
int main() {
int a, b, c, d, e, pares = 0, impares = 0, positivo = 0, negativo = 0;
scanf("%d", &a);
scanf("%d", &b);
scanf("%d", &c);
scanf("%d", &d);
scanf("%d", &e);
if(a%2 == 0){
pares = pares + 1;
}
else{
impares = impares + 1;
}
if(b%2 == 0){
pares = pares + 1;
}
else{
impares = impares + 1;
}
if(c%2 == 0){
pares = pares + 1;
}
else{
impares = impares + 1;
}
if(d%2 == 0){
pares = pares + 1;
}
else{
impares = impares + 1;
}
if(e%2 == 0){
pares = pares + 1;
}
else{
impares = impares + 1;
}
if(a > 0){
positivo = positivo + 1;
}
else if(a < 0){
negativo = negativo + 1;
}
if(b > 0){
positivo = positivo + 1;
}
else if(b < 0){
negativo = negativo + 1;
}
if(c > 0){
positivo = positivo + 1;
}
else if(c < 0){
negativo = negativo + 1;
}
if(d > 0){
positivo = positivo + 1;
}
else if(d < 0){
negativo = negativo + 1;
}
if(e > 0){
positivo = positivo + 1;
}
else if(e < 0){
negativo = negativo + 1;
}
printf("%d valor(es) par(es)\n", pares);
printf("%d valor(es) impar(es)\n", impares);
printf("%d valor(es) positivo(s)\n", positivo);
printf("%d valor(es) negativo(s)\n", negativo);
return 0;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.